Changeset 9212 in josm


Ignore:
Timestamp:
2015-12-29T18:51:22+01:00 (8 years ago)
Author:
Don-vip
Message:

checkstyle 6.14 + tune xml validation settings in Eclipse project

Location:
trunk
Files:
2 added
1 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r9205 r9212  
    608608    <target name="checkstyle">
    609609        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
    610                 classpath="tools/checkstyle/checkstyle-6.13-all.jar"/>
     610                classpath="tools/checkstyle/checkstyle-6.14-all.jar"/>
    611611        <checkstyle config="tools/checkstyle/josm_checks.xml">
    612612            <fileset dir="${basedir}/src/org/openstreetmap/josm" includes="**/*.java"
  • trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java

    r9210 r9212  
    461461        ret.setEtag(urlConn.getHeaderField("ETag"));
    462462
    463         if(Main.isDebugEnabled()) {
    464             for(Entry<String, List<String>> header: urlConn.getHeaderFields().entrySet()) {
     463        if (Main.isDebugEnabled()) {
     464            for (Entry<String, List<String>> header: urlConn.getHeaderFields().entrySet()) {
    465465                log.log(Level.FINE, "Response header - {0}: {1}", new Object[]{header.getKey(), header.getValue()});
    466466            }
  • trunk/src/org/openstreetmap/josm/data/coor/CoordinateFormat.java

    r8674 r9212  
    1313     * the decimal format 999.999
    1414     */
    15     DECIMAL_DEGREES (tr("Decimal Degrees")),
     15    DECIMAL_DEGREES(tr("Decimal Degrees")),
    1616
    1717    /**
    1818     * the degrees/minutes/seconds format 9 deg 99 min 99 sec
    1919     */
    20     DEGREES_MINUTES_SECONDS (tr("deg\u00B0 min'' sec\"")),
     20    DEGREES_MINUTES_SECONDS(tr("deg\u00B0 min'' sec\"")),
    2121
    2222    /**
    2323     * the nautical format
    2424     */
    25     NAUTICAL (tr("deg\u00B0 min'' (Nautical)")),
     25    NAUTICAL(tr("deg\u00B0 min'' (Nautical)")),
    2626
    2727    /**
    2828     * coordinates East/North
    2929     */
    30     EAST_NORTH (tr("Projected Coordinates"));
     30    EAST_NORTH(tr("Projected Coordinates"));
    3131
    3232    private String displayName;
  • trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitiveType.java

    r8510 r9212  
    1111public enum OsmPrimitiveType {
    1212
    13     NODE (marktr(/* ICON(data/) */"node"), Node.class, NodeData.class),
    14     WAY  (marktr(/* ICON(data/) */"way"), Way.class, WayData.class),
    15     RELATION (marktr(/* ICON(data/) */"relation"), Relation.class, RelationData.class),
     13    NODE(marktr(/* ICON(data/) */"node"), Node.class, NodeData.class),
     14    WAY(marktr(/* ICON(data/) */"way"), Way.class, WayData.class),
     15    RELATION(marktr(/* ICON(data/) */"relation"), Relation.class, RelationData.class),
    1616
    1717    /* only for display, no real type */
    18     CLOSEDWAY  (marktr(/* ICON(data/) */"closedway"), null, WayData.class),
    19     MULTIPOLYGON (marktr(/* ICON(data/) */"multipolygon"), null, RelationData.class);
     18    CLOSEDWAY(marktr(/* ICON(data/) */"closedway"), null, WayData.class),
     19    MULTIPOLYGON(marktr(/* ICON(data/) */"multipolygon"), null, RelationData.class);
    2020
    2121    private static final Collection<OsmPrimitiveType> DATA_VALUES = Arrays.asList(NODE, WAY, RELATION);
  • trunk/src/org/openstreetmap/josm/gui/conflict/ConflictColors.java

    r8674 r9212  
    3434    BGCOLOR_SAME_POSITION_IN_OPPOSITE(marktr("Conflict background: same position in opposite"), new Color(217, 255, 217)),
    3535
    36     BGCOLOR_TAG_KEEP_ONE (marktr("Conflict background: keep one tag"), new Color(217, 255, 217)),
    37     FGCOLOR_TAG_KEEP_ONE (marktr("Conflict foreground: keep one tag"), Color.black),
     36    BGCOLOR_TAG_KEEP_ONE(marktr("Conflict background: keep one tag"), new Color(217, 255, 217)),
     37    FGCOLOR_TAG_KEEP_ONE(marktr("Conflict foreground: keep one tag"), Color.black),
    3838    BGCOLOR_TAG_KEEP_NONE(marktr("Conflict background: drop tag"), Color.lightGray),
    3939    FGCOLOR_TAG_KEEP_NONE(marktr("Conflict foreground: drop tag"), Color.black),
    40     BGCOLOR_TAG_KEEP_ALL (marktr("Conflict background: keep all tags"), new Color(255, 234, 213)),
    41     FGCOLOR_TAG_KEEP_ALL (marktr("Conflict foreground: keep all tags"), Color.black),
     40    BGCOLOR_TAG_KEEP_ALL(marktr("Conflict background: keep all tags"), new Color(255, 234, 213)),
     41    FGCOLOR_TAG_KEEP_ALL(marktr("Conflict foreground: keep all tags"), Color.black),
    4242    BGCOLOR_TAG_SUM_ALL_NUM(marktr("Conflict background: sum all numeric tags"), new Color(255, 234, 213)),
    4343    FGCOLOR_TAG_SUM_ALL_NUM(marktr("Conflict foreground: sum all numeric tags"), Color.black),
    4444
    45     BGCOLOR_MEMBER_KEEP  (marktr("Conflict background: keep member"), new Color(217, 255, 217)),
    46     FGCOLOR_MEMBER_KEEP  (marktr("Conflict foreground: keep member"), Color.black),
     45    BGCOLOR_MEMBER_KEEP(marktr("Conflict background: keep member"), new Color(217, 255, 217)),
     46    FGCOLOR_MEMBER_KEEP(marktr("Conflict foreground: keep member"), Color.black),
    4747    BGCOLOR_MEMBER_REMOVE(marktr("Conflict background: remove member"), Color.lightGray),
    4848    FGCOLOR_MEMBER_REMOVE(marktr("Conflict foreground: remove member"), Color.black);
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/ComparePairType.java

    r8291 r9212  
    1717     * compare my version of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive} with their version
    1818     */
    19     MY_WITH_THEIR (tr("My with Their"), new ListRole[] {MY_ENTRIES, THEIR_ENTRIES}),
     19    MY_WITH_THEIR(tr("My with Their"), new ListRole[] {MY_ENTRIES, THEIR_ENTRIES}),
    2020
    2121    /**
    2222     * compare my version of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive} with the merged version
    2323     */
    24     MY_WITH_MERGED (tr("My with Merged"),  new ListRole[] {MY_ENTRIES, MERGED_ENTRIES}),
     24    MY_WITH_MERGED(tr("My with Merged"),  new ListRole[] {MY_ENTRIES, MERGED_ENTRIES}),
    2525
    2626    /**
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginUpdatePolicyPanel.java

    r8513 r9212  
    3232
    3333    private enum Policy {
    34         ASK ("ask"),
     34        ASK("ask"),
    3535        ALWAYS("always"),
    3636        NEVER("never");
  • trunk/test/data/wmts/getCapabilities-lots-of-layers.xml

    r9081 r9212  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd"><ows:ServiceIdentification><ows:Title>Service de visualisation WMTS</ows:Title><ows:Abstract>Ce service permet la visualisation de couches de données raster IGN au travers d'un flux WMTS</ows:Abstract><ows:Keywords><ows:Keyword>Unités administratives</ows:Keyword><ows:Keyword>Limites administratives</ows:Keyword><ows:Keyword>Surfaces bâties</ows:Keyword><ows:Keyword>Réseaux de transport</ows:Keyword><ows:Keyword>Routes</ows:Keyword><ows:Keyword>Réseaux ferroviaires</ows:Keyword><ows:Keyword>Aérodromes</ows:Keyword><ows:Keyword>Réseau hydrographique</ows:Keyword><ows:Keyword>Parcelles cadastrales</ows:Keyword><ows:Keyword>Bâtiments</ows:Keyword><ows:Keyword>Services d'utilité publique et services publics</ows:Keyword><ows:Keyword>Réseaux de transport</ows:Keyword><ows:Keyword>Hydrographie</ows:Keyword><ows:Keyword>Photographies aériennes</ows:Keyword><ows:Keyword>Cartes</ows:Keyword><ows:Keyword>Cartes historiques</ows:Keyword><ows:Keyword>Altitude</ows:Keyword></ows:Keywords><ows:ServiceType>OGC WMTS</ows:ServiceType><ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion><ows:Fees>licences</ows:Fees><ows:AccessConstraints>Conditions Générales d'Utilisation disponibles ici : http://professionnels.ign.fr/doc/Conditions_d_utilisation_des_licences_et_des_services_en_ligne.pdf</ows:AccessConstraints></ows:ServiceIdentification><ows:ServiceProvider><ows:ProviderName>IGN</ows:ProviderName><ows:ProviderSite xlink:href=""/><ows:ServiceContact><ows:IndividualName>Géoportail SAV</ows:IndividualName><ows:PositionName>custodian</ows:PositionName><ows:ContactInfo><ows:Phone><ows:Voice/><ows:Facsimile/></ows:Phone><ows:Address><ows:DeliveryPoint>73 avenue de Paris</ows:DeliveryPoint><ows:City>Saint Mandé</ows:City><ows:AdministrativeArea/><ows:PostalCode>94160</ows:PostalCode><ows:Country>France</ows:Country><ows:ElectronicMailAddress>geop_services@geoportail.fr</ows:ElectronicMailAddress></ows:Address></ows:ContactInfo></ows:ServiceContact></ows:ServiceProvider><ows:OperationsMetadata><ows:Operation name="GetCapabilities"><ows:DCP><ows:HTTP><ows:Get xlink:href="http://wxs.ign.fr/61fs25ymczag0c67naqvvmap/geoportail/wmts?"><ows:Constraint name="GetEncoding"><ows:AllowedValues><ows:Value>KVP</ows:Value></ows:AllowedValues></ows:Constraint></ows:Get></ows:HTTP></ows:DCP></ows:Operation><ows:Operation name="GetTile"><ows:DCP><ows:HTTP><ows:Get xlink:href="http://wxs.ign.fr/61fs25ymczag0c67naqvvmap/geoportail/wmts?"><ows:Constraint name="GetEncoding"><ows:AllowedValues><ows:Value>KVP</ows:Value></ows:AllowedValues></ows:Constraint></ows:Get></ows:HTTP></ows:DCP></ows:Operation></ows:OperationsMetadata><Contents><Layer><ows:Title>Limites administratives</ows:Title><ows:Abstract>Représentation des limites administratives (régions, départements, cantons, communes)</ows:Abstract><ows:Keywords><ows:Keyword>Unités administratives</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.3725 -21.4756</ows:LowerCorner><ows:UpperCorner>55.9259 72.679</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ADMINISTRATIVEUNITS.BOUNDARIES</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>341</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>331</MinTileCol><MaxTileCol>671</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>682</MinTileRow><MaxTileRow>1149</MaxTileRow><MinTileCol>663</MinTileCol><MaxTileCol>1342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1365</MinTileRow><MaxTileRow>2298</MaxTileRow><MinTileCol>1326</MinTileCol><MaxTileCol>2684</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2731</MinTileRow><MaxTileRow>4596</MaxTileRow><MinTileCol>2653</MinTileCol><MaxTileCol>5368</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5462</MinTileRow><MaxTileRow>9193</MaxTileRow><MinTileCol>5307</MinTileCol><MaxTileCol>10737</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10924</MinTileRow><MaxTileRow>18386</MaxTileRow><MinTileCol>10615</MinTileCol><MaxTileCol>21474</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21849</MinTileRow><MaxTileRow>36772</MaxTileRow><MinTileCol>21231</MinTileCol><MaxTileCol>42948</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43698</MinTileRow><MaxTileRow>73544</MaxTileRow><MinTileCol>42462</MinTileCol><MaxTileCol>85897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87397</MinTileRow><MaxTileRow>147089</MaxTileRow><MinTileCol>84925</MinTileCol><MaxTileCol>171795</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>12</MinTileRow><MaxTileRow>29</MaxTileRow><MinTileCol>26</MinTileCol><MaxTileCol>42</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>24</MinTileRow><MaxTileRow>58</MaxTileRow><MinTileCol>54</MinTileCol><MaxTileCol>84</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>49</MinTileRow><MaxTileRow>114</MaxTileRow><MinTileCol>108</MinTileCol><MaxTileCol>168</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>170</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>165</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Cartes IGN</ows:Title><ows:Abstract>Cartes IGN</ows:Abstract><ows:Keywords><ows:Keyword>Cartes</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-180 -68.1389</ows:LowerCorner><ows:UpperCorner>180 80</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>GEOGRAPHICALGRIDSYSTEMS.MAPS</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>340</MinTileRow><MaxTileRow>780</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>990</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>681</MinTileRow><MaxTileRow>1544</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>1981</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1363</MinTileRow><MaxTileRow>3088</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>3962</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2726</MinTileRow><MaxTileRow>6177</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>7924</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5452</MinTileRow><MaxTileRow>12355</MaxTileRow><MinTileCol>81</MinTileCol><MaxTileCol>15847</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>21176</MaxTileRow><MinTileCol>163</MinTileCol><MaxTileCol>31695</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21889</MinTileRow><MaxTileRow>42353</MaxTileRow><MinTileCol>326</MinTileCol><MaxTileCol>63382</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43776</MinTileRow><MaxTileRow>73526</MaxTileRow><MinTileCol>42528</MinTileCol><MaxTileCol>85869</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87557</MinTileRow><MaxTileRow>147052</MaxTileRow><MinTileCol>85058</MinTileCol><MaxTileCol>171738</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>97</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>84</MinTileRow><MaxTileRow>195</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>247</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>170</MinTileRow><MaxTileRow>390</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>495</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2013</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-6.92466 -21.4097</ows:LowerCorner><ows:UpperCorner>55.8741 51.9098</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150409</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>498</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>997</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1995</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>3990</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5482</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>7980</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10965</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>15960</MinTileCol><MaxTileCol>21469</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21931</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>31921</MinTileCol><MaxTileCol>42939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43862</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>63843</MinTileCol><MaxTileCol>85878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87725</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>127686</MinTileCol><MaxTileCol>171757</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>249</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2013</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner><ows:UpperCorner>55.8741 51.9098</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150709</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5482</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10965</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>21469</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21931</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>21268</MinTileCol><MaxTileCol>42939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43862</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>42536</MinTileCol><MaxTileCol>85878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87725</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>85072</MinTileCol><MaxTileCol>171757</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2013</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner><ows:UpperCorner>55.8741 51.9098</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150821</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5482</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10965</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>21469</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21931</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>21268</MinTileCol><MaxTileCol>42939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43862</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>42536</MinTileCol><MaxTileCol>85878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87725</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>85072</MinTileCol><MaxTileCol>171757</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2014</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner><ows:UpperCorner>55.8632 51.1477</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150407</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>85</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>171</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>342</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>684</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5474</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>1368</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10948</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>2736</MinTileCol><MaxTileCol>21468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21897</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>5472</MinTileCol><MaxTileCol>42937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43794</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>10945</MinTileCol><MaxTileCol>85875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87588</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>21890</MinTileCol><MaxTileCol>171750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2014</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner><ows:UpperCorner>55.8632 51.1477</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150409</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>85</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>171</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>342</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>684</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5474</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>1368</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10948</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>2736</MinTileCol><MaxTileCol>21468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21897</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>5472</MinTileCol><MaxTileCol>42937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43794</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>10945</MinTileCol><MaxTileCol>85875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87588</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>21890</MinTileCol><MaxTileCol>171750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2014</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner><ows:UpperCorner>55.8632 51.1477</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150709</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>85</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>171</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>342</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>684</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5474</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>1368</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10948</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>2736</MinTileCol><MaxTileCol>21468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21897</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>5472</MinTileCol><MaxTileCol>42937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43794</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>10945</MinTileCol><MaxTileCol>85875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87588</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>21890</MinTileCol><MaxTileCol>171750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2015</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.58003 43.4205</ows:LowerCorner><ows:UpperCorner>6.38925 49.3404</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2015_PYR-PNG_WLD_WM_20150925</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1400</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2018</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2801</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4037</MinTileCol><MaxTileCol>4241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5602</MinTileRow><MaxTileRow>5994</MaxTileRow><MinTileCol>8075</MinTileCol><MaxTileCol>8482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11205</MinTileRow><MaxTileRow>11988</MaxTileRow><MinTileCol>16150</MinTileCol><MaxTileCol>16964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22411</MinTileRow><MaxTileRow>23976</MaxTileRow><MinTileCol>32300</MinTileCol><MaxTileCol>33929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44823</MinTileRow><MaxTileRow>47952</MaxTileRow><MinTileCol>64600</MinTileCol><MaxTileCol>67858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89646</MinTileRow><MaxTileRow>95904</MaxTileRow><MinTileCol>129200</MinTileCol><MaxTileCol>135716</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2015</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.58003 43.1306</ows:LowerCorner><ows:UpperCorner>6.38925 49.3404</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2015_PYR-PNG_WLD_WM_20151014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1400</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2018</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2801</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4037</MinTileCol><MaxTileCol>4241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5602</MinTileRow><MaxTileRow>6012</MaxTileRow><MinTileCol>8075</MinTileCol><MaxTileCol>8482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11205</MinTileRow><MaxTileRow>12024</MaxTileRow><MinTileCol>16150</MinTileCol><MaxTileCol>16964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22411</MinTileRow><MaxTileRow>24048</MaxTileRow><MinTileCol>32300</MinTileCol><MaxTileCol>33929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44823</MinTileRow><MaxTileRow>48097</MaxTileRow><MinTileCol>64600</MinTileCol><MaxTileCol>67858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89646</MinTileRow><MaxTileRow>96194</MaxTileRow><MinTileCol>129200</MinTileCol><MaxTileCol>135716</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2013</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.563585 44.8809</ows:LowerCorner><ows:UpperCorner>4.29191 50.3879</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2013_PYR-JPEG_WLD_WM_2014-09-05</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>691</MinTileRow><MaxTileRow>737</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1382</MinTileRow><MaxTileRow>1475</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2764</MinTileRow><MaxTileRow>2950</MaxTileRow><MinTileCol>4109</MinTileCol><MaxTileCol>4193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5528</MinTileRow><MaxTileRow>5900</MaxTileRow><MinTileCol>8219</MinTileCol><MaxTileCol>8386</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11057</MinTileRow><MaxTileRow>11800</MaxTileRow><MinTileCol>16438</MinTileCol><MaxTileCol>16773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22115</MinTileRow><MaxTileRow>23600</MaxTileRow><MinTileCol>32876</MinTileCol><MaxTileCol>33547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44231</MinTileRow><MaxTileRow>47201</MaxTileRow><MinTileCol>65752</MinTileCol><MaxTileCol>67094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 44.6002</ows:LowerCorner><ows:UpperCorner>4.45587 46.8203</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-09-18</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>360</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>721</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1443</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2887</MinTileRow><MaxTileRow>2959</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4196</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5774</MinTileRow><MaxTileRow>5919</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8392</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11548</MinTileRow><MaxTileRow>11838</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>16785</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23097</MinTileRow><MaxTileRow>23676</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>33571</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46195</MinTileRow><MaxTileRow>47352</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>67143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 46.8203</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-10-10</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>360</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>721</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1443</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2887</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5774</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11548</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23097</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46195</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 48.0605</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-10-24</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1423</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2846</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5692</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11384</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22769</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45539</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 49.9972</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-11-07</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>347</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>694</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1389</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2778</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5557</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11114</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22228</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44457</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>173</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.34338 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-11-24</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2063</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4126</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8253</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16507</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>33014</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>66028</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.02438 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-010</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4054</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8108</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16217</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>32435</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>64870</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.0844953 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-03</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2048</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4096</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8192</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16385</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>32770</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>65540</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-22</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>31823</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>63646</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 49.9972</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-17-07</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>347</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>694</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1389</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2778</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5557</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11114</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22228</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44457</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>173</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>SPOT 6 - 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2015-01-22</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>31823</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>63646</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche RapidEye 2010</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner><ows:UpperCorner>10.961 50.9218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-RAPIDEYE-2010_PYR-JPEG_WLD_WM_WMTS</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1531</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3063</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6126</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12253</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17277</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche RapidEye 2011</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner><ows:UpperCorner>10.961 51.1752</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-RAPIDEYE-2011_PYR-JPEG_WLD_WM_WMTS</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>383</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>767</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1534</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3068</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6137</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12275</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>270</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>RAPIDEYE - 2011</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner><ows:UpperCorner>10.961 51.1752</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-RAPIDEYE-2011_PYR-JPEG_WLD_WM_WMTS2</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>383</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>767</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1534</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3068</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6137</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12275</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>270</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT01 2015</ows:Title><ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT01 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.36 41.303</ows:LowerCorner><ows:UpperCorner>9.72838 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-SPOT-2015_PYR-JPEG_WLD_WM_CHAINED_FRANCE-2015-LOT01-2015</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12247</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24494</MaxTileRow><MinTileCol>31822</MinTileCol><MaxTileCol>34523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48989</MaxTileRow><MinTileCol>63645</MinTileCol><MaxTileCol>69047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT05 2015</ows:Title><ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT05 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.36 41.303</ows:LowerCorner><ows:UpperCorner>9.72838 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT-SPOT-2015_PYR-JPEG_WLD_WM_CHAINED_FRANCE-2015-LOT05-2015</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12247</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24494</MaxTileRow><MinTileCol>31822</MinTileCol><MaxTileCol>34523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48989</MaxTileRow><MinTileCol>63645</MinTileCol><MaxTileCol>69047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ALES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de ALES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.94776 44.0082</ows:LowerCorner><ows:UpperCorner>4.22692 44.2359</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ALES-2014-03-13-38958824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1046</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1485</MinTileRow><MaxTileRow>1489</MaxTileRow><MinTileCol>2092</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2971</MinTileRow><MaxTileRow>2978</MaxTileRow><MinTileCol>4185</MinTileCol><MaxTileCol>4192</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5942</MinTileRow><MaxTileRow>5956</MaxTileRow><MinTileCol>8371</MinTileCol><MaxTileCol>8384</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11885</MinTileRow><MaxTileRow>11913</MaxTileRow><MinTileCol>16743</MinTileCol><MaxTileCol>16768</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23770</MinTileRow><MaxTileRow>23827</MaxTileRow><MinTileCol>33487</MinTileCol><MaxTileCol>33537</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47541</MinTileRow><MaxTileRow>47655</MaxTileRow><MinTileCol>66974</MinTileCol><MaxTileCol>67075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95082</MinTileRow><MaxTileRow>95310</MaxTileRow><MinTileCol>133948</MinTileCol><MaxTileCol>134150</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ALSACE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de ALSACE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.80774 47.3669</ows:LowerCorner><ows:UpperCorner>8.24454 49.1139</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ALSACE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>702</MinTileRow><MaxTileRow>716</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1405</MinTileRow><MaxTileRow>1433</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2810</MinTileRow><MaxTileRow>2867</MaxTileRow><MinTileCol>4251</MinTileCol><MaxTileCol>4283</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5620</MinTileRow><MaxTileRow>5735</MaxTileRow><MinTileCol>8502</MinTileCol><MaxTileCol>8566</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11240</MinTileRow><MaxTileRow>11471</MaxTileRow><MinTileCol>17005</MinTileCol><MaxTileCol>17133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22481</MinTileRow><MaxTileRow>22943</MaxTileRow><MinTileCol>34011</MinTileCol><MaxTileCol>34267</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44963</MinTileRow><MaxTileRow>45887</MaxTileRow><MinTileCol>68023</MinTileCol><MaxTileCol>68535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>267</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Amiens</ows:Title><ows:Abstract>Orthophotographies satellites de Amiens issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.16454 49.79</ows:LowerCorner><ows:UpperCorner>2.45875 49.9624</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AMIENS-2013-08-02-39754444</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>347</MinTileRow><MaxTileRow>348</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>694</MinTileRow><MaxTileRow>696</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1389</MinTileRow><MaxTileRow>1392</MaxTileRow><MinTileCol>2072</MinTileCol><MaxTileCol>2075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2779</MinTileRow><MaxTileRow>2785</MaxTileRow><MinTileCol>4145</MinTileCol><MaxTileCol>4151</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5559</MinTileRow><MaxTileRow>5571</MaxTileRow><MinTileCol>8290</MinTileCol><MaxTileCol>8303</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11118</MinTileRow><MaxTileRow>11142</MaxTileRow><MinTileCol>16580</MinTileCol><MaxTileCol>16607</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22236</MinTileRow><MaxTileRow>22285</MaxTileRow><MinTileCol>33161</MinTileCol><MaxTileCol>33215</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44473</MinTileRow><MaxTileRow>44570</MaxTileRow><MinTileCol>66323</MinTileCol><MaxTileCol>66431</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88947</MinTileRow><MaxTileRow>89140</MaxTileRow><MinTileCol>132647</MinTileCol><MaxTileCol>132862</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>173</MinTileRow><MaxTileRow>174</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ANNECY 2014</ows:Title><ows:Abstract>Orthophotographies satellites de ANNECY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.95957 45.751</ows:LowerCorner><ows:UpperCorner>6.25668 46.0018</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ANNECY-2014-03-08-38230574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1457</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2115</MinTileCol><MaxTileCol>2119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2914</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4231</MinTileCol><MaxTileCol>4238</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5829</MinTileRow><MaxTileRow>5844</MaxTileRow><MinTileCol>8463</MinTileCol><MaxTileCol>8476</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11658</MinTileRow><MaxTileRow>11689</MaxTileRow><MinTileCol>16926</MinTileCol><MaxTileCol>16952</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23316</MinTileRow><MaxTileRow>23378</MaxTileRow><MinTileCol>33852</MinTileCol><MaxTileCol>33905</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46632</MinTileRow><MaxTileRow>46757</MaxTileRow><MinTileCol>67705</MinTileCol><MaxTileCol>67811</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93264</MinTileRow><MaxTileRow>93515</MaxTileRow><MinTileCol>135411</MinTileCol><MaxTileCol>135623</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de AQUITAINE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de AQUITAINE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.02438 42.7212</ows:LowerCorner><ows:UpperCorner>1.52198 45.7599</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AQUITAINE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>377</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>754</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1461</MinTileRow><MaxTileRow>1508</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2922</MinTileRow><MaxTileRow>3017</MaxTileRow><MinTileCol>4054</MinTileCol><MaxTileCol>4129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5845</MinTileRow><MaxTileRow>6034</MaxTileRow><MinTileCol>8108</MinTileCol><MaxTileCol>8258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11690</MinTileRow><MaxTileRow>12069</MaxTileRow><MinTileCol>16217</MinTileCol><MaxTileCol>16517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23381</MinTileRow><MaxTileRow>24139</MaxTileRow><MinTileCol>32435</MinTileCol><MaxTileCol>33035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46762</MinTileRow><MaxTileRow>48278</MaxTileRow><MinTileCol>64870</MinTileCol><MaxTileCol>66071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ARCACHONBASSIN</ows:Title><ows:Abstract>Orthophotographies satellites de ARCACHONBASSIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.27459 44.608</ows:LowerCorner><ows:UpperCorner>-0.997329 44.7887</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ARCACHONBASSIN-2013-12-04-39689753</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2953</MinTileRow><MaxTileRow>2959</MaxTileRow><MinTileCol>4066</MinTileCol><MaxTileCol>4073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5907</MinTileRow><MaxTileRow>5918</MaxTileRow><MinTileCol>8133</MinTileCol><MaxTileCol>8146</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11814</MinTileRow><MaxTileRow>11837</MaxTileRow><MinTileCol>16267</MinTileCol><MaxTileCol>16292</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23629</MinTileRow><MaxTileRow>23674</MaxTileRow><MinTileCol>32535</MinTileCol><MaxTileCol>32585</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47258</MinTileRow><MaxTileRow>47349</MaxTileRow><MinTileCol>65071</MinTileCol><MaxTileCol>65171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94516</MinTileRow><MaxTileRow>94698</MaxTileRow><MinTileCol>130143</MinTileCol><MaxTileCol>130342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Aurignac</ows:Title><ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.735621 43.1905</ows:LowerCorner><ows:UpperCorner>0.971231 43.2491</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-09-23-39867200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3004</MaxTileRow><MinTileCol>4112</MinTileCol><MaxTileCol>4118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6008</MaxTileRow><MinTileCol>8225</MinTileCol><MaxTileCol>8236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12009</MinTileRow><MaxTileRow>12016</MaxTileRow><MinTileCol>16451</MinTileCol><MaxTileCol>16472</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24019</MinTileRow><MaxTileRow>24033</MaxTileRow><MinTileCol>32902</MinTileCol><MaxTileCol>32944</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48039</MinTileRow><MaxTileRow>48067</MaxTileRow><MinTileCol>65804</MinTileCol><MaxTileCol>65889</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96078</MinTileRow><MaxTileRow>96134</MaxTileRow><MinTileCol>131608</MinTileCol><MaxTileCol>131779</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Aurignac</ows:Title><ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.735621 43.1905</ows:LowerCorner><ows:UpperCorner>0.971231 43.2491</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-09-23-39905819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3004</MaxTileRow><MinTileCol>4112</MinTileCol><MaxTileCol>4118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6008</MaxTileRow><MinTileCol>8225</MinTileCol><MaxTileCol>8236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12009</MinTileRow><MaxTileRow>12016</MaxTileRow><MinTileCol>16451</MinTileCol><MaxTileCol>16472</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24019</MinTileRow><MaxTileRow>24033</MaxTileRow><MinTileCol>32902</MinTileCol><MaxTileCol>32944</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48039</MinTileRow><MaxTileRow>48067</MaxTileRow><MinTileCol>65804</MinTileCol><MaxTileCol>65889</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96078</MinTileRow><MaxTileRow>96134</MaxTileRow><MinTileCol>131608</MinTileCol><MaxTileCol>131779</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Aurignac</ows:Title><ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.74194 43.1997</ows:LowerCorner><ows:UpperCorner>0.983207 43.4022</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-10-12-40067122</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2997</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4112</MinTileCol><MaxTileCol>4118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5995</MinTileRow><MaxTileRow>6007</MaxTileRow><MinTileCol>8225</MinTileCol><MaxTileCol>8236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11990</MinTileRow><MaxTileRow>12015</MaxTileRow><MinTileCol>16451</MinTileCol><MaxTileCol>16473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23980</MinTileRow><MaxTileRow>24030</MaxTileRow><MinTileCol>32903</MinTileCol><MaxTileCol>32946</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47961</MinTileRow><MaxTileRow>48061</MaxTileRow><MinTileCol>65806</MinTileCol><MaxTileCol>65892</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95922</MinTileRow><MaxTileRow>96122</MaxTileRow><MinTileCol>131612</MinTileCol><MaxTileCol>131785</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Aurignac</ows:Title><ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.74194 43.2087</ows:LowerCorner><ows:UpperCorner>0.982893 43.4022</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-10-12-40111509</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2997</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4112</MinTileCol><MaxTileCol>4118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5995</MinTileRow><MaxTileRow>6007</MaxTileRow><MinTileCol>8225</MinTileCol><MaxTileCol>8236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11990</MinTileRow><MaxTileRow>12014</MaxTileRow><MinTileCol>16451</MinTileCol><MaxTileCol>16473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23980</MinTileRow><MaxTileRow>24029</MaxTileRow><MinTileCol>32903</MinTileCol><MaxTileCol>32946</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47961</MinTileRow><MaxTileRow>48058</MaxTileRow><MinTileCol>65806</MinTileCol><MaxTileCol>65892</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95922</MinTileRow><MaxTileRow>96116</MaxTileRow><MinTileCol>131612</MinTileCol><MaxTileCol>131785</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de AUVERGNE-2014</ows:Title><ows:Abstract>Orthophotographies satellites de AUVERGNE-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.05557 44.6002</ows:LowerCorner><ows:UpperCorner>4.45587 46.8203</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AUVERGNE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>360</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>721</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1443</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2887</MinTileRow><MaxTileRow>2959</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4196</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5774</MinTileRow><MaxTileRow>5919</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8392</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11548</MinTileRow><MaxTileRow>11838</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>16785</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23097</MinTileRow><MaxTileRow>23676</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>33571</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46195</MinTileRow><MaxTileRow>47352</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>67143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de AVIGNON 2014</ows:Title><ows:Abstract>Orthophotographies satellites de AVIGNON issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.67779 43.8086</ows:LowerCorner><ows:UpperCorner>4.95819 44.02</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AVIGNON-2014-04-09-38462569</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1050</MinTileCol><MaxTileCol>1052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2101</MinTileCol><MaxTileCol>2104</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2978</MinTileRow><MaxTileRow>2984</MaxTileRow><MinTileCol>4202</MinTileCol><MaxTileCol>4208</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5956</MinTileRow><MaxTileRow>5969</MaxTileRow><MinTileCol>8405</MinTileCol><MaxTileCol>8417</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11912</MinTileRow><MaxTileRow>11939</MaxTileRow><MinTileCol>16810</MinTileCol><MaxTileCol>16835</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23825</MinTileRow><MaxTileRow>23878</MaxTileRow><MinTileCol>33620</MinTileCol><MaxTileCol>33670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47651</MinTileRow><MaxTileRow>47756</MaxTileRow><MinTileCol>67240</MinTileCol><MaxTileCol>67341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95302</MinTileRow><MaxTileRow>95513</MaxTileRow><MinTileCol>134480</MinTileCol><MaxTileCol>134682</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BASSE-NORMANDIE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BASSE-NORMANDIE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.00865 48.0207</ows:LowerCorner><ows:UpperCorner>1.09203 49.8309</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BASSE-NORMANDIE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>696</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1012</MinTileCol><MaxTileCol>1030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1393</MinTileRow><MaxTileRow>1422</MaxTileRow><MinTileCol>2025</MinTileCol><MaxTileCol>2060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2787</MinTileRow><MaxTileRow>2844</MaxTileRow><MinTileCol>4050</MinTileCol><MaxTileCol>4120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5574</MinTileRow><MaxTileRow>5688</MaxTileRow><MinTileCol>8100</MinTileCol><MaxTileCol>8241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11148</MinTileRow><MaxTileRow>11376</MaxTileRow><MinTileCol>16201</MinTileCol><MaxTileCol>16483</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22296</MinTileRow><MaxTileRow>22753</MaxTileRow><MinTileCol>32402</MinTileCol><MaxTileCol>32966</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44592</MinTileRow><MaxTileRow>45506</MaxTileRow><MinTileCol>64804</MinTileCol><MaxTileCol>65933</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.16799 45.4248</ows:LowerCorner><ows:UpperCorner>-0.787325 46.0841</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-04-25-40507946</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1017</MinTileCol><MaxTileCol>1019</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1455</MinTileRow><MaxTileRow>1466</MaxTileRow><MinTileCol>2035</MinTileCol><MaxTileCol>2038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2911</MinTileRow><MaxTileRow>2932</MaxTileRow><MinTileCol>4070</MinTileCol><MaxTileCol>4077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5823</MinTileRow><MaxTileRow>5865</MaxTileRow><MinTileCol>8140</MinTileCol><MaxTileCol>8154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11646</MinTileRow><MaxTileRow>11731</MaxTileRow><MinTileCol>16280</MinTileCol><MaxTileCol>16308</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23293</MinTileRow><MaxTileRow>23462</MaxTileRow><MinTileCol>32560</MinTileCol><MaxTileCol>32617</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46586</MinTileRow><MaxTileRow>46925</MaxTileRow><MinTileCol>65121</MinTileCol><MaxTileCol>65235</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93172</MinTileRow><MaxTileRow>93851</MaxTileRow><MinTileCol>130243</MinTileCol><MaxTileCol>130471</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.45583 45.9176</ows:LowerCorner><ows:UpperCorner>-1.20864 46.1153</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-05-27-40794522</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1455</MinTileRow><MaxTileRow>1458</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2910</MinTileRow><MaxTileRow>2917</MaxTileRow><MinTileCol>4062</MinTileCol><MaxTileCol>4068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5821</MinTileRow><MaxTileRow>5834</MaxTileRow><MinTileCol>8125</MinTileCol><MaxTileCol>8136</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11642</MinTileRow><MaxTileRow>11668</MaxTileRow><MinTileCol>16251</MinTileCol><MaxTileCol>16273</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23285</MinTileRow><MaxTileRow>23336</MaxTileRow><MinTileCol>32502</MinTileCol><MaxTileCol>32547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46570</MinTileRow><MaxTileRow>46673</MaxTileRow><MinTileCol>65005</MinTileCol><MaxTileCol>65095</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93140</MinTileRow><MaxTileRow>93346</MaxTileRow><MinTileCol>130011</MinTileCol><MaxTileCol>130191</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.955482 45.523</ows:LowerCorner><ows:UpperCorner>-0.575906 46.3702</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-04-40027333</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1464</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2902</MinTileRow><MaxTileRow>2929</MaxTileRow><MinTileCol>4075</MinTileCol><MaxTileCol>4082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5804</MinTileRow><MaxTileRow>5859</MaxTileRow><MinTileCol>8150</MinTileCol><MaxTileCol>8164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11609</MinTileRow><MaxTileRow>11719</MaxTileRow><MinTileCol>16301</MinTileCol><MaxTileCol>16328</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23218</MinTileRow><MaxTileRow>23438</MaxTileRow><MinTileCol>32603</MinTileCol><MaxTileCol>32656</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46437</MinTileRow><MaxTileRow>46877</MaxTileRow><MinTileCol>65207</MinTileCol><MaxTileCol>65313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92875</MinTileRow><MaxTileRow>93755</MaxTileRow><MinTileCol>130415</MinTileCol><MaxTileCol>130626</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.474961 45.7715</ows:LowerCorner><ows:UpperCorner>-0.153929 45.9785</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-16-40523571</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1457</MinTileRow><MaxTileRow>1460</MaxTileRow><MinTileCol>2042</MinTileCol><MaxTileCol>2046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2915</MinTileRow><MaxTileRow>2921</MaxTileRow><MinTileCol>4085</MinTileCol><MaxTileCol>4092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5830</MinTileRow><MaxTileRow>5843</MaxTileRow><MinTileCol>8170</MinTileCol><MaxTileCol>8185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11660</MinTileRow><MaxTileRow>11687</MaxTileRow><MinTileCol>16341</MinTileCol><MaxTileCol>16370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23320</MinTileRow><MaxTileRow>23374</MaxTileRow><MinTileCol>32683</MinTileCol><MaxTileCol>32740</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46641</MinTileRow><MaxTileRow>46749</MaxTileRow><MinTileCol>65366</MinTileCol><MaxTileCol>65480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93283</MinTileRow><MaxTileRow>93499</MaxTileRow><MinTileCol>130733</MinTileCol><MaxTileCol>130960</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.726144 45.5209</ows:LowerCorner><ows:UpperCorner>-0.344945 46.0625</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-16-40534571</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2912</MinTileRow><MaxTileRow>2930</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5824</MinTileRow><MaxTileRow>5860</MaxTileRow><MinTileCol>8160</MinTileCol><MaxTileCol>8175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11649</MinTileRow><MaxTileRow>11720</MaxTileRow><MinTileCol>16320</MinTileCol><MaxTileCol>16350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23298</MinTileRow><MaxTileRow>23440</MaxTileRow><MinTileCol>32641</MinTileCol><MaxTileCol>32700</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46597</MinTileRow><MaxTileRow>46880</MaxTileRow><MinTileCol>65283</MinTileCol><MaxTileCol>65400</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93195</MinTileRow><MaxTileRow>93760</MaxTileRow><MinTileCol>130566</MinTileCol><MaxTileCol>130801</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.35891 45.8222</ows:LowerCorner><ows:UpperCorner>-1.04673 46.0401</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-06-40363199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1459</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2919</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5826</MinTileRow><MaxTileRow>5839</MaxTileRow><MinTileCol>8130</MinTileCol><MaxTileCol>8144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11652</MinTileRow><MaxTileRow>11679</MaxTileRow><MinTileCol>16260</MinTileCol><MaxTileCol>16288</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23304</MinTileRow><MaxTileRow>23359</MaxTileRow><MinTileCol>32520</MinTileCol><MaxTileCol>32576</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46609</MinTileRow><MaxTileRow>46719</MaxTileRow><MinTileCol>65041</MinTileCol><MaxTileCol>65152</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93218</MinTileRow><MaxTileRow>93438</MaxTileRow><MinTileCol>130083</MinTileCol><MaxTileCol>130304</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.44345 45.8457</ows:LowerCorner><ows:UpperCorner>-1.21602 45.962</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-06-40371824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1457</MinTileRow><MaxTileRow>1459</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2915</MinTileRow><MaxTileRow>2919</MaxTileRow><MinTileCol>4063</MinTileCol><MaxTileCol>4068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5831</MinTileRow><MaxTileRow>5838</MaxTileRow><MinTileCol>8126</MinTileCol><MaxTileCol>8136</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11662</MinTileRow><MaxTileRow>11677</MaxTileRow><MinTileCol>16252</MinTileCol><MaxTileCol>16273</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23325</MinTileRow><MaxTileRow>23354</MaxTileRow><MinTileCol>32505</MinTileCol><MaxTileCol>32546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46650</MinTileRow><MaxTileRow>46709</MaxTileRow><MinTileCol>65010</MinTileCol><MaxTileCol>65093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93300</MinTileRow><MaxTileRow>93418</MaxTileRow><MinTileCol>130020</MinTileCol><MaxTileCol>130186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.16603 46.0283</ows:LowerCorner><ows:UpperCorner>-0.803031 46.3998</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41005459</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1017</MinTileCol><MaxTileCol>1019</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1450</MinTileRow><MaxTileRow>1456</MaxTileRow><MinTileCol>2034</MinTileCol><MaxTileCol>2038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2901</MinTileRow><MaxTileRow>2913</MaxTileRow><MinTileCol>4069</MinTileCol><MaxTileCol>4077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5802</MinTileRow><MaxTileRow>5826</MaxTileRow><MinTileCol>8139</MinTileCol><MaxTileCol>8154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11605</MinTileRow><MaxTileRow>11652</MaxTileRow><MinTileCol>16279</MinTileCol><MaxTileCol>16309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23210</MinTileRow><MaxTileRow>23305</MaxTileRow><MinTileCol>32559</MinTileCol><MaxTileCol>32618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46421</MinTileRow><MaxTileRow>46611</MaxTileRow><MinTileCol>65119</MinTileCol><MaxTileCol>65237</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92842</MinTileRow><MaxTileRow>93222</MaxTileRow><MinTileCol>130238</MinTileCol><MaxTileCol>130475</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.397 45.9836</ows:LowerCorner><ows:UpperCorner>-1.01993 46.3562</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41018576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2902</MinTileRow><MaxTileRow>2914</MaxTileRow><MinTileCol>4064</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5805</MinTileRow><MaxTileRow>5829</MaxTileRow><MinTileCol>8129</MinTileCol><MaxTileCol>8144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11610</MinTileRow><MaxTileRow>11658</MaxTileRow><MinTileCol>16259</MinTileCol><MaxTileCol>16289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23221</MinTileRow><MaxTileRow>23316</MaxTileRow><MinTileCol>32518</MinTileCol><MaxTileCol>32578</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46443</MinTileRow><MaxTileRow>46633</MaxTileRow><MinTileCol>65036</MinTileCol><MaxTileCol>65156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92886</MinTileRow><MaxTileRow>93267</MaxTileRow><MinTileCol>130073</MinTileCol><MaxTileCol>130312</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.33324 45.571</ows:LowerCorner><ows:UpperCorner>-1.01553 45.8786</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41029325</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1459</MinTileRow><MaxTileRow>1464</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2918</MinTileRow><MaxTileRow>2928</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5837</MinTileRow><MaxTileRow>5856</MaxTileRow><MinTileCol>8131</MinTileCol><MaxTileCol>8145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11674</MinTileRow><MaxTileRow>11712</MaxTileRow><MinTileCol>16262</MinTileCol><MaxTileCol>16290</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23348</MinTileRow><MaxTileRow>23424</MaxTileRow><MinTileCol>32525</MinTileCol><MaxTileCol>32580</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46697</MinTileRow><MaxTileRow>46849</MaxTileRow><MinTileCol>65050</MinTileCol><MaxTileCol>65161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93394</MinTileRow><MaxTileRow>93699</MaxTileRow><MinTileCol>130100</MinTileCol><MaxTileCol>130322</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.503355 45.0597</ows:LowerCorner><ows:UpperCorner>-0.113846 45.8166</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-18-40793951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>736</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1460</MinTileRow><MaxTileRow>1472</MaxTileRow><MinTileCol>2042</MinTileCol><MaxTileCol>2046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2920</MinTileRow><MaxTileRow>2944</MaxTileRow><MinTileCol>4085</MinTileCol><MaxTileCol>4092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5841</MinTileRow><MaxTileRow>5889</MaxTileRow><MinTileCol>8170</MinTileCol><MaxTileCol>8185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11682</MinTileRow><MaxTileRow>11778</MaxTileRow><MinTileCol>16341</MinTileCol><MaxTileCol>16370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23364</MinTileRow><MaxTileRow>23557</MaxTileRow><MinTileCol>32682</MinTileCol><MaxTileCol>32740</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46728</MinTileRow><MaxTileRow>47115</MaxTileRow><MinTileCol>65364</MinTileCol><MaxTileCol>65480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93456</MinTileRow><MaxTileRow>94231</MaxTileRow><MinTileCol>130728</MinTileCol><MaxTileCol>130961</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.923963 45.2793</ows:LowerCorner><ows:UpperCorner>-0.5858 45.5688</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-18-40814075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1464</MinTileRow><MaxTileRow>1468</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2928</MinTileRow><MaxTileRow>2937</MaxTileRow><MinTileCol>4075</MinTileCol><MaxTileCol>4082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5856</MinTileRow><MaxTileRow>5875</MaxTileRow><MinTileCol>8150</MinTileCol><MaxTileCol>8164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11713</MinTileRow><MaxTileRow>11750</MaxTileRow><MinTileCol>16300</MinTileCol><MaxTileCol>16329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23427</MinTileRow><MaxTileRow>23500</MaxTileRow><MinTileCol>32600</MinTileCol><MaxTileCol>32659</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46855</MinTileRow><MaxTileRow>47001</MaxTileRow><MinTileCol>65201</MinTileCol><MaxTileCol>65319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93711</MinTileRow><MaxTileRow>94003</MaxTileRow><MinTileCol>130403</MinTileCol><MaxTileCol>130638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.244285 45.0575</ows:LowerCorner><ows:UpperCorner>0.0643915 45.3535</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-20-39937449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>511</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>733</MinTileRow><MaxTileRow>736</MaxTileRow><MinTileCol>1022</MinTileCol><MaxTileCol>1024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1467</MinTileRow><MaxTileRow>1472</MaxTileRow><MinTileCol>2045</MinTileCol><MaxTileCol>2048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2935</MinTileRow><MaxTileRow>2944</MaxTileRow><MinTileCol>4090</MinTileCol><MaxTileCol>4097</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5871</MinTileRow><MaxTileRow>5889</MaxTileRow><MinTileCol>8181</MinTileCol><MaxTileCol>8194</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11742</MinTileRow><MaxTileRow>11779</MaxTileRow><MinTileCol>16362</MinTileCol><MaxTileCol>16389</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23485</MinTileRow><MaxTileRow>23559</MaxTileRow><MinTileCol>32724</MinTileCol><MaxTileCol>32778</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46970</MinTileRow><MaxTileRow>47119</MaxTileRow><MinTileCol>65449</MinTileCol><MaxTileCol>65557</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93941</MinTileRow><MaxTileRow>94238</MaxTileRow><MinTileCol>130899</MinTileCol><MaxTileCol>131114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.312644 45.7405</ows:LowerCorner><ows:UpperCorner>-0.0362079 46.0717</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-25-40593324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>511</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1022</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2044</MinTileCol><MaxTileCol>2047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2912</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4089</MinTileCol><MaxTileCol>4094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5824</MinTileRow><MaxTileRow>5845</MaxTileRow><MinTileCol>8178</MinTileCol><MaxTileCol>8189</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11648</MinTileRow><MaxTileRow>11691</MaxTileRow><MinTileCol>16356</MinTileCol><MaxTileCol>16379</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23297</MinTileRow><MaxTileRow>23382</MaxTileRow><MinTileCol>32713</MinTileCol><MaxTileCol>32759</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46594</MinTileRow><MaxTileRow>46765</MaxTileRow><MinTileCol>65426</MinTileCol><MaxTileCol>65519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93188</MinTileRow><MaxTileRow>93530</MaxTileRow><MinTileCol>130853</MinTileCol><MaxTileCol>131038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.697679 45.9899</ows:LowerCorner><ows:UpperCorner>-0.373399 46.2155</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40721948</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1453</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2907</MinTileRow><MaxTileRow>2914</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5815</MinTileRow><MaxTileRow>5829</MaxTileRow><MinTileCol>8160</MinTileCol><MaxTileCol>8174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11630</MinTileRow><MaxTileRow>11658</MaxTileRow><MinTileCol>16321</MinTileCol><MaxTileCol>16349</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23260</MinTileRow><MaxTileRow>23316</MaxTileRow><MinTileCol>32642</MinTileCol><MaxTileCol>32699</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46521</MinTileRow><MaxTileRow>46632</MaxTileRow><MinTileCol>65285</MinTileCol><MaxTileCol>65398</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93042</MinTileRow><MaxTileRow>93264</MaxTileRow><MinTileCol>130570</MinTileCol><MaxTileCol>130797</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.472278 45.9249</ows:LowerCorner><ows:UpperCorner>-0.149795 46.1408</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40731198</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1454</MinTileRow><MaxTileRow>1458</MaxTileRow><MinTileCol>2042</MinTileCol><MaxTileCol>2046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2909</MinTileRow><MaxTileRow>2916</MaxTileRow><MinTileCol>4085</MinTileCol><MaxTileCol>4092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5819</MinTileRow><MaxTileRow>5833</MaxTileRow><MinTileCol>8170</MinTileCol><MaxTileCol>8185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11639</MinTileRow><MaxTileRow>11666</MaxTileRow><MinTileCol>16341</MinTileCol><MaxTileCol>16370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23279</MinTileRow><MaxTileRow>23333</MaxTileRow><MinTileCol>32683</MinTileCol><MaxTileCol>32740</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46559</MinTileRow><MaxTileRow>46667</MaxTileRow><MinTileCol>65366</MinTileCol><MaxTileCol>65481</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93119</MinTileRow><MaxTileRow>93335</MaxTileRow><MinTileCol>130732</MinTileCol><MaxTileCol>130962</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.30026 45.8759</ows:LowerCorner><ows:UpperCorner>-0.0436427 46.0807</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40740447</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>511</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1022</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1455</MinTileRow><MaxTileRow>1459</MaxTileRow><MinTileCol>2044</MinTileCol><MaxTileCol>2047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2911</MinTileRow><MaxTileRow>2918</MaxTileRow><MinTileCol>4089</MinTileCol><MaxTileCol>4094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5823</MinTileRow><MaxTileRow>5836</MaxTileRow><MinTileCol>8178</MinTileCol><MaxTileCol>8189</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11647</MinTileRow><MaxTileRow>11673</MaxTileRow><MinTileCol>16356</MinTileCol><MaxTileCol>16379</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23295</MinTileRow><MaxTileRow>23347</MaxTileRow><MinTileCol>32713</MinTileCol><MaxTileCol>32759</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46591</MinTileRow><MaxTileRow>46695</MaxTileRow><MinTileCol>65426</MinTileCol><MaxTileCol>65519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93182</MinTileRow><MaxTileRow>93390</MaxTileRow><MinTileCol>130853</MinTileCol><MaxTileCol>131038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.898358 45.3611</ows:LowerCorner><ows:UpperCorner>-0.603782 45.5684</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-09-22-40328576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1464</MinTileRow><MaxTileRow>1467</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2928</MinTileRow><MaxTileRow>2935</MaxTileRow><MinTileCol>4075</MinTileCol><MaxTileCol>4082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5857</MinTileRow><MaxTileRow>5870</MaxTileRow><MinTileCol>8151</MinTileCol><MaxTileCol>8164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11714</MinTileRow><MaxTileRow>11740</MaxTileRow><MinTileCol>16302</MinTileCol><MaxTileCol>16328</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23429</MinTileRow><MaxTileRow>23480</MaxTileRow><MinTileCol>32604</MinTileCol><MaxTileCol>32656</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46858</MinTileRow><MaxTileRow>46961</MaxTileRow><MinTileCol>65208</MinTileCol><MaxTileCol>65312</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93717</MinTileRow><MaxTileRow>93923</MaxTileRow><MinTileCol>130417</MinTileCol><MaxTileCol>130624</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.682134 45.1971</ows:LowerCorner><ows:UpperCorner>-0.389156 45.4038</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-09-22-40337826</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>733</MinTileRow><MaxTileRow>735</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1467</MinTileRow><MaxTileRow>1470</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2934</MinTileRow><MaxTileRow>2940</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5868</MinTileRow><MaxTileRow>5880</MaxTileRow><MinTileCol>8161</MinTileCol><MaxTileCol>8174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11736</MinTileRow><MaxTileRow>11761</MaxTileRow><MinTileCol>16322</MinTileCol><MaxTileCol>16348</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23472</MinTileRow><MaxTileRow>23522</MaxTileRow><MinTileCol>32644</MinTileCol><MaxTileCol>32697</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46945</MinTileRow><MaxTileRow>47044</MaxTileRow><MinTileCol>65289</MinTileCol><MaxTileCol>65394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93890</MinTileRow><MaxTileRow>94089</MaxTileRow><MinTileCol>130579</MinTileCol><MaxTileCol>130788</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.692889 45.35</ows:LowerCorner><ows:UpperCorner>-0.372951 45.5666</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-10-30-40795201</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1464</MinTileRow><MaxTileRow>1467</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2928</MinTileRow><MaxTileRow>2935</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5857</MinTileRow><MaxTileRow>5870</MaxTileRow><MinTileCol>8160</MinTileCol><MaxTileCol>8174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11715</MinTileRow><MaxTileRow>11741</MaxTileRow><MinTileCol>16321</MinTileCol><MaxTileCol>16349</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23430</MinTileRow><MaxTileRow>23482</MaxTileRow><MinTileCol>32642</MinTileCol><MaxTileCol>32699</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46860</MinTileRow><MaxTileRow>46965</MaxTileRow><MinTileCol>65284</MinTileCol><MaxTileCol>65399</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93720</MinTileRow><MaxTileRow>93930</MaxTileRow><MinTileCol>130569</MinTileCol><MaxTileCol>130799</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.48028 45.123</ows:LowerCorner><ows:UpperCorner>-0.168198 45.6532</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-12-16-40098951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>735</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1462</MinTileRow><MaxTileRow>1471</MaxTileRow><MinTileCol>2042</MinTileCol><MaxTileCol>2046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2925</MinTileRow><MaxTileRow>2942</MaxTileRow><MinTileCol>4085</MinTileCol><MaxTileCol>4092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5851</MinTileRow><MaxTileRow>5885</MaxTileRow><MinTileCol>8171</MinTileCol><MaxTileCol>8184</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11703</MinTileRow><MaxTileRow>11770</MaxTileRow><MinTileCol>16342</MinTileCol><MaxTileCol>16368</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23406</MinTileRow><MaxTileRow>23541</MaxTileRow><MinTileCol>32685</MinTileCol><MaxTileCol>32737</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46813</MinTileRow><MaxTileRow>47083</MaxTileRow><MinTileCol>65371</MinTileCol><MaxTileCol>65474</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93627</MinTileRow><MaxTileRow>94166</MaxTileRow><MinTileCol>130742</MinTileCol><MaxTileCol>130949</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.231004 45.1479</ows:LowerCorner><ows:UpperCorner>0.0596615 45.3445</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-12-16-40125950</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>511</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>733</MinTileRow><MaxTileRow>735</MaxTileRow><MinTileCol>1022</MinTileCol><MaxTileCol>1024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1467</MinTileRow><MaxTileRow>1471</MaxTileRow><MinTileCol>2045</MinTileCol><MaxTileCol>2048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2935</MinTileRow><MaxTileRow>2942</MaxTileRow><MinTileCol>4090</MinTileCol><MaxTileCol>4097</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5871</MinTileRow><MaxTileRow>5884</MaxTileRow><MinTileCol>8181</MinTileCol><MaxTileCol>8194</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11743</MinTileRow><MaxTileRow>11768</MaxTileRow><MinTileCol>16363</MinTileCol><MaxTileCol>16389</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23487</MinTileRow><MaxTileRow>23536</MaxTileRow><MinTileCol>32726</MinTileCol><MaxTileCol>32778</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46974</MinTileRow><MaxTileRow>47073</MaxTileRow><MinTileCol>65452</MinTileCol><MaxTileCol>65556</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93949</MinTileRow><MaxTileRow>94147</MaxTileRow><MinTileCol>130905</MinTileCol><MaxTileCol>131113</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.94112 47.4114</ows:LowerCorner><ows:UpperCorner>7.31445 47.7832</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-05-08-37490323</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>356</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>713</MinTileRow><MaxTileRow>716</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1427</MinTileRow><MaxTileRow>1433</MaxTileRow><MinTileCol>2127</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2855</MinTileRow><MaxTileRow>2867</MaxTileRow><MinTileCol>4254</MinTileCol><MaxTileCol>4261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5710</MinTileRow><MaxTileRow>5735</MaxTileRow><MinTileCol>8508</MinTileCol><MaxTileCol>8523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11420</MinTileRow><MaxTileRow>11470</MaxTileRow><MinTileCol>17017</MinTileCol><MaxTileCol>17047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22840</MinTileRow><MaxTileRow>22940</MaxTileRow><MinTileCol>34035</MinTileCol><MaxTileCol>34094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45680</MinTileRow><MaxTileRow>45880</MaxTileRow><MinTileCol>68071</MinTileCol><MaxTileCol>68189</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91360</MinTileRow><MaxTileRow>91761</MaxTileRow><MinTileCol>136142</MinTileCol><MaxTileCol>136379</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>178</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.35461 47.4352</ows:LowerCorner><ows:UpperCorner>7.67539 48.2357</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-05-18-38818864</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>533</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>709</MinTileRow><MaxTileRow>716</MaxTileRow><MinTileCol>1066</MinTileCol><MaxTileCol>1067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1419</MinTileRow><MaxTileRow>1433</MaxTileRow><MinTileCol>2132</MinTileCol><MaxTileCol>2135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2839</MinTileRow><MaxTileRow>2866</MaxTileRow><MinTileCol>4264</MinTileCol><MaxTileCol>4270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5679</MinTileRow><MaxTileRow>5733</MaxTileRow><MinTileCol>8529</MinTileCol><MaxTileCol>8540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11358</MinTileRow><MaxTileRow>11466</MaxTileRow><MinTileCol>17058</MinTileCol><MaxTileCol>17080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22716</MinTileRow><MaxTileRow>22932</MaxTileRow><MinTileCol>34117</MinTileCol><MaxTileCol>34161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45433</MinTileRow><MaxTileRow>45864</MaxTileRow><MinTileCol>68234</MinTileCol><MaxTileCol>68322</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90867</MinTileRow><MaxTileRow>91729</MaxTileRow><MinTileCol>136469</MinTileCol><MaxTileCol>136645</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.94911 47.8803</ows:LowerCorner><ows:UpperCorner>7.31383 48.2695</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37553824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>709</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1419</MinTileRow><MaxTileRow>1425</MaxTileRow><MinTileCol>2127</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2838</MinTileRow><MaxTileRow>2851</MaxTileRow><MinTileCol>4254</MinTileCol><MaxTileCol>4261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5677</MinTileRow><MaxTileRow>5702</MaxTileRow><MinTileCol>8508</MinTileCol><MaxTileCol>8523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11354</MinTileRow><MaxTileRow>11405</MaxTileRow><MinTileCol>17016</MinTileCol><MaxTileCol>17047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22709</MinTileRow><MaxTileRow>22810</MaxTileRow><MinTileCol>34032</MinTileCol><MaxTileCol>34094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45418</MinTileRow><MaxTileRow>45621</MaxTileRow><MinTileCol>68065</MinTileCol><MaxTileCol>68189</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90836</MinTileRow><MaxTileRow>91243</MaxTileRow><MinTileCol>136131</MinTileCol><MaxTileCol>136378</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.96828 47.4204</ows:LowerCorner><ows:UpperCorner>7.30209 47.6295</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37563451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>357</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>715</MinTileRow><MaxTileRow>716</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1430</MinTileRow><MaxTileRow>1433</MaxTileRow><MinTileCol>2127</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2860</MinTileRow><MaxTileRow>2867</MaxTileRow><MinTileCol>4254</MinTileCol><MaxTileCol>4261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5721</MinTileRow><MaxTileRow>5734</MaxTileRow><MinTileCol>8509</MinTileCol><MaxTileCol>8523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11442</MinTileRow><MaxTileRow>11469</MaxTileRow><MinTileCol>17019</MinTileCol><MaxTileCol>17047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22884</MinTileRow><MaxTileRow>22938</MaxTileRow><MinTileCol>34038</MinTileCol><MaxTileCol>34095</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45768</MinTileRow><MaxTileRow>45876</MaxTileRow><MinTileCol>68077</MinTileCol><MaxTileCol>68190</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91537</MinTileRow><MaxTileRow>91752</MaxTileRow><MinTileCol>136154</MinTileCol><MaxTileCol>136380</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>178</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.13912 47.3944</ows:LowerCorner><ows:UpperCorner>7.56551 48.2166</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37594949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>716</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1433</MaxTileRow><MinTileCol>2129</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2867</MaxTileRow><MinTileCol>4259</MinTileCol><MaxTileCol>4267</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5735</MaxTileRow><MinTileCol>8518</MinTileCol><MaxTileCol>8534</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11361</MinTileRow><MaxTileRow>11471</MaxTileRow><MinTileCol>17037</MinTileCol><MaxTileCol>17068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22722</MinTileRow><MaxTileRow>22942</MaxTileRow><MinTileCol>34075</MinTileCol><MaxTileCol>34136</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45444</MinTileRow><MaxTileRow>45885</MaxTileRow><MinTileCol>68151</MinTileCol><MaxTileCol>68273</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90888</MinTileRow><MaxTileRow>91771</MaxTileRow><MinTileCol>136302</MinTileCol><MaxTileCol>136547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.90093 47.957</ows:LowerCorner><ows:UpperCorner>7.18142 48.2982</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-16-38576487</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>709</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1418</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2837</MinTileRow><MaxTileRow>2849</MaxTileRow><MinTileCol>4253</MinTileCol><MaxTileCol>4258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5675</MinTileRow><MaxTileRow>5698</MaxTileRow><MinTileCol>8506</MinTileCol><MaxTileCol>8517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11350</MinTileRow><MaxTileRow>11396</MaxTileRow><MinTileCol>17012</MinTileCol><MaxTileCol>17035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22701</MinTileRow><MaxTileRow>22792</MaxTileRow><MinTileCol>34024</MinTileCol><MaxTileCol>34071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45403</MinTileRow><MaxTileRow>45584</MaxTileRow><MinTileCol>68048</MinTileCol><MaxTileCol>68143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90807</MinTileRow><MaxTileRow>91168</MaxTileRow><MinTileCol>136096</MinTileCol><MaxTileCol>136286</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.09504 48.2137</ows:LowerCorner><ows:UpperCorner>7.29278 48.3372</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-09-02-37582962</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>709</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1418</MinTileRow><MaxTileRow>1420</MaxTileRow><MinTileCol>2128</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2836</MinTileRow><MaxTileRow>2840</MaxTileRow><MinTileCol>4257</MinTileCol><MaxTileCol>4261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5672</MinTileRow><MaxTileRow>5680</MaxTileRow><MinTileCol>8514</MinTileCol><MaxTileCol>8523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11345</MinTileRow><MaxTileRow>11361</MaxTileRow><MinTileCol>17029</MinTileCol><MaxTileCol>17047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22690</MinTileRow><MaxTileRow>22722</MaxTileRow><MinTileCol>34059</MinTileCol><MaxTileCol>34095</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45380</MinTileRow><MaxTileRow>45445</MaxTileRow><MinTileCol>68119</MinTileCol><MaxTileCol>68191</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90761</MinTileRow><MaxTileRow>90891</MaxTileRow><MinTileCol>136238</MinTileCol><MaxTileCol>136382</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.18559 48.1608</ows:LowerCorner><ows:UpperCorner>7.50831 48.3339</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-09-02-37591667</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>709</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1418</MinTileRow><MaxTileRow>1421</MaxTileRow><MinTileCol>2129</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2836</MinTileRow><MaxTileRow>2842</MaxTileRow><MinTileCol>4259</MinTileCol><MaxTileCol>4266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5672</MinTileRow><MaxTileRow>5684</MaxTileRow><MinTileCol>8519</MinTileCol><MaxTileCol>8533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11345</MinTileRow><MaxTileRow>11368</MaxTileRow><MinTileCol>17038</MinTileCol><MaxTileCol>17066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22690</MinTileRow><MaxTileRow>22737</MaxTileRow><MinTileCol>34076</MinTileCol><MaxTileCol>34133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45380</MinTileRow><MaxTileRow>45474</MaxTileRow><MinTileCol>68152</MinTileCol><MaxTileCol>68266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90761</MinTileRow><MaxTileRow>90949</MaxTileRow><MinTileCol>136304</MinTileCol><MaxTileCol>136533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.81653 47.7189</ows:LowerCorner><ows:UpperCorner>7.02616 48.0308</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-22-38502449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>357</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>714</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1423</MinTileRow><MaxTileRow>1428</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2846</MinTileRow><MaxTileRow>2857</MaxTileRow><MinTileCol>4251</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5693</MinTileRow><MaxTileRow>5714</MaxTileRow><MinTileCol>8502</MinTileCol><MaxTileCol>8511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11386</MinTileRow><MaxTileRow>11428</MaxTileRow><MinTileCol>17004</MinTileCol><MaxTileCol>17022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22773</MinTileRow><MaxTileRow>22857</MaxTileRow><MinTileCol>34009</MinTileCol><MaxTileCol>34045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45547</MinTileRow><MaxTileRow>45715</MaxTileRow><MinTileCol>68019</MinTileCol><MaxTileCol>68090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91095</MinTileRow><MaxTileRow>91430</MaxTileRow><MinTileCol>136039</MinTileCol><MaxTileCol>136180</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.92245 47.702</ows:LowerCorner><ows:UpperCorner>7.25388 48.0273</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-28-38649324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>357</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>714</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1423</MinTileRow><MaxTileRow>1428</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2846</MinTileRow><MaxTileRow>2857</MaxTileRow><MinTileCol>4253</MinTileCol><MaxTileCol>4260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5693</MinTileRow><MaxTileRow>5715</MaxTileRow><MinTileCol>8507</MinTileCol><MaxTileCol>8521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11386</MinTileRow><MaxTileRow>11430</MaxTileRow><MinTileCol>17015</MinTileCol><MaxTileCol>17043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22773</MinTileRow><MaxTileRow>22861</MaxTileRow><MinTileCol>34031</MinTileCol><MaxTileCol>34086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45547</MinTileRow><MaxTileRow>45722</MaxTileRow><MinTileCol>68063</MinTileCol><MaxTileCol>68172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91095</MinTileRow><MaxTileRow>91444</MaxTileRow><MinTileCol>136126</MinTileCol><MaxTileCol>136345</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.81718 47.7279</ows:LowerCorner><ows:UpperCorner>7.02547 48.0218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-28-38661948</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>357</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>714</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1423</MinTileRow><MaxTileRow>1428</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2847</MinTileRow><MaxTileRow>2856</MaxTileRow><MinTileCol>4251</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5694</MinTileRow><MaxTileRow>5713</MaxTileRow><MinTileCol>8502</MinTileCol><MaxTileCol>8511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11388</MinTileRow><MaxTileRow>11427</MaxTileRow><MinTileCol>17004</MinTileCol><MaxTileCol>17022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22776</MinTileRow><MaxTileRow>22855</MaxTileRow><MinTileCol>34009</MinTileCol><MaxTileCol>34045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45552</MinTileRow><MaxTileRow>45710</MaxTileRow><MinTileCol>68019</MinTileCol><MaxTileCol>68090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91104</MinTileRow><MaxTileRow>91420</MaxTileRow><MinTileCol>136039</MinTileCol><MaxTileCol>136180</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.87244 47.7493</ows:LowerCorner><ows:UpperCorner>7.18123 47.9571</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-12-13-38464699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>356</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>712</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1424</MinTileRow><MaxTileRow>1427</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2849</MinTileRow><MaxTileRow>2855</MaxTileRow><MinTileCol>4252</MinTileCol><MaxTileCol>4259</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5698</MinTileRow><MaxTileRow>5711</MaxTileRow><MinTileCol>8504</MinTileCol><MaxTileCol>8518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11397</MinTileRow><MaxTileRow>11423</MaxTileRow><MinTileCol>17009</MinTileCol><MaxTileCol>17036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22794</MinTileRow><MaxTileRow>22847</MaxTileRow><MinTileCol>34019</MinTileCol><MaxTileCol>34073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45589</MinTileRow><MaxTileRow>45694</MaxTileRow><MinTileCol>68038</MinTileCol><MaxTileCol>68147</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91178</MinTileRow><MaxTileRow>91388</MaxTileRow><MinTileCol>136077</MinTileCol><MaxTileCol>136295</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>178</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-GUADELOUPE 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de BDO-GUADELOUPE 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-61.8234 15.8196</ows:LowerCorner><ows:UpperCorner>-60.995 16.5216</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-GUADELOUPE-2013-2014-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>464</MinTileRow><MaxTileRow>466</MaxTileRow><MinTileCol>336</MinTileCol><MaxTileCol>338</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>928</MinTileRow><MaxTileRow>932</MaxTileRow><MinTileCol>672</MinTileCol><MaxTileCol>676</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1857</MinTileRow><MaxTileRow>1865</MaxTileRow><MinTileCol>1344</MinTileCol><MaxTileCol>1353</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3714</MinTileRow><MaxTileRow>3731</MaxTileRow><MinTileCol>2689</MinTileCol><MaxTileCol>2707</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7429</MinTileRow><MaxTileRow>7462</MaxTileRow><MinTileCol>5378</MinTileCol><MaxTileCol>5415</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>14859</MinTileRow><MaxTileRow>14924</MaxTileRow><MinTileCol>10756</MinTileCol><MaxTileCol>10831</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>29718</MinTileRow><MaxTileRow>29849</MaxTileRow><MinTileCol>21513</MinTileCol><MaxTileCol>21663</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>59436</MinTileRow><MaxTileRow>59699</MaxTileRow><MinTileCol>43027</MinTileCol><MaxTileCol>43327</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>118872</MinTileRow><MaxTileRow>119399</MaxTileRow><MinTileCol>86055</MinTileCol><MaxTileCol>86655</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>14</MinTileRow><MaxTileRow>14</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>29</MinTileRow><MaxTileRow>29</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>58</MinTileRow><MaxTileRow>58</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>42</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>116</MinTileRow><MaxTileRow>116</MaxTileRow><MinTileCol>84</MinTileCol><MaxTileCol>84</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>232</MinTileRow><MaxTileRow>233</MaxTileRow><MinTileCol>168</MinTileCol><MaxTileCol>169</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BDO-MARTINIQUE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BDO-MARTINIQUE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-61.2472 14.3719</ows:LowerCorner><ows:UpperCorner>-60.7785 14.8999</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-MARTINIQUE-2013-2014_2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>469</MinTileRow><MaxTileRow>470</MaxTileRow><MinTileCol>337</MinTileCol><MaxTileCol>339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>938</MinTileRow><MaxTileRow>941</MaxTileRow><MinTileCol>675</MinTileCol><MaxTileCol>678</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1876</MinTileRow><MaxTileRow>1882</MaxTileRow><MinTileCol>1351</MinTileCol><MaxTileCol>1356</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3753</MinTileRow><MaxTileRow>3765</MaxTileRow><MinTileCol>2702</MinTileCol><MaxTileCol>2712</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7506</MinTileRow><MaxTileRow>7530</MaxTileRow><MinTileCol>5404</MinTileCol><MaxTileCol>5425</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>15012</MinTileRow><MaxTileRow>15061</MaxTileRow><MinTileCol>10809</MinTileCol><MaxTileCol>10851</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>30024</MinTileRow><MaxTileRow>30123</MaxTileRow><MinTileCol>21618</MinTileCol><MaxTileCol>21703</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>60049</MinTileRow><MaxTileRow>60247</MaxTileRow><MinTileCol>43237</MinTileCol><MaxTileCol>43406</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>120098</MinTileRow><MaxTileRow>120494</MaxTileRow><MinTileCol>86475</MinTileCol><MaxTileCol>86812</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>14</MinTileRow><MaxTileRow>14</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>29</MinTileRow><MaxTileRow>29</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>58</MinTileRow><MaxTileRow>58</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>42</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>117</MinTileRow><MaxTileRow>117</MaxTileRow><MinTileCol>84</MinTileCol><MaxTileCol>84</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>234</MinTileRow><MaxTileRow>235</MaxTileRow><MinTileCol>168</MinTileCol><MaxTileCol>169</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BERGERAC</ows:Title><ows:Abstract>Orthophotographies satellites de BERGERAC issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.362816 44.767</ows:LowerCorner><ows:UpperCorner>0.648745 44.9442</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BERGERAC-2013-09-03-40128824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1026</MinTileCol><MaxTileCol>1027</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1474</MinTileRow><MaxTileRow>1477</MaxTileRow><MinTileCol>2052</MinTileCol><MaxTileCol>2055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2948</MinTileRow><MaxTileRow>2954</MaxTileRow><MinTileCol>4104</MinTileCol><MaxTileCol>4110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5897</MinTileRow><MaxTileRow>5908</MaxTileRow><MinTileCol>8208</MinTileCol><MaxTileCol>8221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11795</MinTileRow><MaxTileRow>11817</MaxTileRow><MinTileCol>16417</MinTileCol><MaxTileCol>16443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23590</MinTileRow><MaxTileRow>23634</MaxTileRow><MinTileCol>32834</MinTileCol><MaxTileCol>32886</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47180</MinTileRow><MaxTileRow>47269</MaxTileRow><MinTileCol>65669</MinTileCol><MaxTileCol>65772</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94360</MinTileRow><MaxTileRow>94539</MaxTileRow><MinTileCol>131339</MinTileCol><MaxTileCol>131544</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BEZIERS</ows:Title><ows:Abstract>Orthophotographies satellites de BEZIERS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.09849 43.2765</ows:LowerCorner><ows:UpperCorner>3.37027 43.4211</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BEZIERS-2013-08-31-38573824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2083</MinTileCol><MaxTileCol>2086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2996</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4166</MinTileCol><MaxTileCol>4172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5993</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8333</MinTileCol><MaxTileCol>8345</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11987</MinTileRow><MaxTileRow>12006</MaxTileRow><MinTileCol>16666</MinTileCol><MaxTileCol>16690</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23975</MinTileRow><MaxTileRow>24012</MaxTileRow><MinTileCol>33332</MinTileCol><MaxTileCol>33381</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47951</MinTileRow><MaxTileRow>48024</MaxTileRow><MinTileCol>66664</MinTileCol><MaxTileCol>66763</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95903</MinTileRow><MaxTileRow>96048</MaxTileRow><MinTileCol>133328</MinTileCol><MaxTileCol>133526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BORDEAUX-2013</ows:Title><ows:Abstract>Orthophotographies satellites de BORDEAUX-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.910232 44.8017</ows:LowerCorner><ows:UpperCorner>-0.618547 45.009</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-2013-12-09-40341199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1473</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2946</MinTileRow><MaxTileRow>2953</MaxTileRow><MinTileCol>4075</MinTileCol><MaxTileCol>4081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5893</MinTileRow><MaxTileRow>5906</MaxTileRow><MinTileCol>8150</MinTileCol><MaxTileCol>8163</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11786</MinTileRow><MaxTileRow>11812</MaxTileRow><MinTileCol>16301</MinTileCol><MaxTileCol>16327</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23573</MinTileRow><MaxTileRow>23624</MaxTileRow><MinTileCol>32602</MinTileCol><MaxTileCol>32654</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47146</MinTileRow><MaxTileRow>47249</MaxTileRow><MinTileCol>65205</MinTileCol><MaxTileCol>65309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94293</MinTileRow><MaxTileRow>94499</MaxTileRow><MinTileCol>130411</MinTileCol><MaxTileCol>130619</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BORDEAUX-2013</ows:Title><ows:Abstract>Orthophotographies satellites de BORDEAUX-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.911596 44.5675</ows:LowerCorner><ows:UpperCorner>-0.616128 44.8467</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-2013-12-10-39858819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1480</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2951</MinTileRow><MaxTileRow>2960</MaxTileRow><MinTileCol>4075</MinTileCol><MaxTileCol>4081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5903</MinTileRow><MaxTileRow>5920</MaxTileRow><MinTileCol>8150</MinTileCol><MaxTileCol>8163</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11807</MinTileRow><MaxTileRow>11841</MaxTileRow><MinTileCol>16301</MinTileCol><MaxTileCol>16327</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23615</MinTileRow><MaxTileRow>23683</MaxTileRow><MinTileCol>32603</MinTileCol><MaxTileCol>32654</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47230</MinTileRow><MaxTileRow>47367</MaxTileRow><MinTileCol>65207</MinTileCol><MaxTileCol>65309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94460</MinTileRow><MaxTileRow>94735</MaxTileRow><MinTileCol>130414</MinTileCol><MaxTileCol>130618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BORDEAUX-EST 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BORDEAUX-EST issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.683234 44.8185</ows:LowerCorner><ows:UpperCorner>-0.378996 45.0346</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-EST-2014-03-05-39583319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1472</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2945</MinTileRow><MaxTileRow>2952</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5891</MinTileRow><MaxTileRow>5905</MaxTileRow><MinTileCol>8161</MinTileCol><MaxTileCol>8174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11783</MinTileRow><MaxTileRow>11810</MaxTileRow><MinTileCol>16322</MinTileCol><MaxTileCol>16348</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23566</MinTileRow><MaxTileRow>23621</MaxTileRow><MinTileCol>32645</MinTileCol><MaxTileCol>32697</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47132</MinTileRow><MaxTileRow>47243</MaxTileRow><MinTileCol>65290</MinTileCol><MaxTileCol>65395</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94264</MinTileRow><MaxTileRow>94486</MaxTileRow><MinTileCol>130580</MinTileCol><MaxTileCol>130791</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BORDEAUX-EST 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BORDEAUX-EST issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.684664 44.6562</ows:LowerCorner><ows:UpperCorner>-0.381886 44.8633</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-EST-2014-04-13-39626699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1478</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2951</MinTileRow><MaxTileRow>2957</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5903</MinTileRow><MaxTileRow>5915</MaxTileRow><MinTileCol>8161</MinTileCol><MaxTileCol>8174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11806</MinTileRow><MaxTileRow>11831</MaxTileRow><MinTileCol>16322</MinTileCol><MaxTileCol>16348</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23612</MinTileRow><MaxTileRow>23662</MaxTileRow><MinTileCol>32645</MinTileCol><MaxTileCol>32697</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47224</MinTileRow><MaxTileRow>47324</MaxTileRow><MinTileCol>65290</MinTileCol><MaxTileCol>65394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94448</MinTileRow><MaxTileRow>94648</MaxTileRow><MinTileCol>130581</MinTileCol><MaxTileCol>130789</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BOURGOGNE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BOURGOGNE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.81625 46.1328</ows:LowerCorner><ows:UpperCorner>5.57154 48.401</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BOURGOGNE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1416</MinTileRow><MaxTileRow>1454</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2833</MinTileRow><MaxTileRow>2909</MaxTileRow><MinTileCol>4160</MinTileCol><MaxTileCol>4221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5667</MinTileRow><MaxTileRow>5818</MaxTileRow><MinTileCol>8320</MinTileCol><MaxTileCol>8443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11335</MinTileRow><MaxTileRow>11637</MaxTileRow><MinTileCol>16640</MinTileCol><MaxTileCol>16887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22671</MinTileRow><MaxTileRow>23275</MaxTileRow><MinTileCol>33280</MinTileCol><MaxTileCol>33775</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45343</MinTileRow><MaxTileRow>46550</MaxTileRow><MinTileCol>66561</MinTileCol><MaxTileCol>67550</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BREST 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BREST issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-4.6687 48.2966</ows:LowerCorner><ows:UpperCorner>-4.36192 48.4847</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BREST-2013-04-03-41613200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>498</MinTileCol><MaxTileCol>499</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>997</MinTileCol><MaxTileCol>999</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1418</MaxTileRow><MinTileCol>1995</MinTileCol><MaxTileCol>1998</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2831</MinTileRow><MaxTileRow>2837</MaxTileRow><MinTileCol>3990</MinTileCol><MaxTileCol>3996</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5662</MinTileRow><MaxTileRow>5674</MaxTileRow><MinTileCol>7980</MinTileCol><MaxTileCol>7993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11325</MinTileRow><MaxTileRow>11348</MaxTileRow><MinTileCol>15960</MinTileCol><MaxTileCol>15986</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22650</MinTileRow><MaxTileRow>22697</MaxTileRow><MinTileCol>31921</MinTileCol><MaxTileCol>31972</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45300</MinTileRow><MaxTileRow>45395</MaxTileRow><MinTileCol>63843</MinTileCol><MaxTileCol>63945</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90600</MinTileRow><MaxTileRow>90791</MaxTileRow><MinTileCol>127686</MinTileCol><MaxTileCol>127891</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>62</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>249</MinTileCol><MaxTileCol>249</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BREST 2013</ows:Title><ows:Abstract>Orthophotographies satellites de BREST issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-4.6687 48.2966</ows:LowerCorner><ows:UpperCorner>-4.36192 48.4847</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BREST-2013-04-03-41635702</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>498</MinTileCol><MaxTileCol>499</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>997</MinTileCol><MaxTileCol>999</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1418</MaxTileRow><MinTileCol>1995</MinTileCol><MaxTileCol>1998</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2831</MinTileRow><MaxTileRow>2837</MaxTileRow><MinTileCol>3990</MinTileCol><MaxTileCol>3996</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5662</MinTileRow><MaxTileRow>5674</MaxTileRow><MinTileCol>7980</MinTileCol><MaxTileCol>7993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11325</MinTileRow><MaxTileRow>11348</MaxTileRow><MinTileCol>15960</MinTileCol><MaxTileCol>15986</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22650</MinTileRow><MaxTileRow>22697</MaxTileRow><MinTileCol>31921</MinTileCol><MaxTileCol>31972</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45300</MinTileRow><MaxTileRow>45395</MaxTileRow><MinTileCol>63843</MinTileCol><MaxTileCol>63945</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90600</MinTileRow><MaxTileRow>90791</MaxTileRow><MinTileCol>127686</MinTileCol><MaxTileCol>127891</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>62</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>249</MinTileCol><MaxTileCol>249</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BRETAGNE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de BRETAGNE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.23913 47.1432</ows:LowerCorner><ows:UpperCorner>-0.949064 49.0227</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BRETAGNE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>703</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1407</MinTileRow><MaxTileRow>1436</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2815</MinTileRow><MaxTileRow>2873</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5630</MinTileRow><MaxTileRow>5746</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8146</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11261</MinTileRow><MaxTileRow>11492</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>16293</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22523</MinTileRow><MaxTileRow>22984</MaxTileRow><MinTileCol>31823</MinTileCol><MaxTileCol>32586</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45046</MinTileRow><MaxTileRow>45968</MaxTileRow><MinTileCol>63646</MinTileCol><MaxTileCol>65173</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CAEN 2014</ows:Title><ows:Abstract>Orthophotographies satellites de CAEN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.545186 49.049</ows:LowerCorner><ows:UpperCorner>-0.229756 49.273</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CAEN-2014-03-10-40195319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>351</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>702</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1401</MinTileRow><MaxTileRow>1405</MaxTileRow><MinTileCol>2041</MinTileCol><MaxTileCol>2045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2803</MinTileRow><MaxTileRow>2811</MaxTileRow><MinTileCol>4083</MinTileCol><MaxTileCol>4090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5607</MinTileRow><MaxTileRow>5622</MaxTileRow><MinTileCol>8167</MinTileCol><MaxTileCol>8181</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11215</MinTileRow><MaxTileRow>11245</MaxTileRow><MinTileCol>16334</MinTileCol><MaxTileCol>16362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22431</MinTileRow><MaxTileRow>22491</MaxTileRow><MinTileCol>32668</MinTileCol><MaxTileCol>32724</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44862</MinTileRow><MaxTileRow>44982</MaxTileRow><MinTileCol>65337</MinTileCol><MaxTileCol>65448</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89725</MinTileRow><MaxTileRow>89965</MaxTileRow><MinTileCol>130674</MinTileCol><MaxTileCol>130897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CARCASSONNE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de CARCASSONNE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.21171 43.1034</ows:LowerCorner><ows:UpperCorner>2.48444 43.3029</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CARCASSONNE-2014-03-12-39411944</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2073</MinTileCol><MaxTileCol>2076</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4146</MinTileCol><MaxTileCol>4152</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6001</MinTileRow><MaxTileRow>6013</MaxTileRow><MinTileCol>8292</MinTileCol><MaxTileCol>8305</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12002</MinTileRow><MaxTileRow>12027</MaxTileRow><MinTileCol>16585</MinTileCol><MaxTileCol>16610</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24005</MinTileRow><MaxTileRow>24055</MaxTileRow><MinTileCol>33170</MinTileCol><MaxTileCol>33220</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48011</MinTileRow><MaxTileRow>48110</MaxTileRow><MinTileCol>66341</MinTileCol><MaxTileCol>66440</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96022</MinTileRow><MaxTileRow>96221</MaxTileRow><MinTileCol>132682</MinTileCol><MaxTileCol>132881</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CENTRE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de CENTRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.0844953 46.3001</ows:LowerCorner><ows:UpperCorner>3.15021 48.9569</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CENTRE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>703</MinTileRow><MaxTileRow>725</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1407</MinTileRow><MaxTileRow>1451</MaxTileRow><MinTileCol>2048</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2815</MinTileRow><MaxTileRow>2903</MaxTileRow><MinTileCol>4096</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5630</MinTileRow><MaxTileRow>5807</MaxTileRow><MinTileCol>8192</MinTileCol><MaxTileCol>8335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11260</MinTileRow><MaxTileRow>11614</MaxTileRow><MinTileCol>16385</MinTileCol><MaxTileCol>16670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22520</MinTileRow><MaxTileRow>23229</MaxTileRow><MinTileCol>32770</MinTileCol><MaxTileCol>33341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45041</MinTileRow><MaxTileRow>46458</MaxTileRow><MinTileCol>65540</MinTileCol><MaxTileCol>66682</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CHAMPAGNE-ARDENNE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de CHAMPAGNE-ARDENNE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.34581 47.5336</ows:LowerCorner><ows:UpperCorner>6.03616 49.9972</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CHAMPAGNE-ARDENNE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>347</MinTileRow><MaxTileRow>357</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>694</MinTileRow><MaxTileRow>715</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1389</MinTileRow><MaxTileRow>1431</MaxTileRow><MinTileCol>2086</MinTileCol><MaxTileCol>2115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2778</MinTileRow><MaxTileRow>2862</MaxTileRow><MinTileCol>4172</MinTileCol><MaxTileCol>4230</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5557</MinTileRow><MaxTileRow>5725</MaxTileRow><MinTileCol>8344</MinTileCol><MaxTileCol>8461</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11114</MinTileRow><MaxTileRow>11451</MaxTileRow><MinTileCol>16688</MinTileCol><MaxTileCol>16922</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22228</MinTileRow><MaxTileRow>22903</MaxTileRow><MinTileCol>33377</MinTileCol><MaxTileCol>33845</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44457</MinTileRow><MaxTileRow>45807</MaxTileRow><MinTileCol>66755</MinTileCol><MaxTileCol>67691</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>173</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CHARTRES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de CHARTRES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.34718 48.3429</ows:LowerCorner><ows:UpperCorner>1.63676 48.5444</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CHARTRES-2014-03-11-39773074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>708</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1414</MinTileRow><MaxTileRow>1417</MaxTileRow><MinTileCol>2063</MinTileCol><MaxTileCol>2066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2829</MinTileRow><MaxTileRow>2835</MaxTileRow><MinTileCol>4126</MinTileCol><MaxTileCol>4133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5658</MinTileRow><MaxTileRow>5671</MaxTileRow><MinTileCol>8253</MinTileCol><MaxTileCol>8266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11316</MinTileRow><MaxTileRow>11343</MaxTileRow><MinTileCol>16506</MinTileCol><MaxTileCol>16533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22632</MinTileRow><MaxTileRow>22687</MaxTileRow><MinTileCol>33013</MinTileCol><MaxTileCol>33066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45264</MinTileRow><MaxTileRow>45375</MaxTileRow><MinTileCol>66026</MinTileCol><MaxTileCol>66132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90529</MinTileRow><MaxTileRow>90750</MaxTileRow><MinTileCol>132052</MinTileCol><MaxTileCol>132264</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de COLMAR 2014</ows:Title><ows:Abstract>Orthophotographies satellites de COLMAR issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.18548 47.9901</ows:LowerCorner><ows:UpperCorner>7.49832 48.2166</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_COLMAR-2014-03-08-38193199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1423</MaxTileRow><MinTileCol>2129</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2847</MaxTileRow><MinTileCol>4259</MinTileCol><MaxTileCol>4266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5681</MinTileRow><MaxTileRow>5695</MaxTileRow><MinTileCol>8519</MinTileCol><MaxTileCol>8532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11362</MinTileRow><MaxTileRow>11391</MaxTileRow><MinTileCol>17038</MinTileCol><MaxTileCol>17065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22724</MinTileRow><MaxTileRow>22783</MaxTileRow><MinTileCol>34076</MinTileCol><MaxTileCol>34131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45448</MinTileRow><MaxTileRow>45567</MaxTileRow><MinTileCol>68152</MinTileCol><MaxTileCol>68263</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90897</MinTileRow><MaxTileRow>91135</MaxTileRow><MinTileCol>136304</MinTileCol><MaxTileCol>136527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CORSE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de la CORSE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>8.39828 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 43.0942</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CORSE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>376</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>536</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>752</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>1072</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1504</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>2144</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3008</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>4289</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6017</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>8578</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12034</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>17156</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24069</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>34312</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48138</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>68625</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>67</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>134</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>268</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de COUTANCES 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de COUTANCES 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.63017 48.8862</ows:LowerCorner><ows:UpperCorner>-1.28499 49.1048</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_COUTANCES-2014-02-24-40636069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>702</MinTileRow><MaxTileRow>704</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1404</MinTileRow><MaxTileRow>1408</MaxTileRow><MinTileCol>2029</MinTileCol><MaxTileCol>2033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2809</MinTileRow><MaxTileRow>2817</MaxTileRow><MinTileCol>4058</MinTileCol><MaxTileCol>4066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5619</MinTileRow><MaxTileRow>5634</MaxTileRow><MinTileCol>8117</MinTileCol><MaxTileCol>8132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11239</MinTileRow><MaxTileRow>11268</MaxTileRow><MinTileCol>16235</MinTileCol><MaxTileCol>16265</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22479</MinTileRow><MaxTileRow>22536</MaxTileRow><MinTileCol>32471</MinTileCol><MaxTileCol>32531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44959</MinTileRow><MaxTileRow>45073</MaxTileRow><MinTileCol>64943</MinTileCol><MaxTileCol>65062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89919</MinTileRow><MaxTileRow>90146</MaxTileRow><MinTileCol>129887</MinTileCol><MaxTileCol>130125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.45469 45.9044</ows:LowerCorner><ows:UpperCorner>2.63883 46.2653</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-05-05-38939202</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1458</MaxTileRow><MinTileCol>2075</MinTileCol><MaxTileCol>2078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2905</MinTileRow><MaxTileRow>2917</MaxTileRow><MinTileCol>4151</MinTileCol><MaxTileCol>4156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5811</MinTileRow><MaxTileRow>5835</MaxTileRow><MinTileCol>8303</MinTileCol><MaxTileCol>8312</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11622</MinTileRow><MaxTileRow>11670</MaxTileRow><MinTileCol>16607</MinTileCol><MaxTileCol>16624</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23245</MinTileRow><MaxTileRow>23340</MaxTileRow><MinTileCol>33214</MinTileCol><MaxTileCol>33248</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46491</MinTileRow><MaxTileRow>46680</MaxTileRow><MinTileCol>66429</MinTileCol><MaxTileCol>66496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92982</MinTileRow><MaxTileRow>93360</MaxTileRow><MinTileCol>132859</MinTileCol><MaxTileCol>132993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.96065 46.4637</ows:LowerCorner><ows:UpperCorner>3.24923 46.8241</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-05-39568623</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>360</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>721</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1443</MinTileRow><MaxTileRow>1449</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2887</MinTileRow><MaxTileRow>2899</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5774</MinTileRow><MaxTileRow>5798</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11548</MinTileRow><MaxTileRow>11596</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16679</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23097</MinTileRow><MaxTileRow>23193</MaxTileRow><MinTileCol>33306</MinTileCol><MaxTileCol>33359</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46195</MinTileRow><MaxTileRow>46386</MaxTileRow><MinTileCol>66613</MinTileCol><MaxTileCol>66718</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92390</MinTileRow><MaxTileRow>92772</MaxTileRow><MinTileCol>133227</MinTileCol><MaxTileCol>133437</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.24348 46.3174</ows:LowerCorner><ows:UpperCorner>2.35018 46.5161</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-05-39656451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>725</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1451</MaxTileRow><MinTileCol>2073</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2897</MinTileRow><MaxTileRow>2903</MaxTileRow><MinTileCol>4147</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5794</MinTileRow><MaxTileRow>5807</MaxTileRow><MinTileCol>8294</MinTileCol><MaxTileCol>8298</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11589</MinTileRow><MaxTileRow>11615</MaxTileRow><MinTileCol>16588</MinTileCol><MaxTileCol>16597</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23179</MinTileRow><MaxTileRow>23231</MaxTileRow><MinTileCol>33176</MinTileCol><MaxTileCol>33195</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46358</MinTileRow><MaxTileRow>46463</MaxTileRow><MinTileCol>66353</MinTileCol><MaxTileCol>66391</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92717</MinTileRow><MaxTileRow>92926</MaxTileRow><MinTileCol>132706</MinTileCol><MaxTileCol>132782</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.40369 46.4258</ows:LowerCorner><ows:UpperCorner>3.70786 46.7874</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39082000</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>725</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1444</MinTileRow><MaxTileRow>1450</MaxTileRow><MinTileCol>2086</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2888</MinTileRow><MaxTileRow>2900</MaxTileRow><MinTileCol>4173</MinTileCol><MaxTileCol>4180</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5776</MinTileRow><MaxTileRow>5800</MaxTileRow><MinTileCol>8346</MinTileCol><MaxTileCol>8360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11553</MinTileRow><MaxTileRow>11601</MaxTileRow><MinTileCol>16693</MinTileCol><MaxTileCol>16721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23107</MinTileRow><MaxTileRow>23203</MaxTileRow><MinTileCol>33387</MinTileCol><MaxTileCol>33442</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46215</MinTileRow><MaxTileRow>46406</MaxTileRow><MinTileCol>66775</MinTileCol><MaxTileCol>66885</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92430</MinTileRow><MaxTileRow>92812</MaxTileRow><MinTileCol>133551</MinTileCol><MaxTileCol>133771</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.1827 46.544</ows:LowerCorner><ows:UpperCorner>3.48454 46.734</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39094704</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1445</MinTileRow><MaxTileRow>1448</MaxTileRow><MinTileCol>2084</MinTileCol><MaxTileCol>2087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2890</MinTileRow><MaxTileRow>2896</MaxTileRow><MinTileCol>4168</MinTileCol><MaxTileCol>4175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5780</MinTileRow><MaxTileRow>5792</MaxTileRow><MinTileCol>8336</MinTileCol><MaxTileCol>8350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11560</MinTileRow><MaxTileRow>11585</MaxTileRow><MinTileCol>16673</MinTileCol><MaxTileCol>16701</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23121</MinTileRow><MaxTileRow>23171</MaxTileRow><MinTileCol>33347</MinTileCol><MaxTileCol>33402</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46243</MinTileRow><MaxTileRow>46343</MaxTileRow><MinTileCol>66694</MinTileCol><MaxTileCol>66804</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92486</MinTileRow><MaxTileRow>92687</MaxTileRow><MinTileCol>133389</MinTileCol><MaxTileCol>133608</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.73765 46.4727</ows:LowerCorner><ows:UpperCorner>3.01312 46.8242</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39105993</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>360</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>721</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1443</MinTileRow><MaxTileRow>1449</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2887</MinTileRow><MaxTileRow>2898</MaxTileRow><MinTileCol>4158</MinTileCol><MaxTileCol>4164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5774</MinTileRow><MaxTileRow>5797</MaxTileRow><MinTileCol>8316</MinTileCol><MaxTileCol>8329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11548</MinTileRow><MaxTileRow>11595</MaxTileRow><MinTileCol>16633</MinTileCol><MaxTileCol>16658</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23097</MinTileRow><MaxTileRow>23190</MaxTileRow><MinTileCol>33266</MinTileCol><MaxTileCol>33316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46195</MinTileRow><MaxTileRow>46381</MaxTileRow><MinTileCol>66532</MinTileCol><MaxTileCol>66633</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92390</MinTileRow><MaxTileRow>92763</MaxTileRow><MinTileCol>133065</MinTileCol><MaxTileCol>133266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.50204 46.4179</ows:LowerCorner><ows:UpperCorner>2.79168 46.7699</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39119829</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>725</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1444</MinTileRow><MaxTileRow>1450</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2889</MinTileRow><MaxTileRow>2900</MaxTileRow><MinTileCol>4152</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5778</MinTileRow><MaxTileRow>5801</MaxTileRow><MinTileCol>8305</MinTileCol><MaxTileCol>8319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11556</MinTileRow><MaxTileRow>11602</MaxTileRow><MinTileCol>16611</MinTileCol><MaxTileCol>16638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23112</MinTileRow><MaxTileRow>23205</MaxTileRow><MinTileCol>33223</MinTileCol><MaxTileCol>33276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46224</MinTileRow><MaxTileRow>46410</MaxTileRow><MinTileCol>66447</MinTileCol><MaxTileCol>66552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92448</MinTileRow><MaxTileRow>92821</MaxTileRow><MinTileCol>132895</MinTileCol><MaxTileCol>133105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.7926 45.8245</ows:LowerCorner><ows:UpperCorner>3.09074 46.1758</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-01-39641326</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1454</MinTileRow><MaxTileRow>1460</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2908</MinTileRow><MaxTileRow>2920</MaxTileRow><MinTileCol>4159</MinTileCol><MaxTileCol>4166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5817</MinTileRow><MaxTileRow>5840</MaxTileRow><MinTileCol>8319</MinTileCol><MaxTileCol>8332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11634</MinTileRow><MaxTileRow>11680</MaxTileRow><MinTileCol>16638</MinTileCol><MaxTileCol>16665</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23269</MinTileRow><MaxTileRow>23361</MaxTileRow><MinTileCol>33276</MinTileCol><MaxTileCol>33330</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46538</MinTileRow><MaxTileRow>46722</MaxTileRow><MinTileCol>66553</MinTileCol><MaxTileCol>66661</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93076</MinTileRow><MaxTileRow>93444</MaxTileRow><MinTileCol>133106</MinTileCol><MaxTileCol>133322</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.26916 45.5531</ows:LowerCorner><ows:UpperCorner>3.56653 45.8063</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-01-39652702</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1460</MinTileRow><MaxTileRow>1464</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2920</MinTileRow><MaxTileRow>2928</MaxTileRow><MinTileCol>4170</MinTileCol><MaxTileCol>4177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5841</MinTileRow><MaxTileRow>5857</MaxTileRow><MinTileCol>8340</MinTileCol><MaxTileCol>8354</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11682</MinTileRow><MaxTileRow>11715</MaxTileRow><MinTileCol>16681</MinTileCol><MaxTileCol>16708</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23365</MinTileRow><MaxTileRow>23431</MaxTileRow><MinTileCol>33363</MinTileCol><MaxTileCol>33417</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46731</MinTileRow><MaxTileRow>46863</MaxTileRow><MinTileCol>66726</MinTileCol><MaxTileCol>66834</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93463</MinTileRow><MaxTileRow>93727</MaxTileRow><MinTileCol>133452</MinTileCol><MaxTileCol>133669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.61325 46.5327</ows:LowerCorner><ows:UpperCorner>3.87724 46.7235</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-09-38886576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1445</MinTileRow><MaxTileRow>1448</MaxTileRow><MinTileCol>2089</MinTileCol><MaxTileCol>2092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2890</MinTileRow><MaxTileRow>2896</MaxTileRow><MinTileCol>4178</MinTileCol><MaxTileCol>4184</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5781</MinTileRow><MaxTileRow>5793</MaxTileRow><MinTileCol>8356</MinTileCol><MaxTileCol>8368</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11562</MinTileRow><MaxTileRow>11587</MaxTileRow><MinTileCol>16712</MinTileCol><MaxTileCol>16736</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23124</MinTileRow><MaxTileRow>23174</MaxTileRow><MinTileCol>33425</MinTileCol><MaxTileCol>33473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46248</MinTileRow><MaxTileRow>46349</MaxTileRow><MinTileCol>66851</MinTileCol><MaxTileCol>66946</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92497</MinTileRow><MaxTileRow>92699</MaxTileRow><MinTileCol>133702</MinTileCol><MaxTileCol>133893</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.27173 46.2996</ows:LowerCorner><ows:UpperCorner>2.3504 46.3541</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-13-40119200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1452</MaxTileRow><MinTileCol>2073</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2902</MinTileRow><MaxTileRow>2904</MaxTileRow><MinTileCol>4147</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5805</MinTileRow><MaxTileRow>5809</MaxTileRow><MinTileCol>8295</MinTileCol><MaxTileCol>8298</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11611</MinTileRow><MaxTileRow>11618</MaxTileRow><MinTileCol>16590</MinTileCol><MaxTileCol>16597</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23222</MinTileRow><MaxTileRow>23236</MaxTileRow><MinTileCol>33181</MinTileCol><MaxTileCol>33195</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46444</MinTileRow><MaxTileRow>46472</MaxTileRow><MinTileCol>66363</MinTileCol><MaxTileCol>66391</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92888</MinTileRow><MaxTileRow>92945</MaxTileRow><MinTileCol>132726</MinTileCol><MaxTileCol>132783</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.18156 46.2018</ows:LowerCorner><ows:UpperCorner>3.48326 46.5899</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-22-38926326</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>723</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1447</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2084</MinTileCol><MaxTileCol>2087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2894</MinTileRow><MaxTileRow>2907</MaxTileRow><MinTileCol>4168</MinTileCol><MaxTileCol>4175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5789</MinTileRow><MaxTileRow>5815</MaxTileRow><MinTileCol>8336</MinTileCol><MaxTileCol>8350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11579</MinTileRow><MaxTileRow>11631</MaxTileRow><MinTileCol>16673</MinTileCol><MaxTileCol>16701</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23159</MinTileRow><MaxTileRow>23262</MaxTileRow><MinTileCol>33347</MinTileCol><MaxTileCol>33402</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46319</MinTileRow><MaxTileRow>46524</MaxTileRow><MinTileCol>66694</MinTileCol><MaxTileCol>66804</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92639</MinTileRow><MaxTileRow>93048</MaxTileRow><MinTileCol>133388</MinTileCol><MaxTileCol>133608</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.7259 46.2824</ows:LowerCorner><ows:UpperCorner>3.02609 46.5168</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-26-40018699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1452</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2897</MinTileRow><MaxTileRow>2905</MaxTileRow><MinTileCol>4158</MinTileCol><MaxTileCol>4164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5794</MinTileRow><MaxTileRow>5810</MaxTileRow><MinTileCol>8316</MinTileCol><MaxTileCol>8329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11589</MinTileRow><MaxTileRow>11620</MaxTileRow><MinTileCol>16632</MinTileCol><MaxTileCol>16659</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23179</MinTileRow><MaxTileRow>23240</MaxTileRow><MinTileCol>33264</MinTileCol><MaxTileCol>33318</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46358</MinTileRow><MaxTileRow>46481</MaxTileRow><MinTileCol>66528</MinTileCol><MaxTileCol>66637</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92716</MinTileRow><MaxTileRow>92963</MaxTileRow><MinTileCol>133056</MinTileCol><MaxTileCol>133275</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.44143 46.2015</ows:LowerCorner><ows:UpperCorner>2.74062 46.2926</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-26-40028072</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2075</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2904</MinTileRow><MaxTileRow>2907</MaxTileRow><MinTileCol>4151</MinTileCol><MaxTileCol>4158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5809</MinTileRow><MaxTileRow>5815</MaxTileRow><MinTileCol>8303</MinTileCol><MaxTileCol>8316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11619</MinTileRow><MaxTileRow>11631</MaxTileRow><MinTileCol>16606</MinTileCol><MaxTileCol>16633</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23238</MinTileRow><MaxTileRow>23262</MaxTileRow><MinTileCol>33212</MinTileCol><MaxTileCol>33266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46477</MinTileRow><MaxTileRow>46524</MaxTileRow><MinTileCol>66424</MinTileCol><MaxTileCol>66533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92954</MinTileRow><MaxTileRow>93048</MaxTileRow><MinTileCol>132849</MinTileCol><MaxTileCol>133067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.63557 46.208</ows:LowerCorner><ows:UpperCorner>3.93989 46.5612</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39646576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>723</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1447</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2089</MinTileCol><MaxTileCol>2092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2895</MinTileRow><MaxTileRow>2907</MaxTileRow><MinTileCol>4178</MinTileCol><MaxTileCol>4185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5791</MinTileRow><MaxTileRow>5815</MaxTileRow><MinTileCol>8357</MinTileCol><MaxTileCol>8371</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11583</MinTileRow><MaxTileRow>11630</MaxTileRow><MinTileCol>16714</MinTileCol><MaxTileCol>16742</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23167</MinTileRow><MaxTileRow>23260</MaxTileRow><MinTileCol>33429</MinTileCol><MaxTileCol>33485</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46334</MinTileRow><MaxTileRow>46520</MaxTileRow><MinTileCol>66859</MinTileCol><MaxTileCol>66970</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92669</MinTileRow><MaxTileRow>93041</MaxTileRow><MinTileCol>133719</MinTileCol><MaxTileCol>133940</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.8047 46.2431</ows:LowerCorner><ows:UpperCorner>4.04362 46.5242</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39660077</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2091</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2897</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4182</MinTileCol><MaxTileCol>4187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5794</MinTileRow><MaxTileRow>5812</MaxTileRow><MinTileCol>8365</MinTileCol><MaxTileCol>8375</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11588</MinTileRow><MaxTileRow>11625</MaxTileRow><MinTileCol>16730</MinTileCol><MaxTileCol>16751</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23177</MinTileRow><MaxTileRow>23251</MaxTileRow><MinTileCol>33460</MinTileCol><MaxTileCol>33503</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46354</MinTileRow><MaxTileRow>46502</MaxTileRow><MinTileCol>66921</MinTileCol><MaxTileCol>67007</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92708</MinTileRow><MaxTileRow>93004</MaxTileRow><MinTileCol>133842</MinTileCol><MaxTileCol>134014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.40131 46.1016</ows:LowerCorner><ows:UpperCorner>3.7168 46.4723</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39671451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1455</MaxTileRow><MinTileCol>2086</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2898</MinTileRow><MaxTileRow>2911</MaxTileRow><MinTileCol>4173</MinTileCol><MaxTileCol>4180</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5797</MinTileRow><MaxTileRow>5822</MaxTileRow><MinTileCol>8346</MinTileCol><MaxTileCol>8361</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11595</MinTileRow><MaxTileRow>11644</MaxTileRow><MinTileCol>16693</MinTileCol><MaxTileCol>16722</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23191</MinTileRow><MaxTileRow>23288</MaxTileRow><MinTileCol>33387</MinTileCol><MaxTileCol>33444</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46382</MinTileRow><MaxTileRow>46576</MaxTileRow><MinTileCol>66774</MinTileCol><MaxTileCol>66889</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92764</MinTileRow><MaxTileRow>93153</MaxTileRow><MinTileCol>133548</MinTileCol><MaxTileCol>133778</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.49777 45.3175</ows:LowerCorner><ows:UpperCorner>3.80681 45.5084</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39682574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1465</MinTileRow><MaxTileRow>1468</MaxTileRow><MinTileCol>2087</MinTileCol><MaxTileCol>2091</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2930</MinTileRow><MaxTileRow>2936</MaxTileRow><MinTileCol>4175</MinTileCol><MaxTileCol>4182</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5860</MinTileRow><MaxTileRow>5873</MaxTileRow><MinTileCol>8351</MinTileCol><MaxTileCol>8365</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11721</MinTileRow><MaxTileRow>11746</MaxTileRow><MinTileCol>16702</MinTileCol><MaxTileCol>16730</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23443</MinTileRow><MaxTileRow>23492</MaxTileRow><MinTileCol>33404</MinTileCol><MaxTileCol>33461</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46887</MinTileRow><MaxTileRow>46985</MaxTileRow><MinTileCol>66809</MinTileCol><MaxTileCol>66922</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93775</MinTileRow><MaxTileRow>93970</MaxTileRow><MinTileCol>133619</MinTileCol><MaxTileCol>133844</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.29384 45.3728</ows:LowerCorner><ows:UpperCorner>3.60191 45.5091</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39691949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1465</MinTileRow><MaxTileRow>1467</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2930</MinTileRow><MaxTileRow>2934</MaxTileRow><MinTileCol>4170</MinTileCol><MaxTileCol>4177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5860</MinTileRow><MaxTileRow>5869</MaxTileRow><MinTileCol>8341</MinTileCol><MaxTileCol>8355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11721</MinTileRow><MaxTileRow>11739</MaxTileRow><MinTileCol>16683</MinTileCol><MaxTileCol>16711</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23443</MinTileRow><MaxTileRow>23478</MaxTileRow><MinTileCol>33367</MinTileCol><MaxTileCol>33423</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46887</MinTileRow><MaxTileRow>46957</MaxTileRow><MinTileCol>66735</MinTileCol><MaxTileCol>66847</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93774</MinTileRow><MaxTileRow>93914</MaxTileRow><MinTileCol>133470</MinTileCol><MaxTileCol>133694</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.49197 46.2467</ows:LowerCorner><ows:UpperCorner>2.80531 46.4458</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-05-38509201</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2899</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4152</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5799</MinTileRow><MaxTileRow>5812</MaxTileRow><MinTileCol>8305</MinTileCol><MaxTileCol>8319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11598</MinTileRow><MaxTileRow>11625</MaxTileRow><MinTileCol>16610</MinTileCol><MaxTileCol>16639</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23197</MinTileRow><MaxTileRow>23250</MaxTileRow><MinTileCol>33221</MinTileCol><MaxTileCol>33278</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46395</MinTileRow><MaxTileRow>46500</MaxTileRow><MinTileCol>66443</MinTileCol><MaxTileCol>66557</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92791</MinTileRow><MaxTileRow>93001</MaxTileRow><MinTileCol>132886</MinTileCol><MaxTileCol>133114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.47347 45.4619</ows:LowerCorner><ows:UpperCorner>3.76652 46.3009</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-11-38705947</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2087</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2904</MinTileRow><MaxTileRow>2931</MaxTileRow><MinTileCol>4175</MinTileCol><MaxTileCol>4181</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5809</MinTileRow><MaxTileRow>5863</MaxTileRow><MinTileCol>8350</MinTileCol><MaxTileCol>8363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11618</MinTileRow><MaxTileRow>11727</MaxTileRow><MinTileCol>16700</MinTileCol><MaxTileCol>16726</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23236</MinTileRow><MaxTileRow>23455</MaxTileRow><MinTileCol>33400</MinTileCol><MaxTileCol>33453</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46472</MinTileRow><MaxTileRow>46911</MaxTileRow><MinTileCol>66800</MinTileCol><MaxTileCol>66907</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92944</MinTileRow><MaxTileRow>93822</MaxTileRow><MinTileCol>133601</MinTileCol><MaxTileCol>133814</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.25585 45.4452</ows:LowerCorner><ows:UpperCorner>3.53902 45.6262</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-11-38725694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1466</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2926</MinTileRow><MaxTileRow>2932</MaxTileRow><MinTileCol>4170</MinTileCol><MaxTileCol>4176</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5853</MinTileRow><MaxTileRow>5864</MaxTileRow><MinTileCol>8340</MinTileCol><MaxTileCol>8353</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11706</MinTileRow><MaxTileRow>11729</MaxTileRow><MinTileCol>16680</MinTileCol><MaxTileCol>16706</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23412</MinTileRow><MaxTileRow>23459</MaxTileRow><MinTileCol>33360</MinTileCol><MaxTileCol>33412</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46825</MinTileRow><MaxTileRow>46919</MaxTileRow><MinTileCol>66721</MinTileCol><MaxTileCol>66824</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93651</MinTileRow><MaxTileRow>93839</MaxTileRow><MinTileCol>133442</MinTileCol><MaxTileCol>133648</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.72761 45.3248</ows:LowerCorner><ows:UpperCorner>4.01317 45.5881</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-12-38340574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1468</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2927</MinTileRow><MaxTileRow>2936</MaxTileRow><MinTileCol>4180</MinTileCol><MaxTileCol>4187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5855</MinTileRow><MaxTileRow>5872</MaxTileRow><MinTileCol>8361</MinTileCol><MaxTileCol>8374</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11711</MinTileRow><MaxTileRow>11745</MaxTileRow><MinTileCol>16723</MinTileCol><MaxTileCol>16749</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23422</MinTileRow><MaxTileRow>23490</MaxTileRow><MinTileCol>33446</MinTileCol><MaxTileCol>33498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46845</MinTileRow><MaxTileRow>46981</MaxTileRow><MinTileCol>66893</MinTileCol><MaxTileCol>66996</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93690</MinTileRow><MaxTileRow>93962</MaxTileRow><MinTileCol>133786</MinTileCol><MaxTileCol>133993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.96088 46.2476</ows:LowerCorner><ows:UpperCorner>3.24775 46.5</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39347445</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2897</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5795</MinTileRow><MaxTileRow>5812</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11591</MinTileRow><MaxTileRow>11625</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16679</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23183</MinTileRow><MaxTileRow>23250</MaxTileRow><MinTileCol>33306</MinTileCol><MaxTileCol>33359</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46367</MinTileRow><MaxTileRow>46500</MaxTileRow><MinTileCol>66613</MinTileCol><MaxTileCol>66718</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92734</MinTileRow><MaxTileRow>93000</MaxTileRow><MinTileCol>133227</MinTileCol><MaxTileCol>133437</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.35475 45.5437</ows:LowerCorner><ows:UpperCorner>2.62836 45.9321</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39375824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1458</MinTileRow><MaxTileRow>1464</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2916</MinTileRow><MaxTileRow>2929</MaxTileRow><MinTileCol>4149</MinTileCol><MaxTileCol>4155</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5833</MinTileRow><MaxTileRow>5858</MaxTileRow><MinTileCol>8299</MinTileCol><MaxTileCol>8311</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11666</MinTileRow><MaxTileRow>11717</MaxTileRow><MinTileCol>16598</MinTileCol><MaxTileCol>16623</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23332</MinTileRow><MaxTileRow>23434</MaxTileRow><MinTileCol>33196</MinTileCol><MaxTileCol>33246</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46665</MinTileRow><MaxTileRow>46868</MaxTileRow><MinTileCol>66393</MinTileCol><MaxTileCol>66493</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93331</MinTileRow><MaxTileRow>93736</MaxTileRow><MinTileCol>132787</MinTileCol><MaxTileCol>132986</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.62902 45.3468</ows:LowerCorner><ows:UpperCorner>2.89784 45.4464</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39388195</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>733</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1466</MinTileRow><MaxTileRow>1467</MaxTileRow><MinTileCol>2077</MinTileCol><MaxTileCol>2080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2932</MinTileRow><MaxTileRow>2935</MaxTileRow><MinTileCol>4155</MinTileCol><MaxTileCol>4161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5864</MinTileRow><MaxTileRow>5871</MaxTileRow><MinTileCol>8311</MinTileCol><MaxTileCol>8323</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11729</MinTileRow><MaxTileRow>11742</MaxTileRow><MinTileCol>16623</MinTileCol><MaxTileCol>16647</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23459</MinTileRow><MaxTileRow>23485</MaxTileRow><MinTileCol>33246</MinTileCol><MaxTileCol>33295</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46919</MinTileRow><MaxTileRow>46970</MaxTileRow><MinTileCol>66493</MinTileCol><MaxTileCol>66591</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93838</MinTileRow><MaxTileRow>93940</MaxTileRow><MinTileCol>132986</MinTileCol><MaxTileCol>133182</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.50204 46.4899</ows:LowerCorner><ows:UpperCorner>2.7914 46.7699</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38949864</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1444</MinTileRow><MaxTileRow>1449</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2889</MinTileRow><MaxTileRow>2898</MaxTileRow><MinTileCol>4152</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5778</MinTileRow><MaxTileRow>5796</MaxTileRow><MinTileCol>8305</MinTileCol><MaxTileCol>8319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11556</MinTileRow><MaxTileRow>11593</MaxTileRow><MinTileCol>16611</MinTileCol><MaxTileCol>16638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23112</MinTileRow><MaxTileRow>23186</MaxTileRow><MinTileCol>33223</MinTileCol><MaxTileCol>33276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46224</MinTileRow><MaxTileRow>46372</MaxTileRow><MinTileCol>66447</MinTileCol><MaxTileCol>66552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92448</MinTileRow><MaxTileRow>92744</MaxTileRow><MinTileCol>132895</MinTileCol><MaxTileCol>133104</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.02584 45.9863</ows:LowerCorner><ows:UpperCorner>3.31202 46.3379</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38970075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2903</MinTileRow><MaxTileRow>2914</MaxTileRow><MinTileCol>4164</MinTileCol><MaxTileCol>4171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5806</MinTileRow><MaxTileRow>5829</MaxTileRow><MinTileCol>8329</MinTileCol><MaxTileCol>8342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11613</MinTileRow><MaxTileRow>11659</MaxTileRow><MinTileCol>16659</MinTileCol><MaxTileCol>16685</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23226</MinTileRow><MaxTileRow>23318</MaxTileRow><MinTileCol>33318</MinTileCol><MaxTileCol>33370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46452</MinTileRow><MaxTileRow>46637</MaxTileRow><MinTileCol>66637</MinTileCol><MaxTileCol>66741</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92905</MinTileRow><MaxTileRow>93275</MaxTileRow><MinTileCol>133275</MinTileCol><MaxTileCol>133483</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.25806 45.9225</ows:LowerCorner><ows:UpperCorner>3.53233 46.2656</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38983576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1458</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2905</MinTileRow><MaxTileRow>2916</MaxTileRow><MinTileCol>4170</MinTileCol><MaxTileCol>4176</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5811</MinTileRow><MaxTileRow>5833</MaxTileRow><MinTileCol>8340</MinTileCol><MaxTileCol>8352</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11622</MinTileRow><MaxTileRow>11667</MaxTileRow><MinTileCol>16680</MinTileCol><MaxTileCol>16705</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23245</MinTileRow><MaxTileRow>23335</MaxTileRow><MinTileCol>33361</MinTileCol><MaxTileCol>33411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46490</MinTileRow><MaxTileRow>46671</MaxTileRow><MinTileCol>66722</MinTileCol><MaxTileCol>66822</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92981</MinTileRow><MaxTileRow>93342</MaxTileRow><MinTileCol>133444</MinTileCol><MaxTileCol>133644</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.64346 45.7759</ows:LowerCorner><ows:UpperCorner>3.92241 46.3</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38998334</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1460</MaxTileRow><MinTileCol>2089</MinTileCol><MaxTileCol>2092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2904</MinTileRow><MaxTileRow>2921</MaxTileRow><MinTileCol>4178</MinTileCol><MaxTileCol>4185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5809</MinTileRow><MaxTileRow>5843</MaxTileRow><MinTileCol>8357</MinTileCol><MaxTileCol>8370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11618</MinTileRow><MaxTileRow>11686</MaxTileRow><MinTileCol>16715</MinTileCol><MaxTileCol>16741</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23236</MinTileRow><MaxTileRow>23373</MaxTileRow><MinTileCol>33431</MinTileCol><MaxTileCol>33482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46473</MinTileRow><MaxTileRow>46746</MaxTileRow><MinTileCol>66862</MinTileCol><MaxTileCol>66964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92946</MinTileRow><MaxTileRow>93493</MaxTileRow><MinTileCol>133724</MinTileCol><MaxTileCol>133928</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.80499 46.1396</ows:LowerCorner><ows:UpperCorner>3.07801 46.3379</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-22-39643574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1454</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2903</MinTileRow><MaxTileRow>2909</MaxTileRow><MinTileCol>4159</MinTileCol><MaxTileCol>4166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5806</MinTileRow><MaxTileRow>5819</MaxTileRow><MinTileCol>8319</MinTileCol><MaxTileCol>8332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11613</MinTileRow><MaxTileRow>11639</MaxTileRow><MinTileCol>16639</MinTileCol><MaxTileCol>16664</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23226</MinTileRow><MaxTileRow>23278</MaxTileRow><MinTileCol>33278</MinTileCol><MaxTileCol>33328</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46452</MinTileRow><MaxTileRow>46557</MaxTileRow><MinTileCol>66557</MinTileCol><MaxTileCol>66656</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92905</MinTileRow><MaxTileRow>93114</MaxTileRow><MinTileCol>133114</MinTileCol><MaxTileCol>133313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.57357 45.4817</ows:LowerCorner><ows:UpperCorner>2.85919 46.0046</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-22-39652324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1457</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2077</MinTileCol><MaxTileCol>2080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2914</MinTileRow><MaxTileRow>2931</MaxTileRow><MinTileCol>4154</MinTileCol><MaxTileCol>4161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5828</MinTileRow><MaxTileRow>5862</MaxTileRow><MinTileCol>8309</MinTileCol><MaxTileCol>8322</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11656</MinTileRow><MaxTileRow>11725</MaxTileRow><MinTileCol>16618</MinTileCol><MaxTileCol>16644</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23313</MinTileRow><MaxTileRow>23450</MaxTileRow><MinTileCol>33236</MinTileCol><MaxTileCol>33288</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46627</MinTileRow><MaxTileRow>46900</MaxTileRow><MinTileCol>66472</MinTileCol><MaxTileCol>66577</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93255</MinTileRow><MaxTileRow>93801</MaxTileRow><MinTileCol>132945</MinTileCol><MaxTileCol>133154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.64346 45.7763</ows:LowerCorner><ows:UpperCorner>3.86788 46.138</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39136194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1454</MinTileRow><MaxTileRow>1460</MaxTileRow><MinTileCol>2089</MinTileCol><MaxTileCol>2091</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2909</MinTileRow><MaxTileRow>2921</MaxTileRow><MinTileCol>4178</MinTileCol><MaxTileCol>4183</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5819</MinTileRow><MaxTileRow>5843</MaxTileRow><MinTileCol>8357</MinTileCol><MaxTileCol>8367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11639</MinTileRow><MaxTileRow>11686</MaxTileRow><MinTileCol>16715</MinTileCol><MaxTileCol>16735</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23279</MinTileRow><MaxTileRow>23373</MaxTileRow><MinTileCol>33431</MinTileCol><MaxTileCol>33471</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46558</MinTileRow><MaxTileRow>46747</MaxTileRow><MinTileCol>66862</MinTileCol><MaxTileCol>66943</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93116</MinTileRow><MaxTileRow>93494</MaxTileRow><MinTileCol>133724</MinTileCol><MaxTileCol>133887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.25731 45.7604</ows:LowerCorner><ows:UpperCorner>3.5292 45.9414</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39148073</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1458</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2916</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4170</MinTileCol><MaxTileCol>4176</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5832</MinTileRow><MaxTileRow>5844</MaxTileRow><MinTileCol>8340</MinTileCol><MaxTileCol>8352</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11665</MinTileRow><MaxTileRow>11688</MaxTileRow><MinTileCol>16680</MinTileCol><MaxTileCol>16705</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23330</MinTileRow><MaxTileRow>23377</MaxTileRow><MinTileCol>33360</MinTileCol><MaxTileCol>33410</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46661</MinTileRow><MaxTileRow>46755</MaxTileRow><MinTileCol>66721</MinTileCol><MaxTileCol>66821</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93322</MinTileRow><MaxTileRow>93511</MaxTileRow><MinTileCol>133443</MinTileCol><MaxTileCol>133642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.03841 45.5</ows:LowerCorner><ows:UpperCorner>3.31018 46.0137</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39158071</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2930</MaxTileRow><MinTileCol>4165</MinTileCol><MaxTileCol>4171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5827</MinTileRow><MaxTileRow>5861</MaxTileRow><MinTileCol>8330</MinTileCol><MaxTileCol>8342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11655</MinTileRow><MaxTileRow>11722</MaxTileRow><MinTileCol>16660</MinTileCol><MaxTileCol>16685</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23311</MinTileRow><MaxTileRow>23445</MaxTileRow><MinTileCol>33321</MinTileCol><MaxTileCol>33370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46623</MinTileRow><MaxTileRow>46891</MaxTileRow><MinTileCol>66642</MinTileCol><MaxTileCol>66741</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93246</MinTileRow><MaxTileRow>93782</MaxTileRow><MinTileCol>133284</MinTileCol><MaxTileCol>133482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.58404 45.977</ows:LowerCorner><ows:UpperCorner>2.85793 46.3288</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39176075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1451</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2077</MinTileCol><MaxTileCol>2080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2903</MinTileRow><MaxTileRow>2915</MaxTileRow><MinTileCol>4154</MinTileCol><MaxTileCol>4161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5807</MinTileRow><MaxTileRow>5830</MaxTileRow><MinTileCol>8309</MinTileCol><MaxTileCol>8322</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11614</MinTileRow><MaxTileRow>11660</MaxTileRow><MinTileCol>16619</MinTileCol><MaxTileCol>16644</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23228</MinTileRow><MaxTileRow>23321</MaxTileRow><MinTileCol>33238</MinTileCol><MaxTileCol>33288</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46457</MinTileRow><MaxTileRow>46642</MaxTileRow><MinTileCol>66476</MinTileCol><MaxTileCol>66576</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92915</MinTileRow><MaxTileRow>93284</MaxTileRow><MinTileCol>132953</MinTileCol><MaxTileCol>133153</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.80614 45.5003</ows:LowerCorner><ows:UpperCorner>3.07755 46.0137</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39187826</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2930</MaxTileRow><MinTileCol>4159</MinTileCol><MaxTileCol>4166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5827</MinTileRow><MaxTileRow>5861</MaxTileRow><MinTileCol>8319</MinTileCol><MaxTileCol>8332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11655</MinTileRow><MaxTileRow>11722</MaxTileRow><MinTileCol>16639</MinTileCol><MaxTileCol>16664</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23311</MinTileRow><MaxTileRow>23445</MaxTileRow><MinTileCol>33278</MinTileCol><MaxTileCol>33328</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46623</MinTileRow><MaxTileRow>46891</MaxTileRow><MinTileCol>66557</MinTileCol><MaxTileCol>66656</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93246</MinTileRow><MaxTileRow>93782</MaxTileRow><MinTileCol>133115</MinTileCol><MaxTileCol>133313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.70379 45.4601</ows:LowerCorner><ows:UpperCorner>3.99155 45.8134</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39176824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1460</MinTileRow><MaxTileRow>1466</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2920</MinTileRow><MaxTileRow>2932</MaxTileRow><MinTileCol>4180</MinTileCol><MaxTileCol>4186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5841</MinTileRow><MaxTileRow>5864</MaxTileRow><MinTileCol>8360</MinTileCol><MaxTileCol>8373</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11682</MinTileRow><MaxTileRow>11728</MaxTileRow><MinTileCol>16721</MinTileCol><MaxTileCol>16746</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23364</MinTileRow><MaxTileRow>23456</MaxTileRow><MinTileCol>33442</MinTileCol><MaxTileCol>33493</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46728</MinTileRow><MaxTileRow>46912</MaxTileRow><MinTileCol>66884</MinTileCol><MaxTileCol>66987</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93456</MinTileRow><MaxTileRow>93824</MaxTileRow><MinTileCol>133768</MinTileCol><MaxTileCol>133975</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.07657 45.3108</ows:LowerCorner><ows:UpperCorner>3.34652 45.6265</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39189451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1468</MaxTileRow><MinTileCol>2083</MinTileCol><MaxTileCol>2086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2926</MinTileRow><MaxTileRow>2936</MaxTileRow><MinTileCol>4166</MinTileCol><MaxTileCol>4172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5853</MinTileRow><MaxTileRow>5873</MaxTileRow><MinTileCol>8332</MinTileCol><MaxTileCol>8344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11706</MinTileRow><MaxTileRow>11747</MaxTileRow><MinTileCol>16664</MinTileCol><MaxTileCol>16688</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23412</MinTileRow><MaxTileRow>23494</MaxTileRow><MinTileCol>33328</MinTileCol><MaxTileCol>33377</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46825</MinTileRow><MaxTileRow>46989</MaxTileRow><MinTileCol>66656</MinTileCol><MaxTileCol>66754</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93651</MinTileRow><MaxTileRow>93978</MaxTileRow><MinTileCol>133312</MinTileCol><MaxTileCol>133509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.62794 45.4188</ows:LowerCorner><ows:UpperCorner>2.89771 45.6085</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39202200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1466</MaxTileRow><MinTileCol>2077</MinTileCol><MaxTileCol>2080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2927</MinTileRow><MaxTileRow>2933</MaxTileRow><MinTileCol>4155</MinTileCol><MaxTileCol>4161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5854</MinTileRow><MaxTileRow>5866</MaxTileRow><MinTileCol>8311</MinTileCol><MaxTileCol>8323</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11708</MinTileRow><MaxTileRow>11733</MaxTileRow><MinTileCol>16623</MinTileCol><MaxTileCol>16647</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23417</MinTileRow><MaxTileRow>23466</MaxTileRow><MinTileCol>33246</MinTileCol><MaxTileCol>33295</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46834</MinTileRow><MaxTileRow>46933</MaxTileRow><MinTileCol>66492</MinTileCol><MaxTileCol>66591</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93669</MinTileRow><MaxTileRow>93866</MaxTileRow><MinTileCol>132985</MinTileCol><MaxTileCol>133182</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.85885 45.2753</ows:LowerCorner><ows:UpperCorner>3.12832 45.6175</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39212324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1468</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2926</MinTileRow><MaxTileRow>2937</MaxTileRow><MinTileCol>4161</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5853</MinTileRow><MaxTileRow>5875</MaxTileRow><MinTileCol>8322</MinTileCol><MaxTileCol>8334</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11707</MinTileRow><MaxTileRow>11751</MaxTileRow><MinTileCol>16644</MinTileCol><MaxTileCol>16668</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23415</MinTileRow><MaxTileRow>23503</MaxTileRow><MinTileCol>33288</MinTileCol><MaxTileCol>33337</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46830</MinTileRow><MaxTileRow>47007</MaxTileRow><MinTileCol>66576</MinTileCol><MaxTileCol>66675</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93660</MinTileRow><MaxTileRow>94015</MaxTileRow><MinTileCol>133153</MinTileCol><MaxTileCol>133350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.26908 46.1915</ows:LowerCorner><ows:UpperCorner>2.55914 46.5532</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-23-39823569</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1454</MaxTileRow><MinTileCol>2073</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2896</MinTileRow><MaxTileRow>2908</MaxTileRow><MinTileCol>4147</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5792</MinTileRow><MaxTileRow>5816</MaxTileRow><MinTileCol>8295</MinTileCol><MaxTileCol>8308</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11584</MinTileRow><MaxTileRow>11632</MaxTileRow><MinTileCol>16590</MinTileCol><MaxTileCol>16616</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23169</MinTileRow><MaxTileRow>23264</MaxTileRow><MinTileCol>33181</MinTileCol><MaxTileCol>33233</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46339</MinTileRow><MaxTileRow>46529</MaxTileRow><MinTileCol>66362</MinTileCol><MaxTileCol>66467</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92678</MinTileRow><MaxTileRow>93058</MaxTileRow><MinTileCol>132725</MinTileCol><MaxTileCol>132935</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.47757 45.9391</ows:LowerCorner><ows:UpperCorner>3.76652 46.3009</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39401449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>729</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1458</MaxTileRow><MinTileCol>2087</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2904</MinTileRow><MaxTileRow>2916</MaxTileRow><MinTileCol>4175</MinTileCol><MaxTileCol>4181</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5809</MinTileRow><MaxTileRow>5832</MaxTileRow><MinTileCol>8350</MinTileCol><MaxTileCol>8363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11618</MinTileRow><MaxTileRow>11665</MaxTileRow><MinTileCol>16700</MinTileCol><MaxTileCol>16726</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23236</MinTileRow><MaxTileRow>23331</MaxTileRow><MinTileCol>33401</MinTileCol><MaxTileCol>33452</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46472</MinTileRow><MaxTileRow>46662</MaxTileRow><MinTileCol>66802</MinTileCol><MaxTileCol>66905</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92944</MinTileRow><MaxTileRow>93324</MaxTileRow><MinTileCol>133604</MinTileCol><MaxTileCol>133811</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.02584 45.9863</ows:LowerCorner><ows:UpperCorner>3.3111 46.1758</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39414451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1454</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2908</MinTileRow><MaxTileRow>2914</MaxTileRow><MinTileCol>4164</MinTileCol><MaxTileCol>4171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5817</MinTileRow><MaxTileRow>5829</MaxTileRow><MinTileCol>8329</MinTileCol><MaxTileCol>8342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11634</MinTileRow><MaxTileRow>11659</MaxTileRow><MinTileCol>16659</MinTileCol><MaxTileCol>16685</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23269</MinTileRow><MaxTileRow>23318</MaxTileRow><MinTileCol>33318</MinTileCol><MaxTileCol>33370</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46538</MinTileRow><MaxTileRow>46637</MaxTileRow><MinTileCol>66637</MinTileCol><MaxTileCol>66741</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93076</MinTileRow><MaxTileRow>93275</MaxTileRow><MinTileCol>133275</MinTileCol><MaxTileCol>133483</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title><ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.4355 45.418</ows:LowerCorner><ows:UpperCorner>2.68035 45.6081</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39423701</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1466</MaxTileRow><MinTileCol>2075</MinTileCol><MaxTileCol>2078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2927</MinTileRow><MaxTileRow>2933</MaxTileRow><MinTileCol>4151</MinTileCol><MaxTileCol>4156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5854</MinTileRow><MaxTileRow>5866</MaxTileRow><MinTileCol>8302</MinTileCol><MaxTileCol>8313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11708</MinTileRow><MaxTileRow>11733</MaxTileRow><MinTileCol>16605</MinTileCol><MaxTileCol>16627</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23417</MinTileRow><MaxTileRow>23466</MaxTileRow><MinTileCol>33211</MinTileCol><MaxTileCol>33255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46835</MinTileRow><MaxTileRow>46933</MaxTileRow><MinTileCol>66422</MinTileCol><MaxTileCol>66511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93670</MinTileRow><MaxTileRow>93866</MaxTileRow><MinTileCol>132845</MinTileCol><MaxTileCol>133023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.85183 43.3612</ows:LowerCorner><ows:UpperCorner>2.17386 44.0568</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-17-38464575</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2977</MinTileRow><MaxTileRow>2998</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5954</MinTileRow><MaxTileRow>5997</MaxTileRow><MinTileCol>8276</MinTileCol><MaxTileCol>8290</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11908</MinTileRow><MaxTileRow>11995</MaxTileRow><MinTileCol>16552</MinTileCol><MaxTileCol>16581</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23816</MinTileRow><MaxTileRow>23990</MaxTileRow><MinTileCol>33105</MinTileCol><MaxTileCol>33162</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47632</MinTileRow><MaxTileRow>47981</MaxTileRow><MinTileCol>66211</MinTileCol><MaxTileCol>66325</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95264</MinTileRow><MaxTileRow>95962</MaxTileRow><MinTileCol>132423</MinTileCol><MaxTileCol>132650</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.62462 42.9539</ows:LowerCorner><ows:UpperCorner>1.98373 44.1631</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-17-38485324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>743</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1486</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2973</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4140</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5947</MinTileRow><MaxTileRow>6023</MaxTileRow><MinTileCol>8266</MinTileCol><MaxTileCol>8281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11894</MinTileRow><MaxTileRow>12046</MaxTileRow><MinTileCol>16532</MinTileCol><MaxTileCol>16562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23789</MinTileRow><MaxTileRow>24092</MaxTileRow><MinTileCol>33065</MinTileCol><MaxTileCol>33125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47579</MinTileRow><MaxTileRow>48184</MaxTileRow><MinTileCol>66131</MinTileCol><MaxTileCol>66250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95158</MinTileRow><MaxTileRow>96368</MaxTileRow><MinTileCol>132263</MinTileCol><MaxTileCol>132501</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.23023 43.7488</ows:LowerCorner><ows:UpperCorner>1.53505 43.9781</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-20-40028825</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1493</MaxTileRow><MinTileCol>2062</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2979</MinTileRow><MaxTileRow>2986</MaxTileRow><MinTileCol>4124</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5959</MinTileRow><MaxTileRow>5973</MaxTileRow><MinTileCol>8248</MinTileCol><MaxTileCol>8261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11918</MinTileRow><MaxTileRow>11946</MaxTileRow><MinTileCol>16496</MinTileCol><MaxTileCol>16523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23836</MinTileRow><MaxTileRow>23892</MaxTileRow><MinTileCol>32992</MinTileCol><MaxTileCol>33046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47672</MinTileRow><MaxTileRow>47785</MaxTileRow><MinTileCol>65984</MinTileCol><MaxTileCol>66093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95345</MinTileRow><MaxTileRow>95571</MaxTileRow><MinTileCol>131968</MinTileCol><MaxTileCol>132186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.4179 43.0139</ows:LowerCorner><ows:UpperCorner>1.74977 43.5038</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-04-10-38499949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2994</MinTileRow><MaxTileRow>3009</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5988</MinTileRow><MaxTileRow>6019</MaxTileRow><MinTileCol>8256</MinTileCol><MaxTileCol>8271</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11977</MinTileRow><MaxTileRow>12038</MaxTileRow><MinTileCol>16513</MinTileCol><MaxTileCol>16542</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23955</MinTileRow><MaxTileRow>24076</MaxTileRow><MinTileCol>33027</MinTileCol><MaxTileCol>33084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47911</MinTileRow><MaxTileRow>48153</MaxTileRow><MinTileCol>66054</MinTileCol><MaxTileCol>66169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95823</MinTileRow><MaxTileRow>96307</MaxTileRow><MinTileCol>132109</MinTileCol><MaxTileCol>132339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.21344 43.1096</ows:LowerCorner><ows:UpperCorner>1.5144 43.3209</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-04-16-38761827</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6000</MinTileRow><MaxTileRow>6013</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12000</MinTileRow><MaxTileRow>12026</MaxTileRow><MinTileCol>16494</MinTileCol><MaxTileCol>16521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24001</MinTileRow><MaxTileRow>24053</MaxTileRow><MinTileCol>32989</MinTileCol><MaxTileCol>33043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48003</MinTileRow><MaxTileRow>48106</MaxTileRow><MinTileCol>65978</MinTileCol><MaxTileCol>66087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96006</MinTileRow><MaxTileRow>96213</MaxTileRow><MinTileCol>131957</MinTileCol><MaxTileCol>132174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.2231 43.4337</ows:LowerCorner><ows:UpperCorner>1.50604 43.8066</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-05-05-38995450</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2984</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5969</MinTileRow><MaxTileRow>5993</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11939</MinTileRow><MaxTileRow>11986</MaxTileRow><MinTileCol>16495</MinTileCol><MaxTileCol>16521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23879</MinTileRow><MaxTileRow>23972</MaxTileRow><MinTileCol>32990</MinTileCol><MaxTileCol>33042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47759</MinTileRow><MaxTileRow>47944</MaxTileRow><MinTileCol>65981</MinTileCol><MaxTileCol>66084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95518</MinTileRow><MaxTileRow>95888</MaxTileRow><MinTileCol>131962</MinTileCol><MaxTileCol>132168</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.43491 43.122</ows:LowerCorner><ows:UpperCorner>1.72288 43.3326</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-05-05-39032325</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1499</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2999</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5999</MinTileRow><MaxTileRow>6012</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11999</MinTileRow><MaxTileRow>12025</MaxTileRow><MinTileCol>16514</MinTileCol><MaxTileCol>16540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23998</MinTileRow><MaxTileRow>24050</MaxTileRow><MinTileCol>33029</MinTileCol><MaxTileCol>33081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47996</MinTileRow><MaxTileRow>48101</MaxTileRow><MinTileCol>66058</MinTileCol><MaxTileCol>66163</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95993</MinTileRow><MaxTileRow>96202</MaxTileRow><MinTileCol>132116</MinTileCol><MaxTileCol>132326</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.66002 43.5209</ows:LowerCorner><ows:UpperCorner>1.94898 43.7219</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-05-39684199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1493</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2987</MinTileRow><MaxTileRow>2993</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4140</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5975</MinTileRow><MaxTileRow>5987</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8280</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11950</MinTileRow><MaxTileRow>11975</MaxTileRow><MinTileCol>16535</MinTileCol><MaxTileCol>16561</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23900</MinTileRow><MaxTileRow>23950</MaxTileRow><MinTileCol>33070</MinTileCol><MaxTileCol>33122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47800</MinTileRow><MaxTileRow>47901</MaxTileRow><MinTileCol>66141</MinTileCol><MaxTileCol>66245</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95601</MinTileRow><MaxTileRow>95803</MaxTileRow><MinTileCol>132282</MinTileCol><MaxTileCol>132491</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.83497 43.4419</ows:LowerCorner><ows:UpperCorner>2.12331 43.6605</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-05-39692949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1494</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2068</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2989</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4137</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5978</MinTileRow><MaxTileRow>5992</MaxTileRow><MinTileCol>8275</MinTileCol><MaxTileCol>8288</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11957</MinTileRow><MaxTileRow>11985</MaxTileRow><MinTileCol>16551</MinTileCol><MaxTileCol>16577</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23915</MinTileRow><MaxTileRow>23970</MaxTileRow><MinTileCol>33102</MinTileCol><MaxTileCol>33154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47831</MinTileRow><MaxTileRow>47941</MaxTileRow><MinTileCol>66204</MinTileCol><MaxTileCol>66309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95663</MinTileRow><MaxTileRow>95883</MaxTileRow><MinTileCol>132408</MinTileCol><MaxTileCol>132618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.61432 43.1155</ows:LowerCorner><ows:UpperCorner>1.90723 43.5595</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-12-39404950</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2992</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4132</MinTileCol><MaxTileCol>4139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5985</MinTileRow><MaxTileRow>6013</MaxTileRow><MinTileCol>8265</MinTileCol><MaxTileCol>8278</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11970</MinTileRow><MaxTileRow>12026</MaxTileRow><MinTileCol>16531</MinTileCol><MaxTileCol>16557</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23941</MinTileRow><MaxTileRow>24052</MaxTileRow><MinTileCol>33063</MinTileCol><MaxTileCol>33114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47882</MinTileRow><MaxTileRow>48104</MaxTileRow><MinTileCol>66126</MinTileCol><MaxTileCol>66229</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95765</MinTileRow><MaxTileRow>96209</MaxTileRow><MinTileCol>132253</MinTileCol><MaxTileCol>132458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.23339 43.2808</ows:LowerCorner><ows:UpperCorner>1.49769 43.4736</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-02-39189074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2062</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4124</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5990</MinTileRow><MaxTileRow>6002</MaxTileRow><MinTileCol>8248</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11981</MinTileRow><MaxTileRow>12005</MaxTileRow><MinTileCol>16496</MinTileCol><MaxTileCol>16520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23962</MinTileRow><MaxTileRow>24011</MaxTileRow><MinTileCol>32992</MinTileCol><MaxTileCol>33040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47925</MinTileRow><MaxTileRow>48022</MaxTileRow><MinTileCol>65984</MinTileCol><MaxTileCol>66081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95851</MinTileRow><MaxTileRow>96044</MaxTileRow><MinTileCol>131969</MinTileCol><MaxTileCol>132162</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.42959 43.4459</ows:LowerCorner><ows:UpperCorner>1.72804 43.9805</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-09-38958697</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2979</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5958</MinTileRow><MaxTileRow>5992</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11917</MinTileRow><MaxTileRow>11984</MaxTileRow><MinTileCol>16515</MinTileCol><MaxTileCol>16540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23835</MinTileRow><MaxTileRow>23969</MaxTileRow><MinTileCol>33030</MinTileCol><MaxTileCol>33081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47671</MinTileRow><MaxTileRow>47938</MaxTileRow><MinTileCol>66060</MinTileCol><MaxTileCol>66163</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95342</MinTileRow><MaxTileRow>95876</MaxTileRow><MinTileCol>132120</MinTileCol><MaxTileCol>132326</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.760919 43.0022</ows:LowerCorner><ows:UpperCorner>1.05134 43.2325</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-22-39053199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3003</MinTileRow><MaxTileRow>3009</MaxTileRow><MinTileCol>4113</MinTileCol><MaxTileCol>4119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6006</MinTileRow><MaxTileRow>6019</MaxTileRow><MinTileCol>8226</MinTileCol><MaxTileCol>8239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12012</MinTileRow><MaxTileRow>12039</MaxTileRow><MinTileCol>16453</MinTileCol><MaxTileCol>16479</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24024</MinTileRow><MaxTileRow>24079</MaxTileRow><MinTileCol>32906</MinTileCol><MaxTileCol>32958</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48048</MinTileRow><MaxTileRow>48159</MaxTileRow><MinTileCol>65812</MinTileCol><MaxTileCol>65917</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96097</MinTileRow><MaxTileRow>96318</MaxTileRow><MinTileCol>131625</MinTileCol><MaxTileCol>131835</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.980115 43.1329</ows:LowerCorner><ows:UpperCorner>1.31723 44.0017</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-26-40067944</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2059</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2978</MinTileRow><MaxTileRow>3005</MaxTileRow><MinTileCol>4118</MinTileCol><MaxTileCol>4125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5957</MinTileRow><MaxTileRow>6011</MaxTileRow><MinTileCol>8237</MinTileCol><MaxTileCol>8251</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11915</MinTileRow><MaxTileRow>12023</MaxTileRow><MinTileCol>16475</MinTileCol><MaxTileCol>16502</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23830</MinTileRow><MaxTileRow>24047</MaxTileRow><MinTileCol>32950</MinTileCol><MaxTileCol>33004</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47660</MinTileRow><MaxTileRow>48094</MaxTileRow><MinTileCol>65900</MinTileCol><MaxTileCol>66008</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95321</MinTileRow><MaxTileRow>96188</MaxTileRow><MinTileCol>131801</MinTileCol><MaxTileCol>132017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title><ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.767907 43.4705</ows:LowerCorner><ows:UpperCorner>1.08489 44.0069</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-08-02-39888571</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2978</MinTileRow><MaxTileRow>2995</MaxTileRow><MinTileCol>4113</MinTileCol><MaxTileCol>4120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5957</MinTileRow><MaxTileRow>5990</MaxTileRow><MinTileCol>8227</MinTileCol><MaxTileCol>8241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11914</MinTileRow><MaxTileRow>11981</MaxTileRow><MinTileCol>16455</MinTileCol><MaxTileCol>16482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23828</MinTileRow><MaxTileRow>23963</MaxTileRow><MinTileCol>32911</MinTileCol><MaxTileCol>32964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47656</MinTileRow><MaxTileRow>47927</MaxTileRow><MinTileCol>65822</MinTileCol><MaxTileCol>65929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95313</MinTileRow><MaxTileRow>95854</MaxTileRow><MinTileCol>131644</MinTileCol><MaxTileCol>131858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de EVREUX 2014</ows:Title><ows:Abstract>Orthophotographies satellites de EVREUX issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.973172 48.913</ows:LowerCorner><ows:UpperCorner>1.26697 49.1062</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_EVREUX-2014-09-16-39571428</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>702</MinTileRow><MaxTileRow>704</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1404</MinTileRow><MaxTileRow>1408</MaxTileRow><MinTileCol>2059</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2809</MinTileRow><MaxTileRow>2816</MaxTileRow><MinTileCol>4118</MinTileCol><MaxTileCol>4124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5619</MinTileRow><MaxTileRow>5632</MaxTileRow><MinTileCol>8236</MinTileCol><MaxTileCol>8249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11238</MinTileRow><MaxTileRow>11265</MaxTileRow><MinTileCol>16472</MinTileCol><MaxTileCol>16499</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22477</MinTileRow><MaxTileRow>22530</MaxTileRow><MinTileCol>32945</MinTileCol><MaxTileCol>32998</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44954</MinTileRow><MaxTileRow>45061</MaxTileRow><MinTileCol>65891</MinTileCol><MaxTileCol>65997</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89908</MinTileRow><MaxTileRow>90122</MaxTileRow><MinTileCol>131782</MinTileCol><MaxTileCol>131994</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de FRANCHE-COMTE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de FRANCHE-COMTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.20696 46.2001</ows:LowerCorner><ows:UpperCorner>7.21284 48.0605</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_FRANCHE-COMTE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1053</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1423</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2107</MinTileCol><MaxTileCol>2129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2846</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4215</MinTileCol><MaxTileCol>4259</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5692</MinTileRow><MaxTileRow>5813</MaxTileRow><MinTileCol>8430</MinTileCol><MaxTileCol>8518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11384</MinTileRow><MaxTileRow>11626</MaxTileRow><MinTileCol>16860</MinTileCol><MaxTileCol>17037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22769</MinTileRow><MaxTileRow>23253</MaxTileRow><MinTileCol>33720</MinTileCol><MaxTileCol>34074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45539</MinTileRow><MaxTileRow>46506</MaxTileRow><MinTileCol>67441</MinTileCol><MaxTileCol>68149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de GEX-GENEVE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de GEX-GENEVE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.93299 46.2211</ows:LowerCorner><ows:UpperCorner>6.20438 46.435</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_GEX-GENEVE-2014-06-07-38242406</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1450</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2115</MinTileCol><MaxTileCol>2118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2900</MinTileRow><MaxTileRow>2907</MaxTileRow><MinTileCol>4231</MinTileCol><MaxTileCol>4237</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5800</MinTileRow><MaxTileRow>5814</MaxTileRow><MinTileCol>8462</MinTileCol><MaxTileCol>8474</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11600</MinTileRow><MaxTileRow>11628</MaxTileRow><MinTileCol>16924</MinTileCol><MaxTileCol>16948</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23200</MinTileRow><MaxTileRow>23257</MaxTileRow><MinTileCol>33848</MinTileCol><MaxTileCol>33897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46401</MinTileRow><MaxTileRow>46514</MaxTileRow><MinTileCol>67696</MinTileCol><MaxTileCol>67795</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92802</MinTileRow><MaxTileRow>93028</MaxTileRow><MinTileCol>135392</MinTileCol><MaxTileCol>135590</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de GRENOBLE 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de GRENOBLE 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.59191 45.0499</ows:LowerCorner><ows:UpperCorner>5.85638 45.2631</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_GRENOBLE-2014-10-28-38276402</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>367</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>734</MinTileRow><MaxTileRow>736</MaxTileRow><MinTileCol>1055</MinTileCol><MaxTileCol>1057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1469</MinTileRow><MaxTileRow>1472</MaxTileRow><MinTileCol>2111</MinTileCol><MaxTileCol>2114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2938</MinTileRow><MaxTileRow>2945</MaxTileRow><MinTileCol>4223</MinTileCol><MaxTileCol>4229</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5876</MinTileRow><MaxTileRow>5890</MaxTileRow><MinTileCol>8446</MinTileCol><MaxTileCol>8458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11753</MinTileRow><MaxTileRow>11781</MaxTileRow><MinTileCol>16892</MinTileCol><MaxTileCol>16917</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23507</MinTileRow><MaxTileRow>23562</MaxTileRow><MinTileCol>33785</MinTileCol><MaxTileCol>33834</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47014</MinTileRow><MaxTileRow>47124</MaxTileRow><MinTileCol>67571</MinTileCol><MaxTileCol>67668</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94028</MinTileRow><MaxTileRow>94248</MaxTileRow><MinTileCol>135143</MinTileCol><MaxTileCol>135336</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de HAUTE-NORMANDIE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de HAUTE-NORMANDIE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.0141291 48.6248</ows:LowerCorner><ows:UpperCorner>1.84598 50.0836</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_HAUTE-NORMANDIE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>346</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>693</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1387</MinTileRow><MaxTileRow>1412</MaxTileRow><MinTileCol>2048</MinTileCol><MaxTileCol>2068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2775</MinTileRow><MaxTileRow>2825</MaxTileRow><MinTileCol>4096</MinTileCol><MaxTileCol>4137</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5550</MinTileRow><MaxTileRow>5651</MaxTileRow><MinTileCol>8193</MinTileCol><MaxTileCol>8275</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11101</MinTileRow><MaxTileRow>11303</MaxTileRow><MinTileCol>16387</MinTileCol><MaxTileCol>16550</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22203</MinTileRow><MaxTileRow>22606</MaxTileRow><MinTileCol>32775</MinTileCol><MaxTileCol>33101</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44407</MinTileRow><MaxTileRow>45212</MaxTileRow><MinTileCol>65550</MinTileCol><MaxTileCol>66203</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>173</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ILE-DE-FRANCE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de ILE-DE-FRANCE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.42085 48.0833</ows:LowerCorner><ows:UpperCorner>3.76905 49.2512</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ILE-DE-FRANCE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>701</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1402</MinTileRow><MaxTileRow>1422</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2804</MinTileRow><MaxTileRow>2844</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4181</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5609</MinTileRow><MaxTileRow>5688</MaxTileRow><MinTileCol>8256</MinTileCol><MaxTileCol>8363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11218</MinTileRow><MaxTileRow>11377</MaxTileRow><MinTileCol>16513</MinTileCol><MaxTileCol>16726</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22437</MinTileRow><MaxTileRow>22755</MaxTileRow><MinTileCol>33027</MinTileCol><MaxTileCol>33453</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44875</MinTileRow><MaxTileRow>45511</MaxTileRow><MinTileCol>66054</MinTileCol><MaxTileCol>66907</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de KOUROU 2013</ows:Title><ows:Abstract>Orthophotographies satellites de KOUROU issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-52.7504 5.06398</ows:LowerCorner><ows:UpperCorner>-52.5696 5.25435</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_KOUROU-2013-10-10-50575509</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>497</MinTileRow><MaxTileRow>497</MaxTileRow><MinTileCol>361</MinTileCol><MaxTileCol>362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>994</MinTileRow><MaxTileRow>995</MaxTileRow><MinTileCol>723</MinTileCol><MaxTileCol>724</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1988</MinTileRow><MaxTileRow>1990</MaxTileRow><MinTileCol>1447</MinTileCol><MaxTileCol>1449</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3976</MinTileRow><MaxTileRow>3980</MaxTileRow><MinTileCol>2895</MinTileCol><MaxTileCol>2899</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7952</MinTileRow><MaxTileRow>7961</MaxTileRow><MinTileCol>5791</MinTileCol><MaxTileCol>5799</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>15905</MinTileRow><MaxTileRow>15922</MaxTileRow><MinTileCol>11582</MinTileCol><MaxTileCol>11599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>31810</MinTileRow><MaxTileRow>31844</MaxTileRow><MinTileCol>23165</MinTileCol><MaxTileCol>23198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>63620</MinTileRow><MaxTileRow>63689</MaxTileRow><MinTileCol>46330</MinTileCol><MaxTileCol>46396</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>127240</MinTileRow><MaxTileRow>127379</MaxTileRow><MinTileCol>92660</MinTileCol><MaxTileCol>92792</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>15</MinTileRow><MaxTileRow>15</MaxTileRow><MinTileCol>11</MinTileCol><MaxTileCol>11</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>31</MinTileRow><MaxTileRow>31</MaxTileRow><MinTileCol>22</MinTileCol><MaxTileCol>22</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>62</MinTileRow><MaxTileRow>62</MaxTileRow><MinTileCol>45</MinTileCol><MaxTileCol>45</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>124</MinTileRow><MaxTileRow>124</MaxTileRow><MinTileCol>90</MinTileCol><MaxTileCol>90</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>248</MinTileRow><MaxTileRow>248</MaxTileRow><MinTileCol>180</MinTileCol><MaxTileCol>181</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de KOUROU 2013</ows:Title><ows:Abstract>Orthophotographies satellites de KOUROU issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-52.7504 5.06398</ows:LowerCorner><ows:UpperCorner>-52.5696 5.25435</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_KOUROU-2013-10-10-50599498</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>497</MinTileRow><MaxTileRow>497</MaxTileRow><MinTileCol>361</MinTileCol><MaxTileCol>362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>994</MinTileRow><MaxTileRow>995</MaxTileRow><MinTileCol>723</MinTileCol><MaxTileCol>724</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1988</MinTileRow><MaxTileRow>1990</MaxTileRow><MinTileCol>1447</MinTileCol><MaxTileCol>1449</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3976</MinTileRow><MaxTileRow>3980</MaxTileRow><MinTileCol>2895</MinTileCol><MaxTileCol>2899</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7952</MinTileRow><MaxTileRow>7961</MaxTileRow><MinTileCol>5791</MinTileCol><MaxTileCol>5799</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>15905</MinTileRow><MaxTileRow>15922</MaxTileRow><MinTileCol>11582</MinTileCol><MaxTileCol>11599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>31810</MinTileRow><MaxTileRow>31844</MaxTileRow><MinTileCol>23165</MinTileCol><MaxTileCol>23198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>63620</MinTileRow><MaxTileRow>63689</MaxTileRow><MinTileCol>46330</MinTileCol><MaxTileCol>46396</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>127240</MinTileRow><MaxTileRow>127379</MaxTileRow><MinTileCol>92660</MinTileCol><MaxTileCol>92792</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>15</MinTileRow><MaxTileRow>15</MaxTileRow><MinTileCol>11</MinTileCol><MaxTileCol>11</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>31</MinTileRow><MaxTileRow>31</MaxTileRow><MinTileCol>22</MinTileCol><MaxTileCol>22</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>62</MinTileRow><MaxTileRow>62</MaxTileRow><MinTileCol>45</MinTileCol><MaxTileCol>45</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>124</MinTileRow><MaxTileRow>124</MaxTileRow><MinTileCol>90</MinTileCol><MaxTileCol>90</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>248</MinTileRow><MaxTileRow>248</MaxTileRow><MinTileCol>180</MinTileCol><MaxTileCol>181</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LANGUEDOC-ROUSSILLON 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LANGUEDOC-ROUSSILLON issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.61586 42.2998</ows:LowerCorner><ows:UpperCorner>4.89191 45.0326</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANGUEDOC-ROUSSILLON-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>378</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>757</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1472</MinTileRow><MaxTileRow>1515</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2103</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2945</MinTileRow><MaxTileRow>3031</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4206</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5891</MinTileRow><MaxTileRow>6062</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8413</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11782</MinTileRow><MaxTileRow>12125</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16826</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23564</MinTileRow><MaxTileRow>24251</MaxTileRow><MinTileCol>33069</MinTileCol><MaxTileCol>33652</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47128</MinTileRow><MaxTileRow>48502</MaxTileRow><MinTileCol>66139</MinTileCol><MaxTileCol>67305</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>189</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Lannion</ows:Title><ows:Abstract>Orthophotographies satellites de Lannion issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-3.63112 48.6481</ows:LowerCorner><ows:UpperCorner>-3.29371 48.8712</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANNION-2013-07-10-41354194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>501</MinTileCol><MaxTileCol>502</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>704</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1003</MinTileCol><MaxTileCol>1005</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1409</MinTileRow><MaxTileRow>1412</MaxTileRow><MinTileCol>2006</MinTileCol><MaxTileCol>2010</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2818</MinTileRow><MaxTileRow>2825</MaxTileRow><MinTileCol>4013</MinTileCol><MaxTileCol>4020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5636</MinTileRow><MaxTileRow>5650</MaxTileRow><MinTileCol>8027</MinTileCol><MaxTileCol>8041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11272</MinTileRow><MaxTileRow>11300</MaxTileRow><MinTileCol>16054</MinTileCol><MaxTileCol>16082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22544</MinTileRow><MaxTileRow>22600</MaxTileRow><MinTileCol>32109</MinTileCol><MaxTileCol>32165</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45089</MinTileRow><MaxTileRow>45201</MaxTileRow><MinTileCol>64218</MinTileCol><MaxTileCol>64331</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90179</MinTileRow><MaxTileRow>90403</MaxTileRow><MinTileCol>128436</MinTileCol><MaxTileCol>128663</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>62</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>125</MinTileCol><MaxTileCol>125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>250</MinTileCol><MaxTileCol>251</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LANNION</ows:Title><ows:Abstract>Orthophotographies satellites de LANNION-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-3.63112 48.6481</ows:LowerCorner><ows:UpperCorner>-3.29371 48.8712</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANNION-2014-03-08-41106819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>501</MinTileCol><MaxTileCol>502</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>704</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1003</MinTileCol><MaxTileCol>1005</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1409</MinTileRow><MaxTileRow>1412</MaxTileRow><MinTileCol>2006</MinTileCol><MaxTileCol>2010</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2818</MinTileRow><MaxTileRow>2825</MaxTileRow><MinTileCol>4013</MinTileCol><MaxTileCol>4020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5636</MinTileRow><MaxTileRow>5650</MaxTileRow><MinTileCol>8027</MinTileCol><MaxTileCol>8041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11272</MinTileRow><MaxTileRow>11300</MaxTileRow><MinTileCol>16054</MinTileCol><MaxTileCol>16082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22545</MinTileRow><MaxTileRow>22600</MaxTileRow><MinTileCol>32109</MinTileCol><MaxTileCol>32165</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45090</MinTileRow><MaxTileRow>45201</MaxTileRow><MinTileCol>64219</MinTileCol><MaxTileCol>64330</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90181</MinTileRow><MaxTileRow>90403</MaxTileRow><MinTileCol>128439</MinTileCol><MaxTileCol>128661</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>62</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>125</MinTileCol><MaxTileCol>125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>250</MinTileCol><MaxTileCol>251</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LE-HAVRE</ows:Title><ows:Abstract>Orthophotographies satellites de LE-HAVRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.0341827 49.4465</ows:LowerCorner><ows:UpperCorner>0.318677 49.6345</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LE-HAVRE-2013-03-30-40397194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>349</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>697</MinTileRow><MaxTileRow>699</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1025</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1395</MinTileRow><MaxTileRow>1399</MaxTileRow><MinTileCol>2048</MinTileCol><MaxTileCol>2051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2790</MinTileRow><MaxTileRow>2798</MaxTileRow><MinTileCol>4096</MinTileCol><MaxTileCol>4103</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5581</MinTileRow><MaxTileRow>5596</MaxTileRow><MinTileCol>8192</MinTileCol><MaxTileCol>8207</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11163</MinTileRow><MaxTileRow>11192</MaxTileRow><MinTileCol>16385</MinTileCol><MaxTileCol>16414</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22327</MinTileRow><MaxTileRow>22384</MaxTileRow><MinTileCol>32771</MinTileCol><MaxTileCol>32828</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44654</MinTileRow><MaxTileRow>44768</MaxTileRow><MinTileCol>65543</MinTileCol><MaxTileCol>65657</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89308</MinTileRow><MaxTileRow>89537</MaxTileRow><MinTileCol>131086</MinTileCol><MaxTileCol>131314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>174</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LE-HAVRE</ows:Title><ows:Abstract>Orthophotographies satellites de LE-HAVRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.0349471 49.4494</ows:LowerCorner><ows:UpperCorner>0.317687 49.6307</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LE-HAVRE-2013-03-30-40414069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>349</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>697</MinTileRow><MaxTileRow>699</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1025</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1395</MinTileRow><MaxTileRow>1398</MaxTileRow><MinTileCol>2048</MinTileCol><MaxTileCol>2051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2791</MinTileRow><MaxTileRow>2797</MaxTileRow><MinTileCol>4096</MinTileCol><MaxTileCol>4103</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5582</MinTileRow><MaxTileRow>5595</MaxTileRow><MinTileCol>8192</MinTileCol><MaxTileCol>8207</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11164</MinTileRow><MaxTileRow>11191</MaxTileRow><MinTileCol>16385</MinTileCol><MaxTileCol>16414</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22328</MinTileRow><MaxTileRow>22383</MaxTileRow><MinTileCol>32771</MinTileCol><MaxTileCol>32828</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44656</MinTileRow><MaxTileRow>44766</MaxTileRow><MinTileCol>65543</MinTileCol><MaxTileCol>65656</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89313</MinTileRow><MaxTileRow>89533</MaxTileRow><MinTileCol>131087</MinTileCol><MaxTileCol>131313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>174</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LENS-LIEVIN 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LENS-LIEVIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.67613 50.3224</ows:LowerCorner><ows:UpperCorner>2.98598 50.5293</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LENS-LIEVIN-2014-05-16-39324074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>344</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>689</MinTileRow><MaxTileRow>691</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1379</MinTileRow><MaxTileRow>1383</MaxTileRow><MinTileCol>2078</MinTileCol><MaxTileCol>2081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2759</MinTileRow><MaxTileRow>2766</MaxTileRow><MinTileCol>4156</MinTileCol><MaxTileCol>4163</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5518</MinTileRow><MaxTileRow>5533</MaxTileRow><MinTileCol>8313</MinTileCol><MaxTileCol>8327</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11037</MinTileRow><MaxTileRow>11067</MaxTileRow><MinTileCol>16627</MinTileCol><MaxTileCol>16655</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22075</MinTileRow><MaxTileRow>22134</MaxTileRow><MinTileCol>33255</MinTileCol><MaxTileCol>33311</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44150</MinTileRow><MaxTileRow>44268</MaxTileRow><MinTileCol>66510</MinTileCol><MaxTileCol>66623</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88301</MinTileRow><MaxTileRow>88537</MaxTileRow><MinTileCol>133020</MinTileCol><MaxTileCol>133246</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LILLE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de LILLE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.95753 50.5111</ows:LowerCorner><ows:UpperCorner>3.25483 50.7985</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LILLE-2013-07-21-39272818</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>343</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>687</MinTileRow><MaxTileRow>690</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1374</MinTileRow><MaxTileRow>1380</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2749</MinTileRow><MaxTileRow>2760</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4170</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5499</MinTileRow><MaxTileRow>5520</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10999</MinTileRow><MaxTileRow>11040</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21998</MinTileRow><MaxTileRow>22080</MaxTileRow><MinTileCol>33306</MinTileCol><MaxTileCol>33360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43996</MinTileRow><MaxTileRow>44161</MaxTileRow><MinTileCol>66612</MinTileCol><MaxTileCol>66720</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87992</MinTileRow><MaxTileRow>88322</MaxTileRow><MinTileCol>133225</MinTileCol><MaxTileCol>133441</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LILLE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de LILLE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.95753 50.5111</ows:LowerCorner><ows:UpperCorner>3.25483 50.7985</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LILLE-2013-07-21-39286798</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>343</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>687</MinTileRow><MaxTileRow>690</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1374</MinTileRow><MaxTileRow>1380</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2749</MinTileRow><MaxTileRow>2760</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4170</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5499</MinTileRow><MaxTileRow>5520</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10999</MinTileRow><MaxTileRow>11040</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21998</MinTileRow><MaxTileRow>22080</MaxTileRow><MinTileCol>33306</MinTileCol><MaxTileCol>33360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43996</MinTileRow><MaxTileRow>44161</MaxTileRow><MinTileCol>66612</MinTileCol><MaxTileCol>66720</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87992</MinTileRow><MaxTileRow>88322</MaxTileRow><MinTileCol>133225</MinTileCol><MaxTileCol>133441</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LIMOUSIN-2013</ows:Title><ows:Abstract>Orthophotographies satellites de LIMOUSIN-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.563585 44.8809</ows:LowerCorner><ows:UpperCorner>2.64526 46.4724</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LIMOUSIN-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>737</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1475</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2898</MinTileRow><MaxTileRow>2950</MaxTileRow><MinTileCol>4109</MinTileCol><MaxTileCol>4156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5797</MinTileRow><MaxTileRow>5900</MaxTileRow><MinTileCol>8219</MinTileCol><MaxTileCol>8312</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11595</MinTileRow><MaxTileRow>11800</MaxTileRow><MinTileCol>16438</MinTileCol><MaxTileCol>16624</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23191</MinTileRow><MaxTileRow>23600</MaxTileRow><MinTileCol>32876</MinTileCol><MaxTileCol>33248</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46383</MinTileRow><MaxTileRow>47201</MaxTileRow><MinTileCol>65752</MinTileCol><MaxTileCol>66496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LIMOUSIN 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LIMOUSIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.563585 44.7999</ows:LowerCorner><ows:UpperCorner>2.64578 46.4724</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LIMOUSIN-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2898</MinTileRow><MaxTileRow>2952</MaxTileRow><MinTileCol>4109</MinTileCol><MaxTileCol>4156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5797</MinTileRow><MaxTileRow>5905</MaxTileRow><MinTileCol>8219</MinTileCol><MaxTileCol>8312</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11595</MinTileRow><MaxTileRow>11810</MaxTileRow><MinTileCol>16438</MinTileCol><MaxTileCol>16624</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23191</MinTileRow><MaxTileRow>23620</MaxTileRow><MinTileCol>32876</MinTileCol><MaxTileCol>33248</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46383</MinTileRow><MaxTileRow>47241</MaxTileRow><MinTileCol>65752</MinTileCol><MaxTileCol>66496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.38301 46.7447</ows:LowerCorner><ows:UpperCorner>-2.06064 47.1082</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-02-24-40696148</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>359</MinTileRow><MaxTileRow>361</MaxTileRow><MinTileCol>505</MinTileCol><MaxTileCol>506</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>719</MinTileRow><MaxTileRow>722</MaxTileRow><MinTileCol>1010</MinTileCol><MaxTileCol>1012</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1438</MinTileRow><MaxTileRow>1444</MaxTileRow><MinTileCol>2021</MinTileCol><MaxTileCol>2024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2877</MinTileRow><MaxTileRow>2889</MaxTileRow><MinTileCol>4042</MinTileCol><MaxTileCol>4048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5755</MinTileRow><MaxTileRow>5779</MaxTileRow><MinTileCol>8084</MinTileCol><MaxTileCol>8097</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11511</MinTileRow><MaxTileRow>11558</MaxTileRow><MinTileCol>16168</MinTileCol><MaxTileCol>16195</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23023</MinTileRow><MaxTileRow>23116</MaxTileRow><MinTileCol>32336</MinTileCol><MaxTileCol>32390</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46046</MinTileRow><MaxTileRow>46233</MaxTileRow><MinTileCol>64672</MinTileCol><MaxTileCol>64780</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92093</MinTileRow><MaxTileRow>92467</MaxTileRow><MinTileCol>129345</MinTileCol><MaxTileCol>129560</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>180</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.92824 46.3411</ows:LowerCorner><ows:UpperCorner>-1.61918 46.7569</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-03-16-40489844</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>725</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1444</MinTileRow><MaxTileRow>1451</MaxTileRow><MinTileCol>2026</MinTileCol><MaxTileCol>2029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2889</MinTileRow><MaxTileRow>2902</MaxTileRow><MinTileCol>4052</MinTileCol><MaxTileCol>4059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5779</MinTileRow><MaxTileRow>5805</MaxTileRow><MinTileCol>8105</MinTileCol><MaxTileCol>8118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11559</MinTileRow><MaxTileRow>11611</MaxTileRow><MinTileCol>16210</MinTileCol><MaxTileCol>16236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23118</MinTileRow><MaxTileRow>23222</MaxTileRow><MinTileCol>32420</MinTileCol><MaxTileCol>32473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46236</MinTileRow><MaxTileRow>46445</MaxTileRow><MinTileCol>64840</MinTileCol><MaxTileCol>64946</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92472</MinTileRow><MaxTileRow>92891</MaxTileRow><MinTileCol>129680</MinTileCol><MaxTileCol>129892</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.16821 46.5476</ows:LowerCorner><ows:UpperCorner>-1.846 47.0718</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-03-16-40509104</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>359</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>505</MinTileCol><MaxTileCol>506</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>719</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1011</MinTileCol><MaxTileCol>1013</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1439</MinTileRow><MaxTileRow>1448</MaxTileRow><MinTileCol>2023</MinTileCol><MaxTileCol>2026</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2879</MinTileRow><MaxTileRow>2896</MaxTileRow><MinTileCol>4047</MinTileCol><MaxTileCol>4053</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5758</MinTileRow><MaxTileRow>5792</MaxTileRow><MinTileCol>8094</MinTileCol><MaxTileCol>8107</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11517</MinTileRow><MaxTileRow>11584</MaxTileRow><MinTileCol>16189</MinTileCol><MaxTileCol>16215</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23034</MinTileRow><MaxTileRow>23169</MaxTileRow><MinTileCol>32378</MinTileCol><MaxTileCol>32431</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46068</MinTileRow><MaxTileRow>46338</MaxTileRow><MinTileCol>64756</MinTileCol><MaxTileCol>64862</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92136</MinTileRow><MaxTileRow>92676</MaxTileRow><MinTileCol>129512</MinTileCol><MaxTileCol>129725</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.72717 46.133</ows:LowerCorner><ows:UpperCorner>-1.38114 46.559</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-04-11-40484074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1448</MinTileRow><MaxTileRow>1454</MaxTileRow><MinTileCol>2028</MinTileCol><MaxTileCol>2031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2896</MinTileRow><MaxTileRow>2909</MaxTileRow><MinTileCol>4057</MinTileCol><MaxTileCol>4063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5792</MinTileRow><MaxTileRow>5819</MaxTileRow><MinTileCol>8114</MinTileCol><MaxTileCol>8127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11584</MinTileRow><MaxTileRow>11639</MaxTileRow><MinTileCol>16229</MinTileCol><MaxTileCol>16255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23168</MinTileRow><MaxTileRow>23278</MaxTileRow><MinTileCol>32458</MinTileCol><MaxTileCol>32511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46337</MinTileRow><MaxTileRow>46557</MaxTileRow><MinTileCol>64916</MinTileCol><MaxTileCol>65022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92674</MinTileRow><MaxTileRow>93115</MaxTileRow><MinTileCol>129833</MinTileCol><MaxTileCol>130045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.02337 45.5009</ows:LowerCorner><ows:UpperCorner>-0.741068 45.6991</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-16-40071482</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1019</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1462</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2036</MinTileCol><MaxTileCol>2039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2924</MinTileRow><MaxTileRow>2930</MaxTileRow><MinTileCol>4072</MinTileCol><MaxTileCol>4079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5848</MinTileRow><MaxTileRow>5861</MaxTileRow><MinTileCol>8145</MinTileCol><MaxTileCol>8158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11697</MinTileRow><MaxTileRow>11722</MaxTileRow><MinTileCol>16291</MinTileCol><MaxTileCol>16316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23395</MinTileRow><MaxTileRow>23444</MaxTileRow><MinTileCol>32582</MinTileCol><MaxTileCol>32633</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46791</MinTileRow><MaxTileRow>46889</MaxTileRow><MinTileCol>65164</MinTileCol><MaxTileCol>65266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93583</MinTileRow><MaxTileRow>93778</MaxTileRow><MinTileCol>130328</MinTileCol><MaxTileCol>130532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.27135 45.5469</ows:LowerCorner><ows:UpperCorner>-0.962369 46.0783</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-16-40094949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1455</MinTileRow><MaxTileRow>1464</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2911</MinTileRow><MaxTileRow>2928</MaxTileRow><MinTileCol>4067</MinTileCol><MaxTileCol>4074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5823</MinTileRow><MaxTileRow>5857</MaxTileRow><MinTileCol>8135</MinTileCol><MaxTileCol>8148</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11647</MinTileRow><MaxTileRow>11715</MaxTileRow><MinTileCol>16270</MinTileCol><MaxTileCol>16296</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23295</MinTileRow><MaxTileRow>23431</MaxTileRow><MinTileCol>32541</MinTileCol><MaxTileCol>32592</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46591</MinTileRow><MaxTileRow>46862</MaxTileRow><MinTileCol>65082</MinTileCol><MaxTileCol>65185</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93183</MinTileRow><MaxTileRow>93725</MaxTileRow><MinTileCol>130164</MinTileCol><MaxTileCol>130371</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.47221 46.2058</ows:LowerCorner><ows:UpperCorner>-1.17894 46.4769</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-22-40293723</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2899</MinTileRow><MaxTileRow>2907</MaxTileRow><MinTileCol>4062</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5798</MinTileRow><MaxTileRow>5814</MaxTileRow><MinTileCol>8124</MinTileCol><MaxTileCol>8138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11596</MinTileRow><MaxTileRow>11629</MaxTileRow><MinTileCol>16249</MinTileCol><MaxTileCol>16276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23192</MinTileRow><MaxTileRow>23258</MaxTileRow><MinTileCol>32499</MinTileCol><MaxTileCol>32552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46384</MinTileRow><MaxTileRow>46517</MaxTileRow><MinTileCol>64999</MinTileCol><MaxTileCol>65105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92768</MinTileRow><MaxTileRow>93034</MaxTileRow><MinTileCol>129999</MinTileCol><MaxTileCol>130210</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.329 45.6249</ows:LowerCorner><ows:UpperCorner>-1.17326 45.8191</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-22-40304210</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>731</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1460</MinTileRow><MaxTileRow>1463</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2920</MinTileRow><MaxTileRow>2926</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5840</MinTileRow><MaxTileRow>5853</MaxTileRow><MinTileCol>8131</MinTileCol><MaxTileCol>8138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11681</MinTileRow><MaxTileRow>11706</MaxTileRow><MinTileCol>16263</MinTileCol><MaxTileCol>16276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23362</MinTileRow><MaxTileRow>23412</MaxTileRow><MinTileCol>32527</MinTileCol><MaxTileCol>32552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46725</MinTileRow><MaxTileRow>46825</MaxTileRow><MinTileCol>65055</MinTileCol><MaxTileCol>65104</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93450</MinTileRow><MaxTileRow>93650</MaxTileRow><MinTileCol>130110</MinTileCol><MaxTileCol>130209</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.28368 46.0329</ows:LowerCorner><ows:UpperCorner>-0.945734 46.4039</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-07-25-40106069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1450</MinTileRow><MaxTileRow>1456</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2901</MinTileRow><MaxTileRow>2913</MaxTileRow><MinTileCol>4067</MinTileCol><MaxTileCol>4073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5802</MinTileRow><MaxTileRow>5826</MaxTileRow><MinTileCol>8134</MinTileCol><MaxTileCol>8147</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11605</MinTileRow><MaxTileRow>11652</MaxTileRow><MinTileCol>16269</MinTileCol><MaxTileCol>16295</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23210</MinTileRow><MaxTileRow>23304</MaxTileRow><MinTileCol>32538</MinTileCol><MaxTileCol>32591</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46421</MinTileRow><MaxTileRow>46609</MaxTileRow><MinTileCol>65077</MinTileCol><MaxTileCol>65183</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92842</MinTileRow><MaxTileRow>93218</MaxTileRow><MinTileCol>130154</MinTileCol><MaxTileCol>130366</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.961084 45.3409</ows:LowerCorner><ows:UpperCorner>-0.70467 45.547</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-07-31-40307949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>366</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>509</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>732</MinTileRow><MaxTileRow>733</MaxTileRow><MinTileCol>1018</MinTileCol><MaxTileCol>1019</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1464</MinTileRow><MaxTileRow>1467</MaxTileRow><MinTileCol>2037</MinTileCol><MaxTileCol>2039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2929</MinTileRow><MaxTileRow>2935</MaxTileRow><MinTileCol>4074</MinTileCol><MaxTileCol>4079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5858</MinTileRow><MaxTileRow>5871</MaxTileRow><MinTileCol>8148</MinTileCol><MaxTileCol>8159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11717</MinTileRow><MaxTileRow>11742</MaxTileRow><MinTileCol>16296</MinTileCol><MaxTileCol>16319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23435</MinTileRow><MaxTileRow>23485</MaxTileRow><MinTileCol>32592</MinTileCol><MaxTileCol>32638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46870</MinTileRow><MaxTileRow>46970</MaxTileRow><MinTileCol>65185</MinTileCol><MaxTileCol>65276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93741</MinTileRow><MaxTileRow>93941</MaxTileRow><MinTileCol>130371</MinTileCol><MaxTileCol>130552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.48535 45.9436</ows:LowerCorner><ows:UpperCorner>-1.17203 46.1617</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-08-20-40105151</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>364</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>727</MinTileRow><MaxTileRow>728</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1454</MinTileRow><MaxTileRow>1457</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2909</MinTileRow><MaxTileRow>2915</MaxTileRow><MinTileCol>4062</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5818</MinTileRow><MaxTileRow>5831</MaxTileRow><MinTileCol>8125</MinTileCol><MaxTileCol>8138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11637</MinTileRow><MaxTileRow>11663</MaxTileRow><MinTileCol>16250</MinTileCol><MaxTileCol>16276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23275</MinTileRow><MaxTileRow>23327</MaxTileRow><MinTileCol>32500</MinTileCol><MaxTileCol>32552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46550</MinTileRow><MaxTileRow>46655</MaxTileRow><MinTileCol>65000</MinTileCol><MaxTileCol>65105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93100</MinTileRow><MaxTileRow>93310</MaxTileRow><MinTileCol>130000</MinTileCol><MaxTileCol>130210</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.47142 45.7727</ows:LowerCorner><ows:UpperCorner>-1.17197 45.9904</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-09-01-40527071</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1457</MinTileRow><MaxTileRow>1460</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2914</MinTileRow><MaxTileRow>2921</MaxTileRow><MinTileCol>4062</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5829</MinTileRow><MaxTileRow>5843</MaxTileRow><MinTileCol>8125</MinTileCol><MaxTileCol>8138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11659</MinTileRow><MaxTileRow>11686</MaxTileRow><MinTileCol>16250</MinTileCol><MaxTileCol>16276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23318</MinTileRow><MaxTileRow>23372</MaxTileRow><MinTileCol>32500</MinTileCol><MaxTileCol>32552</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46637</MinTileRow><MaxTileRow>46744</MaxTileRow><MinTileCol>65000</MinTileCol><MaxTileCol>65105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93275</MinTileRow><MaxTileRow>93488</MaxTileRow><MinTileCol>130000</MinTileCol><MaxTileCol>130210</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.48492 46.1059</ows:LowerCorner><ows:UpperCorner>-1.17141 46.3151</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-09-01-40545694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>363</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>726</MinTileRow><MaxTileRow>727</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1452</MinTileRow><MaxTileRow>1455</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2904</MinTileRow><MaxTileRow>2910</MaxTileRow><MinTileCol>4062</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5808</MinTileRow><MaxTileRow>5821</MaxTileRow><MinTileCol>8124</MinTileCol><MaxTileCol>8138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11616</MinTileRow><MaxTileRow>11643</MaxTileRow><MinTileCol>16249</MinTileCol><MaxTileCol>16276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23233</MinTileRow><MaxTileRow>23286</MaxTileRow><MinTileCol>32499</MinTileCol><MaxTileCol>32553</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46467</MinTileRow><MaxTileRow>46573</MaxTileRow><MinTileCol>64999</MinTileCol><MaxTileCol>65106</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92934</MinTileRow><MaxTileRow>93146</MaxTileRow><MinTileCol>129998</MinTileCol><MaxTileCol>130212</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.36503 44.4248</ows:LowerCorner><ows:UpperCorner>-1.02225 44.8143</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-02-12-40315319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1482</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2953</MinTileRow><MaxTileRow>2965</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5906</MinTileRow><MaxTileRow>5930</MaxTileRow><MinTileCol>8130</MinTileCol><MaxTileCol>8144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11812</MinTileRow><MaxTileRow>11860</MaxTileRow><MinTileCol>16261</MinTileCol><MaxTileCol>16289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23624</MinTileRow><MaxTileRow>23720</MaxTileRow><MinTileCol>32523</MinTileCol><MaxTileCol>32578</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47249</MinTileRow><MaxTileRow>47440</MaxTileRow><MinTileCol>65047</MinTileCol><MaxTileCol>65156</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94498</MinTileRow><MaxTileRow>94881</MaxTileRow><MinTileCol>130094</MinTileCol><MaxTileCol>130313</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.27371 45.2397</ows:LowerCorner><ows:UpperCorner>-0.966092 45.6098</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-10-40278879</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>367</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>731</MinTileRow><MaxTileRow>734</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1463</MinTileRow><MaxTileRow>1469</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2927</MinTileRow><MaxTileRow>2938</MaxTileRow><MinTileCol>4067</MinTileCol><MaxTileCol>4073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5854</MinTileRow><MaxTileRow>5877</MaxTileRow><MinTileCol>8135</MinTileCol><MaxTileCol>8147</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11709</MinTileRow><MaxTileRow>11755</MaxTileRow><MinTileCol>16270</MinTileCol><MaxTileCol>16294</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23418</MinTileRow><MaxTileRow>23511</MaxTileRow><MinTileCol>32540</MinTileCol><MaxTileCol>32588</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46836</MinTileRow><MaxTileRow>47022</MaxTileRow><MinTileCol>65080</MinTileCol><MaxTileCol>65177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93673</MinTileRow><MaxTileRow>94045</MaxTileRow><MinTileCol>130160</MinTileCol><MaxTileCol>130355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-AQUITAIN-2 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.55908 43.4697</ows:LowerCorner><ows:UpperCorner>-1.3387 43.613</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-17-40069698</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2030</MinTileCol><MaxTileCol>2032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2995</MaxTileRow><MinTileCol>4060</MinTileCol><MaxTileCol>4065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>5990</MaxTileRow><MinTileCol>8121</MinTileCol><MaxTileCol>8130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>11981</MaxTileRow><MinTileCol>16242</MinTileCol><MaxTileCol>16261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23929</MinTileRow><MaxTileRow>23962</MaxTileRow><MinTileCol>32484</MinTileCol><MaxTileCol>32523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47859</MinTileRow><MaxTileRow>47925</MaxTileRow><MinTileCol>64969</MinTileCol><MaxTileCol>65046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95718</MinTileRow><MaxTileRow>95850</MaxTileRow><MinTileCol>129938</MinTileCol><MaxTileCol>130092</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.60957 43.551</ows:LowerCorner><ows:UpperCorner>-1.09771 44.4046</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-17-40081454</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>741</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1483</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2030</MinTileCol><MaxTileCol>2034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2966</MinTileRow><MaxTileRow>2992</MaxTileRow><MinTileCol>4060</MinTileCol><MaxTileCol>4069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5932</MinTileRow><MaxTileRow>5985</MaxTileRow><MinTileCol>8121</MinTileCol><MaxTileCol>8139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11864</MinTileRow><MaxTileRow>11970</MaxTileRow><MinTileCol>16243</MinTileCol><MaxTileCol>16279</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23728</MinTileRow><MaxTileRow>23941</MaxTileRow><MinTileCol>32486</MinTileCol><MaxTileCol>32558</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47457</MinTileRow><MaxTileRow>47883</MaxTileRow><MinTileCol>64973</MinTileCol><MaxTileCol>65116</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94915</MinTileRow><MaxTileRow>95767</MaxTileRow><MinTileCol>129946</MinTileCol><MaxTileCol>130232</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.78192 43.3159</ows:LowerCorner><ows:UpperCorner>-1.50013 43.4622</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-06-09-40340699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3000</MaxTileRow><MinTileCol>4055</MinTileCol><MaxTileCol>4061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5991</MinTileRow><MaxTileRow>6000</MaxTileRow><MinTileCol>8111</MinTileCol><MaxTileCol>8123</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11983</MinTileRow><MaxTileRow>12000</MaxTileRow><MinTileCol>16222</MinTileCol><MaxTileCol>16247</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23966</MinTileRow><MaxTileRow>24001</MaxTileRow><MinTileCol>32445</MinTileCol><MaxTileCol>32494</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47933</MinTileRow><MaxTileRow>48002</MaxTileRow><MinTileCol>64890</MinTileCol><MaxTileCol>64989</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95867</MinTileRow><MaxTileRow>96005</MaxTileRow><MinTileCol>129780</MinTileCol><MaxTileCol>129979</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.87048 43.2672</ows:LowerCorner><ows:UpperCorner>-1.57038 43.4861</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-06-09-40348949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2026</MinTileCol><MaxTileCol>2029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4053</MinTileCol><MaxTileCol>4059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5990</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8107</MinTileCol><MaxTileCol>8119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11981</MinTileRow><MaxTileRow>12006</MaxTileRow><MinTileCol>16214</MinTileCol><MaxTileCol>16239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23962</MinTileRow><MaxTileRow>24013</MaxTileRow><MinTileCol>32429</MinTileCol><MaxTileCol>32479</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47924</MinTileRow><MaxTileRow>48027</MaxTileRow><MinTileCol>64859</MinTileCol><MaxTileCol>64959</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95848</MinTileRow><MaxTileRow>96054</MaxTileRow><MinTileCol>129718</MinTileCol><MaxTileCol>129919</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.66886 43.3482</ows:LowerCorner><ows:UpperCorner>-1.37914 43.5931</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-09-02-40116574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2029</MinTileCol><MaxTileCol>2032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2999</MaxTileRow><MinTileCol>4058</MinTileCol><MaxTileCol>4064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5983</MinTileRow><MaxTileRow>5998</MaxTileRow><MinTileCol>8116</MinTileCol><MaxTileCol>8128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11967</MinTileRow><MaxTileRow>11996</MaxTileRow><MinTileCol>16232</MinTileCol><MaxTileCol>16257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23935</MinTileRow><MaxTileRow>23992</MaxTileRow><MinTileCol>32465</MinTileCol><MaxTileCol>32515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47870</MinTileRow><MaxTileRow>47984</MaxTileRow><MinTileCol>64931</MinTileCol><MaxTileCol>65030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95740</MinTileRow><MaxTileRow>95968</MaxTileRow><MinTileCol>129862</MinTileCol><MaxTileCol>130061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.54946 49.5196</ows:LowerCorner><ows:UpperCorner>-1.22712 49.7459</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-11-40432792</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>349</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>696</MinTileRow><MaxTileRow>698</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1393</MinTileRow><MaxTileRow>1397</MaxTileRow><MinTileCol>2030</MinTileCol><MaxTileCol>2033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2787</MinTileRow><MaxTileRow>2794</MaxTileRow><MinTileCol>4060</MinTileCol><MaxTileCol>4067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5574</MinTileRow><MaxTileRow>5589</MaxTileRow><MinTileCol>8121</MinTileCol><MaxTileCol>8135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11149</MinTileRow><MaxTileRow>11179</MaxTileRow><MinTileCol>16243</MinTileCol><MaxTileCol>16271</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22298</MinTileRow><MaxTileRow>22358</MaxTileRow><MinTileCol>32486</MinTileCol><MaxTileCol>32542</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44597</MinTileRow><MaxTileRow>44717</MaxTileRow><MinTileCol>64972</MinTileCol><MaxTileCol>65084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89194</MinTileRow><MaxTileRow>89435</MaxTileRow><MinTileCol>129944</MinTileCol><MaxTileCol>130169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>174</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.02425 49.2141</ows:LowerCorner><ows:UpperCorner>-1.68334 49.7729</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-17-40649760</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>350</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>696</MinTileRow><MaxTileRow>701</MaxTileRow><MinTileCol>1012</MinTileCol><MaxTileCol>1014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1393</MinTileRow><MaxTileRow>1402</MaxTileRow><MinTileCol>2025</MinTileCol><MaxTileCol>2028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2786</MinTileRow><MaxTileRow>2805</MaxTileRow><MinTileCol>4050</MinTileCol><MaxTileCol>4056</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5573</MinTileRow><MaxTileRow>5611</MaxTileRow><MinTileCol>8100</MinTileCol><MaxTileCol>8113</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11146</MinTileRow><MaxTileRow>11222</MaxTileRow><MinTileCol>16200</MinTileCol><MaxTileCol>16227</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22292</MinTileRow><MaxTileRow>22444</MaxTileRow><MinTileCol>32400</MinTileCol><MaxTileCol>32455</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44584</MinTileRow><MaxTileRow>44889</MaxTileRow><MinTileCol>64801</MinTileCol><MaxTileCol>64910</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89168</MinTileRow><MaxTileRow>89778</MaxTileRow><MinTileCol>129602</MinTileCol><MaxTileCol>129820</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.79937 49.528</ows:LowerCorner><ows:UpperCorner>-1.46303 49.7465</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-17-40676347</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>349</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>696</MinTileRow><MaxTileRow>698</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1393</MinTileRow><MaxTileRow>1397</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2787</MinTileRow><MaxTileRow>2794</MaxTileRow><MinTileCol>4055</MinTileCol><MaxTileCol>4062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5575</MinTileRow><MaxTileRow>5589</MaxTileRow><MinTileCol>8110</MinTileCol><MaxTileCol>8124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11150</MinTileRow><MaxTileRow>11179</MaxTileRow><MinTileCol>16221</MinTileCol><MaxTileCol>16249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22300</MinTileRow><MaxTileRow>22359</MaxTileRow><MinTileCol>32442</MinTileCol><MaxTileCol>32499</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44601</MinTileRow><MaxTileRow>44718</MaxTileRow><MinTileCol>64885</MinTileCol><MaxTileCol>64998</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89202</MinTileRow><MaxTileRow>89436</MaxTileRow><MinTileCol>129770</MinTileCol><MaxTileCol>129996</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>174</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.80932 48.7641</ows:LowerCorner><ows:UpperCorner>-1.45203 49.556</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-06-21-40687451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>349</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>698</MinTileRow><MaxTileRow>705</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1397</MinTileRow><MaxTileRow>1410</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2794</MinTileRow><MaxTileRow>2821</MaxTileRow><MinTileCol>4055</MinTileCol><MaxTileCol>4062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5588</MinTileRow><MaxTileRow>5642</MaxTileRow><MinTileCol>8110</MinTileCol><MaxTileCol>8124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11176</MinTileRow><MaxTileRow>11285</MaxTileRow><MinTileCol>16221</MinTileCol><MaxTileCol>16249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22353</MinTileRow><MaxTileRow>22570</MaxTileRow><MinTileCol>32442</MinTileCol><MaxTileCol>32498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44707</MinTileRow><MaxTileRow>45141</MaxTileRow><MinTileCol>64885</MinTileCol><MaxTileCol>64997</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89414</MinTileRow><MaxTileRow>90283</MaxTileRow><MinTileCol>129770</MinTileCol><MaxTileCol>129994</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.43874 49.3711</ows:LowerCorner><ows:UpperCorner>-1.11836 49.7493</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-06-21-40710449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>350</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>696</MinTileRow><MaxTileRow>700</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1393</MinTileRow><MaxTileRow>1400</MaxTileRow><MinTileCol>2031</MinTileCol><MaxTileCol>2035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2787</MinTileRow><MaxTileRow>2800</MaxTileRow><MinTileCol>4063</MinTileCol><MaxTileCol>4070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5574</MinTileRow><MaxTileRow>5600</MaxTileRow><MinTileCol>8126</MinTileCol><MaxTileCol>8141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11149</MinTileRow><MaxTileRow>11200</MaxTileRow><MinTileCol>16253</MinTileCol><MaxTileCol>16282</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22298</MinTileRow><MaxTileRow>22401</MaxTileRow><MinTileCol>32507</MinTileCol><MaxTileCol>32564</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44597</MinTileRow><MaxTileRow>44803</MaxTileRow><MinTileCol>65015</MinTileCol><MaxTileCol>65128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89194</MinTileRow><MaxTileRow>89606</MaxTileRow><MinTileCol>130031</MinTileCol><MaxTileCol>130257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.65918 49.0472</ows:LowerCorner><ows:UpperCorner>-1.44862 49.2699</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-07-24-40445327</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>351</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>702</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1401</MinTileRow><MaxTileRow>1405</MaxTileRow><MinTileCol>2029</MinTileCol><MaxTileCol>2031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2803</MinTileRow><MaxTileRow>2811</MaxTileRow><MinTileCol>4058</MinTileCol><MaxTileCol>4063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5607</MinTileRow><MaxTileRow>5623</MaxTileRow><MinTileCol>8117</MinTileCol><MaxTileCol>8126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11215</MinTileRow><MaxTileRow>11246</MaxTileRow><MinTileCol>16234</MinTileCol><MaxTileCol>16252</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22431</MinTileRow><MaxTileRow>22493</MaxTileRow><MinTileCol>32468</MinTileCol><MaxTileCol>32504</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44863</MinTileRow><MaxTileRow>44986</MaxTileRow><MinTileCol>64937</MinTileCol><MaxTileCol>65008</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89727</MinTileRow><MaxTileRow>89973</MaxTileRow><MinTileCol>129874</MinTileCol><MaxTileCol>130017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.3121 49.2584</ows:LowerCorner><ows:UpperCorner>-0.999299 49.5645</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-07-24-40464324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>349</MinTileRow><MaxTileRow>350</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>698</MinTileRow><MaxTileRow>701</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1396</MinTileRow><MaxTileRow>1402</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2793</MinTileRow><MaxTileRow>2804</MaxTileRow><MinTileCol>4066</MinTileCol><MaxTileCol>4073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5587</MinTileRow><MaxTileRow>5608</MaxTileRow><MinTileCol>8132</MinTileCol><MaxTileCol>8146</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11175</MinTileRow><MaxTileRow>11216</MaxTileRow><MinTileCol>16264</MinTileCol><MaxTileCol>16292</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22351</MinTileRow><MaxTileRow>22433</MaxTileRow><MinTileCol>32529</MinTileCol><MaxTileCol>32585</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44702</MinTileRow><MaxTileRow>44867</MaxTileRow><MinTileCol>65059</MinTileCol><MaxTileCol>65171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89405</MinTileRow><MaxTileRow>89734</MaxTileRow><MinTileCol>130118</MinTileCol><MaxTileCol>130342</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.67179 48.5782</ows:LowerCorner><ows:UpperCorner>-1.42245 48.8026</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-09-08-40242576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>705</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1410</MinTileRow><MaxTileRow>1413</MaxTileRow><MinTileCol>2028</MinTileCol><MaxTileCol>2031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2820</MinTileRow><MaxTileRow>2827</MaxTileRow><MinTileCol>4057</MinTileCol><MaxTileCol>4063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5640</MinTileRow><MaxTileRow>5655</MaxTileRow><MinTileCol>8115</MinTileCol><MaxTileCol>8126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11280</MinTileRow><MaxTileRow>11311</MaxTileRow><MinTileCol>16231</MinTileCol><MaxTileCol>16253</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22561</MinTileRow><MaxTileRow>22622</MaxTileRow><MinTileCol>32463</MinTileCol><MaxTileCol>32507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45122</MinTileRow><MaxTileRow>45244</MaxTileRow><MinTileCol>64927</MinTileCol><MaxTileCol>65015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90245</MinTileRow><MaxTileRow>90489</MaxTileRow><MinTileCol>129854</MinTileCol><MaxTileCol>130030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.58758 48.5824</ows:LowerCorner><ows:UpperCorner>-1.28706 49.0859</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-09-20-40677446</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>702</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1015</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1405</MinTileRow><MaxTileRow>1413</MaxTileRow><MinTileCol>2030</MinTileCol><MaxTileCol>2033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2810</MinTileRow><MaxTileRow>2827</MaxTileRow><MinTileCol>4060</MinTileCol><MaxTileCol>4066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5620</MinTileRow><MaxTileRow>5655</MaxTileRow><MinTileCol>8121</MinTileCol><MaxTileCol>8133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11241</MinTileRow><MaxTileRow>11310</MaxTileRow><MinTileCol>16242</MinTileCol><MaxTileCol>16266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22483</MinTileRow><MaxTileRow>22621</MaxTileRow><MinTileCol>32484</MinTileCol><MaxTileCol>32533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44967</MinTileRow><MaxTileRow>45243</MaxTileRow><MinTileCol>64968</MinTileCol><MaxTileCol>65067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89935</MinTileRow><MaxTileRow>90487</MaxTileRow><MinTileCol>129936</MinTileCol><MaxTileCol>130134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.06136 43.0806</ows:LowerCorner><ows:UpperCorner>4.30093 43.646</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38763074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>3007</MaxTileRow><MinTileCol>4165</MinTileCol><MaxTileCol>4193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>6014</MaxTileRow><MinTileCol>8331</MinTileCol><MaxTileCol>8387</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11960</MinTileRow><MaxTileRow>12029</MaxTileRow><MinTileCol>16662</MinTileCol><MaxTileCol>16775</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23920</MinTileRow><MaxTileRow>24059</MaxTileRow><MinTileCol>33325</MinTileCol><MaxTileCol>33551</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47841</MinTileRow><MaxTileRow>48118</MaxTileRow><MinTileCol>66650</MinTileCol><MaxTileCol>67102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95682</MinTileRow><MaxTileRow>96236</MaxTileRow><MinTileCol>133301</MinTileCol><MaxTileCol>134204</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.87801 42.5127</ows:LowerCorner><ows:UpperCorner>3.14639 42.7465</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38770824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>377</MinTileRow><MaxTileRow>378</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>754</MinTileRow><MaxTileRow>756</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1509</MinTileRow><MaxTileRow>1512</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3018</MinTileRow><MaxTileRow>3025</MaxTileRow><MinTileCol>4161</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6036</MinTileRow><MaxTileRow>6050</MaxTileRow><MinTileCol>8322</MinTileCol><MaxTileCol>8335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12072</MinTileRow><MaxTileRow>12100</MaxTileRow><MinTileCol>16645</MinTileCol><MaxTileCol>16670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24144</MinTileRow><MaxTileRow>24201</MaxTileRow><MinTileCol>33291</MinTileCol><MaxTileCol>33340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48288</MinTileRow><MaxTileRow>48403</MaxTileRow><MinTileCol>66583</MinTileCol><MaxTileCol>66681</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96576</MinTileRow><MaxTileRow>96807</MaxTileRow><MinTileCol>133167</MinTileCol><MaxTileCol>133363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>189</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.1598 43.1864</ows:LowerCorner><ows:UpperCorner>3.41931 43.376</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38785074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1499</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2083</MinTileCol><MaxTileCol>2086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2998</MinTileRow><MaxTileRow>3004</MaxTileRow><MinTileCol>4167</MinTileCol><MaxTileCol>4173</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5996</MinTileRow><MaxTileRow>6008</MaxTileRow><MinTileCol>8335</MinTileCol><MaxTileCol>8347</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11993</MinTileRow><MaxTileRow>12017</MaxTileRow><MinTileCol>16671</MinTileCol><MaxTileCol>16695</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23987</MinTileRow><MaxTileRow>24034</MaxTileRow><MinTileCol>33343</MinTileCol><MaxTileCol>33390</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47974</MinTileRow><MaxTileRow>48069</MaxTileRow><MinTileCol>66686</MinTileCol><MaxTileCol>66781</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95949</MinTileRow><MaxTileRow>96138</MaxTileRow><MinTileCol>133372</MinTileCol><MaxTileCol>133562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.88921 42.7105</ows:LowerCorner><ows:UpperCorner>3.16003 43.2681</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-06-39218324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>377</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>754</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1509</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3001</MinTileRow><MaxTileRow>3019</MaxTileRow><MinTileCol>4161</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6003</MinTileRow><MaxTileRow>6038</MaxTileRow><MinTileCol>8323</MinTileCol><MaxTileCol>8335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12007</MinTileRow><MaxTileRow>12076</MaxTileRow><MinTileCol>16646</MinTileCol><MaxTileCol>16671</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24014</MinTileRow><MaxTileRow>24153</MaxTileRow><MinTileCol>33293</MinTileCol><MaxTileCol>33343</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48028</MinTileRow><MaxTileRow>48306</MaxTileRow><MinTileCol>66587</MinTileCol><MaxTileCol>66686</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96057</MinTileRow><MaxTileRow>96612</MaxTileRow><MinTileCol>133175</MinTileCol><MaxTileCol>133373</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.75275 43.4073</ows:LowerCorner><ows:UpperCorner>4.02823 43.6344</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-07-38685319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4181</MinTileCol><MaxTileCol>4187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>5994</MaxTileRow><MinTileCol>8362</MinTileCol><MaxTileCol>8375</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11961</MinTileRow><MaxTileRow>11989</MaxTileRow><MinTileCol>16725</MinTileCol><MaxTileCol>16750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23922</MinTileRow><MaxTileRow>23979</MaxTileRow><MinTileCol>33451</MinTileCol><MaxTileCol>33501</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47845</MinTileRow><MaxTileRow>47958</MaxTileRow><MinTileCol>66902</MinTileCol><MaxTileCol>67002</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95690</MinTileRow><MaxTileRow>95916</MaxTileRow><MinTileCol>133804</MinTileCol><MaxTileCol>134004</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.96432 43.513</ows:LowerCorner><ows:UpperCorner>4.23899 43.6417</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-07-38712944</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1046</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2093</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2994</MaxTileRow><MinTileCol>4186</MinTileCol><MaxTileCol>4192</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>5988</MaxTileRow><MinTileCol>8372</MinTileCol><MaxTileCol>8384</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11960</MinTileRow><MaxTileRow>11976</MaxTileRow><MinTileCol>16744</MinTileCol><MaxTileCol>16769</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23920</MinTileRow><MaxTileRow>23952</MaxTileRow><MinTileCol>33489</MinTileCol><MaxTileCol>33539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47841</MinTileRow><MaxTileRow>47905</MaxTileRow><MinTileCol>66979</MinTileCol><MaxTileCol>67078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95682</MinTileRow><MaxTileRow>95811</MaxTileRow><MinTileCol>133958</MinTileCol><MaxTileCol>134157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.3198 43.2216</ows:LowerCorner><ows:UpperCorner>3.59373 43.5466</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-13-38944074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2993</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4171</MinTileCol><MaxTileCol>4177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5986</MinTileRow><MaxTileRow>6006</MaxTileRow><MinTileCol>8343</MinTileCol><MaxTileCol>8355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11972</MinTileRow><MaxTileRow>12012</MaxTileRow><MinTileCol>16686</MinTileCol><MaxTileCol>16711</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23944</MinTileRow><MaxTileRow>24025</MaxTileRow><MinTileCol>33372</MinTileCol><MaxTileCol>33422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47889</MinTileRow><MaxTileRow>48051</MaxTileRow><MinTileCol>66744</MinTileCol><MaxTileCol>66844</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95778</MinTileRow><MaxTileRow>96102</MaxTileRow><MinTileCol>133489</MinTileCol><MaxTileCol>133688</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.54162 43.2652</ows:LowerCorner><ows:UpperCorner>3.80425 43.5637</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-13-38968074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2088</MinTileCol><MaxTileCol>2091</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2992</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4176</MinTileCol><MaxTileCol>4182</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5985</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8353</MinTileCol><MaxTileCol>8365</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11970</MinTileRow><MaxTileRow>12007</MaxTileRow><MinTileCol>16706</MinTileCol><MaxTileCol>16730</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23940</MinTileRow><MaxTileRow>24014</MaxTileRow><MinTileCol>33412</MinTileCol><MaxTileCol>33460</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47880</MinTileRow><MaxTileRow>48029</MaxTileRow><MinTileCol>66825</MinTileCol><MaxTileCol>66921</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95761</MinTileRow><MaxTileRow>96059</MaxTileRow><MinTileCol>133650</MinTileCol><MaxTileCol>133842</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.19769 43.438</ows:LowerCorner><ows:UpperCorner>4.48627 43.6214</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-27-38488449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1047</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2095</MinTileCol><MaxTileCol>2099</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4191</MinTileCol><MaxTileCol>4198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5981</MinTileRow><MaxTileRow>5992</MaxTileRow><MinTileCol>8383</MinTileCol><MaxTileCol>8396</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11962</MinTileRow><MaxTileRow>11985</MaxTileRow><MinTileCol>16766</MinTileCol><MaxTileCol>16792</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23925</MinTileRow><MaxTileRow>23971</MaxTileRow><MinTileCol>33532</MinTileCol><MaxTileCol>33584</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47851</MinTileRow><MaxTileRow>47942</MaxTileRow><MinTileCol>67065</MinTileCol><MaxTileCol>67168</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95703</MinTileRow><MaxTileRow>95884</MaxTileRow><MinTileCol>134130</MinTileCol><MaxTileCol>134336</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.31569 50.985</ows:LowerCorner><ows:UpperCorner>2.63053 51.1477</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-04-13-39522824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>342</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>685</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1371</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>2743</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4155</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5474</MinTileRow><MaxTileRow>5486</MaxTileRow><MinTileCol>8297</MinTileCol><MaxTileCol>8311</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10948</MinTileRow><MaxTileRow>10972</MaxTileRow><MinTileCol>16594</MinTileCol><MaxTileCol>16623</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21897</MinTileRow><MaxTileRow>21944</MaxTileRow><MinTileCol>33189</MinTileCol><MaxTileCol>33246</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43794</MinTileRow><MaxTileRow>43888</MaxTileRow><MinTileCol>66379</MinTileCol><MaxTileCol>66493</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87588</MinTileRow><MaxTileRow>87777</MaxTileRow><MinTileCol>132758</MinTileCol><MaxTileCol>132987</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>42</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>85</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>171</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.10219 50.9478</ows:LowerCorner><ows:UpperCorner>2.4036 51.1289</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-05-15-39741194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>343</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>686</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1372</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>2744</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4150</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5475</MinTileRow><MaxTileRow>5488</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8301</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10951</MinTileRow><MaxTileRow>10977</MaxTileRow><MinTileCol>16575</MinTileCol><MaxTileCol>16602</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21902</MinTileRow><MaxTileRow>21955</MaxTileRow><MinTileCol>33150</MinTileCol><MaxTileCol>33205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43805</MinTileRow><MaxTileRow>43910</MaxTileRow><MinTileCol>66301</MinTileCol><MaxTileCol>66411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87610</MinTileRow><MaxTileRow>87820</MaxTileRow><MinTileCol>132602</MinTileCol><MaxTileCol>132822</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>42</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>85</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>171</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.84654 50.8829</ows:LowerCorner><ows:UpperCorner>2.16327 51.0917</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-06-23-39781949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>343</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>686</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1373</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2739</MinTileRow><MaxTileRow>2746</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5478</MinTileRow><MaxTileRow>5493</MaxTileRow><MinTileCol>8276</MinTileCol><MaxTileCol>8290</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10956</MinTileRow><MaxTileRow>10986</MaxTileRow><MinTileCol>16552</MinTileCol><MaxTileCol>16580</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21913</MinTileRow><MaxTileRow>21973</MaxTileRow><MinTileCol>33104</MinTileCol><MaxTileCol>33161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43826</MinTileRow><MaxTileRow>43946</MaxTileRow><MinTileCol>66208</MinTileCol><MaxTileCol>66323</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87653</MinTileRow><MaxTileRow>87893</MaxTileRow><MinTileCol>132416</MinTileCol><MaxTileCol>132647</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>42</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>85</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>171</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.36423 44.5965</ows:LowerCorner><ows:UpperCorner>-0.996688 45.1304</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40106204</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>367</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>735</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1471</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2942</MinTileRow><MaxTileRow>2959</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5885</MinTileRow><MaxTileRow>5919</MaxTileRow><MinTileCol>8131</MinTileCol><MaxTileCol>8145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11771</MinTileRow><MaxTileRow>11838</MaxTileRow><MinTileCol>16262</MinTileCol><MaxTileCol>16290</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23542</MinTileRow><MaxTileRow>23676</MaxTileRow><MinTileCol>32525</MinTileCol><MaxTileCol>32580</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47085</MinTileRow><MaxTileRow>47353</MaxTileRow><MinTileCol>65051</MinTileCol><MaxTileCol>65160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94170</MinTileRow><MaxTileRow>94706</MaxTileRow><MinTileCol>130103</MinTileCol><MaxTileCol>130321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.35605 44.3434</ows:LowerCorner><ows:UpperCorner>-1.10421 44.5323</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40120894</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2032</MinTileCol><MaxTileCol>2035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2961</MinTileRow><MaxTileRow>2967</MaxTileRow><MinTileCol>4065</MinTileCol><MaxTileCol>4070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5923</MinTileRow><MaxTileRow>5935</MaxTileRow><MinTileCol>8130</MinTileCol><MaxTileCol>8141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11847</MinTileRow><MaxTileRow>11870</MaxTileRow><MinTileCol>16261</MinTileCol><MaxTileCol>16282</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23694</MinTileRow><MaxTileRow>23741</MaxTileRow><MinTileCol>32522</MinTileCol><MaxTileCol>32565</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47389</MinTileRow><MaxTileRow>47483</MaxTileRow><MinTileCol>65045</MinTileCol><MaxTileCol>65130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94779</MinTileRow><MaxTileRow>94966</MaxTileRow><MinTileCol>130091</MinTileCol><MaxTileCol>130260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.27503 45.0769</ows:LowerCorner><ows:UpperCorner>-1.00538 45.2932</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40133949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>367</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>508</MinTileCol><MaxTileCol>509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>734</MinTileRow><MaxTileRow>736</MaxTileRow><MinTileCol>1016</MinTileCol><MaxTileCol>1018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1468</MinTileRow><MaxTileRow>1472</MaxTileRow><MinTileCol>2033</MinTileCol><MaxTileCol>2036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2937</MinTileRow><MaxTileRow>2944</MaxTileRow><MinTileCol>4067</MinTileCol><MaxTileCol>4072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5875</MinTileRow><MaxTileRow>5888</MaxTileRow><MinTileCol>8134</MinTileCol><MaxTileCol>8145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11750</MinTileRow><MaxTileRow>11776</MaxTileRow><MinTileCol>16268</MinTileCol><MaxTileCol>16291</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23500</MinTileRow><MaxTileRow>23553</MaxTileRow><MinTileCol>32537</MinTileCol><MaxTileCol>32583</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47001</MinTileRow><MaxTileRow>47107</MaxTileRow><MinTileCol>65075</MinTileCol><MaxTileCol>65166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94003</MinTileRow><MaxTileRow>94214</MaxTileRow><MinTileCol>130150</MinTileCol><MaxTileCol>130332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>254</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LOIRET 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LOIRET issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.75892 47.8231</ows:LowerCorner><ows:UpperCorner>3 47.9404</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LOIRET-2014-09-16-39584256</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>356</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>712</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1424</MinTileRow><MaxTileRow>1426</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2849</MinTileRow><MaxTileRow>2853</MaxTileRow><MinTileCol>4158</MinTileCol><MaxTileCol>4164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5699</MinTileRow><MaxTileRow>5707</MaxTileRow><MinTileCol>8317</MinTileCol><MaxTileCol>8328</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11398</MinTileRow><MaxTileRow>11414</MaxTileRow><MinTileCol>16635</MinTileCol><MaxTileCol>16657</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22797</MinTileRow><MaxTileRow>22829</MaxTileRow><MinTileCol>33270</MinTileCol><MaxTileCol>33314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45594</MinTileRow><MaxTileRow>45658</MaxTileRow><MinTileCol>66540</MinTileCol><MaxTileCol>66628</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91189</MinTileRow><MaxTileRow>91317</MaxTileRow><MinTileCol>133080</MinTileCol><MaxTileCol>133256</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>178</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LORRAINE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de LORRAINE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.83146 47.7619</ows:LowerCorner><ows:UpperCorner>7.7219 49.7242</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LORRAINE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>348</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>697</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1051</MinTileCol><MaxTileCol>1067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1394</MinTileRow><MaxTileRow>1427</MaxTileRow><MinTileCol>2103</MinTileCol><MaxTileCol>2135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2788</MinTileRow><MaxTileRow>2854</MaxTileRow><MinTileCol>4206</MinTileCol><MaxTileCol>4270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5576</MinTileRow><MaxTileRow>5709</MaxTileRow><MinTileCol>8413</MinTileCol><MaxTileCol>8541</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11152</MinTileRow><MaxTileRow>11419</MaxTileRow><MinTileCol>16826</MinTileCol><MaxTileCol>17082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22305</MinTileRow><MaxTileRow>22838</MaxTileRow><MinTileCol>33653</MinTileCol><MaxTileCol>34164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44610</MinTileRow><MaxTileRow>45677</MaxTileRow><MinTileCol>67306</MinTileCol><MaxTileCol>68329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LUCHEY-COUHINS</ows:Title><ows:Abstract>Orthophotographies satellites de LUCHEY-COUHINS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.674555 44.7389</ows:LowerCorner><ows:UpperCorner>-0.53219 44.8395</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LUCHEY-COUHINS-2013-08-20-40612772</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1477</MaxTileRow><MinTileCol>2040</MinTileCol><MaxTileCol>2042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2951</MinTileRow><MaxTileRow>2955</MaxTileRow><MinTileCol>4080</MinTileCol><MaxTileCol>4084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5903</MinTileRow><MaxTileRow>5910</MaxTileRow><MinTileCol>8161</MinTileCol><MaxTileCol>8168</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11807</MinTileRow><MaxTileRow>11821</MaxTileRow><MinTileCol>16322</MinTileCol><MaxTileCol>16336</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23614</MinTileRow><MaxTileRow>23643</MaxTileRow><MinTileCol>32644</MinTileCol><MaxTileCol>32672</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47228</MinTileRow><MaxTileRow>47287</MaxTileRow><MinTileCol>65288</MinTileCol><MaxTileCol>65344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94457</MinTileRow><MaxTileRow>94575</MaxTileRow><MinTileCol>130576</MinTileCol><MaxTileCol>130688</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2012</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2012</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.53336 50.4668</ows:LowerCorner><ows:UpperCorner>1.74821 50.6037</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2012-06-29-40874826</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>344</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>689</MinTileRow><MaxTileRow>690</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1378</MinTileRow><MaxTileRow>1380</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2756</MinTileRow><MaxTileRow>2761</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5513</MinTileRow><MaxTileRow>5523</MaxTileRow><MinTileCol>8261</MinTileCol><MaxTileCol>8271</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11027</MinTileRow><MaxTileRow>11046</MaxTileRow><MinTileCol>16523</MinTileCol><MaxTileCol>16543</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22054</MinTileRow><MaxTileRow>22092</MaxTileRow><MinTileCol>33047</MinTileCol><MaxTileCol>33086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44109</MinTileRow><MaxTileRow>44185</MaxTileRow><MinTileCol>66095</MinTileCol><MaxTileCol>66172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88218</MinTileRow><MaxTileRow>88371</MaxTileRow><MinTileCol>132190</MinTileCol><MaxTileCol>132344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.49429 50.3047</ows:LowerCorner><ows:UpperCorner>1.73819 50.4959</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-05-09-39929826</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>690</MinTileRow><MaxTileRow>691</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1380</MinTileRow><MaxTileRow>1383</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2760</MinTileRow><MaxTileRow>2767</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5521</MinTileRow><MaxTileRow>5534</MaxTileRow><MinTileCol>8260</MinTileCol><MaxTileCol>8270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11042</MinTileRow><MaxTileRow>11069</MaxTileRow><MinTileCol>16520</MinTileCol><MaxTileCol>16541</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22085</MinTileRow><MaxTileRow>22139</MaxTileRow><MinTileCol>33040</MinTileCol><MaxTileCol>33083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44170</MinTileRow><MaxTileRow>44279</MaxTileRow><MinTileCol>66081</MinTileCol><MaxTileCol>66167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88340</MinTileRow><MaxTileRow>88558</MaxTileRow><MinTileCol>132163</MinTileCol><MaxTileCol>132335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.53179 50.4668</ows:LowerCorner><ows:UpperCorner>1.74821 50.6575</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-13-40010706</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>344</MinTileRow><MaxTileRow>345</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>688</MinTileRow><MaxTileRow>690</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1377</MinTileRow><MaxTileRow>1380</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2754</MinTileRow><MaxTileRow>2761</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5509</MinTileRow><MaxTileRow>5523</MaxTileRow><MinTileCol>8261</MinTileCol><MaxTileCol>8271</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11019</MinTileRow><MaxTileRow>11046</MaxTileRow><MinTileCol>16523</MinTileCol><MaxTileCol>16542</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22038</MinTileRow><MaxTileRow>22093</MaxTileRow><MinTileCol>33047</MinTileCol><MaxTileCol>33085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44077</MinTileRow><MaxTileRow>44186</MaxTileRow><MinTileCol>66095</MinTileCol><MaxTileCol>66171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88154</MinTileRow><MaxTileRow>88373</MaxTileRow><MinTileCol>132190</MinTileCol><MaxTileCol>132343</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.52228 50.6193</ows:LowerCorner><ows:UpperCorner>1.84315 50.9814</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-18-40727905</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>344</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>689</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1371</MinTileRow><MaxTileRow>1378</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2743</MinTileRow><MaxTileRow>2756</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4137</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5486</MinTileRow><MaxTileRow>5512</MaxTileRow><MinTileCol>8261</MinTileCol><MaxTileCol>8275</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10972</MinTileRow><MaxTileRow>11024</MaxTileRow><MinTileCol>16523</MinTileCol><MaxTileCol>16551</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21945</MinTileRow><MaxTileRow>22049</MaxTileRow><MinTileCol>33046</MinTileCol><MaxTileCol>33102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43890</MinTileRow><MaxTileRow>44099</MaxTileRow><MinTileCol>66092</MinTileCol><MaxTileCol>66205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87781</MinTileRow><MaxTileRow>88198</MaxTileRow><MinTileCol>132185</MinTileCol><MaxTileCol>132411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.52228 50.6193</ows:LowerCorner><ows:UpperCorner>1.82904 50.9813</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-19-40220744</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>344</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>689</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1371</MinTileRow><MaxTileRow>1378</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2743</MinTileRow><MaxTileRow>2756</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4137</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5486</MinTileRow><MaxTileRow>5512</MaxTileRow><MinTileCol>8261</MinTileCol><MaxTileCol>8275</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10972</MinTileRow><MaxTileRow>11024</MaxTileRow><MinTileCol>16523</MinTileCol><MaxTileCol>16550</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21945</MinTileRow><MaxTileRow>22049</MaxTileRow><MinTileCol>33046</MinTileCol><MaxTileCol>33100</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43890</MinTileRow><MaxTileRow>44099</MaxTileRow><MinTileCol>66092</MinTileCol><MaxTileCol>66200</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87781</MinTileRow><MaxTileRow>88198</MaxTileRow><MinTileCol>132185</MinTileCol><MaxTileCol>132401</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.97598 50.8481</ows:LowerCorner><ows:UpperCorner>2.30558 51.0298</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-09-02-40406824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>343</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>686</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>1373</MaxTileRow><MinTileCol>2070</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>2747</MaxTileRow><MinTileCol>4140</MinTileCol><MaxTileCol>4148</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5482</MinTileRow><MaxTileRow>5495</MaxTileRow><MinTileCol>8281</MinTileCol><MaxTileCol>8296</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10965</MinTileRow><MaxTileRow>10991</MaxTileRow><MinTileCol>16563</MinTileCol><MaxTileCol>16593</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21931</MinTileRow><MaxTileRow>21983</MaxTileRow><MinTileCol>33127</MinTileCol><MaxTileCol>33187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43862</MinTileRow><MaxTileRow>43967</MaxTileRow><MinTileCol>66255</MinTileCol><MaxTileCol>66375</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87725</MinTileRow><MaxTileRow>87935</MaxTileRow><MinTileCol>132510</MinTileCol><MaxTileCol>132750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>42</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>85</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>171</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.72024 50.6664</ows:LowerCorner><ows:UpperCorner>2.0539 51.0191</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-09-02-40453196</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>344</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>688</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>1377</MaxTileRow><MinTileCol>2067</MinTileCol><MaxTileCol>2071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>2754</MaxTileRow><MinTileCol>4135</MinTileCol><MaxTileCol>4142</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5483</MinTileRow><MaxTileRow>5509</MaxTileRow><MinTileCol>8270</MinTileCol><MaxTileCol>8285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10967</MinTileRow><MaxTileRow>11018</MaxTileRow><MinTileCol>16540</MinTileCol><MaxTileCol>16570</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21934</MinTileRow><MaxTileRow>22036</MaxTileRow><MinTileCol>33081</MinTileCol><MaxTileCol>33141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43868</MinTileRow><MaxTileRow>44072</MaxTileRow><MinTileCol>66163</MinTileCol><MaxTileCol>66282</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87737</MinTileRow><MaxTileRow>88144</MaxTileRow><MinTileCol>132326</MinTileCol><MaxTileCol>132564</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>172</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAUBEUGE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de MAUBEUGE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.74061 50.1389</ows:LowerCorner><ows:UpperCorner>4.03807 50.3385</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAUBEUGE-2014-03-12-39268069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>346</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>691</MinTileRow><MaxTileRow>693</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1383</MinTileRow><MaxTileRow>1386</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2766</MinTileRow><MaxTileRow>2773</MaxTileRow><MinTileCol>4181</MinTileCol><MaxTileCol>4187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5532</MinTileRow><MaxTileRow>5546</MaxTileRow><MinTileCol>8362</MinTileCol><MaxTileCol>8375</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11064</MinTileRow><MaxTileRow>11093</MaxTileRow><MinTileCol>16724</MinTileCol><MaxTileCol>16751</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22129</MinTileRow><MaxTileRow>22186</MaxTileRow><MinTileCol>33448</MinTileCol><MaxTileCol>33503</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44259</MinTileRow><MaxTileRow>44373</MaxTileRow><MinTileCol>66897</MinTileCol><MaxTileCol>67006</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88519</MinTileRow><MaxTileRow>88747</MaxTileRow><MinTileCol>133795</MinTileCol><MaxTileCol>134012</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>173</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>44.917 -13.0892</ows:LowerCorner><ows:UpperCorner>45.3044 -12.5645</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>639</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1099</MaxTileRow><MinTileCol>1279</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2192</MinTileRow><MaxTileRow>2198</MaxTileRow><MinTileCol>2559</MinTileCol><MaxTileCol>2563</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4384</MinTileRow><MaxTileRow>4396</MaxTileRow><MinTileCol>5118</MinTileCol><MaxTileCol>5126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8768</MinTileRow><MaxTileRow>8792</MaxTileRow><MinTileCol>10236</MinTileCol><MaxTileCol>10253</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17536</MinTileRow><MaxTileRow>17585</MaxTileRow><MinTileCol>20472</MinTileCol><MaxTileCol>20507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35073</MinTileRow><MaxTileRow>35171</MaxTileRow><MinTileCol>40944</MinTileCol><MaxTileCol>41015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70147</MinTileRow><MaxTileRow>70343</MaxTileRow><MinTileCol>81889</MinTileCol><MaxTileCol>82030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140295</MinTileRow><MaxTileRow>140687</MaxTileRow><MinTileCol>163779</MinTileCol><MaxTileCol>164061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>9</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>19</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>39</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>79</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>159</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>319</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0368 -12.7365</ows:LowerCorner><ows:UpperCorner>45.2303 -12.5556</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26622172</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>548</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1097</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2192</MinTileRow><MaxTileRow>2194</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4384</MinTileRow><MaxTileRow>4388</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8768</MinTileRow><MaxTileRow>8776</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17536</MinTileRow><MaxTileRow>17552</MaxTileRow><MinTileCol>20483</MinTileCol><MaxTileCol>20500</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35072</MinTileRow><MaxTileRow>35105</MaxTileRow><MinTileCol>40966</MinTileCol><MaxTileCol>41001</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70144</MinTileRow><MaxTileRow>70211</MaxTileRow><MinTileCol>81933</MinTileCol><MaxTileCol>82003</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140288</MinTileRow><MaxTileRow>140423</MaxTileRow><MinTileCol>163866</MinTileCol><MaxTileCol>164007</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0369 -13.1073</ows:LowerCorner><ows:UpperCorner>45.2306 -13.0258</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26629960</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>549</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1098</MinTileRow><MaxTileRow>1099</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2197</MinTileRow><MaxTileRow>2198</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4394</MinTileRow><MaxTileRow>4396</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8789</MinTileRow><MaxTileRow>8793</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17579</MinTileRow><MaxTileRow>17587</MaxTileRow><MinTileCol>20483</MinTileCol><MaxTileCol>20501</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35159</MinTileRow><MaxTileRow>35175</MaxTileRow><MinTileCol>40966</MinTileCol><MaxTileCol>41002</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70319</MinTileRow><MaxTileRow>70350</MaxTileRow><MinTileCol>81933</MinTileCol><MaxTileCol>82004</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140639</MinTileRow><MaxTileRow>140700</MaxTileRow><MinTileCol>163866</MinTileCol><MaxTileCol>164008</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.1565 -13.0982</ows:LowerCorner><ows:UpperCorner>45.3229 -12.6007</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26665951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1099</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2192</MinTileRow><MaxTileRow>2198</MaxTileRow><MinTileCol>2561</MinTileCol><MaxTileCol>2563</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4385</MinTileRow><MaxTileRow>4396</MaxTileRow><MinTileCol>5123</MinTileCol><MaxTileCol>5127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8770</MinTileRow><MaxTileRow>8793</MaxTileRow><MinTileCol>10247</MinTileCol><MaxTileCol>10254</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17540</MinTileRow><MaxTileRow>17586</MaxTileRow><MinTileCol>20494</MinTileCol><MaxTileCol>20509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35080</MinTileRow><MaxTileRow>35173</MaxTileRow><MinTileCol>40988</MinTileCol><MaxTileCol>41018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70161</MinTileRow><MaxTileRow>70346</MaxTileRow><MinTileCol>81976</MinTileCol><MaxTileCol>82037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140322</MinTileRow><MaxTileRow>140693</MaxTileRow><MinTileCol>163953</MinTileCol><MaxTileCol>164075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>44.8985 -13.1073</ows:LowerCorner><ows:UpperCorner>45.3229 -12.5555</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-29-27067263</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>639</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1099</MaxTileRow><MinTileCol>1279</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2192</MinTileRow><MaxTileRow>2198</MaxTileRow><MinTileCol>2558</MinTileCol><MaxTileCol>2563</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4384</MinTileRow><MaxTileRow>4396</MaxTileRow><MinTileCol>5117</MinTileCol><MaxTileCol>5127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8768</MinTileRow><MaxTileRow>8793</MaxTileRow><MinTileCol>10235</MinTileCol><MaxTileCol>10254</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17536</MinTileRow><MaxTileRow>17587</MaxTileRow><MinTileCol>20470</MinTileCol><MaxTileCol>20509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35072</MinTileRow><MaxTileRow>35175</MaxTileRow><MinTileCol>40941</MinTileCol><MaxTileCol>41018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70144</MinTileRow><MaxTileRow>70350</MaxTileRow><MinTileCol>81883</MinTileCol><MaxTileCol>82037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140288</MinTileRow><MaxTileRow>140700</MaxTileRow><MinTileCol>163766</MinTileCol><MaxTileCol>164075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>9</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>19</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>39</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>79</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>159</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>319</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0368 -12.9536</ows:LowerCorner><ows:UpperCorner>45.2489 -12.6822</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27121074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1098</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2193</MinTileRow><MaxTileRow>2196</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4386</MinTileRow><MaxTileRow>4393</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8773</MinTileRow><MaxTileRow>8786</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10251</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17547</MinTileRow><MaxTileRow>17573</MaxTileRow><MinTileCol>20483</MinTileCol><MaxTileCol>20502</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35095</MinTileRow><MaxTileRow>35146</MaxTileRow><MinTileCol>40966</MinTileCol><MaxTileCol>41005</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70191</MinTileRow><MaxTileRow>70292</MaxTileRow><MinTileCol>81933</MinTileCol><MaxTileCol>82010</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140383</MinTileRow><MaxTileRow>140585</MaxTileRow><MinTileCol>163866</MinTileCol><MaxTileCol>164021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0368 -12.9445</ows:LowerCorner><ows:UpperCorner>45.2489 -12.6912</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27134949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1098</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2193</MinTileRow><MaxTileRow>2196</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4387</MinTileRow><MaxTileRow>4393</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8774</MinTileRow><MaxTileRow>8786</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10251</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17548</MinTileRow><MaxTileRow>17572</MaxTileRow><MinTileCol>20483</MinTileCol><MaxTileCol>20502</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35097</MinTileRow><MaxTileRow>35144</MaxTileRow><MinTileCol>40966</MinTileCol><MaxTileCol>41005</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70194</MinTileRow><MaxTileRow>70289</MaxTileRow><MinTileCol>81933</MinTileCol><MaxTileCol>82010</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140389</MinTileRow><MaxTileRow>140579</MaxTileRow><MinTileCol>163866</MinTileCol><MaxTileCol>164021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0276 -12.9445</ows:LowerCorner><ows:UpperCorner>45.2581 -12.6912</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27148699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1098</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2193</MinTileRow><MaxTileRow>2196</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4387</MinTileRow><MaxTileRow>4393</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8774</MinTileRow><MaxTileRow>8786</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10251</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17548</MinTileRow><MaxTileRow>17572</MaxTileRow><MinTileCol>20482</MinTileCol><MaxTileCol>20503</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35097</MinTileRow><MaxTileRow>35144</MaxTileRow><MinTileCol>40964</MinTileCol><MaxTileCol>41007</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70194</MinTileRow><MaxTileRow>70289</MaxTileRow><MinTileCol>81929</MinTileCol><MaxTileCol>82014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140389</MinTileRow><MaxTileRow>140579</MaxTileRow><MinTileCol>163859</MinTileCol><MaxTileCol>164028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.0276 -13.0711</ows:LowerCorner><ows:UpperCorner>45.2398 -12.7003</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-18-26875699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1099</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2193</MinTileRow><MaxTileRow>2198</MaxTileRow><MinTileCol>2560</MinTileCol><MaxTileCol>2562</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4387</MinTileRow><MaxTileRow>4396</MaxTileRow><MinTileCol>5120</MinTileCol><MaxTileCol>5125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8774</MinTileRow><MaxTileRow>8792</MaxTileRow><MinTileCol>10241</MinTileCol><MaxTileCol>10250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17549</MinTileRow><MaxTileRow>17584</MaxTileRow><MinTileCol>20482</MinTileCol><MaxTileCol>20501</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35099</MinTileRow><MaxTileRow>35168</MaxTileRow><MinTileCol>40964</MinTileCol><MaxTileCol>41003</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70198</MinTileRow><MaxTileRow>70336</MaxTileRow><MinTileCol>81929</MinTileCol><MaxTileCol>82007</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140396</MinTileRow><MaxTileRow>140673</MaxTileRow><MinTileCol>163859</MinTileCol><MaxTileCol>164014</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>44.9262 -13.0621</ows:LowerCorner><ows:UpperCorner>45.1015 -12.8631</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-18-26885700</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>639</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1097</MinTileRow><MaxTileRow>1098</MaxTileRow><MinTileCol>1279</MinTileCol><MaxTileCol>1280</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2195</MinTileRow><MaxTileRow>2197</MaxTileRow><MinTileCol>2559</MinTileCol><MaxTileCol>2561</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4391</MinTileRow><MaxTileRow>4395</MaxTileRow><MinTileCol>5118</MinTileCol><MaxTileCol>5122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8782</MinTileRow><MaxTileRow>8791</MaxTileRow><MinTileCol>10236</MinTileCol><MaxTileCol>10244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17564</MinTileRow><MaxTileRow>17583</MaxTileRow><MinTileCol>20473</MinTileCol><MaxTileCol>20489</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35129</MinTileRow><MaxTileRow>35166</MaxTileRow><MinTileCol>40946</MinTileCol><MaxTileCol>40978</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70259</MinTileRow><MaxTileRow>70333</MaxTileRow><MinTileCol>81893</MinTileCol><MaxTileCol>81957</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140518</MinTileRow><MaxTileRow>140666</MaxTileRow><MinTileCol>163786</MinTileCol><MaxTileCol>163914</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>9</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>19</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>39</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>79</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>159</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>319</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title><ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>45.1565 -12.9354</ows:LowerCorner><ows:UpperCorner>45.3227 -12.6007</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-26-26180576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>548</MinTileRow><MaxTileRow>549</MaxTileRow><MinTileCol>640</MinTileCol><MaxTileCol>640</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1096</MinTileRow><MaxTileRow>1098</MaxTileRow><MinTileCol>1280</MinTileCol><MaxTileCol>1281</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2192</MinTileRow><MaxTileRow>2196</MaxTileRow><MinTileCol>2561</MinTileCol><MaxTileCol>2563</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4385</MinTileRow><MaxTileRow>4392</MaxTileRow><MinTileCol>5123</MinTileCol><MaxTileCol>5127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8770</MinTileRow><MaxTileRow>8785</MaxTileRow><MinTileCol>10247</MinTileCol><MaxTileCol>10254</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17540</MinTileRow><MaxTileRow>17571</MaxTileRow><MinTileCol>20494</MinTileCol><MaxTileCol>20509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35080</MinTileRow><MaxTileRow>35143</MaxTileRow><MinTileCol>40988</MinTileCol><MaxTileCol>41018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>70161</MinTileRow><MaxTileRow>70286</MaxTileRow><MinTileCol>81976</MinTileCol><MaxTileCol>82037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>140322</MinTileRow><MaxTileRow>140572</MaxTileRow><MinTileCol>163953</MinTileCol><MaxTileCol>164075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>34</MinTileRow><MaxTileRow>34</MaxTileRow><MinTileCol>40</MinTileCol><MaxTileCol>40</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>68</MinTileRow><MaxTileRow>68</MaxTileRow><MinTileCol>80</MinTileCol><MaxTileCol>80</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>137</MinTileRow><MaxTileRow>137</MaxTileRow><MinTileCol>160</MinTileCol><MaxTileCol>160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>274</MinTileRow><MaxTileRow>274</MaxTileRow><MinTileCol>320</MinTileCol><MaxTileCol>320</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MIDI-PYRENEES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de MIDI-PYRENEES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.479173 42.5058</ows:LowerCorner><ows:UpperCorner>3.48282 45.0672</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MIDI-PYRENEES-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>378</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>756</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1472</MinTileRow><MaxTileRow>1512</MaxTileRow><MinTileCol>2043</MinTileCol><MaxTileCol>2087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2944</MinTileRow><MaxTileRow>3024</MaxTileRow><MinTileCol>4087</MinTileCol><MaxTileCol>4175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5889</MinTileRow><MaxTileRow>6048</MaxTileRow><MinTileCol>8175</MinTileCol><MaxTileCol>8350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11779</MinTileRow><MaxTileRow>12096</MaxTileRow><MinTileCol>16351</MinTileCol><MaxTileCol>16700</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23559</MinTileRow><MaxTileRow>24192</MaxTileRow><MinTileCol>32703</MinTileCol><MaxTileCol>33400</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47118</MinTileRow><MaxTileRow>48385</MaxTileRow><MinTileCol>65406</MinTileCol><MaxTileCol>66801</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>189</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONACO</ows:Title><ows:Abstract>Orthophotographies satellites de Monaco issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.31411 43.6719</ows:LowerCorner><ows:UpperCorner>7.54597 43.8504</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONACO-2013-11-06-37587641</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>745</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1065</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1491</MinTileRow><MaxTileRow>1494</MaxTileRow><MinTileCol>2131</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2983</MinTileRow><MaxTileRow>2989</MaxTileRow><MinTileCol>4262</MinTileCol><MaxTileCol>4267</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5966</MinTileRow><MaxTileRow>5978</MaxTileRow><MinTileCol>8524</MinTileCol><MaxTileCol>8535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11932</MinTileRow><MaxTileRow>11957</MaxTileRow><MinTileCol>17048</MinTileCol><MaxTileCol>17071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23865</MinTileRow><MaxTileRow>23914</MaxTileRow><MinTileCol>34097</MinTileCol><MaxTileCol>34143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47731</MinTileRow><MaxTileRow>47829</MaxTileRow><MinTileCol>68194</MinTileCol><MaxTileCol>68286</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95462</MinTileRow><MaxTileRow>95658</MaxTileRow><MinTileCol>136388</MinTileCol><MaxTileCol>136573</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONACO</ows:Title><ows:Abstract>Orthophotographies satellites de Monaco issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.31411 43.6719</ows:LowerCorner><ows:UpperCorner>7.54449 43.8501</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONACO-2013-11-06-37610766</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>745</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1065</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1491</MinTileRow><MaxTileRow>1494</MaxTileRow><MinTileCol>2131</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2983</MinTileRow><MaxTileRow>2989</MaxTileRow><MinTileCol>4262</MinTileCol><MaxTileCol>4267</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5966</MinTileRow><MaxTileRow>5978</MaxTileRow><MinTileCol>8524</MinTileCol><MaxTileCol>8535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11932</MinTileRow><MaxTileRow>11957</MaxTileRow><MinTileCol>17048</MinTileCol><MaxTileCol>17071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23865</MinTileRow><MaxTileRow>23914</MaxTileRow><MinTileCol>34097</MinTileCol><MaxTileCol>34143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47731</MinTileRow><MaxTileRow>47829</MaxTileRow><MinTileCol>68194</MinTileCol><MaxTileCol>68286</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95463</MinTileRow><MaxTileRow>95658</MaxTileRow><MinTileCol>136388</MinTileCol><MaxTileCol>136573</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.822 45.7614</ows:LowerCorner><ows:UpperCorner>7.08185 46.0263</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38209293</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4250</MinTileCol><MaxTileCol>4257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5826</MinTileRow><MaxTileRow>5844</MaxTileRow><MinTileCol>8501</MinTileCol><MaxTileCol>8514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11653</MinTileRow><MaxTileRow>11689</MaxTileRow><MinTileCol>17003</MinTileCol><MaxTileCol>17028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23306</MinTileRow><MaxTileRow>23378</MaxTileRow><MinTileCol>34007</MinTileCol><MaxTileCol>34057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46613</MinTileRow><MaxTileRow>46756</MaxTileRow><MinTileCol>68015</MinTileCol><MaxTileCol>68115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93226</MinTileRow><MaxTileRow>93513</MaxTileRow><MinTileCol>136030</MinTileCol><MaxTileCol>136231</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.7342 45.7519</ows:LowerCorner><ows:UpperCorner>6.92828 45.9277</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38219569</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1458</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2916</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4253</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5833</MinTileRow><MaxTileRow>5845</MaxTileRow><MinTileCol>8497</MinTileCol><MaxTileCol>8507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11666</MinTileRow><MaxTileRow>11691</MaxTileRow><MinTileCol>16995</MinTileCol><MaxTileCol>17015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23333</MinTileRow><MaxTileRow>23382</MaxTileRow><MinTileCol>33991</MinTileCol><MaxTileCol>34030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46666</MinTileRow><MaxTileRow>46764</MaxTileRow><MinTileCol>67982</MinTileCol><MaxTileCol>68061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93333</MinTileRow><MaxTileRow>93529</MaxTileRow><MinTileCol>135965</MinTileCol><MaxTileCol>136123</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.83126 45.7634</ows:LowerCorner><ows:UpperCorner>7.08178 46.0263</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38240000</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4251</MinTileCol><MaxTileCol>4257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5826</MinTileRow><MaxTileRow>5844</MaxTileRow><MinTileCol>8502</MinTileCol><MaxTileCol>8514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11653</MinTileRow><MaxTileRow>11689</MaxTileRow><MinTileCol>17004</MinTileCol><MaxTileCol>17028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23306</MinTileRow><MaxTileRow>23378</MaxTileRow><MinTileCol>34009</MinTileCol><MaxTileCol>34057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46613</MinTileRow><MaxTileRow>46756</MaxTileRow><MinTileCol>68019</MinTileCol><MaxTileCol>68115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93226</MinTileRow><MaxTileRow>93513</MaxTileRow><MinTileCol>136039</MinTileCol><MaxTileCol>136231</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.73382 45.7519</ows:LowerCorner><ows:UpperCorner>6.92364 45.9253</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38250819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1458</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2916</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4253</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5833</MinTileRow><MaxTileRow>5845</MaxTileRow><MinTileCol>8497</MinTileCol><MaxTileCol>8507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11666</MinTileRow><MaxTileRow>11691</MaxTileRow><MinTileCol>16995</MinTileCol><MaxTileCol>17015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23333</MinTileRow><MaxTileRow>23382</MaxTileRow><MinTileCol>33991</MinTileCol><MaxTileCol>34030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46666</MinTileRow><MaxTileRow>46764</MaxTileRow><MinTileCol>67982</MinTileCol><MaxTileCol>68061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93333</MinTileRow><MaxTileRow>93529</MaxTileRow><MinTileCol>135965</MinTileCol><MaxTileCol>136123</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.82591 45.762</ows:LowerCorner><ows:UpperCorner>7.08141 46.0263</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38274597</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>728</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1456</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2125</MinTileCol><MaxTileCol>2128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2913</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4251</MinTileCol><MaxTileCol>4257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5826</MinTileRow><MaxTileRow>5844</MaxTileRow><MinTileCol>8502</MinTileCol><MaxTileCol>8514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11653</MinTileRow><MaxTileRow>11689</MaxTileRow><MinTileCol>17004</MinTileCol><MaxTileCol>17028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23306</MinTileRow><MaxTileRow>23378</MaxTileRow><MinTileCol>34008</MinTileCol><MaxTileCol>34057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46613</MinTileRow><MaxTileRow>46756</MaxTileRow><MinTileCol>68016</MinTileCol><MaxTileCol>68115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93226</MinTileRow><MaxTileRow>93513</MaxTileRow><MinTileCol>136032</MinTileCol><MaxTileCol>136231</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title><ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.73383 45.7519</ows:LowerCorner><ows:UpperCorner>6.92769 45.9272</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38285126</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>364</MinTileRow><MaxTileRow>365</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>729</MinTileRow><MaxTileRow>730</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1458</MinTileRow><MaxTileRow>1461</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2916</MinTileRow><MaxTileRow>2922</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4253</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5833</MinTileRow><MaxTileRow>5845</MaxTileRow><MinTileCol>8497</MinTileCol><MaxTileCol>8507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11666</MinTileRow><MaxTileRow>11691</MaxTileRow><MinTileCol>16995</MinTileCol><MaxTileCol>17015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23333</MinTileRow><MaxTileRow>23382</MaxTileRow><MinTileCol>33991</MinTileCol><MaxTileCol>34030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46666</MinTileRow><MaxTileRow>46764</MaxTileRow><MinTileCol>67982</MinTileCol><MaxTileCol>68061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93333</MinTileRow><MaxTileRow>93529</MaxTileRow><MinTileCol>135965</MinTileCol><MaxTileCol>136123</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>182</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONT-SAINT-MICHEL 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de MONT-SAINT-MICHEL 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.5983 48.536</ows:LowerCorner><ows:UpperCorner>-1.26986 48.7452</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-SAINT-MICHEL-2014-02-24-40653319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>705</MinTileRow><MaxTileRow>707</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1411</MinTileRow><MaxTileRow>1414</MaxTileRow><MinTileCol>2029</MinTileCol><MaxTileCol>2033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2822</MinTileRow><MaxTileRow>2829</MaxTileRow><MinTileCol>4059</MinTileCol><MaxTileCol>4066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5644</MinTileRow><MaxTileRow>5658</MaxTileRow><MinTileCol>8119</MinTileCol><MaxTileCol>8133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11289</MinTileRow><MaxTileRow>11316</MaxTileRow><MinTileCol>16239</MinTileCol><MaxTileCol>16267</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22578</MinTileRow><MaxTileRow>22633</MaxTileRow><MinTileCol>32478</MinTileCol><MaxTileCol>32535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45156</MinTileRow><MaxTileRow>45266</MaxTileRow><MinTileCol>64957</MinTileCol><MaxTileCol>65071</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90312</MinTileRow><MaxTileRow>90532</MaxTileRow><MinTileCol>129914</MinTileCol><MaxTileCol>130143</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>254</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MONTPELLIER</ows:Title><ows:Abstract>Orthophotographies satellites de MONTPELLIER issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.75508 43.5061</ows:LowerCorner><ows:UpperCorner>3.99125 43.7542</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONTPELLIER-2013-04-15-39139580</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1493</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2986</MinTileRow><MaxTileRow>2994</MaxTileRow><MinTileCol>4181</MinTileCol><MaxTileCol>4186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5972</MinTileRow><MaxTileRow>5989</MaxTileRow><MinTileCol>8362</MinTileCol><MaxTileCol>8373</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11945</MinTileRow><MaxTileRow>11978</MaxTileRow><MinTileCol>16724</MinTileCol><MaxTileCol>16747</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23890</MinTileRow><MaxTileRow>23956</MaxTileRow><MinTileCol>33449</MinTileCol><MaxTileCol>33494</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47781</MinTileRow><MaxTileRow>47913</MaxTileRow><MinTileCol>66898</MinTileCol><MaxTileCol>66989</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95563</MinTileRow><MaxTileRow>95826</MaxTileRow><MinTileCol>133797</MinTileCol><MaxTileCol>133978</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de MULHOUSE-2014</ows:Title><ows:Abstract>Orthophotographies satellites de MULHOUSE-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.17337 47.6656</ows:LowerCorner><ows:UpperCorner>7.49837 47.9016</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MULHOUSE-2014-02-17-38001324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>356</MinTileRow><MaxTileRow>357</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>712</MinTileRow><MaxTileRow>714</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1425</MinTileRow><MaxTileRow>1429</MaxTileRow><MinTileCol>2129</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2851</MinTileRow><MaxTileRow>2858</MaxTileRow><MinTileCol>4259</MinTileCol><MaxTileCol>4266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5702</MinTileRow><MaxTileRow>5717</MaxTileRow><MinTileCol>8518</MinTileCol><MaxTileCol>8532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11404</MinTileRow><MaxTileRow>11434</MaxTileRow><MinTileCol>17037</MinTileCol><MaxTileCol>17065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22809</MinTileRow><MaxTileRow>22869</MaxTileRow><MinTileCol>34075</MinTileCol><MaxTileCol>34131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45619</MinTileRow><MaxTileRow>45739</MaxTileRow><MinTileCol>68151</MinTileCol><MaxTileCol>68263</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91238</MinTileRow><MaxTileRow>91478</MaxTileRow><MinTileCol>136303</MinTileCol><MaxTileCol>136527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>178</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.88956 42.9713</ows:LowerCorner><ows:UpperCorner>3.14726 43.0882</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-04-22-38922694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>751</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1503</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3007</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4161</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6014</MinTileRow><MaxTileRow>6022</MaxTileRow><MinTileCol>8323</MinTileCol><MaxTileCol>8335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12029</MinTileRow><MaxTileRow>12044</MaxTileRow><MinTileCol>16646</MinTileCol><MaxTileCol>16670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24059</MinTileRow><MaxTileRow>24088</MaxTileRow><MinTileCol>33293</MinTileCol><MaxTileCol>33340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48118</MinTileRow><MaxTileRow>48176</MaxTileRow><MinTileCol>66587</MinTileCol><MaxTileCol>66681</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96236</MinTileRow><MaxTileRow>96353</MaxTileRow><MinTileCol>133175</MinTileCol><MaxTileCol>133363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.88956 42.9713</ows:LowerCorner><ows:UpperCorner>3.14726 43.0882</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-04-22-38943819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>751</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1503</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3007</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4161</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6014</MinTileRow><MaxTileRow>6022</MaxTileRow><MinTileCol>8323</MinTileCol><MaxTileCol>8335</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12029</MinTileRow><MaxTileRow>12044</MaxTileRow><MinTileCol>16646</MinTileCol><MaxTileCol>16670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24059</MinTileRow><MaxTileRow>24088</MaxTileRow><MinTileCol>33293</MinTileCol><MaxTileCol>33340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48118</MinTileRow><MaxTileRow>48176</MaxTileRow><MinTileCol>66587</MinTileCol><MaxTileCol>66681</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96236</MinTileRow><MaxTileRow>96353</MaxTileRow><MinTileCol>133175</MinTileCol><MaxTileCol>133363</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.07363 43.0878</ows:LowerCorner><ows:UpperCorner>3.33241 43.2772</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-07-29-38788199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3001</MinTileRow><MaxTileRow>3007</MaxTileRow><MinTileCol>4165</MinTileCol><MaxTileCol>4171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6003</MinTileRow><MaxTileRow>6014</MaxTileRow><MinTileCol>8331</MinTileCol><MaxTileCol>8343</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12006</MinTileRow><MaxTileRow>12029</MaxTileRow><MinTileCol>16663</MinTileCol><MaxTileCol>16687</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24012</MinTileRow><MaxTileRow>24059</MaxTileRow><MinTileCol>33327</MinTileCol><MaxTileCol>33374</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48024</MinTileRow><MaxTileRow>48118</MaxTileRow><MinTileCol>66654</MinTileCol><MaxTileCol>66749</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96048</MinTileRow><MaxTileRow>96237</MaxTileRow><MinTileCol>133309</MinTileCol><MaxTileCol>133498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.07363 43.0878</ows:LowerCorner><ows:UpperCorner>3.33241 43.2772</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-07-29-38802199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2082</MinTileCol><MaxTileCol>2085</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3001</MinTileRow><MaxTileRow>3007</MaxTileRow><MinTileCol>4165</MinTileCol><MaxTileCol>4171</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6003</MinTileRow><MaxTileRow>6014</MaxTileRow><MinTileCol>8331</MinTileCol><MaxTileCol>8343</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12006</MinTileRow><MaxTileRow>12029</MaxTileRow><MinTileCol>16663</MinTileCol><MaxTileCol>16687</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24012</MinTileRow><MaxTileRow>24059</MaxTileRow><MinTileCol>33327</MinTileCol><MaxTileCol>33374</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48024</MinTileRow><MaxTileRow>48118</MaxTileRow><MinTileCol>66654</MinTileCol><MaxTileCol>66749</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96048</MinTileRow><MaxTileRow>96237</MaxTileRow><MinTileCol>133309</MinTileCol><MaxTileCol>133498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.85233 43.0522</ows:LowerCorner><ows:UpperCorner>3.13537 43.2501</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-08-31-38562324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3008</MaxTileRow><MinTileCol>4160</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6017</MaxTileRow><MinTileCol>8321</MinTileCol><MaxTileCol>8334</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12009</MinTileRow><MaxTileRow>12034</MaxTileRow><MinTileCol>16643</MinTileCol><MaxTileCol>16669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24018</MinTileRow><MaxTileRow>24068</MaxTileRow><MinTileCol>33287</MinTileCol><MaxTileCol>33338</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48037</MinTileRow><MaxTileRow>48136</MaxTileRow><MinTileCol>66574</MinTileCol><MaxTileCol>66677</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96075</MinTileRow><MaxTileRow>96272</MaxTileRow><MinTileCol>133148</MinTileCol><MaxTileCol>133355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.85231 43.0522</ows:LowerCorner><ows:UpperCorner>3.13539 43.2591</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-08-31-38581699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2080</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3008</MaxTileRow><MinTileCol>4160</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6017</MaxTileRow><MinTileCol>8321</MinTileCol><MaxTileCol>8334</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12008</MinTileRow><MaxTileRow>12034</MaxTileRow><MinTileCol>16643</MinTileCol><MaxTileCol>16669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24016</MinTileRow><MaxTileRow>24068</MaxTileRow><MinTileCol>33287</MinTileCol><MaxTileCol>33338</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48033</MinTileRow><MaxTileRow>48136</MaxTileRow><MinTileCol>66574</MinTileCol><MaxTileCol>66677</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96066</MinTileRow><MaxTileRow>96272</MaxTileRow><MinTileCol>133148</MinTileCol><MaxTileCol>133355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Nice</ows:Title><ows:Abstract>Orthophotographies satellites de NICE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.07044 43.5242</ows:LowerCorner><ows:UpperCorner>7.33573 43.7764</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NICE-2013-04-05-37773437</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2128</MinTileCol><MaxTileCol>2131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2985</MinTileRow><MaxTileRow>2993</MaxTileRow><MinTileCol>4257</MinTileCol><MaxTileCol>4262</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5971</MinTileRow><MaxTileRow>5987</MaxTileRow><MinTileCol>8514</MinTileCol><MaxTileCol>8525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11943</MinTileRow><MaxTileRow>11974</MaxTileRow><MinTileCol>17028</MinTileCol><MaxTileCol>17051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23887</MinTileRow><MaxTileRow>23948</MaxTileRow><MinTileCol>34056</MinTileCol><MaxTileCol>34102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47775</MinTileRow><MaxTileRow>47896</MaxTileRow><MinTileCol>68112</MinTileCol><MaxTileCol>68205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95550</MinTileRow><MaxTileRow>95792</MaxTileRow><MinTileCol>136224</MinTileCol><MaxTileCol>136411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Nice</ows:Title><ows:Abstract>Orthophotographies satellites de NICE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.07108 43.5332</ows:LowerCorner><ows:UpperCorner>7.33573 43.7764</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NICE-2013-04-05-37787410</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2128</MinTileCol><MaxTileCol>2131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2985</MinTileRow><MaxTileRow>2993</MaxTileRow><MinTileCol>4257</MinTileCol><MaxTileCol>4262</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5971</MinTileRow><MaxTileRow>5986</MaxTileRow><MinTileCol>8514</MinTileCol><MaxTileCol>8525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11943</MinTileRow><MaxTileRow>11973</MaxTileRow><MinTileCol>17028</MinTileCol><MaxTileCol>17051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23887</MinTileRow><MaxTileRow>23946</MaxTileRow><MinTileCol>34056</MinTileCol><MaxTileCol>34102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47775</MinTileRow><MaxTileRow>47892</MaxTileRow><MinTileCol>68112</MinTileCol><MaxTileCol>68205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95550</MinTileRow><MaxTileRow>95785</MaxTileRow><MinTileCol>136224</MinTileCol><MaxTileCol>136411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Nimes</ows:Title><ows:Abstract>Orthophotographies satellites de Nimes issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.21593 43.7168</ows:LowerCorner><ows:UpperCorner>4.49447 43.9362</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NIMES-2013-07-23-38473694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>745</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1047</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1490</MinTileRow><MaxTileRow>1493</MaxTileRow><MinTileCol>2095</MinTileCol><MaxTileCol>2099</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2980</MinTileRow><MaxTileRow>2987</MaxTileRow><MinTileCol>4191</MinTileCol><MaxTileCol>4198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5961</MinTileRow><MaxTileRow>5975</MaxTileRow><MinTileCol>8383</MinTileCol><MaxTileCol>8396</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11923</MinTileRow><MaxTileRow>11950</MaxTileRow><MinTileCol>16767</MinTileCol><MaxTileCol>16793</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23846</MinTileRow><MaxTileRow>23900</MaxTileRow><MinTileCol>33535</MinTileCol><MaxTileCol>33586</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47692</MinTileRow><MaxTileRow>47801</MaxTileRow><MinTileCol>67070</MinTileCol><MaxTileCol>67172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95385</MinTileRow><MaxTileRow>95603</MaxTileRow><MinTileCol>134141</MinTileCol><MaxTileCol>134344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Niort</ows:Title><ows:Abstract>Orthophotographies satellites de Niort issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.592872 46.2275</ows:LowerCorner><ows:UpperCorner>-0.297054 46.3981</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NIORT-2013-09-22-40320449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>725</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1020</MinTileCol><MaxTileCol>1022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1450</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2041</MinTileCol><MaxTileCol>2044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2901</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4082</MinTileCol><MaxTileCol>4089</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5803</MinTileRow><MaxTileRow>5813</MaxTileRow><MinTileCol>8165</MinTileCol><MaxTileCol>8178</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11606</MinTileRow><MaxTileRow>11626</MaxTileRow><MinTileCol>16330</MinTileCol><MaxTileCol>16356</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23212</MinTileRow><MaxTileRow>23253</MaxTileRow><MinTileCol>32660</MinTileCol><MaxTileCol>32712</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46424</MinTileRow><MaxTileRow>46507</MaxTileRow><MinTileCol>65320</MinTileCol><MaxTileCol>65425</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92848</MinTileRow><MaxTileRow>93014</MaxTileRow><MinTileCol>130640</MinTileCol><MaxTileCol>130850</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de NORD-PAS-DE-CALAIS 2014</ows:Title><ows:Abstract>Orthophotographies satellites de NORD-PAS-DE-CALAIS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.49006 49.9457</ows:LowerCorner><ows:UpperCorner>4.26782 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NORD-PAS-DE-CALAIS-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>347</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>695</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1390</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>2780</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4192</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>5560</MaxTileRow><MinTileCol>8260</MinTileCol><MaxTileCol>8385</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>11120</MaxTileRow><MinTileCol>16521</MinTileCol><MaxTileCol>16770</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>22240</MaxTileRow><MinTileCol>33042</MinTileCol><MaxTileCol>33541</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>44481</MaxTileRow><MinTileCol>66085</MinTileCol><MaxTileCol>67082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>173</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA 2014</ows:Title><ows:Abstract>Orthophotographies satellites de PACA issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.18621 42.9109</ows:LowerCorner><ows:UpperCorner>7.8182 45.1911</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>367</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>534</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>735</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1047</MinTileCol><MaxTileCol>1068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1470</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2095</MinTileCol><MaxTileCol>2136</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2941</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4191</MinTileCol><MaxTileCol>4272</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5883</MinTileRow><MaxTileRow>6022</MaxTileRow><MinTileCol>8382</MinTileCol><MaxTileCol>8544</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11767</MinTileRow><MaxTileRow>12045</MaxTileRow><MinTileCol>16765</MinTileCol><MaxTileCol>17088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23535</MinTileRow><MaxTileRow>24090</MaxTileRow><MinTileCol>33531</MinTileCol><MaxTileCol>34176</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47071</MinTileRow><MaxTileRow>48181</MaxTileRow><MinTileCol>67063</MinTileCol><MaxTileCol>68352</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>183</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>267</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.07108 43.5332</ows:LowerCorner><ows:UpperCorner>7.33573 43.7764</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-04-05-37787410</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2128</MinTileCol><MaxTileCol>2131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2985</MinTileRow><MaxTileRow>2993</MaxTileRow><MinTileCol>4257</MinTileCol><MaxTileCol>4262</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5971</MinTileRow><MaxTileRow>5986</MaxTileRow><MinTileCol>8514</MinTileCol><MaxTileCol>8525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11943</MinTileRow><MaxTileRow>11973</MaxTileRow><MinTileCol>17028</MinTileCol><MaxTileCol>17051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23887</MinTileRow><MaxTileRow>23946</MaxTileRow><MinTileCol>34056</MinTileCol><MaxTileCol>34102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47775</MinTileRow><MaxTileRow>47892</MaxTileRow><MinTileCol>68112</MinTileCol><MaxTileCol>68205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95550</MinTileRow><MaxTileRow>95785</MaxTileRow><MinTileCol>136224</MinTileCol><MaxTileCol>136411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.20907 43.4017</ows:LowerCorner><ows:UpperCorner>5.48819 43.5875</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38422951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1053</MinTileCol><MaxTileCol>1055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2107</MinTileCol><MaxTileCol>2110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4214</MinTileCol><MaxTileCol>4220</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5983</MinTileRow><MaxTileRow>5994</MaxTileRow><MinTileCol>8429</MinTileCol><MaxTileCol>8441</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11967</MinTileRow><MaxTileRow>11989</MaxTileRow><MinTileCol>16858</MinTileCol><MaxTileCol>16882</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23934</MinTileRow><MaxTileRow>23979</MaxTileRow><MinTileCol>33716</MinTileCol><MaxTileCol>33765</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47868</MinTileRow><MaxTileRow>47959</MaxTileRow><MinTileCol>67432</MinTileCol><MaxTileCol>67531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95736</MinTileRow><MaxTileRow>95918</MaxTileRow><MinTileCol>134865</MinTileCol><MaxTileCol>135063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.99128 43.1723</ows:LowerCorner><ows:UpperCorner>5.29096 43.6095</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38438564</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1052</MinTileCol><MaxTileCol>1054</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2104</MinTileCol><MaxTileCol>2108</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>3004</MaxTileRow><MinTileCol>4209</MinTileCol><MaxTileCol>4216</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>6009</MaxTileRow><MinTileCol>8419</MinTileCol><MaxTileCol>8432</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>12019</MaxTileRow><MinTileCol>16839</MinTileCol><MaxTileCol>16864</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23928</MinTileRow><MaxTileRow>24038</MaxTileRow><MinTileCol>33678</MinTileCol><MaxTileCol>33729</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47857</MinTileRow><MaxTileRow>48076</MaxTileRow><MinTileCol>67356</MinTileCol><MaxTileCol>67458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95715</MinTileRow><MaxTileRow>96152</MaxTileRow><MinTileCol>134712</MinTileCol><MaxTileCol>134917</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.78991 43.4197</ows:LowerCorner><ows:UpperCorner>5.05578 43.6132</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38460965</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1051</MinTileCol><MaxTileCol>1052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2102</MinTileCol><MaxTileCol>2105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4204</MinTileCol><MaxTileCol>4211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>5993</MaxTileRow><MinTileCol>8409</MinTileCol><MaxTileCol>8422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>11987</MaxTileRow><MinTileCol>16819</MinTileCol><MaxTileCol>16844</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23928</MinTileRow><MaxTileRow>23975</MaxTileRow><MinTileCol>33639</MinTileCol><MaxTileCol>33688</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47857</MinTileRow><MaxTileRow>47951</MaxTileRow><MinTileCol>67279</MinTileCol><MaxTileCol>67376</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95715</MinTileRow><MaxTileRow>95903</MaxTileRow><MinTileCol>134559</MinTileCol><MaxTileCol>134753</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Narbonne</ows:Title><ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.56485 43.3156</ows:LowerCorner><ows:UpperCorner>4.84504 43.6077</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38479629</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>524</MinTileCol><MaxTileCol>525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1049</MinTileCol><MaxTileCol>1051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2099</MinTileCol><MaxTileCol>2103</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>3000</MaxTileRow><MinTileCol>4199</MinTileCol><MaxTileCol>4206</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>6000</MaxTileRow><MinTileCol>8399</MinTileCol><MaxTileCol>8412</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>12001</MaxTileRow><MinTileCol>16799</MinTileCol><MaxTileCol>16824</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23929</MinTileRow><MaxTileRow>24002</MaxTileRow><MinTileCol>33599</MinTileCol><MaxTileCol>33649</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47858</MinTileRow><MaxTileRow>48004</MaxTileRow><MinTileCol>67199</MinTileCol><MaxTileCol>67299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95716</MinTileRow><MaxTileRow>96009</MaxTileRow><MinTileCol>134399</MinTileCol><MaxTileCol>134599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.34331 43.3279</ows:LowerCorner><ows:UpperCorner>4.6346 43.6107</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38496655</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>524</MinTileCol><MaxTileCol>525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1048</MinTileCol><MaxTileCol>1050</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2097</MinTileCol><MaxTileCol>2100</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2999</MaxTileRow><MinTileCol>4194</MinTileCol><MaxTileCol>4201</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>5999</MaxTileRow><MinTileCol>8389</MinTileCol><MaxTileCol>8402</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>11999</MaxTileRow><MinTileCol>16779</MinTileCol><MaxTileCol>16805</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23928</MinTileRow><MaxTileRow>23999</MaxTileRow><MinTileCol>33559</MinTileCol><MaxTileCol>33611</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47857</MinTileRow><MaxTileRow>47998</MaxTileRow><MinTileCol>67118</MinTileCol><MaxTileCol>67222</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95714</MinTileRow><MaxTileRow>95997</MaxTileRow><MinTileCol>134237</MinTileCol><MaxTileCol>134444</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.18313 43.3307</ows:LowerCorner><ows:UpperCorner>4.43651 43.6125</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38508696</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1047</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2095</MinTileCol><MaxTileCol>2098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2999</MaxTileRow><MinTileCol>4191</MinTileCol><MaxTileCol>4196</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>5999</MaxTileRow><MinTileCol>8382</MinTileCol><MaxTileCol>8393</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>11999</MaxTileRow><MinTileCol>16764</MinTileCol><MaxTileCol>16787</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23928</MinTileRow><MaxTileRow>23998</MaxTileRow><MinTileCol>33529</MinTileCol><MaxTileCol>33575</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47857</MinTileRow><MaxTileRow>47997</MaxTileRow><MinTileCol>67059</MinTileCol><MaxTileCol>67150</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95714</MinTileRow><MaxTileRow>95994</MaxTileRow><MinTileCol>134118</MinTileCol><MaxTileCol>134301</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.41046 43.198</ows:LowerCorner><ows:UpperCorner>5.72959 43.4571</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-11-39155146</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1054</MinTileCol><MaxTileCol>1056</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2109</MinTileCol><MaxTileCol>2113</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4219</MinTileCol><MaxTileCol>4226</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5991</MinTileRow><MaxTileRow>6007</MaxTileRow><MinTileCol>8438</MinTileCol><MaxTileCol>8452</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11983</MinTileRow><MaxTileRow>12015</MaxTileRow><MinTileCol>16876</MinTileCol><MaxTileCol>16904</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23966</MinTileRow><MaxTileRow>24031</MaxTileRow><MinTileCol>33753</MinTileCol><MaxTileCol>33809</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47933</MinTileRow><MaxTileRow>48063</MaxTileRow><MinTileCol>67507</MinTileCol><MaxTileCol>67619</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95867</MinTileRow><MaxTileRow>96127</MaxTileRow><MinTileCol>135015</MinTileCol><MaxTileCol>135238</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.18174 43.005</ows:LowerCorner><ows:UpperCorner>5.53211 43.4618</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-11-39166949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1053</MinTileCol><MaxTileCol>1055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2107</MinTileCol><MaxTileCol>2110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3009</MaxTileRow><MinTileCol>4214</MinTileCol><MaxTileCol>4221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5991</MinTileRow><MaxTileRow>6019</MaxTileRow><MinTileCol>8428</MinTileCol><MaxTileCol>8442</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11983</MinTileRow><MaxTileRow>12039</MaxTileRow><MinTileCol>16857</MinTileCol><MaxTileCol>16885</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23966</MinTileRow><MaxTileRow>24079</MaxTileRow><MinTileCol>33714</MinTileCol><MaxTileCol>33771</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47933</MinTileRow><MaxTileRow>48159</MaxTileRow><MinTileCol>67428</MinTileCol><MaxTileCol>67543</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95866</MinTileRow><MaxTileRow>96319</MaxTileRow><MinTileCol>134856</MinTileCol><MaxTileCol>135087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.63535 43.0038</ows:LowerCorner><ows:UpperCorner>5.93204 43.3077</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38739122</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1056</MinTileCol><MaxTileCol>1057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2112</MinTileCol><MaxTileCol>2115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3010</MaxTileRow><MinTileCol>4224</MinTileCol><MaxTileCol>4230</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6001</MinTileRow><MaxTileRow>6020</MaxTileRow><MinTileCol>8448</MinTileCol><MaxTileCol>8461</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12002</MinTileRow><MaxTileRow>12040</MaxTileRow><MinTileCol>16897</MinTileCol><MaxTileCol>16923</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24004</MinTileRow><MaxTileRow>24080</MaxTileRow><MinTileCol>33795</MinTileCol><MaxTileCol>33846</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48008</MinTileRow><MaxTileRow>48160</MaxTileRow><MinTileCol>67590</MinTileCol><MaxTileCol>67693</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96017</MinTileRow><MaxTileRow>96320</MaxTileRow><MinTileCol>135181</MinTileCol><MaxTileCol>135387</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.84974 43.1234</ows:LowerCorner><ows:UpperCorner>6.15356 43.3024</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38786877</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2114</MinTileCol><MaxTileCol>2118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4229</MinTileCol><MaxTileCol>4236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6001</MinTileRow><MaxTileRow>6012</MaxTileRow><MinTileCol>8458</MinTileCol><MaxTileCol>8472</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12003</MinTileRow><MaxTileRow>12024</MaxTileRow><MinTileCol>16916</MinTileCol><MaxTileCol>16944</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24007</MinTileRow><MaxTileRow>24048</MaxTileRow><MinTileCol>33833</MinTileCol><MaxTileCol>33888</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48014</MinTileRow><MaxTileRow>48097</MaxTileRow><MinTileCol>67666</MinTileCol><MaxTileCol>67776</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96029</MinTileRow><MaxTileRow>96194</MaxTileRow><MinTileCol>135333</MinTileCol><MaxTileCol>135553</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.41448 42.9999</ows:LowerCorner><ows:UpperCorner>5.73253 43.259</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38794949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1054</MinTileCol><MaxTileCol>1056</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2109</MinTileCol><MaxTileCol>2113</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3010</MaxTileRow><MinTileCol>4219</MinTileCol><MaxTileCol>4226</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6020</MaxTileRow><MinTileCol>8438</MinTileCol><MaxTileCol>8452</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12009</MinTileRow><MaxTileRow>12040</MaxTileRow><MinTileCol>16877</MinTileCol><MaxTileCol>16904</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24018</MinTileRow><MaxTileRow>24080</MaxTileRow><MinTileCol>33754</MinTileCol><MaxTileCol>33809</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48036</MinTileRow><MaxTileRow>48160</MaxTileRow><MinTileCol>67509</MinTileCol><MaxTileCol>67619</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96072</MinTileRow><MaxTileRow>96320</MaxTileRow><MinTileCol>135019</MinTileCol><MaxTileCol>135239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.71699 43.4197</ows:LowerCorner><ows:UpperCorner>7.00323 43.645</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38211417</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>5993</MaxTileRow><MinTileCol>8497</MinTileCol><MaxTileCol>8510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11960</MinTileRow><MaxTileRow>11987</MaxTileRow><MinTileCol>16995</MinTileCol><MaxTileCol>17021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23921</MinTileRow><MaxTileRow>23975</MaxTileRow><MinTileCol>33991</MinTileCol><MaxTileCol>34042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47843</MinTileRow><MaxTileRow>47951</MaxTileRow><MinTileCol>67983</MinTileCol><MaxTileCol>68084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95686</MinTileRow><MaxTileRow>95903</MaxTileRow><MinTileCol>135966</MinTileCol><MaxTileCol>136168</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.28381 42.9756</ows:LowerCorner><ows:UpperCorner>6.57911 43.4066</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38228180</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1059</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2119</MinTileCol><MaxTileCol>2122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2997</MinTileRow><MaxTileRow>3010</MaxTileRow><MinTileCol>4239</MinTileCol><MaxTileCol>4245</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5995</MinTileRow><MaxTileRow>6021</MaxTileRow><MinTileCol>8478</MinTileCol><MaxTileCol>8491</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11990</MinTileRow><MaxTileRow>12042</MaxTileRow><MinTileCol>16957</MinTileCol><MaxTileCol>16982</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23981</MinTileRow><MaxTileRow>24085</MaxTileRow><MinTileCol>33914</MinTileCol><MaxTileCol>33964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47963</MinTileRow><MaxTileRow>48171</MaxTileRow><MinTileCol>67828</MinTileCol><MaxTileCol>67929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95926</MinTileRow><MaxTileRow>96342</MaxTileRow><MinTileCol>135657</MinTileCol><MaxTileCol>135858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.07829 43.2616</ows:LowerCorner><ows:UpperCorner>6.33865 43.3053</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38263771</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1058</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2117</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4234</MinTileCol><MaxTileCol>4240</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6001</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8468</MinTileCol><MaxTileCol>8480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12003</MinTileRow><MaxTileRow>12007</MaxTileRow><MinTileCol>16937</MinTileCol><MaxTileCol>16960</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24006</MinTileRow><MaxTileRow>24014</MaxTileRow><MinTileCol>33874</MinTileCol><MaxTileCol>33921</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48012</MinTileRow><MaxTileRow>48028</MaxTileRow><MinTileCol>67748</MinTileCol><MaxTileCol>67843</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96025</MinTileRow><MaxTileRow>96057</MaxTileRow><MinTileCol>135497</MinTileCol><MaxTileCol>135687</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.48772 43.105</ows:LowerCorner><ows:UpperCorner>6.73174 43.2835</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38281820</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1060</MinTileCol><MaxTileCol>1062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2121</MinTileCol><MaxTileCol>2124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3001</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4243</MinTileCol><MaxTileCol>4249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6002</MinTileRow><MaxTileRow>6013</MaxTileRow><MinTileCol>8487</MinTileCol><MaxTileCol>8498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12005</MinTileRow><MaxTileRow>12026</MaxTileRow><MinTileCol>16974</MinTileCol><MaxTileCol>16996</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24011</MinTileRow><MaxTileRow>24053</MaxTileRow><MinTileCol>33949</MinTileCol><MaxTileCol>33993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48023</MinTileRow><MaxTileRow>48106</MaxTileRow><MinTileCol>67898</MinTileCol><MaxTileCol>67987</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96046</MinTileRow><MaxTileRow>96213</MaxTileRow><MinTileCol>135796</MinTileCol><MaxTileCol>135974</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.06206 42.955</ows:LowerCorner><ows:UpperCorner>6.37503 43.2963</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38291319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1058</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2117</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3001</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4234</MinTileCol><MaxTileCol>4240</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6002</MinTileRow><MaxTileRow>6022</MaxTileRow><MinTileCol>8468</MinTileCol><MaxTileCol>8481</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12004</MinTileRow><MaxTileRow>12045</MaxTileRow><MinTileCol>16936</MinTileCol><MaxTileCol>16963</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24008</MinTileRow><MaxTileRow>24091</MaxTileRow><MinTileCol>33873</MinTileCol><MaxTileCol>33927</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48016</MinTileRow><MaxTileRow>48182</MaxTileRow><MinTileCol>67747</MinTileCol><MaxTileCol>67854</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96033</MinTileRow><MaxTileRow>96364</MaxTileRow><MinTileCol>135494</MinTileCol><MaxTileCol>135708</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.77259 43.2574</ows:LowerCorner><ows:UpperCorner>5.07501 43.4605</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37856075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1051</MinTileCol><MaxTileCol>1052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2102</MinTileCol><MaxTileCol>2105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>3002</MaxTileRow><MinTileCol>4204</MinTileCol><MaxTileCol>4211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5991</MinTileRow><MaxTileRow>6004</MaxTileRow><MinTileCol>8409</MinTileCol><MaxTileCol>8422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11983</MinTileRow><MaxTileRow>12008</MaxTileRow><MinTileCol>16818</MinTileCol><MaxTileCol>16845</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23966</MinTileRow><MaxTileRow>24016</MaxTileRow><MinTileCol>33637</MinTileCol><MaxTileCol>33691</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47932</MinTileRow><MaxTileRow>48033</MaxTileRow><MinTileCol>67274</MinTileCol><MaxTileCol>67383</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95864</MinTileRow><MaxTileRow>96067</MaxTileRow><MinTileCol>134548</MinTileCol><MaxTileCol>134767</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.85536 42.9886</ows:LowerCorner><ows:UpperCorner>6.14718 43.1852</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37890449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>751</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1058</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1502</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2114</MinTileCol><MaxTileCol>2117</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3004</MinTileRow><MaxTileRow>3010</MaxTileRow><MinTileCol>4229</MinTileCol><MaxTileCol>4235</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6008</MinTileRow><MaxTileRow>6020</MaxTileRow><MinTileCol>8458</MinTileCol><MaxTileCol>8471</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12017</MinTileRow><MaxTileRow>12041</MaxTileRow><MinTileCol>16917</MinTileCol><MaxTileCol>16943</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24034</MinTileRow><MaxTileRow>24083</MaxTileRow><MinTileCol>33834</MinTileCol><MaxTileCol>33887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48069</MinTileRow><MaxTileRow>48167</MaxTileRow><MinTileCol>67668</MinTileCol><MaxTileCol>67774</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96139</MinTileRow><MaxTileRow>96335</MaxTileRow><MinTileCol>135336</MinTileCol><MaxTileCol>135548</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.28279 42.9581</ows:LowerCorner><ows:UpperCorner>6.54299 43.0201</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37898824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>376</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>752</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1059</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1504</MinTileRow><MaxTileRow>1505</MaxTileRow><MinTileCol>2119</MinTileCol><MaxTileCol>2122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3009</MinTileRow><MaxTileRow>3011</MaxTileRow><MinTileCol>4238</MinTileCol><MaxTileCol>4244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6019</MinTileRow><MaxTileRow>6022</MaxTileRow><MinTileCol>8477</MinTileCol><MaxTileCol>8489</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12038</MinTileRow><MaxTileRow>12045</MaxTileRow><MinTileCol>16955</MinTileCol><MaxTileCol>16979</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24076</MinTileRow><MaxTileRow>24090</MaxTileRow><MinTileCol>33911</MinTileCol><MaxTileCol>33958</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48152</MinTileRow><MaxTileRow>48181</MaxTileRow><MinTileCol>67823</MinTileCol><MaxTileCol>67917</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96304</MinTileRow><MaxTileRow>96363</MaxTileRow><MinTileCol>135646</MinTileCol><MaxTileCol>135835</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.50762 43.2308</ows:LowerCorner><ows:UpperCorner>6.74692 43.5168</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-07-23-38490559</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1061</MinTileCol><MaxTileCol>1062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2122</MinTileCol><MaxTileCol>2124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2994</MinTileRow><MaxTileRow>3002</MaxTileRow><MinTileCol>4244</MinTileCol><MaxTileCol>4249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5988</MinTileRow><MaxTileRow>6005</MaxTileRow><MinTileCol>8488</MinTileCol><MaxTileCol>8498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11976</MinTileRow><MaxTileRow>12011</MaxTileRow><MinTileCol>16976</MinTileCol><MaxTileCol>16997</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23953</MinTileRow><MaxTileRow>24023</MaxTileRow><MinTileCol>33953</MinTileCol><MaxTileCol>33995</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47906</MinTileRow><MaxTileRow>48046</MaxTileRow><MinTileCol>67906</MinTileCol><MaxTileCol>67990</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95813</MinTileRow><MaxTileRow>96093</MaxTileRow><MinTileCol>135813</MinTileCol><MaxTileCol>135980</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title><ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.89143 43.443</ows:LowerCorner><ows:UpperCorner>7.10414 43.6659</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-12-01-38097894</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1494</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2989</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4252</MinTileCol><MaxTileCol>4257</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5978</MinTileRow><MaxTileRow>5992</MaxTileRow><MinTileCol>8505</MinTileCol><MaxTileCol>8515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11957</MinTileRow><MaxTileRow>11984</MaxTileRow><MinTileCol>17011</MinTileCol><MaxTileCol>17030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23915</MinTileRow><MaxTileRow>23969</MaxTileRow><MinTileCol>34023</MinTileCol><MaxTileCol>34061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47831</MinTileRow><MaxTileRow>47938</MaxTileRow><MinTileCol>68047</MinTileCol><MaxTileCol>68122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95663</MinTileRow><MaxTileRow>95877</MaxTileRow><MinTileCol>136095</MinTileCol><MaxTileCol>136245</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PARIS-CENTRE</ows:Title><ows:Abstract>Orthophotographies satellites de PARIS-CENTRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.18208 48.7405</ows:LowerCorner><ows:UpperCorner>2.46181 48.9602</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PARIS-CENTRE-2013-07-21-39303694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>351</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>703</MinTileRow><MaxTileRow>705</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1407</MinTileRow><MaxTileRow>1411</MaxTileRow><MinTileCol>2072</MinTileCol><MaxTileCol>2076</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2814</MinTileRow><MaxTileRow>2822</MaxTileRow><MinTileCol>4145</MinTileCol><MaxTileCol>4152</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5629</MinTileRow><MaxTileRow>5644</MaxTileRow><MinTileCol>8290</MinTileCol><MaxTileCol>8304</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11258</MinTileRow><MaxTileRow>11289</MaxTileRow><MinTileCol>16581</MinTileCol><MaxTileCol>16608</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22516</MinTileRow><MaxTileRow>22578</MaxTileRow><MinTileCol>33162</MinTileCol><MaxTileCol>33217</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45032</MinTileRow><MaxTileRow>45157</MaxTileRow><MinTileCol>66325</MinTileCol><MaxTileCol>66435</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90065</MinTileRow><MaxTileRow>90315</MaxTileRow><MinTileCol>132651</MinTileCol><MaxTileCol>132870</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PAU 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de PAU 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.505156 43.2117</ows:LowerCorner><ows:UpperCorner>-0.247949 43.4081</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PAU-2014-10-24-40100388</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>510</MinTileCol><MaxTileCol>511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1021</MinTileCol><MaxTileCol>1022</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2042</MinTileCol><MaxTileCol>2045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2997</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4084</MinTileCol><MaxTileCol>4090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5994</MinTileRow><MaxTileRow>6006</MaxTileRow><MinTileCol>8169</MinTileCol><MaxTileCol>8180</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11989</MinTileRow><MaxTileRow>12013</MaxTileRow><MinTileCol>16338</MinTileCol><MaxTileCol>16360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23979</MinTileRow><MaxTileRow>24027</MaxTileRow><MinTileCol>32676</MinTileCol><MaxTileCol>32721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47958</MinTileRow><MaxTileRow>48055</MaxTileRow><MinTileCol>65352</MinTileCol><MaxTileCol>65443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95916</MinTileRow><MaxTileRow>96111</MaxTileRow><MinTileCol>130704</MinTileCol><MaxTileCol>130887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>255</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PAYS-DE-LA-LOIRE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de PAYS-DE-LA-LOIRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.74381 46.2048</ows:LowerCorner><ows:UpperCorner>0.998289 48.6149</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PAYS-DE-LA-LOIRE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>706</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1029</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1413</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2018</MinTileCol><MaxTileCol>2058</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2827</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4036</MinTileCol><MaxTileCol>4117</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5654</MinTileRow><MaxTileRow>5812</MaxTileRow><MinTileCol>8072</MinTileCol><MaxTileCol>8234</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11309</MinTileRow><MaxTileRow>11624</MaxTileRow><MinTileCol>16144</MinTileCol><MaxTileCol>16468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22619</MinTileRow><MaxTileRow>23248</MaxTileRow><MinTileCol>32289</MinTileCol><MaxTileCol>32937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45239</MinTileRow><MaxTileRow>46496</MaxTileRow><MinTileCol>64578</MinTileCol><MaxTileCol>65875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Perpignan</ows:Title><ows:Abstract>Orthophotographies satellites de Perpignan issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.80454 42.6295</ows:LowerCorner><ows:UpperCorner>3.06108 42.8275</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PERPIGNAN-2013-04-22-38930444</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>376</MinTileRow><MaxTileRow>377</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>753</MinTileRow><MaxTileRow>755</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1507</MinTileRow><MaxTileRow>1510</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3015</MinTileRow><MaxTileRow>3021</MaxTileRow><MinTileCol>4159</MinTileCol><MaxTileCol>4165</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6031</MinTileRow><MaxTileRow>6043</MaxTileRow><MinTileCol>8319</MinTileCol><MaxTileCol>8331</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12062</MinTileRow><MaxTileRow>12086</MaxTileRow><MinTileCol>16639</MinTileCol><MaxTileCol>16662</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24124</MinTileRow><MaxTileRow>24173</MaxTileRow><MinTileCol>33278</MinTileCol><MaxTileCol>33325</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48248</MinTileRow><MaxTileRow>48346</MaxTileRow><MinTileCol>66557</MinTileCol><MaxTileCol>66650</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96496</MinTileRow><MaxTileRow>96692</MaxTileRow><MinTileCol>133114</MinTileCol><MaxTileCol>133301</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PICARDIE-2013</ows:Title><ows:Abstract>Orthophotographies satellites de PICARDIE-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.34308 48.8203</ows:LowerCorner><ows:UpperCorner>4.29191 50.3879</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PICARDIE-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>691</MinTileRow><MaxTileRow>704</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1382</MinTileRow><MaxTileRow>1409</MaxTileRow><MinTileCol>2063</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2764</MinTileRow><MaxTileRow>2819</MaxTileRow><MinTileCol>4126</MinTileCol><MaxTileCol>4193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5528</MinTileRow><MaxTileRow>5638</MaxTileRow><MinTileCol>8253</MinTileCol><MaxTileCol>8386</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11057</MinTileRow><MaxTileRow>11276</MaxTileRow><MinTileCol>16507</MinTileCol><MaxTileCol>16773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22115</MinTileRow><MaxTileRow>22553</MaxTileRow><MinTileCol>33014</MinTileCol><MaxTileCol>33547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44231</MinTileRow><MaxTileRow>45107</MaxTileRow><MinTileCol>66028</MinTileCol><MaxTileCol>67094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PICARDIE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de PICARDIE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.34338 48.8048</ows:LowerCorner><ows:UpperCorner>5.09165 50.3745</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PICARDIE-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>352</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>691</MinTileRow><MaxTileRow>704</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1382</MinTileRow><MaxTileRow>1409</MaxTileRow><MinTileCol>2063</MinTileCol><MaxTileCol>2105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2764</MinTileRow><MaxTileRow>2819</MaxTileRow><MinTileCol>4126</MinTileCol><MaxTileCol>4211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5529</MinTileRow><MaxTileRow>5639</MaxTileRow><MinTileCol>8253</MinTileCol><MaxTileCol>8422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11059</MinTileRow><MaxTileRow>11278</MaxTileRow><MinTileCol>16507</MinTileCol><MaxTileCol>16845</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22118</MinTileRow><MaxTileRow>22556</MaxTileRow><MinTileCol>33014</MinTileCol><MaxTileCol>33691</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44236</MinTileRow><MaxTileRow>45112</MaxTileRow><MinTileCol>66028</MinTileCol><MaxTileCol>67382</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Poitiers</ows:Title><ows:Abstract>Orthophotographies satellites de Poitiers issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.197286 46.511</ows:LowerCorner><ows:UpperCorner>0.495178 46.7336</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_POITIERS-2013-08-02-39830444</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>362</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>722</MinTileRow><MaxTileRow>724</MaxTileRow><MinTileCol>1025</MinTileCol><MaxTileCol>1026</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1445</MinTileRow><MaxTileRow>1448</MaxTileRow><MinTileCol>2050</MinTileCol><MaxTileCol>2053</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2890</MinTileRow><MaxTileRow>2897</MaxTileRow><MinTileCol>4100</MinTileCol><MaxTileCol>4107</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5780</MinTileRow><MaxTileRow>5795</MaxTileRow><MinTileCol>8201</MinTileCol><MaxTileCol>8214</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11560</MinTileRow><MaxTileRow>11590</MaxTileRow><MinTileCol>16402</MinTileCol><MaxTileCol>16428</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23121</MinTileRow><MaxTileRow>23180</MaxTileRow><MinTileCol>32804</MinTileCol><MaxTileCol>32856</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46243</MinTileRow><MaxTileRow>46360</MaxTileRow><MinTileCol>65608</MinTileCol><MaxTileCol>65713</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92486</MinTileRow><MaxTileRow>92720</MaxTileRow><MinTileCol>131216</MinTileCol><MaxTileCol>131427</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de POITOU-CHARENTES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de POITOU-CHARENTES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.68629 45.031</ows:LowerCorner><ows:UpperCorner>1.2706 47.2154</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_POITOU-CHARENTES-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>359</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>718</MinTileRow><MaxTileRow>736</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1437</MinTileRow><MaxTileRow>1472</MaxTileRow><MinTileCol>2029</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2874</MinTileRow><MaxTileRow>2944</MaxTileRow><MinTileCol>4059</MinTileCol><MaxTileCol>4124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5749</MinTileRow><MaxTileRow>5888</MaxTileRow><MinTileCol>8118</MinTileCol><MaxTileCol>8248</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11499</MinTileRow><MaxTileRow>11777</MaxTileRow><MinTileCol>16236</MinTileCol><MaxTileCol>16496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22999</MinTileRow><MaxTileRow>23555</MaxTileRow><MinTileCol>32473</MinTileCol><MaxTileCol>32992</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45998</MinTileRow><MaxTileRow>47111</MaxTileRow><MinTileCol>64947</MinTileCol><MaxTileCol>65984</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de PONTAIX 2014</ows:Title><ows:Abstract>Orthophotographies satellites de PONTAIX issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.20804 44.666</ows:LowerCorner><ows:UpperCorner>5.31409 44.7941</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PONTAIX-2014-06-26-38508996</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1053</MinTileCol><MaxTileCol>1054</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1478</MaxTileRow><MinTileCol>2107</MinTileCol><MaxTileCol>2108</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2953</MinTileRow><MaxTileRow>2957</MaxTileRow><MinTileCol>4214</MinTileCol><MaxTileCol>4216</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5906</MinTileRow><MaxTileRow>5915</MaxTileRow><MinTileCol>8429</MinTileCol><MaxTileCol>8433</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11813</MinTileRow><MaxTileRow>11830</MaxTileRow><MinTileCol>16858</MinTileCol><MaxTileCol>16867</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23627</MinTileRow><MaxTileRow>23660</MaxTileRow><MinTileCol>33716</MinTileCol><MaxTileCol>33735</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47255</MinTileRow><MaxTileRow>47321</MaxTileRow><MinTileCol>67432</MinTileCol><MaxTileCol>67470</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94511</MinTileRow><MaxTileRow>94642</MaxTileRow><MinTileCol>134864</MinTileCol><MaxTileCol>134941</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de QUIMPER 2014</ows:Title><ows:Abstract>Orthophotographies satellites de QUIMPER issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-4.2893 47.869</ows:LowerCorner><ows:UpperCorner>-3.93994 48.1035</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_QUIMPER-2014-03-08-41149319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>499</MinTileCol><MaxTileCol>500</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>999</MinTileCol><MaxTileCol>1001</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1422</MinTileRow><MaxTileRow>1425</MaxTileRow><MinTileCol>1999</MinTileCol><MaxTileCol>2002</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2844</MinTileRow><MaxTileRow>2851</MaxTileRow><MinTileCol>3998</MinTileCol><MaxTileCol>4005</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5689</MinTileRow><MaxTileRow>5703</MaxTileRow><MinTileCol>7997</MinTileCol><MaxTileCol>8011</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11378</MinTileRow><MaxTileRow>11406</MaxTileRow><MinTileCol>15995</MinTileCol><MaxTileCol>16023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22756</MinTileRow><MaxTileRow>22813</MaxTileRow><MinTileCol>31991</MinTileCol><MaxTileCol>32046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45512</MinTileRow><MaxTileRow>45627</MaxTileRow><MinTileCol>63983</MinTileCol><MaxTileCol>64093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91025</MinTileRow><MaxTileRow>91255</MaxTileRow><MinTileCol>127966</MinTileCol><MaxTileCol>128186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>62</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>249</MinTileCol><MaxTileCol>250</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RENNES-2 2014</ows:Title><ows:Abstract>Orthophotographies satellites de RENNES-2 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.87285 48.0022</ows:LowerCorner><ows:UpperCorner>-1.57602 48.1841</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2-2014-09-26-40946704</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1423</MaxTileRow><MinTileCol>2026</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2841</MinTileRow><MaxTileRow>2847</MaxTileRow><MinTileCol>4053</MinTileCol><MaxTileCol>4060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5683</MinTileRow><MaxTileRow>5694</MaxTileRow><MinTileCol>8106</MinTileCol><MaxTileCol>8120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11366</MinTileRow><MaxTileRow>11389</MaxTileRow><MinTileCol>16213</MinTileCol><MaxTileCol>16240</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22733</MinTileRow><MaxTileRow>22778</MaxTileRow><MinTileCol>32427</MinTileCol><MaxTileCol>32480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45467</MinTileRow><MaxTileRow>45556</MaxTileRow><MinTileCol>64855</MinTileCol><MaxTileCol>64961</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90935</MinTileRow><MaxTileRow>91112</MaxTileRow><MinTileCol>129711</MinTileCol><MaxTileCol>129923</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RENNES 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de RENNES 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.83503 47.9769</ows:LowerCorner><ows:UpperCorner>-1.52016 48.2131</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2013-08-14-40257648</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2848</MaxTileRow><MinTileCol>4054</MinTileCol><MaxTileCol>4061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5696</MaxTileRow><MinTileCol>8108</MinTileCol><MaxTileCol>8122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11361</MinTileRow><MaxTileRow>11392</MaxTileRow><MinTileCol>16217</MinTileCol><MaxTileCol>16244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22723</MinTileRow><MaxTileRow>22785</MaxTileRow><MinTileCol>32435</MinTileCol><MaxTileCol>32489</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45446</MinTileRow><MaxTileRow>45570</MaxTileRow><MinTileCol>64871</MinTileCol><MaxTileCol>64978</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90892</MinTileRow><MaxTileRow>91140</MaxTileRow><MinTileCol>129743</MinTileCol><MaxTileCol>129957</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RENNES 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de RENNES 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.83503 47.9769</ows:LowerCorner><ows:UpperCorner>-1.52016 48.2131</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2013-08-14-40272509</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2027</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2848</MaxTileRow><MinTileCol>4054</MinTileCol><MaxTileCol>4061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5696</MaxTileRow><MinTileCol>8108</MinTileCol><MaxTileCol>8122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11361</MinTileRow><MaxTileRow>11392</MaxTileRow><MinTileCol>16217</MinTileCol><MaxTileCol>16244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22723</MinTileRow><MaxTileRow>22785</MaxTileRow><MinTileCol>32435</MinTileCol><MaxTileCol>32489</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45446</MinTileRow><MaxTileRow>45570</MaxTileRow><MinTileCol>64871</MinTileCol><MaxTileCol>64978</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90892</MinTileRow><MaxTileRow>91140</MaxTileRow><MinTileCol>129743</MinTileCol><MaxTileCol>129957</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RENNES 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de RENNES 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.877 48.0022</ows:LowerCorner><ows:UpperCorner>-1.56263 48.2296</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2014-09-27-40479133</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>506</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1013</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1423</MaxTileRow><MinTileCol>2026</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2847</MaxTileRow><MinTileCol>4053</MinTileCol><MaxTileCol>4060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5694</MaxTileRow><MinTileCol>8106</MinTileCol><MaxTileCol>8120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11360</MinTileRow><MaxTileRow>11389</MaxTileRow><MinTileCol>16213</MinTileCol><MaxTileCol>16240</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22720</MinTileRow><MaxTileRow>22778</MaxTileRow><MinTileCol>32427</MinTileCol><MaxTileCol>32480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45440</MinTileRow><MaxTileRow>45556</MaxTileRow><MinTileCol>64855</MinTileCol><MaxTileCol>64961</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90881</MinTileRow><MaxTileRow>91112</MaxTileRow><MinTileCol>129711</MinTileCol><MaxTileCol>129922</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RENNES 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de RENNES 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-1.74179 48.0076</ows:LowerCorner><ows:UpperCorner>-1.53585 48.2216</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2014-09-27-40502855</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>507</MinTileCol><MaxTileCol>507</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1014</MinTileCol><MaxTileCol>1015</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1423</MaxTileRow><MinTileCol>2028</MinTileCol><MaxTileCol>2030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2847</MaxTileRow><MinTileCol>4056</MinTileCol><MaxTileCol>4060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5694</MaxTileRow><MinTileCol>8112</MinTileCol><MaxTileCol>8121</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11360</MinTileRow><MaxTileRow>11389</MaxTileRow><MinTileCol>16225</MinTileCol><MaxTileCol>16243</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22720</MinTileRow><MaxTileRow>22778</MaxTileRow><MinTileCol>32451</MinTileCol><MaxTileCol>32486</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45441</MinTileRow><MaxTileRow>45556</MaxTileRow><MinTileCol>64903</MinTileCol><MaxTileCol>64972</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90883</MinTileRow><MaxTileRow>91112</MaxTileRow><MinTileCol>129806</MinTileCol><MaxTileCol>129945</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>253</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.549085 43.6369</ows:LowerCorner><ows:UpperCorner>0.868612 44.1649</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-20-40051573</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>743</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1486</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2973</MinTileRow><MaxTileRow>2990</MaxTileRow><MinTileCol>4108</MinTileCol><MaxTileCol>4115</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5947</MinTileRow><MaxTileRow>5980</MaxTileRow><MinTileCol>8217</MinTileCol><MaxTileCol>8231</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11894</MinTileRow><MaxTileRow>11960</MaxTileRow><MinTileCol>16435</MinTileCol><MaxTileCol>16462</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23788</MinTileRow><MaxTileRow>23920</MaxTileRow><MinTileCol>32871</MinTileCol><MaxTileCol>32925</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47576</MinTileRow><MaxTileRow>47841</MaxTileRow><MinTileCol>65743</MinTileCol><MaxTileCol>65850</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95153</MinTileRow><MaxTileRow>95682</MaxTileRow><MinTileCol>131487</MinTileCol><MaxTileCol>131700</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.946908 44.455</ows:LowerCorner><ows:UpperCorner>1.13963 44.5754</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-21-39629075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1482</MaxTileRow><MinTileCol>2058</MinTileCol><MaxTileCol>2060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2960</MinTileRow><MaxTileRow>2964</MaxTileRow><MinTileCol>4117</MinTileCol><MaxTileCol>4121</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5920</MinTileRow><MaxTileRow>5928</MaxTileRow><MinTileCol>8235</MinTileCol><MaxTileCol>8243</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11841</MinTileRow><MaxTileRow>11857</MaxTileRow><MinTileCol>16470</MinTileCol><MaxTileCol>16487</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23683</MinTileRow><MaxTileRow>23714</MaxTileRow><MinTileCol>32940</MinTileCol><MaxTileCol>32975</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47367</MinTileRow><MaxTileRow>47428</MaxTileRow><MinTileCol>65880</MinTileCol><MaxTileCol>65951</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94735</MinTileRow><MaxTileRow>94857</MaxTileRow><MinTileCol>131761</MinTileCol><MaxTileCol>131902</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.30455 44.2829</ows:LowerCorner><ows:UpperCorner>2.5865 44.7974</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-22-39143949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>742</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1484</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2953</MinTileRow><MaxTileRow>2969</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5906</MinTileRow><MaxTileRow>5939</MaxTileRow><MinTileCol>8296</MinTileCol><MaxTileCol>8309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11813</MinTileRow><MaxTileRow>11879</MaxTileRow><MinTileCol>16593</MinTileCol><MaxTileCol>16619</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23627</MinTileRow><MaxTileRow>23758</MaxTileRow><MinTileCol>33187</MinTileCol><MaxTileCol>33238</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47254</MinTileRow><MaxTileRow>47516</MaxTileRow><MinTileCol>66375</MinTileCol><MaxTileCol>66477</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94508</MinTileRow><MaxTileRow>95033</MaxTileRow><MinTileCol>132750</MinTileCol><MaxTileCol>132954</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.17391 43.789</ows:LowerCorner><ows:UpperCorner>3.46348 44.2669</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-15-38467573</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1485</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2084</MinTileCol><MaxTileCol>2087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2970</MinTileRow><MaxTileRow>2985</MaxTileRow><MinTileCol>4168</MinTileCol><MaxTileCol>4174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5940</MinTileRow><MaxTileRow>5970</MaxTileRow><MinTileCol>8336</MinTileCol><MaxTileCol>8349</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11881</MinTileRow><MaxTileRow>11941</MaxTileRow><MinTileCol>16672</MinTileCol><MaxTileCol>16699</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23762</MinTileRow><MaxTileRow>23883</MaxTileRow><MinTileCol>33345</MinTileCol><MaxTileCol>33398</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47524</MinTileRow><MaxTileRow>47766</MaxTileRow><MinTileCol>66691</MinTileCol><MaxTileCol>66796</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95049</MinTileRow><MaxTileRow>95533</MaxTileRow><MinTileCol>133383</MinTileCol><MaxTileCol>133592</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.29893 43.9419</ows:LowerCorner><ows:UpperCorner>3.48683 44.0686</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-15-38483324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1490</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2976</MinTileRow><MaxTileRow>2980</MaxTileRow><MinTileCol>4171</MinTileCol><MaxTileCol>4175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5953</MinTileRow><MaxTileRow>5961</MaxTileRow><MinTileCol>8342</MinTileCol><MaxTileCol>8350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11906</MinTileRow><MaxTileRow>11922</MaxTileRow><MinTileCol>16684</MinTileCol><MaxTileCol>16701</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23812</MinTileRow><MaxTileRow>23844</MaxTileRow><MinTileCol>33368</MinTileCol><MaxTileCol>33402</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47625</MinTileRow><MaxTileRow>47689</MaxTileRow><MinTileCol>66737</MinTileCol><MaxTileCol>66805</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95251</MinTileRow><MaxTileRow>95379</MaxTileRow><MinTileCol>133474</MinTileCol><MaxTileCol>133611</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.96257 43.6638</ows:LowerCorner><ows:UpperCorner>3.23706 44.042</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-21-38770699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1494</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2977</MinTileRow><MaxTileRow>2989</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5954</MinTileRow><MaxTileRow>5978</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11909</MinTileRow><MaxTileRow>11957</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16678</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23819</MinTileRow><MaxTileRow>23914</MaxTileRow><MinTileCol>33307</MinTileCol><MaxTileCol>33357</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47639</MinTileRow><MaxTileRow>47829</MaxTileRow><MinTileCol>66614</MinTileCol><MaxTileCol>66714</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95278</MinTileRow><MaxTileRow>95659</MaxTileRow><MinTileCol>133229</MinTileCol><MaxTileCol>133429</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.48081 43.4019</ows:LowerCorner><ows:UpperCorner>2.70387 43.5107</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-03-38727825</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2994</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4152</MinTileCol><MaxTileCol>4157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5988</MinTileRow><MaxTileRow>5995</MaxTileRow><MinTileCol>8304</MinTileCol><MaxTileCol>8315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11976</MinTileRow><MaxTileRow>11990</MaxTileRow><MinTileCol>16609</MinTileCol><MaxTileCol>16630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23953</MinTileRow><MaxTileRow>23980</MaxTileRow><MinTileCol>33219</MinTileCol><MaxTileCol>33260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47907</MinTileRow><MaxTileRow>47961</MaxTileRow><MinTileCol>66439</MinTileCol><MaxTileCol>66520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95814</MinTileRow><MaxTileRow>95923</MaxTileRow><MinTileCol>132878</MinTileCol><MaxTileCol>133040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.73933 43.8998</ows:LowerCorner><ows:UpperCorner>2.01669 44.0646</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-14-39662824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1490</MaxTileRow><MinTileCol>2067</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2976</MinTileRow><MaxTileRow>2981</MaxTileRow><MinTileCol>4135</MinTileCol><MaxTileCol>4141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5953</MinTileRow><MaxTileRow>5963</MaxTileRow><MinTileCol>8271</MinTileCol><MaxTileCol>8283</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11906</MinTileRow><MaxTileRow>11927</MaxTileRow><MinTileCol>16542</MinTileCol><MaxTileCol>16567</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23813</MinTileRow><MaxTileRow>23855</MaxTileRow><MinTileCol>33084</MinTileCol><MaxTileCol>33135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47627</MinTileRow><MaxTileRow>47711</MaxTileRow><MinTileCol>66169</MinTileCol><MaxTileCol>66270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95255</MinTileRow><MaxTileRow>95422</MaxTileRow><MinTileCol>132338</MinTileCol><MaxTileCol>132540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.02255 43.2008</ows:LowerCorner><ows:UpperCorner>2.29913 43.5628</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-16-38749452</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2992</MinTileRow><MaxTileRow>3003</MaxTileRow><MinTileCol>4142</MinTileCol><MaxTileCol>4148</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5985</MinTileRow><MaxTileRow>6007</MaxTileRow><MinTileCol>8284</MinTileCol><MaxTileCol>8296</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11970</MinTileRow><MaxTileRow>12015</MaxTileRow><MinTileCol>16568</MinTileCol><MaxTileCol>16593</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23940</MinTileRow><MaxTileRow>24031</MaxTileRow><MinTileCol>33136</MinTileCol><MaxTileCol>33186</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47881</MinTileRow><MaxTileRow>48062</MaxTileRow><MinTileCol>66272</MinTileCol><MaxTileCol>66372</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95762</MinTileRow><MaxTileRow>96124</MaxTileRow><MinTileCol>132544</MinTileCol><MaxTileCol>132744</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.91371 43.8566</ows:LowerCorner><ows:UpperCorner>2.19157 44.084</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-05-05-38986324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1491</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2976</MinTileRow><MaxTileRow>2983</MaxTileRow><MinTileCol>4139</MinTileCol><MaxTileCol>4145</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5952</MinTileRow><MaxTileRow>5966</MaxTileRow><MinTileCol>8279</MinTileCol><MaxTileCol>8291</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11904</MinTileRow><MaxTileRow>11932</MaxTileRow><MinTileCol>16558</MinTileCol><MaxTileCol>16583</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23808</MinTileRow><MaxTileRow>23865</MaxTileRow><MinTileCol>33116</MinTileCol><MaxTileCol>33166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47617</MinTileRow><MaxTileRow>47731</MaxTileRow><MinTileCol>66232</MinTileCol><MaxTileCol>66333</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95235</MinTileRow><MaxTileRow>95463</MaxTileRow><MinTileCol>132465</MinTileCol><MaxTileCol>132667</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.09564 43.4444</ows:LowerCorner><ows:UpperCorner>2.3579 43.6351</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-06-06-39188446</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>5992</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11961</MinTileRow><MaxTileRow>11985</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>16598</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23922</MinTileRow><MaxTileRow>23970</MaxTileRow><MinTileCol>33149</MinTileCol><MaxTileCol>33197</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47844</MinTileRow><MaxTileRow>47940</MaxTileRow><MinTileCol>66298</MinTileCol><MaxTileCol>66394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95688</MinTileRow><MaxTileRow>95880</MaxTileRow><MinTileCol>132597</MinTileCol><MaxTileCol>132789</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.01588 43.1378</ows:LowerCorner><ows:UpperCorner>2.25076 43.2296</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-06-06-39197700</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1502</MaxTileRow><MinTileCol>2070</MinTileCol><MaxTileCol>2073</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3005</MaxTileRow><MinTileCol>4141</MinTileCol><MaxTileCol>4147</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6005</MinTileRow><MaxTileRow>6011</MaxTileRow><MinTileCol>8283</MinTileCol><MaxTileCol>8294</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12011</MinTileRow><MaxTileRow>12023</MaxTileRow><MinTileCol>16567</MinTileCol><MaxTileCol>16588</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24023</MinTileRow><MaxTileRow>24046</MaxTileRow><MinTileCol>33134</MinTileCol><MaxTileCol>33177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48047</MinTileRow><MaxTileRow>48093</MaxTileRow><MinTileCol>66269</MinTileCol><MaxTileCol>66355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96095</MinTileRow><MaxTileRow>96187</MaxTileRow><MinTileCol>132539</MinTileCol><MaxTileCol>132711</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.96257 43.8438</ows:LowerCorner><ows:UpperCorner>3.22455 44.033</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-02-39162699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1042</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1488</MinTileRow><MaxTileRow>1491</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2084</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2977</MinTileRow><MaxTileRow>2983</MaxTileRow><MinTileCol>4163</MinTileCol><MaxTileCol>4169</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5955</MinTileRow><MaxTileRow>5967</MaxTileRow><MinTileCol>8326</MinTileCol><MaxTileCol>8338</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11910</MinTileRow><MaxTileRow>11934</MaxTileRow><MinTileCol>16653</MinTileCol><MaxTileCol>16677</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23821</MinTileRow><MaxTileRow>23869</MaxTileRow><MinTileCol>33307</MinTileCol><MaxTileCol>33355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47643</MinTileRow><MaxTileRow>47739</MaxTileRow><MinTileCol>66614</MinTileCol><MaxTileCol>66710</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95287</MinTileRow><MaxTileRow>95478</MaxTileRow><MinTileCol>133229</MinTileCol><MaxTileCol>133420</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.75074 43.5918</ows:LowerCorner><ows:UpperCorner>3.01246 43.979</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-02-39172575</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1039</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2079</MinTileCol><MaxTileCol>2082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2979</MinTileRow><MaxTileRow>2991</MaxTileRow><MinTileCol>4158</MinTileCol><MaxTileCol>4164</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5958</MinTileRow><MaxTileRow>5983</MaxTileRow><MinTileCol>8317</MinTileCol><MaxTileCol>8329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11917</MinTileRow><MaxTileRow>11966</MaxTileRow><MinTileCol>16634</MinTileCol><MaxTileCol>16658</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23835</MinTileRow><MaxTileRow>23933</MaxTileRow><MinTileCol>33268</MinTileCol><MaxTileCol>33316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47670</MinTileRow><MaxTileRow>47866</MaxTileRow><MinTileCol>66537</MinTileCol><MaxTileCol>66632</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95341</MinTileRow><MaxTileRow>95732</MaxTileRow><MinTileCol>133074</MinTileCol><MaxTileCol>133265</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.761284 43.9655</ows:LowerCorner><ows:UpperCorner>1.10565 44.4935</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-19-40305574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1481</MinTileRow><MaxTileRow>1489</MaxTileRow><MinTileCol>2056</MinTileCol><MaxTileCol>2060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2963</MinTileRow><MaxTileRow>2979</MaxTileRow><MinTileCol>4113</MinTileCol><MaxTileCol>4120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5926</MinTileRow><MaxTileRow>5959</MaxTileRow><MinTileCol>8227</MinTileCol><MaxTileCol>8241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11852</MinTileRow><MaxTileRow>11919</MaxTileRow><MinTileCol>16454</MinTileCol><MaxTileCol>16483</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23704</MinTileRow><MaxTileRow>23838</MaxTileRow><MinTileCol>32908</MinTileCol><MaxTileCol>32966</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47409</MinTileRow><MaxTileRow>47677</MaxTileRow><MinTileCol>65817</MinTileCol><MaxTileCol>65933</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94819</MinTileRow><MaxTileRow>95355</MaxTileRow><MinTileCol>131635</MinTileCol><MaxTileCol>131867</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.334293 43.5688</ows:LowerCorner><ows:UpperCorner>0.660639 43.9446</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-19-40320198</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>745</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1025</MinTileCol><MaxTileCol>1027</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1490</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2051</MinTileCol><MaxTileCol>2055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2980</MinTileRow><MaxTileRow>2992</MaxTileRow><MinTileCol>4103</MinTileCol><MaxTileCol>4110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5961</MinTileRow><MaxTileRow>5984</MaxTileRow><MinTileCol>8207</MinTileCol><MaxTileCol>8221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11922</MinTileRow><MaxTileRow>11969</MaxTileRow><MinTileCol>16415</MinTileCol><MaxTileCol>16443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23844</MinTileRow><MaxTileRow>23938</MaxTileRow><MinTileCol>32830</MinTileCol><MaxTileCol>32887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47688</MinTileRow><MaxTileRow>47877</MaxTileRow><MinTileCol>65660</MinTileCol><MaxTileCol>65775</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95376</MinTileRow><MaxTileRow>95755</MaxTileRow><MinTileCol>131321</MinTileCol><MaxTileCol>131551</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.64929 44.3758</ows:LowerCorner><ows:UpperCorner>1.93311 44.7029</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39358202</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>739</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1478</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2956</MinTileRow><MaxTileRow>2966</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5912</MinTileRow><MaxTileRow>5933</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8279</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11825</MinTileRow><MaxTileRow>11867</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16559</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23651</MinTileRow><MaxTileRow>23734</MaxTileRow><MinTileCol>33068</MinTileCol><MaxTileCol>33119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47302</MinTileRow><MaxTileRow>47469</MaxTileRow><MinTileCol>66137</MinTileCol><MaxTileCol>66239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94604</MinTileRow><MaxTileRow>94939</MaxTileRow><MinTileCol>132274</MinTileCol><MaxTileCol>132479</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.6551 44.2678</ows:LowerCorner><ows:UpperCorner>1.93514 44.4599</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39369951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>741</MinTileRow><MaxTileRow>742</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1482</MinTileRow><MaxTileRow>1485</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2964</MinTileRow><MaxTileRow>2970</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4140</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5928</MinTileRow><MaxTileRow>5940</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8280</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11856</MinTileRow><MaxTileRow>11881</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16560</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23713</MinTileRow><MaxTileRow>23762</MaxTileRow><MinTileCol>33069</MinTileCol><MaxTileCol>33120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47426</MinTileRow><MaxTileRow>47524</MaxTileRow><MinTileCol>66139</MinTileCol><MaxTileCol>66240</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94853</MinTileRow><MaxTileRow>95048</MaxTileRow><MinTileCol>132278</MinTileCol><MaxTileCol>132481</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.43824 44.346</ows:LowerCorner><ows:UpperCorner>1.70783 44.5745</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39381325</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2960</MinTileRow><MaxTileRow>2967</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5921</MinTileRow><MaxTileRow>5935</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8269</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11842</MinTileRow><MaxTileRow>11871</MaxTileRow><MinTileCol>16514</MinTileCol><MaxTileCol>16539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23684</MinTileRow><MaxTileRow>23742</MaxTileRow><MinTileCol>33029</MinTileCol><MaxTileCol>33078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47368</MinTileRow><MaxTileRow>47484</MaxTileRow><MinTileCol>66059</MinTileCol><MaxTileCol>66157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94736</MinTileRow><MaxTileRow>94969</MaxTileRow><MinTileCol>132119</MinTileCol><MaxTileCol>132315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.44147 43.9411</ows:LowerCorner><ows:UpperCorner>1.72946 44.4576</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39399697</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>741</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1482</MinTileRow><MaxTileRow>1490</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2964</MinTileRow><MaxTileRow>2980</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5928</MinTileRow><MaxTileRow>5961</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11856</MinTileRow><MaxTileRow>11922</MaxTileRow><MinTileCol>16515</MinTileCol><MaxTileCol>16540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23713</MinTileRow><MaxTileRow>23845</MaxTileRow><MinTileCol>33030</MinTileCol><MaxTileCol>33081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47427</MinTileRow><MaxTileRow>47690</MaxTileRow><MinTileCol>66061</MinTileCol><MaxTileCol>66162</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94855</MinTileRow><MaxTileRow>95380</MaxTileRow><MinTileCol>132122</MinTileCol><MaxTileCol>132324</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.53758 43.9693</ows:LowerCorner><ows:UpperCorner>1.81608 44.1436</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39415575</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>743</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1487</MinTileRow><MaxTileRow>1489</MaxTileRow><MinTileCol>2065</MinTileCol><MaxTileCol>2068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2974</MinTileRow><MaxTileRow>2979</MaxTileRow><MinTileCol>4130</MinTileCol><MaxTileCol>4137</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5948</MinTileRow><MaxTileRow>5959</MaxTileRow><MinTileCol>8261</MinTileCol><MaxTileCol>8274</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11896</MinTileRow><MaxTileRow>11918</MaxTileRow><MinTileCol>16523</MinTileCol><MaxTileCol>16549</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23793</MinTileRow><MaxTileRow>23837</MaxTileRow><MinTileCol>33047</MinTileCol><MaxTileCol>33098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47587</MinTileRow><MaxTileRow>47675</MaxTileRow><MinTileCol>66095</MinTileCol><MaxTileCol>66197</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95175</MinTileRow><MaxTileRow>95351</MaxTileRow><MinTileCol>132191</MinTileCol><MaxTileCol>132394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.64231 44.2587</ows:LowerCorner><ows:UpperCorner>1.94783 44.469</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-26-40091195</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>742</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1481</MinTileRow><MaxTileRow>1485</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2963</MinTileRow><MaxTileRow>2970</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4140</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5927</MinTileRow><MaxTileRow>5941</MaxTileRow><MinTileCol>8266</MinTileCol><MaxTileCol>8280</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11855</MinTileRow><MaxTileRow>11882</MaxTileRow><MinTileCol>16533</MinTileCol><MaxTileCol>16561</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23711</MinTileRow><MaxTileRow>23764</MaxTileRow><MinTileCol>33066</MinTileCol><MaxTileCol>33122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47422</MinTileRow><MaxTileRow>47529</MaxTileRow><MinTileCol>66133</MinTileCol><MaxTileCol>66245</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94844</MinTileRow><MaxTileRow>95058</MaxTileRow><MinTileCol>132267</MinTileCol><MaxTileCol>132490</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.21189 44.3606</ows:LowerCorner><ows:UpperCorner>1.49413 44.5627</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39852200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2960</MinTileRow><MaxTileRow>2967</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5921</MinTileRow><MaxTileRow>5934</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11843</MinTileRow><MaxTileRow>11869</MaxTileRow><MinTileCol>16494</MinTileCol><MaxTileCol>16520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23687</MinTileRow><MaxTileRow>23738</MaxTileRow><MinTileCol>32988</MinTileCol><MaxTileCol>33040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47375</MinTileRow><MaxTileRow>47476</MaxTileRow><MinTileCol>65977</MinTileCol><MaxTileCol>66080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94750</MinTileRow><MaxTileRow>94953</MaxTileRow><MinTileCol>131955</MinTileCol><MaxTileCol>132160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.997588 44.3839</ows:LowerCorner><ows:UpperCorner>1.28004 44.5686</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39861822</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2059</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2960</MinTileRow><MaxTileRow>2966</MaxTileRow><MinTileCol>4118</MinTileCol><MaxTileCol>4125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5921</MinTileRow><MaxTileRow>5933</MaxTileRow><MinTileCol>8237</MinTileCol><MaxTileCol>8250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11842</MinTileRow><MaxTileRow>11866</MaxTileRow><MinTileCol>16474</MinTileCol><MaxTileCol>16500</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23685</MinTileRow><MaxTileRow>23732</MaxTileRow><MinTileCol>32949</MinTileCol><MaxTileCol>33000</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47371</MinTileRow><MaxTileRow>47465</MaxTileRow><MinTileCol>65899</MinTileCol><MaxTileCol>66001</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94742</MinTileRow><MaxTileRow>94930</MaxTileRow><MinTileCol>131798</MinTileCol><MaxTileCol>132002</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.987888 43.7989</ows:LowerCorner><ows:UpperCorner>1.31005 44.4878</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39870946</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1481</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2059</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2963</MinTileRow><MaxTileRow>2985</MaxTileRow><MinTileCol>4118</MinTileCol><MaxTileCol>4125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5926</MinTileRow><MaxTileRow>5970</MaxTileRow><MinTileCol>8237</MinTileCol><MaxTileCol>8250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11853</MinTileRow><MaxTileRow>11940</MaxTileRow><MinTileCol>16475</MinTileCol><MaxTileCol>16501</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23706</MinTileRow><MaxTileRow>23880</MaxTileRow><MinTileCol>32950</MinTileCol><MaxTileCol>33003</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47412</MinTileRow><MaxTileRow>47761</MaxTileRow><MinTileCol>65901</MinTileCol><MaxTileCol>66006</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94824</MinTileRow><MaxTileRow>95523</MaxTileRow><MinTileCol>131803</MinTileCol><MaxTileCol>132013</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.362132 43.4072</ows:LowerCorner><ows:UpperCorner>0.642548 43.6113</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-03-39488700</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1026</MinTileCol><MaxTileCol>1027</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2052</MinTileCol><MaxTileCol>2055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4104</MinTileCol><MaxTileCol>4110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5982</MinTileRow><MaxTileRow>5994</MaxTileRow><MinTileCol>8208</MinTileCol><MaxTileCol>8221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11964</MinTileRow><MaxTileRow>11989</MaxTileRow><MinTileCol>16416</MinTileCol><MaxTileCol>16442</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23928</MinTileRow><MaxTileRow>23978</MaxTileRow><MinTileCol>32833</MinTileCol><MaxTileCol>32884</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47856</MinTileRow><MaxTileRow>47956</MaxTileRow><MinTileCol>65667</MinTileCol><MaxTileCol>65768</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95712</MinTileRow><MaxTileRow>95912</MaxTileRow><MinTileCol>131335</MinTileCol><MaxTileCol>131536</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.50414 43.483</ows:LowerCorner><ows:UpperCorner>2.77759 43.6728</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38749073</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1494</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2989</MinTileRow><MaxTileRow>2995</MaxTileRow><MinTileCol>4152</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5978</MinTileRow><MaxTileRow>5990</MaxTileRow><MinTileCol>8305</MinTileCol><MaxTileCol>8318</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11956</MinTileRow><MaxTileRow>11980</MaxTileRow><MinTileCol>16611</MinTileCol><MaxTileCol>16636</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23912</MinTileRow><MaxTileRow>23960</MaxTileRow><MinTileCol>33223</MinTileCol><MaxTileCol>33273</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47825</MinTileRow><MaxTileRow>47920</MaxTileRow><MinTileCol>66447</MinTileCol><MaxTileCol>66547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95651</MinTileRow><MaxTileRow>95841</MaxTileRow><MinTileCol>132895</MinTileCol><MaxTileCol>133094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.30558 43.4819</ows:LowerCorner><ows:UpperCorner>2.59226 43.6903</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38768069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1494</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2988</MinTileRow><MaxTileRow>2995</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5977</MinTileRow><MaxTileRow>5990</MaxTileRow><MinTileCol>8296</MinTileCol><MaxTileCol>8309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11954</MinTileRow><MaxTileRow>11980</MaxTileRow><MinTileCol>16593</MinTileCol><MaxTileCol>16619</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23908</MinTileRow><MaxTileRow>23960</MaxTileRow><MinTileCol>33187</MinTileCol><MaxTileCol>33239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47817</MinTileRow><MaxTileRow>47920</MaxTileRow><MinTileCol>66375</MinTileCol><MaxTileCol>66479</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95634</MinTileRow><MaxTileRow>95841</MaxTileRow><MinTileCol>132751</MinTileCol><MaxTileCol>132959</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.23323 43.3644</ows:LowerCorner><ows:UpperCorner>2.50677 43.5369</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38777196</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2073</MinTileCol><MaxTileCol>2076</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2993</MinTileRow><MaxTileRow>2998</MaxTileRow><MinTileCol>4146</MinTileCol><MaxTileCol>4153</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5986</MinTileRow><MaxTileRow>5997</MaxTileRow><MinTileCol>8293</MinTileCol><MaxTileCol>8306</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11973</MinTileRow><MaxTileRow>11995</MaxTileRow><MinTileCol>16587</MinTileCol><MaxTileCol>16612</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23947</MinTileRow><MaxTileRow>23990</MaxTileRow><MinTileCol>33174</MinTileCol><MaxTileCol>33224</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47894</MinTileRow><MaxTileRow>47980</MaxTileRow><MinTileCol>66349</MinTileCol><MaxTileCol>66448</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95788</MinTileRow><MaxTileRow>95960</MaxTileRow><MinTileCol>132698</MinTileCol><MaxTileCol>132897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.352089 43.8841</ows:LowerCorner><ows:UpperCorner>0.647737 44.0976</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-14-40323701</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>743</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1026</MinTileCol><MaxTileCol>1027</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1487</MinTileRow><MaxTileRow>1491</MaxTileRow><MinTileCol>2052</MinTileCol><MaxTileCol>2055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2975</MinTileRow><MaxTileRow>2982</MaxTileRow><MinTileCol>4104</MinTileCol><MaxTileCol>4110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5951</MinTileRow><MaxTileRow>5964</MaxTileRow><MinTileCol>8208</MinTileCol><MaxTileCol>8221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11902</MinTileRow><MaxTileRow>11928</MaxTileRow><MinTileCol>16416</MinTileCol><MaxTileCol>16442</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23805</MinTileRow><MaxTileRow>23857</MaxTileRow><MinTileCol>32832</MinTileCol><MaxTileCol>32885</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47611</MinTileRow><MaxTileRow>47715</MaxTileRow><MinTileCol>65664</MinTileCol><MaxTileCol>65771</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95222</MinTileRow><MaxTileRow>95431</MaxTileRow><MinTileCol>131329</MinTileCol><MaxTileCol>131543</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.344344 43.5238</ows:LowerCorner><ows:UpperCorner>0.66247 43.7288</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-14-40351949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1025</MinTileCol><MaxTileCol>1027</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1493</MinTileRow><MaxTileRow>1496</MaxTileRow><MinTileCol>2051</MinTileCol><MaxTileCol>2055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2987</MinTileRow><MaxTileRow>2993</MaxTileRow><MinTileCol>4103</MinTileCol><MaxTileCol>4110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5974</MinTileRow><MaxTileRow>5987</MaxTileRow><MinTileCol>8207</MinTileCol><MaxTileCol>8221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11949</MinTileRow><MaxTileRow>11975</MaxTileRow><MinTileCol>16415</MinTileCol><MaxTileCol>16443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23898</MinTileRow><MaxTileRow>23950</MaxTileRow><MinTileCol>32830</MinTileCol><MaxTileCol>32887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47797</MinTileRow><MaxTileRow>47900</MaxTileRow><MinTileCol>65661</MinTileCol><MaxTileCol>65775</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95594</MinTileRow><MaxTileRow>95800</MaxTileRow><MinTileCol>131322</MinTileCol><MaxTileCol>131551</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.8644 44.4683</ows:LowerCorner><ows:UpperCorner>2.14511 44.6778</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-17-39024699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>739</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1478</MinTileRow><MaxTileRow>1481</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2957</MinTileRow><MaxTileRow>2963</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5914</MinTileRow><MaxTileRow>5927</MaxTileRow><MinTileCol>8276</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11828</MinTileRow><MaxTileRow>11855</MaxTileRow><MinTileCol>16553</MinTileCol><MaxTileCol>16579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23657</MinTileRow><MaxTileRow>23710</MaxTileRow><MinTileCol>33107</MinTileCol><MaxTileCol>33158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47315</MinTileRow><MaxTileRow>47421</MaxTileRow><MinTileCol>66215</MinTileCol><MaxTileCol>66317</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94631</MinTileRow><MaxTileRow>94842</MaxTileRow><MinTileCol>132431</MinTileCol><MaxTileCol>132634</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.20274 43.9105</ows:LowerCorner><ows:UpperCorner>1.51845 44.4549</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-17-39045199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>741</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1482</MinTileRow><MaxTileRow>1490</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2964</MinTileRow><MaxTileRow>2981</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5928</MinTileRow><MaxTileRow>5962</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11857</MinTileRow><MaxTileRow>11925</MaxTileRow><MinTileCol>16494</MinTileCol><MaxTileCol>16521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23715</MinTileRow><MaxTileRow>23851</MaxTileRow><MinTileCol>32989</MinTileCol><MaxTileCol>33043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47430</MinTileRow><MaxTileRow>47703</MaxTileRow><MinTileCol>65978</MinTileCol><MaxTileCol>66086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94860</MinTileRow><MaxTileRow>95407</MaxTileRow><MinTileCol>131956</MinTileCol><MaxTileCol>132173</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.2204 44.0727</ows:LowerCorner><ows:UpperCorner>1.51423 44.2929</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-21-40088577</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1488</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2969</MinTileRow><MaxTileRow>2976</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5939</MinTileRow><MaxTileRow>5952</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11878</MinTileRow><MaxTileRow>11905</MaxTileRow><MinTileCol>16495</MinTileCol><MaxTileCol>16521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23756</MinTileRow><MaxTileRow>23810</MaxTileRow><MinTileCol>32990</MinTileCol><MaxTileCol>33043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47513</MinTileRow><MaxTileRow>47621</MaxTileRow><MinTileCol>65980</MinTileCol><MaxTileCol>66087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95026</MinTileRow><MaxTileRow>95243</MaxTileRow><MinTileCol>131960</MinTileCol><MaxTileCol>132174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.86766 44.0002</ows:LowerCorner><ows:UpperCorner>2.15213 44.5158</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39667576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1481</MinTileRow><MaxTileRow>1489</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2962</MinTileRow><MaxTileRow>2978</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5924</MinTileRow><MaxTileRow>5957</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11849</MinTileRow><MaxTileRow>11914</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23699</MinTileRow><MaxTileRow>23829</MaxTileRow><MinTileCol>33108</MinTileCol><MaxTileCol>33159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47398</MinTileRow><MaxTileRow>47659</MaxTileRow><MinTileCol>66216</MinTileCol><MaxTileCol>66319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94797</MinTileRow><MaxTileRow>95319</MaxTileRow><MinTileCol>132432</MinTileCol><MaxTileCol>132638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.65317 44.3758</ows:LowerCorner><ows:UpperCorner>1.93311 44.5409</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39685201</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1480</MinTileRow><MaxTileRow>1483</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2961</MinTileRow><MaxTileRow>2966</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5923</MinTileRow><MaxTileRow>5933</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8279</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11846</MinTileRow><MaxTileRow>11867</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16559</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23692</MinTileRow><MaxTileRow>23734</MaxTileRow><MinTileCol>33068</MinTileCol><MaxTileCol>33119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47385</MinTileRow><MaxTileRow>47469</MaxTileRow><MinTileCol>66137</MinTileCol><MaxTileCol>66239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94770</MinTileRow><MaxTileRow>94939</MaxTileRow><MinTileCol>132275</MinTileCol><MaxTileCol>132479</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.08269 44.0922</ows:LowerCorner><ows:UpperCorner>2.36308 44.4452</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39694575</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>741</MinTileRow><MaxTileRow>743</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1482</MinTileRow><MaxTileRow>1487</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2964</MinTileRow><MaxTileRow>2975</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5929</MinTileRow><MaxTileRow>5951</MaxTileRow><MinTileCol>8286</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11858</MinTileRow><MaxTileRow>11903</MaxTileRow><MinTileCol>16573</MinTileCol><MaxTileCol>16599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23717</MinTileRow><MaxTileRow>23806</MaxTileRow><MinTileCol>33147</MinTileCol><MaxTileCol>33198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47434</MinTileRow><MaxTileRow>47613</MaxTileRow><MinTileCol>66294</MinTileCol><MaxTileCol>66396</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94868</MinTileRow><MaxTileRow>95227</MaxTileRow><MinTileCol>132589</MinTileCol><MaxTileCol>132792</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.64641 43.9437</ows:LowerCorner><ows:UpperCorner>1.94119 44.2979</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39707324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>745</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1490</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2969</MinTileRow><MaxTileRow>2980</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4140</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5938</MinTileRow><MaxTileRow>5961</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8280</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11877</MinTileRow><MaxTileRow>11922</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16560</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23754</MinTileRow><MaxTileRow>23844</MaxTileRow><MinTileCol>33068</MinTileCol><MaxTileCol>33120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47509</MinTileRow><MaxTileRow>47688</MaxTileRow><MinTileCol>66136</MinTileCol><MaxTileCol>66241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95018</MinTileRow><MaxTileRow>95377</MaxTileRow><MinTileCol>132273</MinTileCol><MaxTileCol>132483</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.65417 44.8351</ows:LowerCorner><ows:UpperCorner>1.92439 45.027</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39454832</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1473</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2946</MinTileRow><MaxTileRow>2952</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5892</MinTileRow><MaxTileRow>5904</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8279</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11784</MinTileRow><MaxTileRow>11808</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16559</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23568</MinTileRow><MaxTileRow>23617</MaxTileRow><MinTileCol>33069</MinTileCol><MaxTileCol>33118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47137</MinTileRow><MaxTileRow>47234</MaxTileRow><MinTileCol>66138</MinTileCol><MaxTileCol>66236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94274</MinTileRow><MaxTileRow>94469</MaxTileRow><MinTileCol>132276</MinTileCol><MaxTileCol>132473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.87378 44.6394</ows:LowerCorner><ows:UpperCorner>2.14252 44.8398</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39464074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2952</MinTileRow><MaxTileRow>2958</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5904</MinTileRow><MaxTileRow>5916</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11808</MinTileRow><MaxTileRow>11833</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23616</MinTileRow><MaxTileRow>23667</MaxTileRow><MinTileCol>33109</MinTileCol><MaxTileCol>33158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47232</MinTileRow><MaxTileRow>47334</MaxTileRow><MinTileCol>66218</MinTileCol><MaxTileCol>66316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94465</MinTileRow><MaxTileRow>94669</MaxTileRow><MinTileCol>132436</MinTileCol><MaxTileCol>132632</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.65805 44.673</ows:LowerCorner><ows:UpperCorner>1.92748 44.865</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39473828</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1033</MinTileCol><MaxTileCol>1034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1478</MaxTileRow><MinTileCol>2066</MinTileCol><MaxTileCol>2069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2951</MinTileRow><MaxTileRow>2957</MaxTileRow><MinTileCol>4133</MinTileCol><MaxTileCol>4139</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5902</MinTileRow><MaxTileRow>5914</MaxTileRow><MinTileCol>8267</MinTileCol><MaxTileCol>8279</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11804</MinTileRow><MaxTileRow>11829</MaxTileRow><MinTileCol>16534</MinTileCol><MaxTileCol>16559</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23609</MinTileRow><MaxTileRow>23658</MaxTileRow><MinTileCol>33069</MinTileCol><MaxTileCol>33118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47219</MinTileRow><MaxTileRow>47317</MaxTileRow><MinTileCol>66139</MinTileCol><MaxTileCol>66237</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94438</MinTileRow><MaxTileRow>94635</MaxTileRow><MinTileCol>132279</MinTileCol><MaxTileCol>132475</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.87378 44.6394</ows:LowerCorner><ows:UpperCorner>2.14252 44.8398</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38949700</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2952</MinTileRow><MaxTileRow>2958</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5904</MinTileRow><MaxTileRow>5916</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11808</MinTileRow><MaxTileRow>11833</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23616</MinTileRow><MaxTileRow>23667</MaxTileRow><MinTileCol>33109</MinTileCol><MaxTileCol>33158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47232</MinTileRow><MaxTileRow>47334</MaxTileRow><MinTileCol>66218</MinTileCol><MaxTileCol>66316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94464</MinTileRow><MaxTileRow>94669</MaxTileRow><MinTileCol>132436</MinTileCol><MaxTileCol>132632</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.31051 43.6349</ows:LowerCorner><ows:UpperCorner>2.57878 44.3112</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38958951</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2968</MinTileRow><MaxTileRow>2990</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5937</MinTileRow><MaxTileRow>5980</MaxTileRow><MinTileCol>8297</MinTileCol><MaxTileCol>8309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11875</MinTileRow><MaxTileRow>11961</MaxTileRow><MinTileCol>16594</MinTileCol><MaxTileCol>16618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23751</MinTileRow><MaxTileRow>23922</MaxTileRow><MinTileCol>33188</MinTileCol><MaxTileCol>33237</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47502</MinTileRow><MaxTileRow>47844</MaxTileRow><MinTileCol>66377</MinTileCol><MaxTileCol>66474</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95004</MinTileRow><MaxTileRow>95689</MaxTileRow><MinTileCol>132754</MinTileCol><MaxTileCol>132949</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.16762 43.6069</ows:LowerCorner><ows:UpperCorner>2.43039 43.7975</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38976195</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1036</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2072</MinTileCol><MaxTileCol>2075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2985</MinTileRow><MaxTileRow>2991</MaxTileRow><MinTileCol>4145</MinTileCol><MaxTileCol>4151</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5970</MinTileRow><MaxTileRow>5982</MaxTileRow><MinTileCol>8290</MinTileCol><MaxTileCol>8302</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11940</MinTileRow><MaxTileRow>11964</MaxTileRow><MinTileCol>16581</MinTileCol><MaxTileCol>16605</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23881</MinTileRow><MaxTileRow>23929</MaxTileRow><MinTileCol>33162</MinTileCol><MaxTileCol>33210</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47762</MinTileRow><MaxTileRow>47858</MaxTileRow><MinTileCol>66325</MinTileCol><MaxTileCol>66420</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95525</MinTileRow><MaxTileRow>95717</MaxTileRow><MinTileCol>132650</MinTileCol><MaxTileCol>132841</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.10565 43.5884</ows:LowerCorner><ows:UpperCorner>2.36867 43.7882</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38985569</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1492</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2985</MinTileRow><MaxTileRow>2991</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5970</MinTileRow><MaxTileRow>5983</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11941</MinTileRow><MaxTileRow>11966</MaxTileRow><MinTileCol>16575</MinTileCol><MaxTileCol>16599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23883</MinTileRow><MaxTileRow>23933</MaxTileRow><MinTileCol>33151</MinTileCol><MaxTileCol>33199</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47767</MinTileRow><MaxTileRow>47867</MaxTileRow><MinTileCol>66302</MinTileCol><MaxTileCol>66398</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95534</MinTileRow><MaxTileRow>95734</MaxTileRow><MinTileCol>132605</MinTileCol><MaxTileCol>132796</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.991825 44.5369</ows:LowerCorner><ows:UpperCorner>1.27538 44.7306</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-04-39628450</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1477</MinTileRow><MaxTileRow>1480</MaxTileRow><MinTileCol>2059</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2955</MinTileRow><MaxTileRow>2961</MaxTileRow><MinTileCol>4118</MinTileCol><MaxTileCol>4124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5911</MinTileRow><MaxTileRow>5923</MaxTileRow><MinTileCol>8237</MinTileCol><MaxTileCol>8249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11822</MinTileRow><MaxTileRow>11846</MaxTileRow><MinTileCol>16474</MinTileCol><MaxTileCol>16499</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23644</MinTileRow><MaxTileRow>23693</MaxTileRow><MinTileCol>32949</MinTileCol><MaxTileCol>32999</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47288</MinTileRow><MaxTileRow>47387</MaxTileRow><MinTileCol>65899</MinTileCol><MaxTileCol>65998</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94576</MinTileRow><MaxTileRow>94774</MaxTileRow><MinTileCol>131798</MinTileCol><MaxTileCol>131997</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.08792 43.7772</ows:LowerCorner><ows:UpperCorner>2.36659 44.1212</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-05-39225702</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>743</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1487</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2974</MinTileRow><MaxTileRow>2985</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5949</MinTileRow><MaxTileRow>5971</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11899</MinTileRow><MaxTileRow>11943</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>16599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23799</MinTileRow><MaxTileRow>23886</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>33198</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47598</MinTileRow><MaxTileRow>47772</MaxTileRow><MinTileCol>66297</MinTileCol><MaxTileCol>66397</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95197</MinTileRow><MaxTileRow>95545</MaxTileRow><MinTileCol>132594</MinTileCol><MaxTileCol>132794</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.31051 44.1119</ows:LowerCorner><ows:UpperCorner>2.57525 44.3112</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-25-38960320</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>743</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1487</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2968</MinTileRow><MaxTileRow>2975</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5937</MinTileRow><MaxTileRow>5950</MaxTileRow><MinTileCol>8297</MinTileCol><MaxTileCol>8309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11875</MinTileRow><MaxTileRow>11900</MaxTileRow><MinTileCol>16594</MinTileCol><MaxTileCol>16618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23751</MinTileRow><MaxTileRow>23801</MaxTileRow><MinTileCol>33188</MinTileCol><MaxTileCol>33236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47502</MinTileRow><MaxTileRow>47603</MaxTileRow><MinTileCol>66377</MinTileCol><MaxTileCol>66473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95005</MinTileRow><MaxTileRow>95206</MaxTileRow><MinTileCol>132754</MinTileCol><MaxTileCol>132947</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.52362 43.636</ows:LowerCorner><ows:UpperCorner>2.80178 44.3118</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-25-38970319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2968</MinTileRow><MaxTileRow>2990</MaxTileRow><MinTileCol>4153</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5937</MinTileRow><MaxTileRow>5980</MaxTileRow><MinTileCol>8306</MinTileCol><MaxTileCol>8319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11875</MinTileRow><MaxTileRow>11961</MaxTileRow><MinTileCol>16613</MinTileCol><MaxTileCol>16638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23751</MinTileRow><MaxTileRow>23922</MaxTileRow><MinTileCol>33227</MinTileCol><MaxTileCol>33277</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47502</MinTileRow><MaxTileRow>47844</MaxTileRow><MinTileCol>66454</MinTileCol><MaxTileCol>66555</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95004</MinTileRow><MaxTileRow>95688</MaxTileRow><MinTileCol>132909</MinTileCol><MaxTileCol>133111</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.87034 44.8014</ows:LowerCorner><ows:UpperCorner>2.14004 45.0109</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-07-39378864</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1473</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2946</MinTileRow><MaxTileRow>2953</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5893</MinTileRow><MaxTileRow>5906</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11786</MinTileRow><MaxTileRow>11812</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16578</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23572</MinTileRow><MaxTileRow>23625</MaxTileRow><MinTileCol>33108</MinTileCol><MaxTileCol>33157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47144</MinTileRow><MaxTileRow>47251</MaxTileRow><MinTileCol>66217</MinTileCol><MaxTileCol>66315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94289</MinTileRow><MaxTileRow>94503</MaxTileRow><MinTileCol>132434</MinTileCol><MaxTileCol>132630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.42922 44.544</ows:LowerCorner><ows:UpperCorner>1.71589 44.8987</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-07-39388324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1480</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2950</MinTileRow><MaxTileRow>2961</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5900</MinTileRow><MaxTileRow>5922</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8269</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11800</MinTileRow><MaxTileRow>11845</MaxTileRow><MinTileCol>16514</MinTileCol><MaxTileCol>16539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23601</MinTileRow><MaxTileRow>23691</MaxTileRow><MinTileCol>33029</MinTileCol><MaxTileCol>33079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47202</MinTileRow><MaxTileRow>47383</MaxTileRow><MinTileCol>66058</MinTileCol><MaxTileCol>66159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94404</MinTileRow><MaxTileRow>94767</MaxTileRow><MinTileCol>132117</MinTileCol><MaxTileCol>132319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.824483 44.2816</ows:LowerCorner><ows:UpperCorner>1.10765 44.4847</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-08-39004077</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>370</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>740</MinTileRow><MaxTileRow>742</MaxTileRow><MinTileCol>1028</MinTileCol><MaxTileCol>1030</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1481</MinTileRow><MaxTileRow>1484</MaxTileRow><MinTileCol>2057</MinTileCol><MaxTileCol>2060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2963</MinTileRow><MaxTileRow>2969</MaxTileRow><MinTileCol>4114</MinTileCol><MaxTileCol>4121</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5926</MinTileRow><MaxTileRow>5939</MaxTileRow><MinTileCol>8229</MinTileCol><MaxTileCol>8242</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11853</MinTileRow><MaxTileRow>11879</MaxTileRow><MinTileCol>16459</MinTileCol><MaxTileCol>16484</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23707</MinTileRow><MaxTileRow>23758</MaxTileRow><MinTileCol>32919</MinTileCol><MaxTileCol>32969</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47414</MinTileRow><MaxTileRow>47516</MaxTileRow><MinTileCol>65838</MinTileCol><MaxTileCol>65939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94828</MinTileRow><MaxTileRow>95032</MaxTileRow><MinTileCol>131676</MinTileCol><MaxTileCol>131878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.20186 44.5226</ows:LowerCorner><ows:UpperCorner>1.50239 44.878</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-20-39471328</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1481</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2950</MinTileRow><MaxTileRow>2962</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5901</MinTileRow><MaxTileRow>5924</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11803</MinTileRow><MaxTileRow>11848</MaxTileRow><MinTileCol>16494</MinTileCol><MaxTileCol>16520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23606</MinTileRow><MaxTileRow>23696</MaxTileRow><MinTileCol>32988</MinTileCol><MaxTileCol>33040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47212</MinTileRow><MaxTileRow>47393</MaxTileRow><MinTileCol>65977</MinTileCol><MaxTileCol>66081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94425</MinTileRow><MaxTileRow>94786</MaxTileRow><MinTileCol>131954</MinTileCol><MaxTileCol>132162</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.21451 44.5228</ows:LowerCorner><ows:UpperCorner>1.50239 44.878</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-26-39619071</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1030</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1475</MinTileRow><MaxTileRow>1481</MaxTileRow><MinTileCol>2061</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2950</MinTileRow><MaxTileRow>2962</MaxTileRow><MinTileCol>4123</MinTileCol><MaxTileCol>4130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5901</MinTileRow><MaxTileRow>5924</MaxTileRow><MinTileCol>8247</MinTileCol><MaxTileCol>8260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11803</MinTileRow><MaxTileRow>11848</MaxTileRow><MinTileCol>16494</MinTileCol><MaxTileCol>16520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23606</MinTileRow><MaxTileRow>23696</MaxTileRow><MinTileCol>32989</MinTileCol><MaxTileCol>33040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47212</MinTileRow><MaxTileRow>47393</MaxTileRow><MinTileCol>65979</MinTileCol><MaxTileCol>66080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94425</MinTileRow><MaxTileRow>94787</MaxTileRow><MinTileCol>131959</MinTileCol><MaxTileCol>132160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.31051 44.1209</ows:LowerCorner><ows:UpperCorner>2.57518 44.3112</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-27-39224952</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>371</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>518</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>742</MinTileRow><MaxTileRow>743</MaxTileRow><MinTileCol>1037</MinTileCol><MaxTileCol>1038</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1484</MinTileRow><MaxTileRow>1487</MaxTileRow><MinTileCol>2074</MinTileCol><MaxTileCol>2077</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2968</MinTileRow><MaxTileRow>2974</MaxTileRow><MinTileCol>4148</MinTileCol><MaxTileCol>4154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5937</MinTileRow><MaxTileRow>5949</MaxTileRow><MinTileCol>8297</MinTileCol><MaxTileCol>8309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11875</MinTileRow><MaxTileRow>11899</MaxTileRow><MinTileCol>16594</MinTileCol><MaxTileCol>16618</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23751</MinTileRow><MaxTileRow>23799</MaxTileRow><MinTileCol>33188</MinTileCol><MaxTileCol>33236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47502</MinTileRow><MaxTileRow>47599</MaxTileRow><MinTileCol>66377</MinTileCol><MaxTileCol>66473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95005</MinTileRow><MaxTileRow>95198</MaxTileRow><MinTileCol>132754</MinTileCol><MaxTileCol>132947</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>185</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.52633 43.798</ows:LowerCorner><ows:UpperCorner>2.78879 43.9878</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-27-39233701</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2979</MinTileRow><MaxTileRow>2985</MaxTileRow><MinTileCol>4153</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5958</MinTileRow><MaxTileRow>5970</MaxTileRow><MinTileCol>8306</MinTileCol><MaxTileCol>8318</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11916</MinTileRow><MaxTileRow>11940</MaxTileRow><MinTileCol>16613</MinTileCol><MaxTileCol>16637</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23833</MinTileRow><MaxTileRow>23881</MaxTileRow><MinTileCol>33227</MinTileCol><MaxTileCol>33275</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47666</MinTileRow><MaxTileRow>47762</MaxTileRow><MinTileCol>66455</MinTileCol><MaxTileCol>66551</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95333</MinTileRow><MaxTileRow>95524</MaxTileRow><MinTileCol>132911</MinTileCol><MaxTileCol>133102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.153356 42.8709</ows:LowerCorner><ows:UpperCorner>0.431872 43.0755</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-11-02-39437577</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>751</MinTileRow><MaxTileRow>753</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1026</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1503</MinTileRow><MaxTileRow>1506</MaxTileRow><MinTileCol>2049</MinTileCol><MaxTileCol>2052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3007</MinTileRow><MaxTileRow>3013</MaxTileRow><MinTileCol>4099</MinTileCol><MaxTileCol>4105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6015</MinTileRow><MaxTileRow>6027</MaxTileRow><MinTileCol>8198</MinTileCol><MaxTileCol>8211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12031</MinTileRow><MaxTileRow>12055</MaxTileRow><MinTileCol>16397</MinTileCol><MaxTileCol>16422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24062</MinTileRow><MaxTileRow>24111</MaxTileRow><MinTileCol>32795</MinTileCol><MaxTileCol>32845</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48124</MinTileRow><MaxTileRow>48223</MaxTileRow><MinTileCol>65591</MinTileCol><MaxTileCol>65690</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96249</MinTileRow><MaxTileRow>96447</MaxTileRow><MinTileCol>131183</MinTileCol><MaxTileCol>131381</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.43374 44.535</ows:LowerCorner><ows:UpperCorner>1.71609 44.7366</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-11-27-39891075</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>740</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1477</MinTileRow><MaxTileRow>1480</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2955</MinTileRow><MaxTileRow>2961</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5910</MinTileRow><MaxTileRow>5923</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8270</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11821</MinTileRow><MaxTileRow>11846</MaxTileRow><MinTileCol>16514</MinTileCol><MaxTileCol>16540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23642</MinTileRow><MaxTileRow>23693</MaxTileRow><MinTileCol>33028</MinTileCol><MaxTileCol>33080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47285</MinTileRow><MaxTileRow>47386</MaxTileRow><MinTileCol>66057</MinTileCol><MaxTileCol>66160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94570</MinTileRow><MaxTileRow>94773</MaxTileRow><MinTileCol>132115</MinTileCol><MaxTileCol>132321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.3363 44.8488</ows:LowerCorner><ows:UpperCorner>1.55702 45.0408</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-04-39653953</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>737</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1472</MinTileRow><MaxTileRow>1475</MaxTileRow><MinTileCol>2063</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2945</MinTileRow><MaxTileRow>2951</MaxTileRow><MinTileCol>4126</MinTileCol><MaxTileCol>4131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5891</MinTileRow><MaxTileRow>5903</MaxTileRow><MinTileCol>8253</MinTileCol><MaxTileCol>8262</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11782</MinTileRow><MaxTileRow>11806</MaxTileRow><MinTileCol>16506</MinTileCol><MaxTileCol>16525</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23564</MinTileRow><MaxTileRow>23613</MaxTileRow><MinTileCol>33012</MinTileCol><MaxTileCol>33051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47128</MinTileRow><MaxTileRow>47227</MaxTileRow><MinTileCol>66024</MinTileCol><MaxTileCol>66102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94257</MinTileRow><MaxTileRow>94455</MaxTileRow><MinTileCol>132048</MinTileCol><MaxTileCol>132205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.87378 44.6394</ows:LowerCorner><ows:UpperCorner>2.14252 44.8398</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-04-39663827</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>738</MinTileRow><MaxTileRow>739</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1476</MinTileRow><MaxTileRow>1479</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2952</MinTileRow><MaxTileRow>2958</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5904</MinTileRow><MaxTileRow>5916</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11808</MinTileRow><MaxTileRow>11833</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23616</MinTileRow><MaxTileRow>23667</MaxTileRow><MinTileCol>33109</MinTileCol><MaxTileCol>33158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47232</MinTileRow><MaxTileRow>47334</MaxTileRow><MinTileCol>66218</MinTileCol><MaxTileCol>66316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94465</MinTileRow><MaxTileRow>94669</MaxTileRow><MinTileCol>132436</MinTileCol><MaxTileCol>132632</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.8707 44.8014</ows:LowerCorner><ows:UpperCorner>2.14004 44.9929</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-11-39433576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1034</MinTileCol><MaxTileCol>1036</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1473</MinTileRow><MaxTileRow>1476</MaxTileRow><MinTileCol>2069</MinTileCol><MaxTileCol>2072</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2947</MinTileRow><MaxTileRow>2953</MaxTileRow><MinTileCol>4138</MinTileCol><MaxTileCol>4144</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5894</MinTileRow><MaxTileRow>5906</MaxTileRow><MinTileCol>8277</MinTileCol><MaxTileCol>8289</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11788</MinTileRow><MaxTileRow>11812</MaxTileRow><MinTileCol>16554</MinTileCol><MaxTileCol>16578</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23576</MinTileRow><MaxTileRow>23625</MaxTileRow><MinTileCol>33108</MinTileCol><MaxTileCol>33157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47153</MinTileRow><MaxTileRow>47251</MaxTileRow><MinTileCol>66217</MinTileCol><MaxTileCol>66315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94307</MinTileRow><MaxTileRow>94503</MaxTileRow><MinTileCol>132434</MinTileCol><MaxTileCol>132630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.43737 44.8683</ows:LowerCorner><ows:UpperCorner>1.70847 45.0607</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-11-39456329</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>516</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>737</MaxTileRow><MinTileCol>1032</MinTileCol><MaxTileCol>1033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1472</MinTileRow><MaxTileRow>1475</MaxTileRow><MinTileCol>2064</MinTileCol><MaxTileCol>2067</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2944</MinTileRow><MaxTileRow>2951</MaxTileRow><MinTileCol>4128</MinTileCol><MaxTileCol>4134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5889</MinTileRow><MaxTileRow>5902</MaxTileRow><MinTileCol>8257</MinTileCol><MaxTileCol>8269</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11779</MinTileRow><MaxTileRow>11804</MaxTileRow><MinTileCol>16514</MinTileCol><MaxTileCol>16539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23559</MinTileRow><MaxTileRow>23608</MaxTileRow><MinTileCol>33029</MinTileCol><MaxTileCol>33079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47118</MinTileRow><MaxTileRow>47217</MaxTileRow><MinTileCol>66059</MinTileCol><MaxTileCol>66158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94237</MinTileRow><MaxTileRow>94435</MaxTileRow><MinTileCol>132118</MinTileCol><MaxTileCol>132316</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.53349 44.284</ows:LowerCorner><ows:UpperCorner>2.79951 44.6359</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-12-38951945</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>369</MinTileRow><MaxTileRow>371</MaxTileRow><MinTileCol>519</MinTileCol><MaxTileCol>519</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>739</MinTileRow><MaxTileRow>742</MaxTileRow><MinTileCol>1038</MinTileCol><MaxTileCol>1039</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1479</MinTileRow><MaxTileRow>1484</MaxTileRow><MinTileCol>2076</MinTileCol><MaxTileCol>2079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2958</MinTileRow><MaxTileRow>2969</MaxTileRow><MinTileCol>4153</MinTileCol><MaxTileCol>4159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5917</MinTileRow><MaxTileRow>5939</MaxTileRow><MinTileCol>8307</MinTileCol><MaxTileCol>8319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11834</MinTileRow><MaxTileRow>11879</MaxTileRow><MinTileCol>16614</MinTileCol><MaxTileCol>16638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23668</MinTileRow><MaxTileRow>23758</MaxTileRow><MinTileCol>33229</MinTileCol><MaxTileCol>33277</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47336</MinTileRow><MaxTileRow>47516</MaxTileRow><MinTileCol>66458</MinTileCol><MaxTileCol>66555</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94673</MinTileRow><MaxTileRow>95032</MaxTileRow><MinTileCol>132916</MinTileCol><MaxTileCol>133110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>259</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.08742 44.4163</ows:LowerCorner><ows:UpperCorner>2.35943 44.9313</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-18-39227949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1474</MinTileRow><MaxTileRow>1482</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2949</MinTileRow><MaxTileRow>2965</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5898</MinTileRow><MaxTileRow>5931</MaxTileRow><MinTileCol>8286</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11796</MinTileRow><MaxTileRow>11862</MaxTileRow><MinTileCol>16573</MinTileCol><MaxTileCol>16598</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23593</MinTileRow><MaxTileRow>23724</MaxTileRow><MinTileCol>33147</MinTileCol><MaxTileCol>33197</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47186</MinTileRow><MaxTileRow>47448</MaxTileRow><MinTileCol>66295</MinTileCol><MaxTileCol>66395</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94372</MinTileRow><MaxTileRow>94897</MaxTileRow><MinTileCol>132591</MinTileCol><MaxTileCol>132790</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.08742 44.4163</ows:LowerCorner><ows:UpperCorner>2.37199 44.9314</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-31-39148329</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>370</MaxTileRow><MinTileCol>517</MinTileCol><MaxTileCol>518</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>737</MinTileRow><MaxTileRow>741</MaxTileRow><MinTileCol>1035</MinTileCol><MaxTileCol>1037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1474</MinTileRow><MaxTileRow>1482</MaxTileRow><MinTileCol>2071</MinTileCol><MaxTileCol>2074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2949</MinTileRow><MaxTileRow>2965</MaxTileRow><MinTileCol>4143</MinTileCol><MaxTileCol>4149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5898</MinTileRow><MaxTileRow>5931</MaxTileRow><MinTileCol>8287</MinTileCol><MaxTileCol>8299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11796</MinTileRow><MaxTileRow>11862</MaxTileRow><MinTileCol>16574</MinTileCol><MaxTileCol>16599</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23593</MinTileRow><MaxTileRow>23724</MaxTileRow><MinTileCol>33148</MinTileCol><MaxTileCol>33199</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47186</MinTileRow><MaxTileRow>47448</MaxTileRow><MinTileCol>66296</MinTileCol><MaxTileCol>66398</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94372</MinTileRow><MaxTileRow>94897</MaxTileRow><MinTileCol>132592</MinTileCol><MaxTileCol>132797</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>129</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>185</MaxTileRow><MinTileCol>258</MinTileCol><MaxTileCol>259</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.2058 -21.4013</ows:LowerCorner><ows:UpperCorner>55.8464 -20.8628</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1338</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2290</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2676</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4581</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5352</MinTileCol><MaxTileCol>5366</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9163</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>10704</MinTileCol><MaxTileCol>10733</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18326</MinTileRow><MaxTileRow>18378</MaxTileRow><MinTileCol>21409</MinTileCol><MaxTileCol>21467</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36653</MinTileRow><MaxTileRow>36757</MaxTileRow><MinTileCol>42818</MinTileCol><MaxTileCol>42934</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73306</MinTileRow><MaxTileRow>73515</MaxTileRow><MinTileCol>85637</MinTileCol><MaxTileCol>85868</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146612</MinTileRow><MaxTileRow>147030</MaxTileRow><MinTileCol>171274</MinTileCol><MaxTileCol>171736</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.4858 -21.3638</ows:LowerCorner><ows:UpperCorner>55.6618 -21.0913</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-15-23908619</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1146</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2293</MinTileRow><MaxTileRow>2296</MaxTileRow><MinTileCol>2679</MinTileCol><MaxTileCol>2681</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4587</MinTileRow><MaxTileRow>4593</MaxTileRow><MinTileCol>5358</MinTileCol><MaxTileCol>5362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9174</MinTileRow><MaxTileRow>9187</MaxTileRow><MinTileCol>10717</MinTileCol><MaxTileCol>10725</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18348</MinTileRow><MaxTileRow>18375</MaxTileRow><MinTileCol>21434</MinTileCol><MaxTileCol>21450</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36697</MinTileRow><MaxTileRow>36750</MaxTileRow><MinTileCol>42868</MinTileCol><MaxTileCol>42900</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73394</MinTileRow><MaxTileRow>73500</MaxTileRow><MinTileCol>85737</MinTileCol><MaxTileCol>85801</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146789</MinTileRow><MaxTileRow>147001</MaxTileRow><MinTileCol>171475</MinTileCol><MaxTileCol>171603</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.4662 -21.3902</ows:LowerCorner><ows:UpperCorner>55.5825 -21.335</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-20-24582576</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>574</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1148</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2296</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2679</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4593</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5358</MinTileCol><MaxTileCol>5360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9186</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>10716</MinTileCol><MaxTileCol>10721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18372</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>21432</MinTileCol><MaxTileCol>21443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36744</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>42865</MinTileCol><MaxTileCol>42886</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73489</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>85730</MinTileCol><MaxTileCol>85773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146979</MinTileRow><MaxTileRow>147022</MaxTileRow><MinTileCol>171461</MinTileCol><MaxTileCol>171546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>287</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.3509 -21.3536</ows:LowerCorner><ows:UpperCorner>55.5263 -21.1714</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-28-23877983</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1147</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1338</MinTileCol><MaxTileCol>1339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2294</MinTileRow><MaxTileRow>2296</MaxTileRow><MinTileCol>2677</MinTileCol><MaxTileCol>2679</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4589</MinTileRow><MaxTileRow>4593</MaxTileRow><MinTileCol>5355</MinTileCol><MaxTileCol>5359</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9178</MinTileRow><MaxTileRow>9187</MaxTileRow><MinTileCol>10711</MinTileCol><MaxTileCol>10719</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18356</MinTileRow><MaxTileRow>18374</MaxTileRow><MinTileCol>21422</MinTileCol><MaxTileCol>21438</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36712</MinTileRow><MaxTileRow>36748</MaxTileRow><MinTileCol>42844</MinTileCol><MaxTileCol>42876</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73425</MinTileRow><MaxTileRow>73497</MaxTileRow><MinTileCol>85688</MinTileCol><MaxTileCol>85752</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146851</MinTileRow><MaxTileRow>146994</MaxTileRow><MinTileCol>171377</MinTileCol><MaxTileCol>171504</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>334</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.5355 -21.2102</ows:LowerCorner><ows:UpperCorner>55.6618 -21.0917</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-10-23-24350914</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>573</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1146</MinTileRow><MaxTileRow>1147</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2293</MinTileRow><MaxTileRow>2295</MaxTileRow><MinTileCol>2679</MinTileCol><MaxTileCol>2681</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4587</MinTileRow><MaxTileRow>4590</MaxTileRow><MinTileCol>5359</MinTileCol><MaxTileCol>5362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9174</MinTileRow><MaxTileRow>9180</MaxTileRow><MinTileCol>10719</MinTileCol><MaxTileCol>10725</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18348</MinTileRow><MaxTileRow>18360</MaxTileRow><MinTileCol>21438</MinTileCol><MaxTileCol>21450</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36697</MinTileRow><MaxTileRow>36720</MaxTileRow><MinTileCol>42877</MinTileCol><MaxTileCol>42900</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73394</MinTileRow><MaxTileRow>73441</MaxTileRow><MinTileCol>85755</MinTileCol><MaxTileCol>85801</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146789</MinTileRow><MaxTileRow>146882</MaxTileRow><MinTileCol>171511</MinTileCol><MaxTileCol>171603</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>286</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.5432 -21.4097</ows:LowerCorner><ows:UpperCorner>55.7681 -21.0376</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-06-04-23371319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1146</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2292</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2679</MinTileCol><MaxTileCol>2682</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4585</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5359</MinTileCol><MaxTileCol>5365</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9171</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>10719</MinTileCol><MaxTileCol>10730</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18343</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>21439</MinTileCol><MaxTileCol>21460</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36686</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>42879</MinTileCol><MaxTileCol>42920</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73373</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>85758</MinTileCol><MaxTileCol>85840</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146747</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>171517</MinTileCol><MaxTileCol>171680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.6115 -21.3288</ows:LowerCorner><ows:UpperCorner>55.8155 -21.1376</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-06-29-23893949</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>670</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1147</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1340</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2294</MinTileRow><MaxTileRow>2296</MaxTileRow><MinTileCol>2680</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4588</MinTileRow><MaxTileRow>4592</MaxTileRow><MinTileCol>5361</MinTileCol><MaxTileCol>5366</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9176</MinTileRow><MaxTileRow>9185</MaxTileRow><MinTileCol>10722</MinTileCol><MaxTileCol>10732</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18353</MinTileRow><MaxTileRow>18371</MaxTileRow><MinTileCol>21445</MinTileCol><MaxTileCol>21464</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36706</MinTileRow><MaxTileRow>36743</MaxTileRow><MinTileCol>42891</MinTileCol><MaxTileCol>42928</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73412</MinTileRow><MaxTileRow>73487</MaxTileRow><MinTileCol>85783</MinTileCol><MaxTileCol>85857</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146825</MinTileRow><MaxTileRow>146974</MaxTileRow><MinTileCol>171566</MinTileCol><MaxTileCol>171715</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>335</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.5528 -21.4097</ows:LowerCorner><ows:UpperCorner>55.7572 -21.2003</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-14-23644456</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>670</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1147</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1340</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2294</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2680</MinTileCol><MaxTileCol>2682</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4589</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5360</MinTileCol><MaxTileCol>5364</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9179</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>10720</MinTileCol><MaxTileCol>10729</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18359</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>21440</MinTileCol><MaxTileCol>21459</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36718</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>42881</MinTileCol><MaxTileCol>42918</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73437</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>85762</MinTileCol><MaxTileCol>85836</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146875</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>171524</MinTileCol><MaxTileCol>171673</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>335</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.1872 -21.3343</ows:LowerCorner><ows:UpperCorner>55.3947 -20.8626</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-20-23894111</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>668</MinTileCol><MaxTileCol>669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1337</MinTileCol><MaxTileCol>1339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2290</MinTileRow><MaxTileRow>2296</MaxTileRow><MinTileCol>2675</MinTileCol><MaxTileCol>2678</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4581</MinTileRow><MaxTileRow>4593</MaxTileRow><MinTileCol>5351</MinTileCol><MaxTileCol>5356</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9163</MinTileRow><MaxTileRow>9186</MaxTileRow><MinTileCol>10703</MinTileCol><MaxTileCol>10713</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18326</MinTileRow><MaxTileRow>18372</MaxTileRow><MinTileCol>21407</MinTileCol><MaxTileCol>21426</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36653</MinTileRow><MaxTileRow>36744</MaxTileRow><MinTileCol>42814</MinTileCol><MaxTileCol>42852</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73306</MinTileRow><MaxTileRow>73489</MaxTileRow><MinTileCol>85629</MinTileCol><MaxTileCol>85704</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146612</MinTileRow><MaxTileRow>146979</MaxTileRow><MinTileCol>171259</MinTileCol><MaxTileCol>171408</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>334</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.5467 -21.0574</ows:LowerCorner><ows:UpperCorner>55.7599 -20.866</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-27-23681500</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>573</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1146</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2290</MinTileRow><MaxTileRow>2293</MaxTileRow><MinTileCol>2679</MinTileCol><MaxTileCol>2682</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4581</MinTileRow><MaxTileRow>4586</MaxTileRow><MinTileCol>5359</MinTileCol><MaxTileCol>5364</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9163</MinTileRow><MaxTileRow>9172</MaxTileRow><MinTileCol>10719</MinTileCol><MaxTileCol>10729</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18326</MinTileRow><MaxTileRow>18345</MaxTileRow><MinTileCol>21439</MinTileCol><MaxTileCol>21459</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36653</MinTileRow><MaxTileRow>36690</MaxTileRow><MinTileCol>42879</MinTileCol><MaxTileCol>42918</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73306</MinTileRow><MaxTileRow>73381</MaxTileRow><MinTileCol>85759</MinTileCol><MaxTileCol>85837</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146613</MinTileRow><MaxTileRow>146762</MaxTileRow><MinTileCol>171519</MinTileCol><MaxTileCol>171674</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>286</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.3599 -21.4082</ows:LowerCorner><ows:UpperCorner>55.5774 -20.8553</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-09-02-23865398</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1338</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2290</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2677</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4581</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5355</MinTileCol><MaxTileCol>5360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9162</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>10711</MinTileCol><MaxTileCol>10721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18325</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>21423</MinTileCol><MaxTileCol>21442</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36651</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>42846</MinTileCol><MaxTileCol>42885</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73302</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>85693</MinTileCol><MaxTileCol>85771</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146605</MinTileRow><MaxTileRow>147036</MaxTileRow><MinTileCol>171386</MinTileCol><MaxTileCol>171542</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.6993 -21.2118</ows:LowerCorner><ows:UpperCorner>55.8741 -21.0208</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-10-24-23849069</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>573</MaxTileRow><MinTileCol>670</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1146</MinTileRow><MaxTileRow>1147</MaxTileRow><MinTileCol>1340</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2292</MinTileRow><MaxTileRow>2295</MaxTileRow><MinTileCol>2681</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4585</MinTileRow><MaxTileRow>4590</MaxTileRow><MinTileCol>5363</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9170</MinTileRow><MaxTileRow>9180</MaxTileRow><MinTileCol>10726</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18341</MinTileRow><MaxTileRow>18360</MaxTileRow><MinTileCol>21453</MinTileCol><MaxTileCol>21469</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36683</MinTileRow><MaxTileRow>36720</MaxTileRow><MinTileCol>42907</MinTileCol><MaxTileCol>42939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73367</MinTileRow><MaxTileRow>73441</MaxTileRow><MinTileCol>85815</MinTileCol><MaxTileCol>85878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146734</MinTileRow><MaxTileRow>146883</MaxTileRow><MinTileCol>171630</MinTileCol><MaxTileCol>171757</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>286</MaxTileRow><MinTileCol>335</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-2014</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.6977 -21.3924</ows:LowerCorner><ows:UpperCorner>55.8632 -21.1924</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2014-01-11-23413574</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>670</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1147</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1340</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2294</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>2681</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4589</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>5363</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9179</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>10726</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18358</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>21453</MinTileCol><MaxTileCol>21468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36717</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>42907</MinTileCol><MaxTileCol>42937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73434</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>85814</MinTileCol><MaxTileCol>85875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146868</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>171629</MinTileCol><MaxTileCol>171750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>335</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-SAINT-DENIS 2014</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-SAINT-DENIS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.3258 -21.0197</ows:LowerCorner><ows:UpperCorner>55.5681 -20.8279</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-DENIS-2014-01-05-23153694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>573</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1146</MaxTileRow><MinTileCol>1338</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2290</MinTileRow><MaxTileRow>2292</MaxTileRow><MinTileCol>2677</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4580</MinTileRow><MaxTileRow>4585</MaxTileRow><MinTileCol>5354</MinTileCol><MaxTileCol>5360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9161</MinTileRow><MaxTileRow>9170</MaxTileRow><MinTileCol>10709</MinTileCol><MaxTileCol>10720</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18322</MinTileRow><MaxTileRow>18341</MaxTileRow><MinTileCol>21419</MinTileCol><MaxTileCol>21441</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36645</MinTileRow><MaxTileRow>36683</MaxTileRow><MinTileCol>42839</MinTileCol><MaxTileCol>42883</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73291</MinTileRow><MaxTileRow>73366</MaxTileRow><MinTileCol>85679</MinTileCol><MaxTileCol>85767</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146583</MinTileRow><MaxTileRow>146733</MaxTileRow><MinTileCol>171359</MinTileCol><MaxTileCol>171535</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>286</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-SAINT-PAUL 2014</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-SAINT-PAUL issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.1706 -21.1178</ows:LowerCorner><ows:UpperCorner>55.4232 -20.8985</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-PAUL-2014-01-05-23162694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>572</MinTileRow><MaxTileRow>573</MaxTileRow><MinTileCol>668</MinTileCol><MaxTileCol>669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1145</MinTileRow><MaxTileRow>1146</MaxTileRow><MinTileCol>1337</MinTileCol><MaxTileCol>1339</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2291</MinTileRow><MaxTileRow>2293</MaxTileRow><MinTileCol>2675</MinTileCol><MaxTileCol>2678</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4582</MinTileRow><MaxTileRow>4587</MaxTileRow><MinTileCol>5351</MinTileCol><MaxTileCol>5357</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9164</MinTileRow><MaxTileRow>9175</MaxTileRow><MinTileCol>10702</MinTileCol><MaxTileCol>10714</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18329</MinTileRow><MaxTileRow>18351</MaxTileRow><MinTileCol>21405</MinTileCol><MaxTileCol>21428</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36659</MinTileRow><MaxTileRow>36702</MaxTileRow><MinTileCol>42811</MinTileCol><MaxTileCol>42857</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73319</MinTileRow><MaxTileRow>73404</MaxTileRow><MinTileCol>85623</MinTileCol><MaxTileCol>85714</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146638</MinTileRow><MaxTileRow>146809</MaxTileRow><MinTileCol>171246</MinTileCol><MaxTileCol>171428</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>286</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>334</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REUNION-SAINT-PIERRE 2014</ows:Title><ows:Abstract>Orthophotographies satellites de REUNION-SAINT-PIERRE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>55.3797 -21.3632</ows:LowerCorner><ows:UpperCorner>55.5937 -21.1716</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-PIERRE-2014-01-04-23675449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>573</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>669</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1147</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>1339</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2294</MinTileRow><MaxTileRow>2296</MaxTileRow><MinTileCol>2678</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4589</MinTileRow><MaxTileRow>4593</MaxTileRow><MinTileCol>5356</MinTileCol><MaxTileCol>5361</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9178</MinTileRow><MaxTileRow>9187</MaxTileRow><MinTileCol>10712</MinTileCol><MaxTileCol>10722</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18356</MinTileRow><MaxTileRow>18375</MaxTileRow><MinTileCol>21424</MinTileCol><MaxTileCol>21444</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36713</MinTileRow><MaxTileRow>36750</MaxTileRow><MinTileCol>42849</MinTileCol><MaxTileCol>42888</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>73426</MinTileRow><MaxTileRow>73500</MaxTileRow><MinTileCol>85699</MinTileCol><MaxTileCol>85777</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>146852</MinTileRow><MaxTileRow>147001</MaxTileRow><MinTileCol>171398</MinTileCol><MaxTileCol>171554</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>71</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>143</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>167</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>286</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>334</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RHONE-ALPES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de RHONE-ALPES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.6619 44.019</ows:LowerCorner><ows:UpperCorner>7.29217 46.5789</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RHONE-ALPES-2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>361</MinTileRow><MaxTileRow>372</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>723</MinTileRow><MaxTileRow>744</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1447</MinTileRow><MaxTileRow>1488</MaxTileRow><MinTileCol>2089</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2895</MinTileRow><MaxTileRow>2976</MaxTileRow><MinTileCol>4179</MinTileCol><MaxTileCol>4260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5791</MinTileRow><MaxTileRow>5953</MaxTileRow><MinTileCol>8359</MinTileCol><MaxTileCol>8520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11583</MinTileRow><MaxTileRow>11906</MaxTileRow><MinTileCol>16718</MinTileCol><MaxTileCol>17040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23166</MinTileRow><MaxTileRow>23813</MaxTileRow><MinTileCol>33436</MinTileCol><MaxTileCol>34081</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46332</MinTileRow><MaxTileRow>47627</MaxTileRow><MinTileCol>66873</MinTileCol><MaxTileCol>68162</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>180</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ROUEN 2014</ows:Title><ows:Abstract>Orthophotographies satellites de ROUEN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.928916 49.308</ows:LowerCorner><ows:UpperCorner>1.23995 49.5284</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ROUEN-2014-03-10-40183194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>349</MinTileRow><MaxTileRow>350</MaxTileRow><MinTileCol>514</MinTileCol><MaxTileCol>515</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>698</MinTileRow><MaxTileRow>700</MaxTileRow><MinTileCol>1029</MinTileCol><MaxTileCol>1031</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1397</MinTileRow><MaxTileRow>1401</MaxTileRow><MinTileCol>2058</MinTileCol><MaxTileCol>2062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2795</MinTileRow><MaxTileRow>2802</MaxTileRow><MinTileCol>4117</MinTileCol><MaxTileCol>4124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5590</MinTileRow><MaxTileRow>5605</MaxTileRow><MinTileCol>8234</MinTileCol><MaxTileCol>8248</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11180</MinTileRow><MaxTileRow>11210</MaxTileRow><MinTileCol>16468</MinTileCol><MaxTileCol>16496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22360</MinTileRow><MaxTileRow>22420</MaxTileRow><MinTileCol>32937</MinTileCol><MaxTileCol>32993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44720</MinTileRow><MaxTileRow>44840</MaxTileRow><MinTileCol>65874</MinTileCol><MaxTileCol>65987</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89440</MinTileRow><MaxTileRow>89680</MaxTileRow><MinTileCol>131748</MinTileCol><MaxTileCol>131975</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>174</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title><ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1607 18.0434</ows:LowerCorner><ows:UpperCorner>-62.9622 18.1339</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>459</MinTileRow><MaxTileRow>459</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>919</MinTileRow><MaxTileRow>919</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>665</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1838</MinTileRow><MaxTileRow>1839</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>1331</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3676</MinTileRow><MaxTileRow>3678</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>2663</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7352</MinTileRow><MaxTileRow>7356</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>5326</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>14705</MinTileRow><MaxTileRow>14713</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>10653</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>29410</MinTileRow><MaxTileRow>29427</MaxTileRow><MinTileCol>21269</MinTileCol><MaxTileCol>21306</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>58820</MinTileRow><MaxTileRow>58855</MaxTileRow><MinTileCol>42539</MinTileCol><MaxTileCol>42612</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>117641</MinTileRow><MaxTileRow>117710</MaxTileRow><MinTileCol>85079</MinTileCol><MaxTileCol>85224</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>14</MinTileRow><MaxTileRow>14</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>28</MinTileRow><MaxTileRow>28</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>57</MinTileRow><MaxTileRow>57</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>114</MinTileRow><MaxTileRow>114</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>229</MinTileRow><MaxTileRow>229</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>166</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title><ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1702 18.0344</ows:LowerCorner><ows:UpperCorner>-63 18.1339</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013-01-02-53974947</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>459</MinTileRow><MaxTileRow>459</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>919</MinTileRow><MaxTileRow>919</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>665</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1838</MinTileRow><MaxTileRow>1839</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>1331</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3676</MinTileRow><MaxTileRow>3678</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>2662</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7352</MinTileRow><MaxTileRow>7357</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>5324</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>14705</MinTileRow><MaxTileRow>14714</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>10649</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>29410</MinTileRow><MaxTileRow>29429</MaxTileRow><MinTileCol>21268</MinTileCol><MaxTileCol>21299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>58820</MinTileRow><MaxTileRow>58858</MaxTileRow><MinTileCol>42536</MinTileCol><MaxTileCol>42598</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>117641</MinTileRow><MaxTileRow>117717</MaxTileRow><MinTileCol>85072</MinTileCol><MaxTileCol>85196</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>14</MinTileRow><MaxTileRow>14</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>28</MinTileRow><MaxTileRow>28</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>57</MinTileRow><MaxTileRow>57</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>114</MinTileRow><MaxTileRow>114</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>229</MinTileRow><MaxTileRow>229</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>166</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title><ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1702 18.0344</ows:LowerCorner><ows:UpperCorner>-63 18.1339</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013-01-02-54012189</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>459</MinTileRow><MaxTileRow>459</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>919</MinTileRow><MaxTileRow>919</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>665</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1838</MinTileRow><MaxTileRow>1839</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>1331</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3676</MinTileRow><MaxTileRow>3678</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>2662</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>7352</MinTileRow><MaxTileRow>7357</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>5324</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>14705</MinTileRow><MaxTileRow>14714</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>10649</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>29410</MinTileRow><MaxTileRow>29429</MaxTileRow><MinTileCol>21268</MinTileCol><MaxTileCol>21299</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>58820</MinTileRow><MaxTileRow>58858</MaxTileRow><MinTileCol>42536</MinTileCol><MaxTileCol>42598</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>117641</MinTileRow><MaxTileRow>117717</MaxTileRow><MinTileCol>85072</MinTileCol><MaxTileCol>85196</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>3</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>7</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>14</MinTileRow><MaxTileRow>14</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>28</MinTileRow><MaxTileRow>28</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>57</MinTileRow><MaxTileRow>57</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>114</MinTileRow><MaxTileRow>114</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>229</MinTileRow><MaxTileRow>229</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>166</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de Saint Raphaël</ows:Title><ows:Abstract>Orthophotographies satellites de Saint Raphaël issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.67483 43.3397</ows:LowerCorner><ows:UpperCorner>6.97226 43.5564</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-RAPHAEL-2013-04-24-38004569</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2992</MinTileRow><MaxTileRow>2999</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4254</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5985</MinTileRow><MaxTileRow>5998</MaxTileRow><MinTileCol>8496</MinTileCol><MaxTileCol>8508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11971</MinTileRow><MaxTileRow>11997</MaxTileRow><MinTileCol>16992</MinTileCol><MaxTileCol>17017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23943</MinTileRow><MaxTileRow>23995</MaxTileRow><MinTileCol>33985</MinTileCol><MaxTileCol>34035</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47887</MinTileRow><MaxTileRow>47991</MaxTileRow><MinTileCol>67970</MinTileCol><MaxTileCol>68070</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95774</MinTileRow><MaxTileRow>95982</MaxTileRow><MinTileCol>135941</MinTileCol><MaxTileCol>136141</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAUMUR 2014</ows:Title><ows:Abstract>Orthophotographies satellites de SAUMUR issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-0.245413 47.1571</ows:LowerCorner><ows:UpperCorner>0.0292198 47.3441</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAUMUR-2014-05-15-39832123</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>511</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>717</MinTileRow><MaxTileRow>719</MaxTileRow><MinTileCol>1022</MinTileCol><MaxTileCol>1024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1434</MinTileRow><MaxTileRow>1438</MaxTileRow><MinTileCol>2045</MinTileCol><MaxTileCol>2048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2869</MinTileRow><MaxTileRow>2876</MaxTileRow><MinTileCol>4090</MinTileCol><MaxTileCol>4096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5739</MinTileRow><MaxTileRow>5752</MaxTileRow><MinTileCol>8180</MinTileCol><MaxTileCol>8193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11479</MinTileRow><MaxTileRow>11504</MaxTileRow><MinTileCol>16361</MinTileCol><MaxTileCol>16386</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22958</MinTileRow><MaxTileRow>23008</MaxTileRow><MinTileCol>32723</MinTileCol><MaxTileCol>32773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45917</MinTileRow><MaxTileRow>46017</MaxTileRow><MinTileCol>65446</MinTileCol><MaxTileCol>65546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91834</MinTileRow><MaxTileRow>92034</MaxTileRow><MinTileCol>130893</MinTileCol><MaxTileCol>131093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>127</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>255</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ST-NAZAIRE-BRIERE-2014</ows:Title><ows:Abstract>Orthophotographies satellites de ST-NAZAIRE-BRIERE-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.28942 47.2718</ows:LowerCorner><ows:UpperCorner>-1.95135 47.5014</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ST-NAZAIRE-BRIERE-2014-02-23-41199449</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>505</MinTileCol><MaxTileCol>506</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>716</MinTileRow><MaxTileRow>717</MaxTileRow><MinTileCol>1011</MinTileCol><MaxTileCol>1012</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1432</MinTileRow><MaxTileRow>1435</MaxTileRow><MinTileCol>2022</MinTileCol><MaxTileCol>2025</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2864</MinTileRow><MaxTileRow>2871</MaxTileRow><MinTileCol>4044</MinTileCol><MaxTileCol>4051</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5729</MinTileRow><MaxTileRow>5743</MaxTileRow><MinTileCol>8088</MinTileCol><MaxTileCol>8102</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11459</MinTileRow><MaxTileRow>11487</MaxTileRow><MinTileCol>16176</MinTileCol><MaxTileCol>16205</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22919</MinTileRow><MaxTileRow>22975</MaxTileRow><MinTileCol>32353</MinTileCol><MaxTileCol>32411</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45838</MinTileRow><MaxTileRow>45950</MaxTileRow><MinTileCol>64706</MinTileCol><MaxTileCol>64822</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91676</MinTileRow><MaxTileRow>91901</MaxTileRow><MinTileCol>129413</MinTileCol><MaxTileCol>129645</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de ST-NAZAIRE-BRIERE-2014</ows:Title><ows:Abstract>Orthophotographies satellites de ST-NAZAIRE-BRIERE-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.47397 47.2722</ows:LowerCorner><ows:UpperCorner>-2.13704 47.4843</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ST-NAZAIRE-BRIERE-2014-02-23-41209199</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>358</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>505</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>716</MinTileRow><MaxTileRow>717</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1011</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1432</MinTileRow><MaxTileRow>1435</MaxTileRow><MinTileCol>2019</MinTileCol><MaxTileCol>2023</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2865</MinTileRow><MaxTileRow>2871</MaxTileRow><MinTileCol>4039</MinTileCol><MaxTileCol>4047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5730</MinTileRow><MaxTileRow>5743</MaxTileRow><MinTileCol>8079</MinTileCol><MaxTileCol>8094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11461</MinTileRow><MaxTileRow>11487</MaxTileRow><MinTileCol>16159</MinTileCol><MaxTileCol>16188</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22922</MinTileRow><MaxTileRow>22975</MaxTileRow><MinTileCol>32319</MinTileCol><MaxTileCol>32377</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45844</MinTileRow><MaxTileRow>45950</MaxTileRow><MinTileCol>64639</MinTileCol><MaxTileCol>64755</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91689</MinTileRow><MaxTileRow>91901</MaxTileRow><MinTileCol>129278</MinTileCol><MaxTileCol>129511</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>252</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de STRASBOURG</ows:Title><ows:Abstract>Orthophotographies satellites de STRASBOURG issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.64498 48.209</ows:LowerCorner><ows:UpperCorner>7.92797 48.8471</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_STRASBOURG-2013-04-24-37954587</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>533</MinTileCol><MaxTileCol>534</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>704</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1067</MinTileCol><MaxTileCol>1069</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1409</MinTileRow><MaxTileRow>1420</MaxTileRow><MinTileCol>2134</MinTileCol><MaxTileCol>2138</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2818</MinTileRow><MaxTileRow>2840</MaxTileRow><MinTileCol>4269</MinTileCol><MaxTileCol>4276</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5637</MinTileRow><MaxTileRow>5681</MaxTileRow><MinTileCol>8538</MinTileCol><MaxTileCol>8553</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11274</MinTileRow><MaxTileRow>11362</MaxTileRow><MinTileCol>17077</MinTileCol><MaxTileCol>17106</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22548</MinTileRow><MaxTileRow>22724</MaxTileRow><MinTileCol>34155</MinTileCol><MaxTileCol>34213</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45096</MinTileRow><MaxTileRow>45448</MaxTileRow><MinTileCol>68310</MinTileCol><MaxTileCol>68426</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90193</MinTileRow><MaxTileRow>90897</MaxTileRow><MinTileCol>136621</MinTileCol><MaxTileCol>136853</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>267</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de STRASBOURG-2014</ows:Title><ows:Abstract>Orthophotographies satellites de STRASBOURG-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.54767 48.4528</ows:LowerCorner><ows:UpperCorner>7.87824 48.6807</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_STRASBOURG-2014-03-08-38209074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>533</MinTileCol><MaxTileCol>534</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>706</MinTileRow><MaxTileRow>707</MaxTileRow><MinTileCol>1067</MinTileCol><MaxTileCol>1068</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1412</MinTileRow><MaxTileRow>1415</MaxTileRow><MinTileCol>2134</MinTileCol><MaxTileCol>2137</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2824</MinTileRow><MaxTileRow>2831</MaxTileRow><MinTileCol>4268</MinTileCol><MaxTileCol>4274</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5649</MinTileRow><MaxTileRow>5663</MaxTileRow><MinTileCol>8536</MinTileCol><MaxTileCol>8549</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11298</MinTileRow><MaxTileRow>11327</MaxTileRow><MinTileCol>17072</MinTileCol><MaxTileCol>17099</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22597</MinTileRow><MaxTileRow>22655</MaxTileRow><MinTileCol>34144</MinTileCol><MaxTileCol>34199</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45194</MinTileRow><MaxTileRow>45311</MaxTileRow><MinTileCol>68289</MinTileCol><MaxTileCol>68399</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90388</MinTileRow><MaxTileRow>90623</MaxTileRow><MinTileCol>136578</MinTileCol><MaxTileCol>136798</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>267</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title><ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.641 -17.8026</ows:LowerCorner><ows:UpperCorner>-149.411 -17.4747</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72553330</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>562</MinTileRow><MaxTileRow>563</MaxTileRow><MinTileCol>86</MinTileCol><MaxTileCol>87</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1125</MinTileRow><MaxTileRow>1126</MaxTileRow><MinTileCol>172</MinTileCol><MaxTileCol>174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2250</MinTileRow><MaxTileRow>2253</MaxTileRow><MinTileCol>345</MinTileCol><MaxTileCol>348</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4500</MinTileRow><MaxTileRow>4507</MaxTileRow><MinTileCol>690</MinTileCol><MaxTileCol>696</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9000</MinTileRow><MaxTileRow>9015</MaxTileRow><MinTileCol>1381</MinTileCol><MaxTileCol>1392</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18000</MinTileRow><MaxTileRow>18031</MaxTileRow><MinTileCol>2763</MinTileCol><MaxTileCol>2784</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36000</MinTileRow><MaxTileRow>36062</MaxTileRow><MinTileCol>5527</MinTileCol><MaxTileCol>5568</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>72000</MinTileRow><MaxTileRow>72124</MaxTileRow><MinTileCol>11054</MinTileCol><MaxTileCol>11136</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>144000</MinTileRow><MaxTileRow>144249</MaxTileRow><MinTileCol>22108</MinTileCol><MaxTileCol>22273</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>70</MinTileRow><MaxTileRow>70</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>140</MinTileRow><MaxTileRow>140</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>281</MinTileRow><MaxTileRow>281</MaxTileRow><MinTileCol>43</MinTileCol><MaxTileCol>43</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title><ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.313 -17.9056</ows:LowerCorner><ows:UpperCorner>-149.103 -17.7045</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72564955</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>563</MinTileRow><MaxTileRow>563</MaxTileRow><MinTileCol>87</MinTileCol><MaxTileCol>87</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1126</MinTileRow><MaxTileRow>1127</MaxTileRow><MinTileCol>174</MinTileCol><MaxTileCol>175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2252</MinTileRow><MaxTileRow>2255</MaxTileRow><MinTileCol>349</MinTileCol><MaxTileCol>351</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4505</MinTileRow><MaxTileRow>4510</MaxTileRow><MinTileCol>698</MinTileCol><MaxTileCol>703</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9010</MinTileRow><MaxTileRow>9020</MaxTileRow><MinTileCol>1396</MinTileCol><MaxTileCol>1406</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18021</MinTileRow><MaxTileRow>18040</MaxTileRow><MinTileCol>2793</MinTileCol><MaxTileCol>2812</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36043</MinTileRow><MaxTileRow>36081</MaxTileRow><MinTileCol>5586</MinTileCol><MaxTileCol>5624</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>72087</MinTileRow><MaxTileRow>72163</MaxTileRow><MinTileCol>11173</MinTileCol><MaxTileCol>11249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>144174</MinTileRow><MaxTileRow>144327</MaxTileRow><MinTileCol>22346</MinTileCol><MaxTileCol>22498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>70</MinTileRow><MaxTileRow>70</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>140</MinTileRow><MaxTileRow>140</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>281</MinTileRow><MaxTileRow>281</MaxTileRow><MinTileCol>43</MinTileCol><MaxTileCol>43</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title><ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.444 -17.8321</ows:LowerCorner><ows:UpperCorner>-149.213 -17.4772</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72576790</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>562</MinTileRow><MaxTileRow>563</MaxTileRow><MinTileCol>86</MinTileCol><MaxTileCol>87</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1125</MinTileRow><MaxTileRow>1127</MaxTileRow><MinTileCol>173</MinTileCol><MaxTileCol>175</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2250</MinTileRow><MaxTileRow>2254</MaxTileRow><MinTileCol>347</MinTileCol><MaxTileCol>350</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4500</MinTileRow><MaxTileRow>4508</MaxTileRow><MinTileCol>695</MinTileCol><MaxTileCol>700</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>9000</MinTileRow><MaxTileRow>9016</MaxTileRow><MinTileCol>1390</MinTileCol><MaxTileCol>1401</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>18000</MinTileRow><MaxTileRow>18033</MaxTileRow><MinTileCol>2781</MinTileCol><MaxTileCol>2802</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>36000</MinTileRow><MaxTileRow>36067</MaxTileRow><MinTileCol>5562</MinTileCol><MaxTileCol>5604</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>72000</MinTileRow><MaxTileRow>72135</MaxTileRow><MinTileCol>11125</MinTileCol><MaxTileCol>11208</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>144000</MinTileRow><MaxTileRow>144271</MaxTileRow><MinTileCol>22250</MinTileCol><MaxTileCol>22416</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>70</MinTileRow><MaxTileRow>70</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>140</MinTileRow><MaxTileRow>140</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>281</MinTileRow><MaxTileRow>281</MaxTileRow><MinTileCol>43</MinTileCol><MaxTileCol>43</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title><ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.94 -17.6177</ows:LowerCorner><ows:UpperCorner>-149.74 -17.4614</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-06-23-73484627</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>562</MinTileRow><MaxTileRow>562</MaxTileRow><MinTileCol>85</MinTileCol><MaxTileCol>86</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>1124</MinTileRow><MaxTileRow>1125</MaxTileRow><MinTileCol>171</MinTileCol><MaxTileCol>172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>2249</MinTileRow><MaxTileRow>2251</MaxTileRow><MinTileCol>342</MinTileCol><MaxTileCol>344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>4499</MinTileRow><MaxTileRow>4503</MaxTileRow><MinTileCol>684</MinTileCol><MaxTileCol>688</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>8999</MinTileRow><MaxTileRow>9006</MaxTileRow><MinTileCol>1368</MinTileCol><MaxTileCol>1377</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>17998</MinTileRow><MaxTileRow>18013</MaxTileRow><MinTileCol>2736</MinTileCol><MaxTileCol>2754</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>35997</MinTileRow><MaxTileRow>36026</MaxTileRow><MinTileCol>5472</MinTileCol><MaxTileCol>5508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>71994</MinTileRow><MaxTileRow>72053</MaxTileRow><MinTileCol>10945</MinTileCol><MaxTileCol>11017</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>143989</MinTileRow><MaxTileRow>144107</MaxTileRow><MinTileCol>21890</MinTileCol><MaxTileCol>22034</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>4</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>8</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>17</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>35</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>70</MinTileRow><MaxTileRow>70</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>140</MinTileRow><MaxTileRow>140</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>21</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>281</MinTileRow><MaxTileRow>281</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>43</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de THONON 2014</ows:Title><ows:Abstract>Orthophotographies satellites de THONON issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.37484 46.225</ows:LowerCorner><ows:UpperCorner>6.6751 46.4588</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_THONON-2014-03-14-38423194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>362</MinTileRow><MaxTileRow>363</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>724</MinTileRow><MaxTileRow>726</MaxTileRow><MinTileCol>1060</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1449</MinTileRow><MaxTileRow>1453</MaxTileRow><MinTileCol>2120</MinTileCol><MaxTileCol>2123</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2899</MinTileRow><MaxTileRow>2906</MaxTileRow><MinTileCol>4241</MinTileCol><MaxTileCol>4247</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5799</MinTileRow><MaxTileRow>5813</MaxTileRow><MinTileCol>8482</MinTileCol><MaxTileCol>8495</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11598</MinTileRow><MaxTileRow>11627</MaxTileRow><MinTileCol>16964</MinTileCol><MaxTileCol>16990</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23196</MinTileRow><MaxTileRow>23255</MaxTileRow><MinTileCol>33928</MinTileCol><MaxTileCol>33981</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46392</MinTileRow><MaxTileRow>46510</MaxTileRow><MinTileCol>67857</MinTileCol><MaxTileCol>67962</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>92785</MinTileRow><MaxTileRow>93020</MaxTileRow><MinTileCol>135714</MinTileCol><MaxTileCol>135924</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>90</MinTileRow><MaxTileRow>90</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>181</MinTileRow><MaxTileRow>181</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TOULOUSE</ows:Title><ows:Abstract>Orthophotographies satellites de TOULOUSE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>1.2931 43.5162</ows:LowerCorner><ows:UpperCorner>1.5357 43.7075</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOULOUSE-2013-09-24-39443785</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>515</MinTileCol><MaxTileCol>516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>746</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1031</MinTileCol><MaxTileCol>1032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1493</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2062</MinTileCol><MaxTileCol>2065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2987</MinTileRow><MaxTileRow>2994</MaxTileRow><MinTileCol>4125</MinTileCol><MaxTileCol>4131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5975</MinTileRow><MaxTileRow>5988</MaxTileRow><MinTileCol>8250</MinTileCol><MaxTileCol>8262</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11950</MinTileRow><MaxTileRow>11977</MaxTileRow><MinTileCol>16501</MinTileCol><MaxTileCol>16524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23901</MinTileRow><MaxTileRow>23954</MaxTileRow><MinTileCol>33002</MinTileCol><MaxTileCol>33048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47803</MinTileRow><MaxTileRow>47908</MaxTileRow><MinTileCol>66005</MinTileCol><MaxTileCol>66096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95607</MinTileRow><MaxTileRow>95816</MaxTileRow><MinTileCol>132010</MinTileCol><MaxTileCol>132193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>257</MinTileCol><MaxTileCol>258</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TOURS</ows:Title><ows:Abstract>Orthophotographies satellites de TOURS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.556018 47.2512</ows:LowerCorner><ows:UpperCorner>0.802185 47.4828</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOURS-2013-08-02-39798149</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>716</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1432</MinTileRow><MaxTileRow>1436</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2865</MinTileRow><MaxTileRow>2873</MaxTileRow><MinTileCol>4108</MinTileCol><MaxTileCol>4114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5730</MinTileRow><MaxTileRow>5746</MaxTileRow><MinTileCol>8217</MinTileCol><MaxTileCol>8229</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11460</MinTileRow><MaxTileRow>11492</MaxTileRow><MinTileCol>16435</MinTileCol><MaxTileCol>16458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22920</MinTileRow><MaxTileRow>22985</MaxTileRow><MinTileCol>32871</MinTileCol><MaxTileCol>32916</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45840</MinTileRow><MaxTileRow>45971</MaxTileRow><MinTileCol>65743</MinTileCol><MaxTileCol>65832</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91680</MinTileRow><MaxTileRow>91942</MaxTileRow><MinTileCol>131487</MinTileCol><MaxTileCol>131664</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TOURS</ows:Title><ows:Abstract>Orthophotographies satellites de TOURS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.543019 47.2395</ows:LowerCorner><ows:UpperCorner>0.818399 47.4878</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOURS-2013-08-02-39820877</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>514</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>716</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1028</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1432</MinTileRow><MaxTileRow>1436</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2865</MinTileRow><MaxTileRow>2873</MaxTileRow><MinTileCol>4108</MinTileCol><MaxTileCol>4114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5730</MinTileRow><MaxTileRow>5746</MaxTileRow><MinTileCol>8216</MinTileCol><MaxTileCol>8229</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11460</MinTileRow><MaxTileRow>11492</MaxTileRow><MinTileCol>16433</MinTileCol><MaxTileCol>16458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22920</MinTileRow><MaxTileRow>22985</MaxTileRow><MinTileCol>32867</MinTileCol><MaxTileCol>32916</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45840</MinTileRow><MaxTileRow>45971</MaxTileRow><MinTileCol>65734</MinTileCol><MaxTileCol>65832</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91680</MinTileRow><MaxTileRow>91942</MaxTileRow><MinTileCol>131468</MinTileCol><MaxTileCol>131664</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>257</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de TROYES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de TROYES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.92867 48.195</ows:LowerCorner><ows:UpperCorner>4.22934 48.3956</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TROYES-2014-03-13-38890074</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1046</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1417</MinTileRow><MaxTileRow>1420</MaxTileRow><MinTileCol>2092</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2834</MinTileRow><MaxTileRow>2841</MaxTileRow><MinTileCol>4185</MinTileCol><MaxTileCol>4192</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5668</MinTileRow><MaxTileRow>5682</MaxTileRow><MinTileCol>8370</MinTileCol><MaxTileCol>8384</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11336</MinTileRow><MaxTileRow>11364</MaxTileRow><MinTileCol>16741</MinTileCol><MaxTileCol>16768</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22673</MinTileRow><MaxTileRow>22728</MaxTileRow><MinTileCol>33483</MinTileCol><MaxTileCol>33537</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45346</MinTileRow><MaxTileRow>45456</MaxTileRow><MinTileCol>66966</MinTileCol><MaxTileCol>67074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90692</MinTileRow><MaxTileRow>90912</MaxTileRow><MinTileCol>133932</MinTileCol><MaxTileCol>134149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de URGENCE-SERTIT1-MONTPELLIER 2014</ows:Title><ows:Abstract>Orthophotographies satellites de URGENCE-SERTIT1-MONTPELLIER issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.8452 43.8201</ows:LowerCorner><ows:UpperCorner>4.13498 44.0207</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_URGENCE-SERTIT1-2014-09-06-38295824</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>744</MinTileRow><MaxTileRow>746</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1489</MinTileRow><MaxTileRow>1492</MaxTileRow><MinTileCol>2091</MinTileCol><MaxTileCol>2095</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2978</MinTileRow><MaxTileRow>2984</MaxTileRow><MinTileCol>4183</MinTileCol><MaxTileCol>4190</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5956</MinTileRow><MaxTileRow>5968</MaxTileRow><MinTileCol>8366</MinTileCol><MaxTileCol>8380</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11912</MinTileRow><MaxTileRow>11937</MaxTileRow><MinTileCol>16733</MinTileCol><MaxTileCol>16760</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23824</MinTileRow><MaxTileRow>23875</MaxTileRow><MinTileCol>33467</MinTileCol><MaxTileCol>33520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47649</MinTileRow><MaxTileRow>47751</MaxTileRow><MinTileCol>66935</MinTileCol><MaxTileCol>67041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95299</MinTileRow><MaxTileRow>95502</MaxTileRow><MinTileCol>133871</MinTileCol><MaxTileCol>134082</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de URGENCE-SERTIT2-MONTPELLIER 2014</ows:Title><ows:Abstract>Orthophotographies satellites de URGENCE-SERTIT2-MONTPELLIER issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.79113 43.5059</ows:LowerCorner><ows:UpperCorner>4.06673 43.7061</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_URGENCE-SERTIT2-MONTPELLIER-2014-10-01-38767194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1494</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2091</MinTileCol><MaxTileCol>2094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2988</MinTileRow><MaxTileRow>2994</MaxTileRow><MinTileCol>4182</MinTileCol><MaxTileCol>4188</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5976</MinTileRow><MaxTileRow>5988</MaxTileRow><MinTileCol>8364</MinTileCol><MaxTileCol>8377</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11952</MinTileRow><MaxTileRow>11977</MaxTileRow><MinTileCol>16729</MinTileCol><MaxTileCol>16754</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23904</MinTileRow><MaxTileRow>23954</MaxTileRow><MinTileCol>33458</MinTileCol><MaxTileCol>33508</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47809</MinTileRow><MaxTileRow>47908</MaxTileRow><MinTileCol>66916</MinTileCol><MaxTileCol>67016</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95619</MinTileRow><MaxTileRow>95817</MaxTileRow><MinTileCol>133832</MinTileCol><MaxTileCol>134033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VALENCE-VILLE</ows:Title><ows:Abstract>Orthophotographies satellites de VALENCE-VILLE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.84523 44.7605</ows:LowerCorner><ows:UpperCorner>5.09397 44.9988</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VALENCE-VILLE-2013-07-22-39000453</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>368</MinTileRow><MaxTileRow>369</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>736</MinTileRow><MaxTileRow>738</MaxTileRow><MinTileCol>1051</MinTileCol><MaxTileCol>1052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1473</MinTileRow><MaxTileRow>1477</MaxTileRow><MinTileCol>2103</MinTileCol><MaxTileCol>2105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2946</MinTileRow><MaxTileRow>2954</MaxTileRow><MinTileCol>4206</MinTileCol><MaxTileCol>4211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5893</MinTileRow><MaxTileRow>5908</MaxTileRow><MinTileCol>8412</MinTileCol><MaxTileCol>8423</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11787</MinTileRow><MaxTileRow>11817</MaxTileRow><MinTileCol>16825</MinTileCol><MaxTileCol>16847</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23575</MinTileRow><MaxTileRow>23635</MaxTileRow><MinTileCol>33650</MinTileCol><MaxTileCol>33694</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47150</MinTileRow><MaxTileRow>47271</MaxTileRow><MinTileCol>67301</MinTileCol><MaxTileCol>67388</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>94301</MinTileRow><MaxTileRow>94543</MaxTileRow><MinTileCol>134602</MinTileCol><MaxTileCol>134777</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>92</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>184</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VALENCIENNES 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VALENCIENNES issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.35016 50.2583</ows:LowerCorner><ows:UpperCorner>3.6468 50.457</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VALENCIENNES-2014-03-12-39290819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>346</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>690</MinTileRow><MaxTileRow>692</MaxTileRow><MinTileCol>1043</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1381</MinTileRow><MaxTileRow>1384</MaxTileRow><MinTileCol>2086</MinTileCol><MaxTileCol>2089</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2762</MinTileRow><MaxTileRow>2769</MaxTileRow><MinTileCol>4172</MinTileCol><MaxTileCol>4178</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5524</MinTileRow><MaxTileRow>5538</MaxTileRow><MinTileCol>8344</MinTileCol><MaxTileCol>8357</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11048</MinTileRow><MaxTileRow>11076</MaxTileRow><MinTileCol>16688</MinTileCol><MaxTileCol>16715</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22096</MinTileRow><MaxTileRow>22152</MaxTileRow><MinTileCol>33377</MinTileCol><MaxTileCol>33431</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44192</MinTileRow><MaxTileRow>44305</MaxTileRow><MinTileCol>66755</MinTileCol><MaxTileCol>66863</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88384</MinTileRow><MaxTileRow>88611</MaxTileRow><MinTileCol>133511</MinTileCol><MaxTileCol>133727</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>86</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>173</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.35835 48.2528</ows:LowerCorner><ows:UpperCorner>5.65201 48.4746</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-07-09-38822078</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>1054</MinTileCol><MaxTileCol>1056</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1419</MaxTileRow><MinTileCol>2109</MinTileCol><MaxTileCol>2112</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2831</MinTileRow><MaxTileRow>2839</MaxTileRow><MinTileCol>4218</MinTileCol><MaxTileCol>4224</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5663</MinTileRow><MaxTileRow>5678</MaxTileRow><MinTileCol>8436</MinTileCol><MaxTileCol>8448</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11326</MinTileRow><MaxTileRow>11356</MaxTileRow><MinTileCol>16872</MinTileCol><MaxTileCol>16897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22652</MinTileRow><MaxTileRow>22712</MaxTileRow><MinTileCol>33744</MinTileCol><MaxTileCol>33795</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45305</MinTileRow><MaxTileRow>45424</MaxTileRow><MinTileCol>67488</MinTileCol><MaxTileCol>67591</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90611</MinTileRow><MaxTileRow>90848</MaxTileRow><MinTileCol>134977</MinTileCol><MaxTileCol>135183</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.59827 47.9231</ows:LowerCorner><ows:UpperCorner>5.89499 48.2175</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-07-16-38677570</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1055</MinTileCol><MaxTileCol>1057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1425</MaxTileRow><MinTileCol>2111</MinTileCol><MaxTileCol>2114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2850</MaxTileRow><MinTileCol>4223</MinTileCol><MaxTileCol>4229</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5680</MinTileRow><MaxTileRow>5700</MaxTileRow><MinTileCol>8447</MinTileCol><MaxTileCol>8459</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11361</MinTileRow><MaxTileRow>11401</MaxTileRow><MinTileCol>16894</MinTileCol><MaxTileCol>16919</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22723</MinTileRow><MaxTileRow>22802</MaxTileRow><MinTileCol>33788</MinTileCol><MaxTileCol>33839</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45447</MinTileRow><MaxTileRow>45604</MaxTileRow><MinTileCol>67576</MinTileCol><MaxTileCol>67679</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90894</MinTileRow><MaxTileRow>91208</MaxTileRow><MinTileCol>135153</MinTileCol><MaxTileCol>135358</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.94969 47.9763</ows:LowerCorner><ows:UpperCorner>6.28673 48.452</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-12-12-38860453</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1416</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2115</MinTileCol><MaxTileCol>2119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2832</MinTileRow><MaxTileRow>2848</MaxTileRow><MinTileCol>4231</MinTileCol><MaxTileCol>4238</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5664</MinTileRow><MaxTileRow>5696</MaxTileRow><MinTileCol>8463</MinTileCol><MaxTileCol>8477</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11329</MinTileRow><MaxTileRow>11393</MaxTileRow><MinTileCol>16927</MinTileCol><MaxTileCol>16954</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22659</MinTileRow><MaxTileRow>22787</MaxTileRow><MinTileCol>33854</MinTileCol><MaxTileCol>33909</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45319</MinTileRow><MaxTileRow>45575</MaxTileRow><MinTileCol>67709</MinTileCol><MaxTileCol>67819</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90638</MinTileRow><MaxTileRow>91150</MaxTileRow><MinTileCol>135418</MinTileCol><MaxTileCol>135639</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.19131 47.9783</ows:LowerCorner><ows:UpperCorner>6.52445 48.3647</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-12-12-38886444</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1059</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1417</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2118</MinTileCol><MaxTileCol>2122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2835</MinTileRow><MaxTileRow>2848</MaxTileRow><MinTileCol>4237</MinTileCol><MaxTileCol>4244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5670</MinTileRow><MaxTileRow>5696</MaxTileRow><MinTileCol>8474</MinTileCol><MaxTileCol>8488</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11341</MinTileRow><MaxTileRow>11393</MaxTileRow><MinTileCol>16948</MinTileCol><MaxTileCol>16976</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22683</MinTileRow><MaxTileRow>22786</MaxTileRow><MinTileCol>33897</MinTileCol><MaxTileCol>33952</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45367</MinTileRow><MaxTileRow>45573</MaxTileRow><MinTileCol>67794</MinTileCol><MaxTileCol>67905</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90734</MinTileRow><MaxTileRow>91147</MaxTileRow><MinTileCol>135589</MinTileCol><MaxTileCol>135811</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.41545 48.1233</ows:LowerCorner><ows:UpperCorner>6.79035 48.4935</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37723693</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1060</MinTileCol><MaxTileCol>1062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1421</MaxTileRow><MinTileCol>2121</MinTileCol><MaxTileCol>2125</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2830</MinTileRow><MaxTileRow>2843</MaxTileRow><MinTileCol>4242</MinTileCol><MaxTileCol>4250</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5661</MinTileRow><MaxTileRow>5686</MaxTileRow><MinTileCol>8484</MinTileCol><MaxTileCol>8500</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11323</MinTileRow><MaxTileRow>11372</MaxTileRow><MinTileCol>16969</MinTileCol><MaxTileCol>17000</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22647</MinTileRow><MaxTileRow>22745</MaxTileRow><MinTileCol>33938</MinTileCol><MaxTileCol>34001</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45295</MinTileRow><MaxTileRow>45490</MaxTileRow><MinTileCol>67877</MinTileCol><MaxTileCol>68002</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90590</MinTileRow><MaxTileRow>90981</MaxTileRow><MinTileCol>135754</MinTileCol><MaxTileCol>136004</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.18126 48.257</ows:LowerCorner><ows:UpperCorner>6.53048 48.4553</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37743428</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>1059</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1416</MinTileRow><MaxTileRow>1419</MaxTileRow><MinTileCol>2118</MinTileCol><MaxTileCol>2122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2832</MinTileRow><MaxTileRow>2838</MaxTileRow><MinTileCol>4236</MinTileCol><MaxTileCol>4244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5664</MinTileRow><MaxTileRow>5677</MaxTileRow><MinTileCol>8473</MinTileCol><MaxTileCol>8488</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11328</MinTileRow><MaxTileRow>11354</MaxTileRow><MinTileCol>16947</MinTileCol><MaxTileCol>16977</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22657</MinTileRow><MaxTileRow>22709</MaxTileRow><MinTileCol>33894</MinTileCol><MaxTileCol>33955</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45314</MinTileRow><MaxTileRow>45419</MaxTileRow><MinTileCol>67788</MinTileCol><MaxTileCol>67911</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90629</MinTileRow><MaxTileRow>90839</MaxTileRow><MinTileCol>135576</MinTileCol><MaxTileCol>135822</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.18483 47.8696</ows:LowerCorner><ows:UpperCorner>6.53631 48.14</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37759948</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1059</MinTileCol><MaxTileCol>1061</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1421</MinTileRow><MaxTileRow>1426</MaxTileRow><MinTileCol>2118</MinTileCol><MaxTileCol>2122</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2842</MinTileRow><MaxTileRow>2852</MaxTileRow><MinTileCol>4236</MinTileCol><MaxTileCol>4244</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5685</MinTileRow><MaxTileRow>5704</MaxTileRow><MinTileCol>8473</MinTileCol><MaxTileCol>8488</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11371</MinTileRow><MaxTileRow>11408</MaxTileRow><MinTileCol>16947</MinTileCol><MaxTileCol>16977</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22743</MinTileRow><MaxTileRow>22816</MaxTileRow><MinTileCol>33894</MinTileCol><MaxTileCol>33955</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45486</MinTileRow><MaxTileRow>45633</MaxTileRow><MinTileCol>67789</MinTileCol><MaxTileCol>67910</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90972</MinTileRow><MaxTileRow>91266</MaxTileRow><MinTileCol>135579</MinTileCol><MaxTileCol>135820</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.94619 47.9126</ows:LowerCorner><ows:UpperCorner>6.29345 48.1283</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37771194</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1421</MinTileRow><MaxTileRow>1425</MaxTileRow><MinTileCol>2115</MinTileCol><MaxTileCol>2119</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2843</MinTileRow><MaxTileRow>2850</MaxTileRow><MinTileCol>4231</MinTileCol><MaxTileCol>4239</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5686</MinTileRow><MaxTileRow>5701</MaxTileRow><MinTileCol>8462</MinTileCol><MaxTileCol>8478</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11373</MinTileRow><MaxTileRow>11402</MaxTileRow><MinTileCol>16925</MinTileCol><MaxTileCol>16956</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22746</MinTileRow><MaxTileRow>22804</MaxTileRow><MinTileCol>33851</MinTileCol><MaxTileCol>33912</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45492</MinTileRow><MaxTileRow>45609</MaxTileRow><MinTileCol>67702</MinTileCol><MaxTileCol>67825</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90985</MinTileRow><MaxTileRow>91219</MaxTileRow><MinTileCol>135405</MinTileCol><MaxTileCol>135650</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.70947 48</ows:LowerCorner><ows:UpperCorner>6.07476 48.5297</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39301090</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>711</MaxTileRow><MinTileCol>1056</MinTileCol><MaxTileCol>1058</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1414</MinTileRow><MaxTileRow>1423</MaxTileRow><MinTileCol>2113</MinTileCol><MaxTileCol>2116</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2829</MinTileRow><MaxTileRow>2847</MaxTileRow><MinTileCol>4226</MinTileCol><MaxTileCol>4233</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5659</MinTileRow><MaxTileRow>5695</MaxTileRow><MinTileCol>8452</MinTileCol><MaxTileCol>8467</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11318</MinTileRow><MaxTileRow>11390</MaxTileRow><MinTileCol>16904</MinTileCol><MaxTileCol>16934</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22637</MinTileRow><MaxTileRow>22781</MaxTileRow><MinTileCol>33809</MinTileCol><MaxTileCol>33868</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45274</MinTileRow><MaxTileRow>45562</MaxTileRow><MinTileCol>67618</MinTileCol><MaxTileCol>67737</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90548</MinTileRow><MaxTileRow>91125</MaxTileRow><MinTileCol>135237</MinTileCol><MaxTileCol>135475</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.48878 48.1592</ows:LowerCorner><ows:UpperCorner>5.81666 48.5168</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39317136</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>528</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1055</MinTileCol><MaxTileCol>1057</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1421</MaxTileRow><MinTileCol>2110</MinTileCol><MaxTileCol>2114</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2830</MinTileRow><MaxTileRow>2842</MaxTileRow><MinTileCol>4221</MinTileCol><MaxTileCol>4228</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5660</MinTileRow><MaxTileRow>5684</MaxTileRow><MinTileCol>8442</MinTileCol><MaxTileCol>8456</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11320</MinTileRow><MaxTileRow>11368</MaxTileRow><MinTileCol>16884</MinTileCol><MaxTileCol>16912</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22641</MinTileRow><MaxTileRow>22737</MaxTileRow><MinTileCol>33768</MinTileCol><MaxTileCol>33825</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45282</MinTileRow><MaxTileRow>45475</MaxTileRow><MinTileCol>67537</MinTileCol><MaxTileCol>67650</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90565</MinTileRow><MaxTileRow>90951</MaxTileRow><MinTileCol>135074</MinTileCol><MaxTileCol>135300</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.35916 48.2717</ows:LowerCorner><ows:UpperCorner>5.61101 48.4657</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39329697</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>527</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>1054</MinTileCol><MaxTileCol>1055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1419</MaxTileRow><MinTileCol>2109</MinTileCol><MaxTileCol>2111</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2831</MinTileRow><MaxTileRow>2838</MaxTileRow><MinTileCol>4218</MinTileCol><MaxTileCol>4223</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5663</MinTileRow><MaxTileRow>5676</MaxTileRow><MinTileCol>8436</MinTileCol><MaxTileCol>8447</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11327</MinTileRow><MaxTileRow>11353</MaxTileRow><MinTileCol>16872</MinTileCol><MaxTileCol>16894</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22654</MinTileRow><MaxTileRow>22707</MaxTileRow><MinTileCol>33744</MinTileCol><MaxTileCol>33789</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45309</MinTileRow><MaxTileRow>45414</MaxTileRow><MinTileCol>67488</MinTileCol><MaxTileCol>67579</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90619</MinTileRow><MaxTileRow>90828</MaxTileRow><MinTileCol>134977</MinTileCol><MaxTileCol>135158</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.68827 47.7918</ows:LowerCorner><ows:UpperCorner>7.01162 48.1969</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38207694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1062</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1427</MaxTileRow><MinTileCol>2124</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2841</MinTileRow><MaxTileRow>2854</MaxTileRow><MinTileCol>4248</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5682</MinTileRow><MaxTileRow>5709</MaxTileRow><MinTileCol>8497</MinTileCol><MaxTileCol>8510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11364</MinTileRow><MaxTileRow>11418</MaxTileRow><MinTileCol>16994</MinTileCol><MaxTileCol>17021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22728</MinTileRow><MaxTileRow>22836</MaxTileRow><MinTileCol>33988</MinTileCol><MaxTileCol>34043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45457</MinTileRow><MaxTileRow>45673</MaxTileRow><MinTileCol>67977</MinTileCol><MaxTileCol>68086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90914</MinTileRow><MaxTileRow>91346</MaxTileRow><MinTileCol>135954</MinTileCol><MaxTileCol>136173</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.66406 47.8286</ows:LowerCorner><ows:UpperCorner>6.98542 48.2067</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38228685</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1061</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1426</MaxTileRow><MinTileCol>2123</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2840</MinTileRow><MaxTileRow>2853</MaxTileRow><MinTileCol>4247</MinTileCol><MaxTileCol>4254</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5681</MinTileRow><MaxTileRow>5706</MaxTileRow><MinTileCol>8495</MinTileCol><MaxTileCol>8509</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11363</MinTileRow><MaxTileRow>11413</MaxTileRow><MinTileCol>16991</MinTileCol><MaxTileCol>17018</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22726</MinTileRow><MaxTileRow>22827</MaxTileRow><MinTileCol>33983</MinTileCol><MaxTileCol>34037</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45453</MinTileRow><MaxTileRow>45654</MaxTileRow><MinTileCol>67966</MinTileCol><MaxTileCol>68075</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90906</MinTileRow><MaxTileRow>91308</MaxTileRow><MinTileCol>135933</MinTileCol><MaxTileCol>136150</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.42425 47.8451</ows:LowerCorner><ows:UpperCorner>6.75433 48.1781</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38242319</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>713</MaxTileRow><MinTileCol>1060</MinTileCol><MaxTileCol>1062</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1426</MaxTileRow><MinTileCol>2121</MinTileCol><MaxTileCol>2124</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2841</MinTileRow><MaxTileRow>2852</MaxTileRow><MinTileCol>4242</MinTileCol><MaxTileCol>4249</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5683</MinTileRow><MaxTileRow>5705</MaxTileRow><MinTileCol>8484</MinTileCol><MaxTileCol>8498</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11366</MinTileRow><MaxTileRow>11411</MaxTileRow><MinTileCol>16969</MinTileCol><MaxTileCol>16997</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22732</MinTileRow><MaxTileRow>22823</MaxTileRow><MinTileCol>33939</MinTileCol><MaxTileCol>33995</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45465</MinTileRow><MaxTileRow>45646</MaxTileRow><MinTileCol>67879</MinTileCol><MaxTileCol>67990</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90930</MinTileRow><MaxTileRow>91293</MaxTileRow><MinTileCol>135759</MinTileCol><MaxTileCol>135981</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.73117 47.9014</ows:LowerCorner><ows:UpperCorner>6.03366 48.0525</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38254819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>711</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1056</MinTileCol><MaxTileCol>1058</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1422</MinTileRow><MaxTileRow>1425</MaxTileRow><MinTileCol>2113</MinTileCol><MaxTileCol>2116</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2845</MinTileRow><MaxTileRow>2850</MaxTileRow><MinTileCol>4226</MinTileCol><MaxTileCol>4233</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5691</MinTileRow><MaxTileRow>5701</MaxTileRow><MinTileCol>8453</MinTileCol><MaxTileCol>8466</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11383</MinTileRow><MaxTileRow>11403</MaxTileRow><MinTileCol>16906</MinTileCol><MaxTileCol>16933</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22766</MinTileRow><MaxTileRow>22807</MaxTileRow><MinTileCol>33812</MinTileCol><MaxTileCol>33866</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45533</MinTileRow><MaxTileRow>45614</MaxTileRow><MinTileCol>67624</MinTileCol><MaxTileCol>67732</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91067</MinTileRow><MaxTileRow>91228</MaxTileRow><MinTileCol>135249</MinTileCol><MaxTileCol>135465</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.65555 48.287</ows:LowerCorner><ows:UpperCorner>7.00727 48.4956</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-09-23-39365201</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>354</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>709</MaxTileRow><MinTileCol>1061</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1415</MinTileRow><MaxTileRow>1418</MaxTileRow><MinTileCol>2123</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2831</MinTileRow><MaxTileRow>2837</MaxTileRow><MinTileCol>4247</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5662</MinTileRow><MaxTileRow>5675</MaxTileRow><MinTileCol>8494</MinTileCol><MaxTileCol>8510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11324</MinTileRow><MaxTileRow>11351</MaxTileRow><MinTileCol>16989</MinTileCol><MaxTileCol>17020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22648</MinTileRow><MaxTileRow>22702</MaxTileRow><MinTileCol>33979</MinTileCol><MaxTileCol>34041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45296</MinTileRow><MaxTileRow>45405</MaxTileRow><MinTileCol>67959</MinTileCol><MaxTileCol>68083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90593</MinTileRow><MaxTileRow>90811</MaxTileRow><MinTileCol>135918</MinTileCol><MaxTileCol>136166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.87393 48.1353</ows:LowerCorner><ows:UpperCorner>7.24062 48.5332</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-09-27-37544300</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>353</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>707</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1065</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1414</MinTileRow><MaxTileRow>1421</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2829</MinTileRow><MaxTileRow>2842</MaxTileRow><MinTileCol>4252</MinTileCol><MaxTileCol>4260</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5659</MinTileRow><MaxTileRow>5685</MaxTileRow><MinTileCol>8505</MinTileCol><MaxTileCol>8520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11318</MinTileRow><MaxTileRow>11371</MaxTileRow><MinTileCol>17010</MinTileCol><MaxTileCol>17041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22636</MinTileRow><MaxTileRow>22742</MaxTileRow><MinTileCol>34021</MinTileCol><MaxTileCol>34083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45273</MinTileRow><MaxTileRow>45485</MaxTileRow><MinTileCol>68042</MinTileCol><MaxTileCol>68166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90547</MinTileRow><MaxTileRow>90971</MaxTileRow><MinTileCol>136085</MinTileCol><MaxTileCol>136333</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.65778 48.1252</ows:LowerCorner><ows:UpperCorner>6.99564 48.3424</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-10-03-37792694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>354</MinTileRow><MaxTileRow>355</MaxTileRow><MinTileCol>530</MinTileCol><MaxTileCol>531</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>708</MinTileRow><MaxTileRow>710</MaxTileRow><MinTileCol>1061</MinTileCol><MaxTileCol>1063</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1417</MinTileRow><MaxTileRow>1421</MaxTileRow><MinTileCol>2123</MinTileCol><MaxTileCol>2127</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2835</MinTileRow><MaxTileRow>2843</MaxTileRow><MinTileCol>4247</MinTileCol><MaxTileCol>4255</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5671</MinTileRow><MaxTileRow>5686</MaxTileRow><MinTileCol>8495</MinTileCol><MaxTileCol>8510</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11343</MinTileRow><MaxTileRow>11373</MaxTileRow><MinTileCol>16990</MinTileCol><MaxTileCol>17020</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22687</MinTileRow><MaxTileRow>22747</MaxTileRow><MinTileCol>33980</MinTileCol><MaxTileCol>34040</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45375</MinTileRow><MaxTileRow>45494</MaxTileRow><MinTileCol>67961</MinTileCol><MaxTileCol>68080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90751</MinTileRow><MaxTileRow>90988</MaxTileRow><MinTileCol>135922</MinTileCol><MaxTileCol>136161</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>177</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title><ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.87417 47.9588</ows:LowerCorner><ows:UpperCorner>7.11913 48.1913</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-10-28-38201950</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>355</MinTileRow><MaxTileRow>356</MaxTileRow><MinTileCol>531</MinTileCol><MaxTileCol>532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>710</MinTileRow><MaxTileRow>712</MaxTileRow><MinTileCol>1063</MinTileCol><MaxTileCol>1064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1420</MinTileRow><MaxTileRow>1424</MaxTileRow><MinTileCol>2126</MinTileCol><MaxTileCol>2129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2841</MinTileRow><MaxTileRow>2848</MaxTileRow><MinTileCol>4252</MinTileCol><MaxTileCol>4258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5682</MinTileRow><MaxTileRow>5697</MaxTileRow><MinTileCol>8505</MinTileCol><MaxTileCol>8516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11364</MinTileRow><MaxTileRow>11395</MaxTileRow><MinTileCol>17010</MinTileCol><MaxTileCol>17032</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22729</MinTileRow><MaxTileRow>22791</MaxTileRow><MinTileCol>34021</MinTileCol><MaxTileCol>34064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45458</MinTileRow><MaxTileRow>45582</MaxTileRow><MinTileCol>68043</MinTileCol><MaxTileCol>68128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90916</MinTileRow><MaxTileRow>91164</MaxTileRow><MinTileCol>136086</MinTileCol><MaxTileCol>136256</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>177</MinTileRow><MaxTileRow>178</MaxTileRow><MinTileCol>265</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de BESANCON 2015</ows:Title><ows:Abstract>Orthophotographies satellites de BESANCON issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.86429 47.1413</ows:LowerCorner><ows:UpperCorner>6.16602 47.3468</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_BESANCON-2015-04-21-38418324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>717</MinTileRow><MaxTileRow>719</MaxTileRow><MinTileCol>1057</MinTileCol><MaxTileCol>1059</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1434</MinTileRow><MaxTileRow>1438</MaxTileRow><MinTileCol>2114</MinTileCol><MaxTileCol>2118</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2869</MinTileRow><MaxTileRow>2876</MaxTileRow><MinTileCol>4229</MinTileCol><MaxTileCol>4236</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5739</MinTileRow><MaxTileRow>5753</MaxTileRow><MinTileCol>8459</MinTileCol><MaxTileCol>8472</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11479</MinTileRow><MaxTileRow>11506</MaxTileRow><MinTileCol>16918</MinTileCol><MaxTileCol>16944</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22959</MinTileRow><MaxTileRow>23012</MaxTileRow><MinTileCol>33836</MinTileCol><MaxTileCol>33889</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45919</MinTileRow><MaxTileRow>46025</MaxTileRow><MinTileCol>67672</MinTileCol><MaxTileCol>67779</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91838</MinTileRow><MaxTileRow>92051</MaxTileRow><MinTileCol>135344</MinTileCol><MaxTileCol>135559</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de CHAMBERY 2015</ows:Title><ows:Abstract>Orthophotographies satellites de CHAMBERY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.76741 45.5131</ows:LowerCorner><ows:UpperCorner>6.06042 45.7274</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_CHAMBERY-2015-04-08-38471694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>365</MinTileRow><MaxTileRow>366</MaxTileRow><MinTileCol>528</MinTileCol><MaxTileCol>529</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>730</MinTileRow><MaxTileRow>732</MaxTileRow><MinTileCol>1056</MinTileCol><MaxTileCol>1058</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1461</MinTileRow><MaxTileRow>1465</MaxTileRow><MinTileCol>2113</MinTileCol><MaxTileCol>2116</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2923</MinTileRow><MaxTileRow>2930</MaxTileRow><MinTileCol>4227</MinTileCol><MaxTileCol>4233</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5846</MinTileRow><MaxTileRow>5860</MaxTileRow><MinTileCol>8454</MinTileCol><MaxTileCol>8467</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11693</MinTileRow><MaxTileRow>11720</MaxTileRow><MinTileCol>16909</MinTileCol><MaxTileCol>16935</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23386</MinTileRow><MaxTileRow>23441</MaxTileRow><MinTileCol>33818</MinTileCol><MaxTileCol>33870</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>46772</MinTileRow><MaxTileRow>46882</MaxTileRow><MinTileCol>67636</MinTileCol><MaxTileCol>67740</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>93545</MinTileRow><MaxTileRow>93765</MaxTileRow><MinTileCol>135272</MinTileCol><MaxTileCol>135480</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>45</MinTileRow><MaxTileRow>45</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>91</MinTileRow><MaxTileRow>91</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>182</MinTileRow><MaxTileRow>183</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>264</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de DIJON 2015</ows:Title><ows:Abstract>Orthophotographies satellites de DIJON issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.90247 47.1993</ows:LowerCorner><ows:UpperCorner>5.21433 47.4027</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_DIJON-2015-08-21-39131694</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>525</MinTileCol><MaxTileCol>526</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>716</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>1051</MinTileCol><MaxTileCol>1053</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1433</MinTileRow><MaxTileRow>1437</MaxTileRow><MinTileCol>2103</MinTileCol><MaxTileCol>2107</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2867</MinTileRow><MaxTileRow>2874</MaxTileRow><MinTileCol>4207</MinTileCol><MaxTileCol>4214</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5735</MinTileRow><MaxTileRow>5749</MaxTileRow><MinTileCol>8415</MinTileCol><MaxTileCol>8429</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11471</MinTileRow><MaxTileRow>11498</MaxTileRow><MinTileCol>16830</MinTileCol><MaxTileCol>16858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22942</MinTileRow><MaxTileRow>22997</MaxTileRow><MinTileCol>33661</MinTileCol><MaxTileCol>33716</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45885</MinTileRow><MaxTileRow>45994</MaxTileRow><MinTileCol>67322</MinTileCol><MaxTileCol>67432</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91771</MinTileRow><MaxTileRow>91989</MaxTileRow><MinTileCol>134645</MinTileCol><MaxTileCol>134864</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>262</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-11 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-11 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.90155 42.9083</ows:LowerCorner><ows:UpperCorner>3.13537 43.2501</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-11-2015-04-07-38942400</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>753</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1501</MinTileRow><MaxTileRow>1506</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3002</MinTileRow><MaxTileRow>3012</MaxTileRow><MinTileCol>4162</MinTileCol><MaxTileCol>4167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6004</MinTileRow><MaxTileRow>6025</MaxTileRow><MinTileCol>8324</MinTileCol><MaxTileCol>8334</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12009</MinTileRow><MaxTileRow>12051</MaxTileRow><MinTileCol>16648</MinTileCol><MaxTileCol>16669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24018</MinTileRow><MaxTileRow>24103</MaxTileRow><MinTileCol>33296</MinTileCol><MaxTileCol>33338</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48037</MinTileRow><MaxTileRow>48207</MaxTileRow><MinTileCol>66592</MinTileCol><MaxTileCol>66677</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96075</MinTileRow><MaxTileRow>96415</MaxTileRow><MinTileCol>133184</MinTileCol><MaxTileCol>133355</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-11 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-11 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.09807 43.0247</ows:LowerCorner><ows:UpperCorner>3.35748 43.3491</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-11-2015-04-13-39158760</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>521</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>752</MaxTileRow><MinTileCol>1041</MinTileCol><MaxTileCol>1043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1499</MinTileRow><MaxTileRow>1504</MaxTileRow><MinTileCol>2083</MinTileCol><MaxTileCol>2086</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2999</MinTileRow><MaxTileRow>3009</MaxTileRow><MinTileCol>4166</MinTileCol><MaxTileCol>4172</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5998</MinTileRow><MaxTileRow>6018</MaxTileRow><MinTileCol>8332</MinTileCol><MaxTileCol>8344</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11997</MinTileRow><MaxTileRow>12037</MaxTileRow><MinTileCol>16665</MinTileCol><MaxTileCol>16689</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23994</MinTileRow><MaxTileRow>24074</MaxTileRow><MinTileCol>33331</MinTileCol><MaxTileCol>33379</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47988</MinTileRow><MaxTileRow>48149</MaxTileRow><MinTileCol>66663</MinTileCol><MaxTileCol>66758</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95976</MinTileRow><MaxTileRow>96299</MaxTileRow><MinTileCol>133327</MinTileCol><MaxTileCol>133517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-30 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-30 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.96342 43.4592</ows:LowerCorner><ows:UpperCorner>4.2266 43.6417</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-30-2015-04-14-38723641</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>748</MaxTileRow><MinTileCol>1046</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1497</MaxTileRow><MinTileCol>2093</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2995</MaxTileRow><MinTileCol>4186</MinTileCol><MaxTileCol>4192</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5980</MinTileRow><MaxTileRow>5991</MaxTileRow><MinTileCol>8372</MinTileCol><MaxTileCol>8384</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11960</MinTileRow><MaxTileRow>11983</MaxTileRow><MinTileCol>16744</MinTileCol><MaxTileCol>16768</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23920</MinTileRow><MaxTileRow>23966</MaxTileRow><MinTileCol>33489</MinTileCol><MaxTileCol>33537</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47841</MinTileRow><MaxTileRow>47932</MaxTileRow><MinTileCol>66979</MinTileCol><MaxTileCol>67074</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95683</MinTileRow><MaxTileRow>95865</MaxTileRow><MinTileCol>133958</MinTileCol><MaxTileCol>134149</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-30 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-30 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>4.18498 43.4205</ows:LowerCorner><ows:UpperCorner>4.44844 43.5946</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-30-2015-05-30-38528655</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>523</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1047</MinTileCol><MaxTileCol>1049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2095</MinTileCol><MaxTileCol>2098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2991</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4191</MinTileCol><MaxTileCol>4197</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5983</MinTileRow><MaxTileRow>5994</MaxTileRow><MinTileCol>8382</MinTileCol><MaxTileCol>8394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11966</MinTileRow><MaxTileRow>11988</MaxTileRow><MinTileCol>16764</MinTileCol><MaxTileCol>16788</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23932</MinTileRow><MaxTileRow>23976</MaxTileRow><MinTileCol>33529</MinTileCol><MaxTileCol>33577</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47864</MinTileRow><MaxTileRow>47952</MaxTileRow><MinTileCol>67059</MinTileCol><MaxTileCol>67154</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95729</MinTileRow><MaxTileRow>95904</MaxTileRow><MinTileCol>134119</MinTileCol><MaxTileCol>134309</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.32005 43.2667</ows:LowerCorner><ows:UpperCorner>3.56801 43.4476</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-04-07-38970438</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2996</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4171</MinTileCol><MaxTileCol>4177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5992</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8343</MinTileCol><MaxTileCol>8354</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11984</MinTileRow><MaxTileRow>12007</MaxTileRow><MinTileCol>16686</MinTileCol><MaxTileCol>16708</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23969</MinTileRow><MaxTileRow>24014</MaxTileRow><MinTileCol>33372</MinTileCol><MaxTileCol>33417</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47939</MinTileRow><MaxTileRow>48029</MaxTileRow><MinTileCol>66744</MinTileCol><MaxTileCol>66835</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95878</MinTileRow><MaxTileRow>96058</MaxTileRow><MinTileCol>133489</MinTileCol><MaxTileCol>133670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.7531 43.4345</ows:LowerCorner><ows:UpperCorner>4.00329 43.6254</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-04-14-38698406</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>373</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>747</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1046</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1495</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2093</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2990</MinTileRow><MaxTileRow>2996</MaxTileRow><MinTileCol>4181</MinTileCol><MaxTileCol>4187</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5981</MinTileRow><MaxTileRow>5993</MaxTileRow><MinTileCol>8362</MinTileCol><MaxTileCol>8374</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11962</MinTileRow><MaxTileRow>11986</MaxTileRow><MinTileCol>16725</MinTileCol><MaxTileCol>16748</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23925</MinTileRow><MaxTileRow>23972</MaxTileRow><MinTileCol>33451</MinTileCol><MaxTileCol>33496</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47850</MinTileRow><MaxTileRow>47944</MaxTileRow><MinTileCol>66902</MinTileCol><MaxTileCol>66993</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95700</MinTileRow><MaxTileRow>95888</MaxTileRow><MinTileCol>133804</MinTileCol><MaxTileCol>133987</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.31985 43.2307</ows:LowerCorner><ows:UpperCorner>3.56651 43.2947</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-09-39191323</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>521</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>750</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1042</MinTileCol><MaxTileCol>1044</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1500</MinTileRow><MaxTileRow>1501</MaxTileRow><MinTileCol>2085</MinTileCol><MaxTileCol>2088</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3000</MinTileRow><MaxTileRow>3002</MaxTileRow><MinTileCol>4171</MinTileCol><MaxTileCol>4177</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6001</MinTileRow><MaxTileRow>6005</MaxTileRow><MinTileCol>8343</MinTileCol><MaxTileCol>8354</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12003</MinTileRow><MaxTileRow>12011</MaxTileRow><MinTileCol>16686</MinTileCol><MaxTileCol>16708</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24007</MinTileRow><MaxTileRow>24023</MaxTileRow><MinTileCol>33372</MinTileCol><MaxTileCol>33417</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48015</MinTileRow><MaxTileRow>48046</MaxTileRow><MinTileCol>66744</MinTileCol><MaxTileCol>66834</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96030</MinTileRow><MaxTileRow>96093</MaxTileRow><MinTileCol>133489</MinTileCol><MaxTileCol>133669</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.53022 43.3643</ows:LowerCorner><ows:UpperCorner>3.79175 43.5548</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-09-39210437</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1496</MinTileRow><MaxTileRow>1499</MaxTileRow><MinTileCol>2088</MinTileCol><MaxTileCol>2091</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2992</MinTileRow><MaxTileRow>2998</MaxTileRow><MinTileCol>4176</MinTileCol><MaxTileCol>4182</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5985</MinTileRow><MaxTileRow>5997</MaxTileRow><MinTileCol>8352</MinTileCol><MaxTileCol>8364</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11971</MinTileRow><MaxTileRow>11995</MaxTileRow><MinTileCol>16705</MinTileCol><MaxTileCol>16729</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23942</MinTileRow><MaxTileRow>23990</MaxTileRow><MinTileCol>33410</MinTileCol><MaxTileCol>33458</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47885</MinTileRow><MaxTileRow>47980</MaxTileRow><MinTileCol>66821</MinTileCol><MaxTileCol>66916</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95771</MinTileRow><MaxTileRow>95960</MaxTileRow><MinTileCol>133642</MinTileCol><MaxTileCol>133833</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.75263 43.3997</ows:LowerCorner><ows:UpperCorner>3.86462 43.4635</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-30-38506451</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>374</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>748</MinTileRow><MaxTileRow>749</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1497</MinTileRow><MaxTileRow>1498</MaxTileRow><MinTileCol>2090</MinTileCol><MaxTileCol>2091</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2995</MinTileRow><MaxTileRow>2997</MaxTileRow><MinTileCol>4181</MinTileCol><MaxTileCol>4183</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5991</MinTileRow><MaxTileRow>5995</MaxTileRow><MinTileCol>8362</MinTileCol><MaxTileCol>8367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11982</MinTileRow><MaxTileRow>11990</MaxTileRow><MinTileCol>16725</MinTileCol><MaxTileCol>16735</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23965</MinTileRow><MaxTileRow>23981</MaxTileRow><MinTileCol>33451</MinTileCol><MaxTileCol>33471</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47930</MinTileRow><MaxTileRow>47962</MaxTileRow><MinTileCol>66902</MinTileCol><MaxTileCol>66943</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95861</MinTileRow><MaxTileRow>95924</MaxTileRow><MinTileCol>133804</MinTileCol><MaxTileCol>133886</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.52931 43.2657</ows:LowerCorner><ows:UpperCorner>3.74018 43.3928</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-06-18-38713200</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>522</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>750</MaxTileRow><MinTileCol>1044</MinTileCol><MaxTileCol>1045</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1498</MinTileRow><MaxTileRow>1500</MaxTileRow><MinTileCol>2088</MinTileCol><MaxTileCol>2090</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2997</MinTileRow><MaxTileRow>3001</MaxTileRow><MinTileCol>4176</MinTileCol><MaxTileCol>4181</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5995</MinTileRow><MaxTileRow>6003</MaxTileRow><MinTileCol>8352</MinTileCol><MaxTileCol>8362</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11991</MinTileRow><MaxTileRow>12007</MaxTileRow><MinTileCol>16705</MinTileCol><MaxTileCol>16724</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23983</MinTileRow><MaxTileRow>24014</MaxTileRow><MinTileCol>33410</MinTileCol><MaxTileCol>33448</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47966</MinTileRow><MaxTileRow>48029</MaxTileRow><MinTileCol>66820</MinTileCol><MaxTileCol>66897</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95932</MinTileRow><MaxTileRow>96058</MaxTileRow><MinTileCol>133641</MinTileCol><MaxTileCol>133795</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-66 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-66 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.90209 42.5847</ows:LowerCorner><ows:UpperCorner>3.08567 42.9354</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-66-2015-03-31-39184457</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>376</MinTileRow><MaxTileRow>377</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>753</MinTileRow><MaxTileRow>755</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1506</MinTileRow><MaxTileRow>1511</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3012</MinTileRow><MaxTileRow>3023</MaxTileRow><MinTileCol>4162</MinTileCol><MaxTileCol>4166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6024</MinTileRow><MaxTileRow>6046</MaxTileRow><MinTileCol>8324</MinTileCol><MaxTileCol>8332</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12048</MinTileRow><MaxTileRow>12092</MaxTileRow><MinTileCol>16648</MinTileCol><MaxTileCol>16664</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24097</MinTileRow><MaxTileRow>24184</MaxTileRow><MinTileCol>33296</MinTileCol><MaxTileCol>33329</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48194</MinTileRow><MaxTileRow>48368</MaxTileRow><MinTileCol>66592</MinTileCol><MaxTileCol>66659</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96388</MinTileRow><MaxTileRow>96736</MaxTileRow><MinTileCol>133185</MinTileCol><MaxTileCol>133319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-66 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-66 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>2.93914 42.5217</ows:LowerCorner><ows:UpperCorner>3.10954 42.6117</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-66-2015-03-31-39189628</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>377</MinTileRow><MaxTileRow>378</MaxTileRow><MinTileCol>520</MinTileCol><MaxTileCol>520</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>755</MinTileRow><MaxTileRow>756</MaxTileRow><MinTileCol>1040</MinTileCol><MaxTileCol>1041</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1511</MinTileRow><MaxTileRow>1512</MaxTileRow><MinTileCol>2081</MinTileCol><MaxTileCol>2083</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3022</MinTileRow><MaxTileRow>3024</MaxTileRow><MinTileCol>4162</MinTileCol><MaxTileCol>4166</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6044</MinTileRow><MaxTileRow>6049</MaxTileRow><MinTileCol>8325</MinTileCol><MaxTileCol>8333</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12088</MinTileRow><MaxTileRow>12099</MaxTileRow><MinTileCol>16651</MinTileCol><MaxTileCol>16667</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24177</MinTileRow><MaxTileRow>24199</MaxTileRow><MinTileCol>33303</MinTileCol><MaxTileCol>33334</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48355</MinTileRow><MaxTileRow>48399</MaxTileRow><MinTileCol>66606</MinTileCol><MaxTileCol>66668</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96710</MinTileRow><MaxTileRow>96798</MaxTileRow><MinTileCol>133212</MinTileCol><MaxTileCol>133336</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>47</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>94</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>188</MinTileRow><MaxTileRow>189</MaxTileRow><MinTileCol>260</MinTileCol><MaxTileCol>260</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-MARSEILLE 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-MARSEILLE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>5.26015 43.1306</ows:LowerCorner><ows:UpperCorner>5.54009 43.3613</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-MARSEILLE-2015-07-28-38286819</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>374</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>526</MinTileCol><MaxTileCol>527</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>749</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1053</MinTileCol><MaxTileCol>1055</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1499</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2107</MinTileCol><MaxTileCol>2110</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2998</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4215</MinTileCol><MaxTileCol>4221</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5997</MinTileRow><MaxTileRow>6012</MaxTileRow><MinTileCol>8431</MinTileCol><MaxTileCol>8443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11995</MinTileRow><MaxTileRow>12024</MaxTileRow><MinTileCol>16863</MinTileCol><MaxTileCol>16887</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23991</MinTileRow><MaxTileRow>24048</MaxTileRow><MinTileCol>33726</MinTileCol><MaxTileCol>33775</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47982</MinTileRow><MaxTileRow>48097</MaxTileRow><MinTileCol>67452</MinTileCol><MaxTileCol>67550</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95965</MinTileRow><MaxTileRow>96194</MaxTileRow><MinTileCol>134904</MinTileCol><MaxTileCol>135101</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>131</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>263</MinTileCol><MaxTileCol>263</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de LITTO-MED-NICE 2015</ows:Title><ows:Abstract>Orthophotographies satellites de LITTO-MED-NICE issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>7.20249 43.6355</ows:LowerCorner><ows:UpperCorner>7.47773 43.8435</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-NICE-2015-09-05-38284619</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>372</MinTileRow><MaxTileRow>373</MaxTileRow><MinTileCol>532</MinTileCol><MaxTileCol>533</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>745</MinTileRow><MaxTileRow>747</MaxTileRow><MinTileCol>1064</MinTileCol><MaxTileCol>1066</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1491</MinTileRow><MaxTileRow>1495</MaxTileRow><MinTileCol>2129</MinTileCol><MaxTileCol>2133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2983</MinTileRow><MaxTileRow>2990</MaxTileRow><MinTileCol>4259</MinTileCol><MaxTileCol>4266</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5967</MinTileRow><MaxTileRow>5980</MaxTileRow><MinTileCol>8519</MinTileCol><MaxTileCol>8532</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11935</MinTileRow><MaxTileRow>11960</MaxTileRow><MinTileCol>17039</MinTileCol><MaxTileCol>17064</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>23871</MinTileRow><MaxTileRow>23920</MaxTileRow><MinTileCol>34079</MinTileCol><MaxTileCol>34129</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>47743</MinTileRow><MaxTileRow>47841</MaxTileRow><MinTileCol>68158</MinTileCol><MaxTileCol>68258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>95487</MinTileRow><MaxTileRow>95682</MaxTileRow><MinTileCol>136317</MinTileCol><MaxTileCol>136517</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>133</MinTileCol><MaxTileCol>133</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>186</MinTileRow><MaxTileRow>186</MaxTileRow><MinTileCol>266</MinTileCol><MaxTileCol>266</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de NANCY 2015</ows:Title><ows:Abstract>Orthophotographies satellites de NANCY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>6.06543 48.5853</ows:LowerCorner><ows:UpperCorner>6.38925 48.7825</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_NANCY-2015-08-03-38434699</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>352</MinTileRow><MaxTileRow>353</MaxTileRow><MinTileCol>529</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>705</MinTileRow><MaxTileRow>706</MaxTileRow><MinTileCol>1058</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1410</MinTileRow><MaxTileRow>1413</MaxTileRow><MinTileCol>2117</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2820</MinTileRow><MaxTileRow>2827</MaxTileRow><MinTileCol>4234</MinTileCol><MaxTileCol>4241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5641</MinTileRow><MaxTileRow>5655</MaxTileRow><MinTileCol>8468</MinTileCol><MaxTileCol>8482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11283</MinTileRow><MaxTileRow>11310</MaxTileRow><MinTileCol>16936</MinTileCol><MaxTileCol>16964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22567</MinTileRow><MaxTileRow>22621</MaxTileRow><MinTileCol>33873</MinTileCol><MaxTileCol>33929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45134</MinTileRow><MaxTileRow>45242</MaxTileRow><MinTileCol>67747</MinTileCol><MaxTileCol>67858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>90268</MinTileRow><MaxTileRow>90484</MaxTileRow><MinTileCol>135494</MinTileCol><MaxTileCol>135716</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>33</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>66</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>88</MinTileRow><MaxTileRow>88</MaxTileRow><MinTileCol>132</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>176</MinTileRow><MaxTileRow>176</MaxTileRow><MinTileCol>264</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de REIMS 2015</ows:Title><ows:Abstract>Orthophotographies satellites de REIMS issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>3.86368 49.1583</ows:LowerCorner><ows:UpperCorner>4.15554 49.3404</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_REIMS-2015-04-19-39272324</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>350</MaxTileRow><MinTileCol>522</MinTileCol><MaxTileCol>523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>701</MaxTileRow><MinTileCol>1045</MinTileCol><MaxTileCol>1047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1400</MinTileRow><MaxTileRow>1403</MaxTileRow><MinTileCol>2091</MinTileCol><MaxTileCol>2095</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2801</MinTileRow><MaxTileRow>2807</MaxTileRow><MinTileCol>4183</MinTileCol><MaxTileCol>4190</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5602</MinTileRow><MaxTileRow>5615</MaxTileRow><MinTileCol>8367</MinTileCol><MaxTileCol>8381</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11205</MinTileRow><MaxTileRow>11231</MaxTileRow><MinTileCol>16735</MinTileCol><MaxTileCol>16762</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22411</MinTileRow><MaxTileRow>22462</MaxTileRow><MinTileCol>33471</MinTileCol><MaxTileCol>33524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44823</MinTileRow><MaxTileRow>44925</MaxTileRow><MinTileCol>66942</MinTileCol><MaxTileCol>67049</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89646</MinTileRow><MaxTileRow>89850</MaxTileRow><MinTileCol>133885</MinTileCol><MaxTileCol>134098</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>10</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>21</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>43</MaxTileRow><MinTileCol>65</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>87</MaxTileRow><MinTileCol>130</MinTileCol><MaxTileCol>130</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>175</MaxTileRow><MinTileCol>261</MinTileCol><MaxTileCol>261</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAINT-NAZAIRE-LE-CROISIC 2015</ows:Title><ows:Abstract>Orthophotographies satellites de SAINT-NAZAIRE-LE-CROISIC issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.58003 47.2127</ows:LowerCorner><ows:UpperCorner>-2.30332 47.3508</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_SAINT-NAZAIRE-LE-CROISIC-2015-04-22-40893058</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>505</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>717</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1010</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1434</MinTileRow><MaxTileRow>1436</MaxTileRow><MinTileCol>2018</MinTileCol><MaxTileCol>2021</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2869</MinTileRow><MaxTileRow>2873</MaxTileRow><MinTileCol>4037</MinTileCol><MaxTileCol>4043</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5739</MinTileRow><MaxTileRow>5747</MaxTileRow><MinTileCol>8075</MinTileCol><MaxTileCol>8087</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11479</MinTileRow><MaxTileRow>11495</MaxTileRow><MinTileCol>16150</MinTileCol><MaxTileCol>16174</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22959</MinTileRow><MaxTileRow>22991</MaxTileRow><MinTileCol>32300</MinTileCol><MaxTileCol>32348</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45918</MinTileRow><MaxTileRow>45983</MaxTileRow><MinTileCol>64600</MinTileCol><MaxTileCol>64697</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91836</MinTileRow><MaxTileRow>91966</MaxTileRow><MinTileCol>129200</MinTileCol><MaxTileCol>129394</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>252</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de SAINT-NAZAIRE-LE-CROISIC 2015</ows:Title><ows:Abstract>Orthophotographies satellites de SAINT-NAZAIRE-LE-CROISIC issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.39415 47.1945</ows:LowerCorner><ows:UpperCorner>-2.08976 47.3513</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_SAINT-NAZAIRE-LE-CROISIC-2015-04-23-40506444</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>358</MinTileRow><MaxTileRow>359</MaxTileRow><MinTileCol>505</MinTileCol><MaxTileCol>506</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>717</MinTileRow><MaxTileRow>718</MaxTileRow><MinTileCol>1010</MinTileCol><MaxTileCol>1012</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1434</MinTileRow><MaxTileRow>1437</MaxTileRow><MinTileCol>2020</MinTileCol><MaxTileCol>2024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2869</MinTileRow><MaxTileRow>2874</MaxTileRow><MinTileCol>4041</MinTileCol><MaxTileCol>4048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5739</MinTileRow><MaxTileRow>5748</MaxTileRow><MinTileCol>8083</MinTileCol><MaxTileCol>8096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11479</MinTileRow><MaxTileRow>11497</MaxTileRow><MinTileCol>16166</MinTileCol><MaxTileCol>16193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22958</MinTileRow><MaxTileRow>22995</MaxTileRow><MinTileCol>32332</MinTileCol><MaxTileCol>32386</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>45917</MinTileRow><MaxTileRow>45991</MaxTileRow><MinTileCol>64665</MinTileCol><MaxTileCol>64773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>91834</MinTileRow><MaxTileRow>91983</MaxTileRow><MinTileCol>129331</MinTileCol><MaxTileCol>129546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>3</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>7</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>15</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>22</MinTileRow><MaxTileRow>22</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>31</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>44</MinTileRow><MaxTileRow>44</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>63</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>89</MinTileRow><MaxTileRow>89</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>126</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>179</MinTileRow><MaxTileRow>179</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>253</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2013</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner><ows:UpperCorner>55.8741 51.9098</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>332</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>685</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>664</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1370</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1329</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2741</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>2658</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5482</MinTileRow><MaxTileRow>9189</MaxTileRow><MinTileCol>5317</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10965</MinTileRow><MaxTileRow>18379</MaxTileRow><MinTileCol>10634</MinTileCol><MaxTileCol>21469</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21931</MinTileRow><MaxTileRow>36759</MaxTileRow><MinTileCol>21268</MinTileCol><MaxTileCol>42939</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43862</MinTileRow><MaxTileRow>73518</MaxTileRow><MinTileCol>42536</MinTileCol><MaxTileCol>85878</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87725</MinTileRow><MaxTileRow>147037</MaxTileRow><MinTileCol>85072</MinTileCol><MaxTileCol>171757</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>20</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>83</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>166</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2014</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner><ows:UpperCorner>55.8632 51.1477</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>85</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>171</MinTileCol><MaxTileCol>1341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>342</MinTileCol><MaxTileCol>2683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2737</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>684</MinTileCol><MaxTileCol>5367</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5474</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>1368</MinTileCol><MaxTileCol>10734</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10948</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>2736</MinTileCol><MaxTileCol>21468</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21897</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>5472</MinTileCol><MaxTileCol>42937</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43794</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>10945</MinTileCol><MaxTileCol>85875</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87588</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>21890</MinTileCol><MaxTileCol>171750</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>5</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>10</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>17</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>20</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>5</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>10</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>21</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>42</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>PLEIADES - 2015</ows:Title><ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-2.58003 43.1306</ows:LowerCorner><ows:UpperCorner>6.38925 49.3404</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2015</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>350</MinTileRow><MaxTileRow>375</MaxTileRow><MinTileCol>504</MinTileCol><MaxTileCol>530</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>700</MinTileRow><MaxTileRow>751</MaxTileRow><MinTileCol>1009</MinTileCol><MaxTileCol>1060</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1400</MinTileRow><MaxTileRow>1503</MaxTileRow><MinTileCol>2018</MinTileCol><MaxTileCol>2120</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2801</MinTileRow><MaxTileRow>3006</MaxTileRow><MinTileCol>4037</MinTileCol><MaxTileCol>4241</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5602</MinTileRow><MaxTileRow>6012</MaxTileRow><MinTileCol>8075</MinTileCol><MaxTileCol>8482</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11205</MinTileRow><MaxTileRow>12024</MaxTileRow><MinTileCol>16150</MinTileCol><MaxTileCol>16964</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22411</MinTileRow><MaxTileRow>24048</MaxTileRow><MinTileCol>32300</MinTileCol><MaxTileCol>33929</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44823</MinTileRow><MaxTileRow>48097</MaxTileRow><MinTileCol>64600</MinTileCol><MaxTileCol>67858</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>89646</MinTileRow><MaxTileRow>96194</MaxTileRow><MinTileCol>129200</MinTileCol><MaxTileCol>135716</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>63</MinTileCol><MaxTileCol>66</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>87</MinTileRow><MaxTileRow>93</MaxTileRow><MinTileCol>126</MinTileCol><MaxTileCol>132</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>175</MinTileRow><MaxTileRow>187</MaxTileRow><MinTileCol>252</MinTileCol><MaxTileCol>265</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Couche RapidEye 2010</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner><ows:UpperCorner>10.961 50.9218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2010</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1531</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3063</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6126</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12253</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17277</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>RAPIDEYE - 2011</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner><ows:UpperCorner>10.961 51.1752</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2011</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>383</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>767</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1534</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3068</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6137</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12275</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>270</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Millésime Spot 2013</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2013</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.563585 44.8809</ows:LowerCorner><ows:UpperCorner>4.29191 50.3879</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2013</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>368</MaxTileRow><MinTileCol>513</MinTileCol><MaxTileCol>524</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>691</MinTileRow><MaxTileRow>737</MaxTileRow><MinTileCol>1027</MinTileCol><MaxTileCol>1048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1382</MinTileRow><MaxTileRow>1475</MaxTileRow><MinTileCol>2054</MinTileCol><MaxTileCol>2096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2764</MinTileRow><MaxTileRow>2950</MaxTileRow><MinTileCol>4109</MinTileCol><MaxTileCol>4193</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5528</MinTileRow><MaxTileRow>5900</MaxTileRow><MinTileCol>8219</MinTileCol><MaxTileCol>8386</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11057</MinTileRow><MaxTileRow>11800</MaxTileRow><MinTileCol>16438</MinTileCol><MaxTileCol>16773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22115</MinTileRow><MaxTileRow>23600</MaxTileRow><MinTileCol>32876</MinTileCol><MaxTileCol>33547</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44231</MinTileRow><MaxTileRow>47201</MaxTileRow><MinTileCol>65752</MinTileCol><MaxTileCol>67094</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>46</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>65</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>92</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>131</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>184</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>262</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>SPOT 6 - 2014</ows:Title><ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner><ows:UpperCorner>9.69656 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2014</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4314</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8629</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12246</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17258</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24493</MaxTileRow><MinTileCol>31823</MinTileCol><MaxTileCol>34516</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48986</MaxTileRow><MinTileCol>63646</MinTileCol><MaxTileCol>69033</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT05 2015</ows:Title><ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT05 issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.36 41.303</ows:LowerCorner><ows:UpperCorner>9.72838 51.106</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2015</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>497</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>994</MinTileCol><MaxTileCol>1078</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1369</MinTileRow><MaxTileRow>1530</MaxTileRow><MinTileCol>1988</MinTileCol><MaxTileCol>2157</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2738</MinTileRow><MaxTileRow>3061</MaxTileRow><MinTileCol>3977</MinTileCol><MaxTileCol>4315</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5476</MinTileRow><MaxTileRow>6123</MaxTileRow><MinTileCol>7955</MinTileCol><MaxTileCol>8630</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10953</MinTileRow><MaxTileRow>12247</MaxTileRow><MinTileCol>15911</MinTileCol><MaxTileCol>17261</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21907</MinTileRow><MaxTileRow>24494</MaxTileRow><MinTileCol>31822</MinTileCol><MaxTileCol>34523</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43815</MinTileRow><MaxTileRow>48989</MaxTileRow><MinTileCol>63645</MinTileCol><MaxTileCol>69047</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Photographies aériennes</ows:Title><ows:Abstract>Photographies aériennes</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-180 -86</ows:LowerCorner><ows:UpperCorner>180 84</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>31</MinTileRow><MaxTileRow>1024</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1024</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>62</MinTileRow><MaxTileRow>2048</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>2048</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>125</MinTileRow><MaxTileRow>4096</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>4096</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2739</MinTileRow><MaxTileRow>4628</MaxTileRow><MinTileCol>41</MinTileCol><MaxTileCol>7917</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5478</MinTileRow><MaxTileRow>9256</MaxTileRow><MinTileCol>82</MinTileCol><MaxTileCol>15835</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10956</MinTileRow><MaxTileRow>18513</MaxTileRow><MinTileCol>165</MinTileCol><MaxTileCol>31670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>21912</MinTileRow><MaxTileRow>37026</MaxTileRow><MinTileCol>330</MinTileCol><MaxTileCol>63341</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>43825</MinTileRow><MaxTileRow>74052</MaxTileRow><MinTileCol>660</MinTileCol><MaxTileCol>126683</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>87651</MinTileRow><MaxTileRow>148105</MaxTileRow><MinTileCol>1320</MinTileCol><MaxTileCol>253366</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>19</TileMatrix><MinTileRow>175302</MinTileRow><MaxTileRow>294060</MaxTileRow><MinTileCol>170159</MinTileCol><MaxTileCol>343473</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>4</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>8</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>16</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>32</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>64</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>3</MinTileRow><MaxTileRow>128</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>7</MinTileRow><MaxTileRow>256</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>15</MinTileRow><MaxTileRow>512</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>512</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title><ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>0.153356 42.8709</ows:LowerCorner><ows:UpperCorner>0.431872 43.0755</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS.GEOSUD</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>375</MinTileRow><MaxTileRow>376</MaxTileRow><MinTileCol>512</MinTileCol><MaxTileCol>513</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>751</MinTileRow><MaxTileRow>753</MaxTileRow><MinTileCol>1024</MinTileCol><MaxTileCol>1026</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1503</MinTileRow><MaxTileRow>1506</MaxTileRow><MinTileCol>2049</MinTileCol><MaxTileCol>2052</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>3007</MinTileRow><MaxTileRow>3013</MaxTileRow><MinTileCol>4099</MinTileCol><MaxTileCol>4105</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>6015</MinTileRow><MaxTileRow>6027</MaxTileRow><MinTileCol>8198</MinTileCol><MaxTileCol>8211</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>12031</MinTileRow><MaxTileRow>12055</MaxTileRow><MinTileCol>16397</MinTileCol><MaxTileCol>16422</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>24062</MinTileRow><MaxTileRow>24111</MaxTileRow><MinTileCol>32795</MinTileCol><MaxTileCol>32845</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>48124</MinTileRow><MaxTileRow>48223</MaxTileRow><MinTileCol>65591</MinTileCol><MaxTileCol>65690</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>96249</MinTileRow><MaxTileRow>96447</MaxTileRow><MinTileCol>131183</MinTileCol><MaxTileCol>131381</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>2</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>4</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>8</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>11</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>16</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>23</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>32</MinTileCol><MaxTileCol>32</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>46</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>64</MinTileCol><MaxTileCol>64</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>93</MinTileRow><MaxTileRow>94</MaxTileRow><MinTileCol>128</MinTileCol><MaxTileCol>128</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>187</MinTileRow><MaxTileRow>188</MaxTileRow><MinTileCol>256</MinTileCol><MaxTileCol>256</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>GEOSUD / RapidEye (2011)</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner><ows:UpperCorner>10.961 50.9218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS.RAPIDEYE</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>383</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>767</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1534</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3068</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6137</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12275</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>270</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Photographies aériennes historiques 1950-1965</ows:Title><ows:Abstract>Couverture en photographes aériennes de la France des années 50, telle qu'elle se présentait avant les grands aménagements des années 60. Cette couverture a été réalisée à partir des photographies aériennes historiques numérisées par l'IGN. Elle est disponible sur la France métropolitaine, les départements et régions d'Outre-Mer (la Guyane n’est que partiellement couverte) et les collectivités d’Outre-Mer sauf la Polynésie française. Les photographies sont orthorectifiées, c'est-à-dire corrigées des déformations dues à la prise de vue et au relief du terrain, et assemblées pour fournir une visualisation continue superposable avec le Référentiel à Grande Echelle (RGE®).</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-54.259 -21.3906</ows:LowerCorner><ows:UpperCorner>55.5833 50.5054</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS1950-1965</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>357</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>690</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>715</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1380</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1430</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2760</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>2861</MinTileCol><MaxTileCol>5360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5520</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>5722</MinTileCol><MaxTileCol>10721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11041</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>11445</MinTileCol><MaxTileCol>21443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22082</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>22890</MinTileCol><MaxTileCol>42886</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44164</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>45781</MinTileCol><MaxTileCol>85773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88329</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>91563</MinTileCol><MaxTileCol>171546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>22</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>44</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>89</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>178</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>Photographies aériennes historiques 1950-1965</ows:Title><ows:Abstract>Couverture en photographes aériennes de la France des années 50, telle qu'elle se présentait avant les grands aménagements des années 60. Cette couverture a été réalisée à partir des photographies aériennes historiques numérisées par l'IGN. Elle est disponible sur la France métropolitaine, les départements et régions d'Outre-Mer (la Guyane n’est que partiellement couverte) et les collectivités d’Outre-Mer sauf la Polynésie française. Les photographies sont orthorectifiées, c'est-à-dire corrigées des déformations dues à la prise de vue et au relief du terrain, et assemblées pour fournir une visualisation continue superposable avec le Référentiel à Grande Echelle (RGE®).</ows:Abstract><ows:Keywords><ows:Keyword>Photographies</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-54.259 -21.3906</ows:LowerCorner><ows:UpperCorner>55.5833 50.5054</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>PHOTOHISTO-1950-1965_PYR-PNG_WLD_WM_WMTS4</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/png</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>345</MinTileRow><MaxTileRow>574</MaxTileRow><MinTileCol>357</MinTileCol><MaxTileCol>670</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>690</MinTileRow><MaxTileRow>1148</MaxTileRow><MinTileCol>715</MinTileCol><MaxTileCol>1340</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1380</MinTileRow><MaxTileRow>2297</MaxTileRow><MinTileCol>1430</MinTileCol><MaxTileCol>2680</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2760</MinTileRow><MaxTileRow>4594</MaxTileRow><MinTileCol>2861</MinTileCol><MaxTileCol>5360</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5520</MinTileRow><MaxTileRow>9188</MaxTileRow><MinTileCol>5722</MinTileCol><MaxTileCol>10721</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>11041</MinTileRow><MaxTileRow>18377</MaxTileRow><MinTileCol>11445</MinTileCol><MaxTileCol>21443</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>16</TileMatrix><MinTileRow>22082</MinTileRow><MaxTileRow>36755</MaxTileRow><MinTileCol>22890</MinTileCol><MaxTileCol>42886</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>17</TileMatrix><MinTileRow>44164</MinTileRow><MaxTileRow>73511</MaxTileRow><MinTileCol>45781</MinTileCol><MaxTileCol>85773</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>18</TileMatrix><MinTileRow>88329</MinTileRow><MaxTileRow>147023</MaxTileRow><MinTileCol>91563</MinTileCol><MaxTileCol>171546</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>35</MaxTileRow><MinTileCol>22</MinTileCol><MaxTileCol>41</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>43</MinTileRow><MaxTileRow>71</MaxTileRow><MinTileCol>44</MinTileCol><MaxTileCol>83</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>86</MinTileRow><MaxTileRow>143</MaxTileRow><MinTileCol>89</MinTileCol><MaxTileCol>167</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>172</MinTileRow><MaxTileRow>287</MaxTileRow><MinTileCol>178</MinTileCol><MaxTileCol>335</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>GEOSUD / RapidEye (2010)</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner><ows:UpperCorner>10.961 50.9218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>RAPIDEYE_PYR-JPEG_WLD_WM_2010</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>382</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>539</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>765</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1079</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1531</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2159</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3063</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4319</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6126</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8638</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12253</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17277</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>134</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>269</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><Layer><ows:Title>GEOSUD / RapidEye (2011)</ows:Title><ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract><ows:Keywords><ows:Keyword>Images satellitaires</ows:Keyword></ows:Keywords><ows:WGS84BoundingBox><ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner><ows:UpperCorner>10.961 50.9218</ows:UpperCorner></ows:WGS84BoundingBox><ows:Identifier>RAPIDEYE_PYR-JPEG_WLD_WM_2011</ows:Identifier><Style isDefault="true"><ows:Title>Données Brutes</ows:Title><ows:Abstract>Données brutes sans changement de palette</ows:Abstract><ows:Keywords><ows:Keyword>Défaut</ows:Keyword></ows:Keywords><ows:Identifier>normal</ows:Identifier><LegendURL format="image/jpeg" height="200" maxScaleDenominator="100000000" minScaleDenominator="200" width="200" xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg"/></Style><Format>image/jpeg</Format><TileMatrixSetLink><TileMatrixSet>PM</TileMatrixSet><TileMatrixSetLimits><TileMatrixLimits><TileMatrix>0</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>0</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>1</TileMatrix><MinTileRow>0</MinTileRow><MaxTileRow>0</MaxTileRow><MinTileCol>0</MinTileCol><MaxTileCol>1</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>10</TileMatrix><MinTileRow>342</MinTileRow><MaxTileRow>383</MaxTileRow><MinTileCol>496</MinTileCol><MaxTileCol>540</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>11</TileMatrix><MinTileRow>684</MinTileRow><MaxTileRow>767</MaxTileRow><MinTileCol>993</MinTileCol><MaxTileCol>1080</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>12</TileMatrix><MinTileRow>1368</MinTileRow><MaxTileRow>1534</MaxTileRow><MinTileCol>1986</MinTileCol><MaxTileCol>2160</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>13</TileMatrix><MinTileRow>2736</MinTileRow><MaxTileRow>3068</MaxTileRow><MinTileCol>3972</MinTileCol><MaxTileCol>4321</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>14</TileMatrix><MinTileRow>5472</MinTileRow><MaxTileRow>6137</MaxTileRow><MinTileCol>7945</MinTileCol><MaxTileCol>8642</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>15</TileMatrix><MinTileRow>10944</MinTileRow><MaxTileRow>12275</MaxTileRow><MinTileCol>15890</MinTileCol><MaxTileCol>17285</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>2</TileMatrix><MinTileRow>1</MinTileRow><MaxTileRow>1</MaxTileRow><MinTileCol>1</MinTileCol><MaxTileCol>2</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>3</TileMatrix><MinTileRow>2</MinTileRow><MaxTileRow>2</MaxTileRow><MinTileCol>3</MinTileCol><MaxTileCol>4</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>4</TileMatrix><MinTileRow>5</MinTileRow><MaxTileRow>5</MaxTileRow><MinTileCol>7</MinTileCol><MaxTileCol>8</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>5</TileMatrix><MinTileRow>10</MinTileRow><MaxTileRow>11</MaxTileRow><MinTileCol>15</MinTileCol><MaxTileCol>16</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>6</TileMatrix><MinTileRow>21</MinTileRow><MaxTileRow>23</MaxTileRow><MinTileCol>31</MinTileCol><MaxTileCol>33</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>7</TileMatrix><MinTileRow>42</MinTileRow><MaxTileRow>47</MaxTileRow><MinTileCol>62</MinTileCol><MaxTileCol>67</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>8</TileMatrix><MinTileRow>85</MinTileRow><MaxTileRow>95</MaxTileRow><MinTileCol>124</MinTileCol><MaxTileCol>135</MaxTileCol></TileMatrixLimits><TileMatrixLimits><TileMatrix>9</TileMatrix><MinTileRow>171</MinTileRow><MaxTileRow>191</MaxTileRow><MinTileCol>248</MinTileCol><MaxTileCol>270</MaxTileCol></TileMatrixLimits></TileMatrixSetLimits></TileMatrixSetLink></Layer><TileMatrixSet><ows:Identifier>PM</ows:Identifier><ows:SupportedCRS>EPSG:3857</ows:SupportedCRS><TileMatrix><ows:Identifier>0</ows:Identifier><ScaleDenominator>559082264.0287178958533332</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1</MatrixWidth><MatrixHeight>1</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>1</ows:Identifier><ScaleDenominator>279541132.0143588959472254</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2</MatrixWidth><MatrixHeight>2</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>10</ows:Identifier><ScaleDenominator>545978.7734655447186469</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1024</MatrixWidth><MatrixHeight>1024</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>11</ows:Identifier><ScaleDenominator>272989.3867327723085907</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2048</MatrixWidth><MatrixHeight>2048</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>12</ows:Identifier><ScaleDenominator>136494.6933663861796617</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4096</MatrixWidth><MatrixHeight>4096</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>13</ows:Identifier><ScaleDenominator>68247.3466831930771477</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8192</MatrixWidth><MatrixHeight>8192</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>14</ows:Identifier><ScaleDenominator>34123.6733415965449154</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>16384</MatrixWidth><MatrixHeight>16384</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>15</ows:Identifier><ScaleDenominator>17061.8366707982724577</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>32768</MatrixWidth><MatrixHeight>32768</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>16</ows:Identifier><ScaleDenominator>8530.9183353991362289</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>65536</MatrixWidth><MatrixHeight>65536</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>17</ows:Identifier><ScaleDenominator>4265.4591676995681144</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>131072</MatrixWidth><MatrixHeight>131072</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>18</ows:Identifier><ScaleDenominator>2132.7295838497840572</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>262144</MatrixWidth><MatrixHeight>262144</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>19</ows:Identifier><ScaleDenominator>1066.3647919248918304</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>524288</MatrixWidth><MatrixHeight>524288</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>2</ows:Identifier><ScaleDenominator>139770566.0071793960087234</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4</MatrixWidth><MatrixHeight>4</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>20</ows:Identifier><ScaleDenominator>533.1823959624461134</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1048576</MatrixWidth><MatrixHeight>1048576</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>21</ows:Identifier><ScaleDenominator>266.5911979812228585</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2097152</MatrixWidth><MatrixHeight>2097152</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>3</ows:Identifier><ScaleDenominator>69885283.0035897239868063</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8</MatrixWidth><MatrixHeight>8</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>4</ows:Identifier><ScaleDenominator>34942641.5017948619934032</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>16</MatrixWidth><MatrixHeight>16</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>5</ows:Identifier><ScaleDenominator>17471320.7508974309967016</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>32</MatrixWidth><MatrixHeight>32</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>6</ows:Identifier><ScaleDenominator>8735660.3754487154983508</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>64</MatrixWidth><MatrixHeight>64</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>7</ows:Identifier><ScaleDenominator>4367830.1877243577491754</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>128</MatrixWidth><MatrixHeight>128</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>8</ows:Identifier><ScaleDenominator>2183915.0938621788745877</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>256</MatrixWidth><MatrixHeight>256</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>9</ows:Identifier><ScaleDenominator>1091957.5469310886252288</ScaleDenominator><TopLeftCorner>-20037508 20037508</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>512</MatrixWidth><MatrixHeight>512</MatrixHeight></TileMatrix></TileMatrixSet><TileMatrixSet><ows:Identifier>WGS84G</ows:Identifier><ows:SupportedCRS>IGNF:WGS84G</ows:SupportedCRS><TileMatrix><ows:Identifier>0</ows:Identifier><ScaleDenominator>279541132.0143588675418869</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2</MatrixWidth><MatrixHeight>1</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>1</ows:Identifier><ScaleDenominator>139770566.0071794337709434</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4</MatrixWidth><MatrixHeight>2</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>10</ows:Identifier><ScaleDenominator>272989.3867327723315839</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2048</MatrixWidth><MatrixHeight>1024</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>11</ows:Identifier><ScaleDenominator>136494.6933663861657919</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4096</MatrixWidth><MatrixHeight>2048</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>12</ows:Identifier><ScaleDenominator>68247.3466831930828960</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8192</MatrixWidth><MatrixHeight>4096</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>13</ows:Identifier><ScaleDenominator>34123.6733415965414480</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>16384</MatrixWidth><MatrixHeight>8192</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>14</ows:Identifier><ScaleDenominator>17061.8366707982707240</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>32768</MatrixWidth><MatrixHeight>16384</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>15</ows:Identifier><ScaleDenominator>8530.9183353991353620</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>65536</MatrixWidth><MatrixHeight>32768</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>16</ows:Identifier><ScaleDenominator>4265.4591676995676810</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>131072</MatrixWidth><MatrixHeight>65536</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>17</ows:Identifier><ScaleDenominator>2132.7295838497838405</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>262144</MatrixWidth><MatrixHeight>131072</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>18</ows:Identifier><ScaleDenominator>1066.3647919248919202</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>524288</MatrixWidth><MatrixHeight>262144</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>19</ows:Identifier><ScaleDenominator>533.1823959624459601</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1048576</MatrixWidth><MatrixHeight>524288</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>2</ows:Identifier><ScaleDenominator>69885283.0035897168854717</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8</MatrixWidth><MatrixHeight>4</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>3</ows:Identifier><ScaleDenominator>34942641.5017948584427359</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>16</MatrixWidth><MatrixHeight>8</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>4</ows:Identifier><ScaleDenominator>17471320.7508974292213679</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>32</MatrixWidth><MatrixHeight>16</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>5</ows:Identifier><ScaleDenominator>8735660.3754487146106840</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>64</MatrixWidth><MatrixHeight>32</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>6</ows:Identifier><ScaleDenominator>4367830.1877243573053420</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>128</MatrixWidth><MatrixHeight>64</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>7</ows:Identifier><ScaleDenominator>2183915.0938621786526710</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>256</MatrixWidth><MatrixHeight>128</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>8</ows:Identifier><ScaleDenominator>1091957.5469310893263355</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>512</MatrixWidth><MatrixHeight>256</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>9</ows:Identifier><ScaleDenominator>545978.7734655446631677</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1024</MatrixWidth><MatrixHeight>512</MatrixHeight></TileMatrix></TileMatrixSet><TileMatrixSet><ows:Identifier>WGS84G_PO</ows:Identifier><ows:SupportedCRS>IGNF:WGS84G</ows:SupportedCRS><TileMatrix><ows:Identifier>0</ows:Identifier><ScaleDenominator>279541132.0143588675418869</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2</MatrixWidth><MatrixHeight>1</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>1</ows:Identifier><ScaleDenominator>139770566.0071794337709434</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4</MatrixWidth><MatrixHeight>2</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>10</ows:Identifier><ScaleDenominator>272989.3867327723315839</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>2048</MatrixWidth><MatrixHeight>1024</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>11</ows:Identifier><ScaleDenominator>136494.6933663861657919</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>4096</MatrixWidth><MatrixHeight>2048</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>12</ows:Identifier><ScaleDenominator>68247.3466831930828960</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8192</MatrixWidth><MatrixHeight>4096</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>2</ows:Identifier><ScaleDenominator>69885283.0035897168854717</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>8</MatrixWidth><MatrixHeight>4</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>3</ows:Identifier><ScaleDenominator>34942641.5017948584427359</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>16</MatrixWidth><MatrixHeight>8</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>4</ows:Identifier><ScaleDenominator>17471320.7508974292213679</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>32</MatrixWidth><MatrixHeight>16</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>5</ows:Identifier><ScaleDenominator>8735660.3754487146106840</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>64</MatrixWidth><MatrixHeight>32</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>6</ows:Identifier><ScaleDenominator>4367830.1877243573053420</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>128</MatrixWidth><MatrixHeight>64</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>7</ows:Identifier><ScaleDenominator>2183915.0938621786526710</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>256</MatrixWidth><MatrixHeight>128</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>8</ows:Identifier><ScaleDenominator>1091957.5469310893263355</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>512</MatrixWidth><MatrixHeight>256</MatrixHeight></TileMatrix><TileMatrix><ows:Identifier>9</ows:Identifier><ScaleDenominator>545978.7734655446631677</ScaleDenominator><TopLeftCorner>-180 90</TopLeftCorner><TileWidth>256</TileWidth><TileHeight>256</TileHeight><MatrixWidth>1024</MatrixWidth><MatrixHeight>512</MatrixHeight></TileMatrix></TileMatrixSet></Contents></Capabilities>
     2<Capabilities xmlns="http://www.opengis.net/wmts/1.0"
     3        xmlns:gml="http://www.opengis.net/gml" xmlns:ows="http://www.opengis.net/ows/1.1"
     4        xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     5        version="1.0.0"
     6        xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd">
     7        <ows:ServiceIdentification>
     8                <ows:Title>Service de visualisation WMTS</ows:Title>
     9                <ows:Abstract>Ce service permet la visualisation de couches de données raster IGN au travers d'un flux WMTS</ows:Abstract>
     10                <ows:Keywords>
     11                        <ows:Keyword>Unités administratives</ows:Keyword>
     12                        <ows:Keyword>Limites administratives</ows:Keyword>
     13                        <ows:Keyword>Surfaces bâties</ows:Keyword>
     14                        <ows:Keyword>Réseaux de transport</ows:Keyword>
     15                        <ows:Keyword>Routes</ows:Keyword>
     16                        <ows:Keyword>Réseaux ferroviaires</ows:Keyword>
     17                        <ows:Keyword>Aérodromes</ows:Keyword>
     18                        <ows:Keyword>Réseau hydrographique</ows:Keyword>
     19                        <ows:Keyword>Parcelles cadastrales</ows:Keyword>
     20                        <ows:Keyword>Bâtiments</ows:Keyword>
     21                        <ows:Keyword>Services d'utilité publique et services publics</ows:Keyword>
     22                        <ows:Keyword>Réseaux de transport</ows:Keyword>
     23                        <ows:Keyword>Hydrographie</ows:Keyword>
     24                        <ows:Keyword>Photographies aériennes</ows:Keyword>
     25                        <ows:Keyword>Cartes</ows:Keyword>
     26                        <ows:Keyword>Cartes historiques</ows:Keyword>
     27                        <ows:Keyword>Altitude</ows:Keyword>
     28                </ows:Keywords>
     29                <ows:ServiceType>OGC WMTS</ows:ServiceType>
     30                <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
     31                <ows:Fees>licences</ows:Fees>
     32                <ows:AccessConstraints>Conditions Générales d'Utilisation disponibles ici : http://professionnels.ign.fr/doc/Conditions_d_utilisation_des_licences_et_des_services_en_ligne.pdf</ows:AccessConstraints>
     33        </ows:ServiceIdentification>
     34        <ows:ServiceProvider>
     35                <ows:ProviderName>IGN</ows:ProviderName>
     36                <ows:ProviderSite xlink:href="" />
     37                <ows:ServiceContact>
     38                        <ows:IndividualName>Géoportail SAV</ows:IndividualName>
     39                        <ows:PositionName>custodian</ows:PositionName>
     40                        <ows:ContactInfo>
     41                                <ows:Phone>
     42                                        <ows:Voice />
     43                                        <ows:Facsimile />
     44                                </ows:Phone>
     45                                <ows:Address>
     46                                        <ows:DeliveryPoint>73 avenue de Paris</ows:DeliveryPoint>
     47                                        <ows:City>Saint Mandé</ows:City>
     48                                        <ows:AdministrativeArea />
     49                                        <ows:PostalCode>94160</ows:PostalCode>
     50                                        <ows:Country>France</ows:Country>
     51                                        <ows:ElectronicMailAddress>geop_services@geoportail.fr</ows:ElectronicMailAddress>
     52                                </ows:Address>
     53                        </ows:ContactInfo>
     54                </ows:ServiceContact>
     55        </ows:ServiceProvider>
     56        <ows:OperationsMetadata>
     57                <ows:Operation name="GetCapabilities">
     58                        <ows:DCP>
     59                                <ows:HTTP>
     60                                        <ows:Get
     61                                                xlink:href="http://wxs.ign.fr/61fs25ymczag0c67naqvvmap/geoportail/wmts?">
     62                                                <ows:Constraint name="GetEncoding">
     63                                                        <ows:AllowedValues>
     64                                                                <ows:Value>KVP</ows:Value>
     65                                                        </ows:AllowedValues>
     66                                                </ows:Constraint>
     67                                        </ows:Get>
     68                                </ows:HTTP>
     69                        </ows:DCP>
     70                </ows:Operation>
     71                <ows:Operation name="GetTile">
     72                        <ows:DCP>
     73                                <ows:HTTP>
     74                                        <ows:Get
     75                                                xlink:href="http://wxs.ign.fr/61fs25ymczag0c67naqvvmap/geoportail/wmts?">
     76                                                <ows:Constraint name="GetEncoding">
     77                                                        <ows:AllowedValues>
     78                                                                <ows:Value>KVP</ows:Value>
     79                                                        </ows:AllowedValues>
     80                                                </ows:Constraint>
     81                                        </ows:Get>
     82                                </ows:HTTP>
     83                        </ows:DCP>
     84                </ows:Operation>
     85        </ows:OperationsMetadata>
     86        <Contents>
     87                <Layer>
     88                        <ows:Title>Limites administratives</ows:Title>
     89                        <ows:Abstract>Représentation des limites administratives (régions, départements, cantons, communes)</ows:Abstract>
     90                        <ows:Keywords>
     91                                <ows:Keyword>Unités administratives</ows:Keyword>
     92                        </ows:Keywords>
     93                        <ows:WGS84BoundingBox>
     94                                <ows:LowerCorner>-63.3725 -21.4756</ows:LowerCorner>
     95                                <ows:UpperCorner>55.9259 72.679</ows:UpperCorner>
     96                        </ows:WGS84BoundingBox>
     97                        <ows:Identifier>ADMINISTRATIVEUNITS.BOUNDARIES</ows:Identifier>
     98                        <Style isDefault="true">
     99                                <ows:Title>Données Brutes</ows:Title>
     100                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     101                                <ows:Keywords>
     102                                        <ows:Keyword>Défaut</ows:Keyword>
     103                                </ows:Keywords>
     104                                <ows:Identifier>normal</ows:Identifier>
     105                                <LegendURL format="image/jpeg" height="200"
     106                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     107                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     108                        </Style>
     109                        <Format>image/png</Format>
     110                        <TileMatrixSetLink>
     111                                <TileMatrixSet>PM</TileMatrixSet>
     112                                <TileMatrixSetLimits>
     113                                        <TileMatrixLimits>
     114                                                <TileMatrix>10</TileMatrix>
     115                                                <MinTileRow>341</MinTileRow>
     116                                                <MaxTileRow>574</MaxTileRow>
     117                                                <MinTileCol>331</MinTileCol>
     118                                                <MaxTileCol>671</MaxTileCol>
     119                                        </TileMatrixLimits>
     120                                        <TileMatrixLimits>
     121                                                <TileMatrix>11</TileMatrix>
     122                                                <MinTileRow>682</MinTileRow>
     123                                                <MaxTileRow>1149</MaxTileRow>
     124                                                <MinTileCol>663</MinTileCol>
     125                                                <MaxTileCol>1342</MaxTileCol>
     126                                        </TileMatrixLimits>
     127                                        <TileMatrixLimits>
     128                                                <TileMatrix>12</TileMatrix>
     129                                                <MinTileRow>1365</MinTileRow>
     130                                                <MaxTileRow>2298</MaxTileRow>
     131                                                <MinTileCol>1326</MinTileCol>
     132                                                <MaxTileCol>2684</MaxTileCol>
     133                                        </TileMatrixLimits>
     134                                        <TileMatrixLimits>
     135                                                <TileMatrix>13</TileMatrix>
     136                                                <MinTileRow>2731</MinTileRow>
     137                                                <MaxTileRow>4596</MaxTileRow>
     138                                                <MinTileCol>2653</MinTileCol>
     139                                                <MaxTileCol>5368</MaxTileCol>
     140                                        </TileMatrixLimits>
     141                                        <TileMatrixLimits>
     142                                                <TileMatrix>14</TileMatrix>
     143                                                <MinTileRow>5462</MinTileRow>
     144                                                <MaxTileRow>9193</MaxTileRow>
     145                                                <MinTileCol>5307</MinTileCol>
     146                                                <MaxTileCol>10737</MaxTileCol>
     147                                        </TileMatrixLimits>
     148                                        <TileMatrixLimits>
     149                                                <TileMatrix>15</TileMatrix>
     150                                                <MinTileRow>10924</MinTileRow>
     151                                                <MaxTileRow>18386</MaxTileRow>
     152                                                <MinTileCol>10615</MinTileCol>
     153                                                <MaxTileCol>21474</MaxTileCol>
     154                                        </TileMatrixLimits>
     155                                        <TileMatrixLimits>
     156                                                <TileMatrix>16</TileMatrix>
     157                                                <MinTileRow>21849</MinTileRow>
     158                                                <MaxTileRow>36772</MaxTileRow>
     159                                                <MinTileCol>21231</MinTileCol>
     160                                                <MaxTileCol>42948</MaxTileCol>
     161                                        </TileMatrixLimits>
     162                                        <TileMatrixLimits>
     163                                                <TileMatrix>17</TileMatrix>
     164                                                <MinTileRow>43698</MinTileRow>
     165                                                <MaxTileRow>73544</MaxTileRow>
     166                                                <MinTileCol>42462</MinTileCol>
     167                                                <MaxTileCol>85897</MaxTileCol>
     168                                        </TileMatrixLimits>
     169                                        <TileMatrixLimits>
     170                                                <TileMatrix>18</TileMatrix>
     171                                                <MinTileRow>87397</MinTileRow>
     172                                                <MaxTileRow>147089</MaxTileRow>
     173                                                <MinTileCol>84925</MinTileCol>
     174                                                <MaxTileCol>171795</MaxTileCol>
     175                                        </TileMatrixLimits>
     176                                        <TileMatrixLimits>
     177                                                <TileMatrix>6</TileMatrix>
     178                                                <MinTileRow>12</MinTileRow>
     179                                                <MaxTileRow>29</MaxTileRow>
     180                                                <MinTileCol>26</MinTileCol>
     181                                                <MaxTileCol>42</MaxTileCol>
     182                                        </TileMatrixLimits>
     183                                        <TileMatrixLimits>
     184                                                <TileMatrix>7</TileMatrix>
     185                                                <MinTileRow>24</MinTileRow>
     186                                                <MaxTileRow>58</MaxTileRow>
     187                                                <MinTileCol>54</MinTileCol>
     188                                                <MaxTileCol>84</MaxTileCol>
     189                                        </TileMatrixLimits>
     190                                        <TileMatrixLimits>
     191                                                <TileMatrix>8</TileMatrix>
     192                                                <MinTileRow>49</MinTileRow>
     193                                                <MaxTileRow>114</MaxTileRow>
     194                                                <MinTileCol>108</MinTileCol>
     195                                                <MaxTileCol>168</MaxTileCol>
     196                                        </TileMatrixLimits>
     197                                        <TileMatrixLimits>
     198                                                <TileMatrix>9</TileMatrix>
     199                                                <MinTileRow>170</MinTileRow>
     200                                                <MaxTileRow>287</MaxTileRow>
     201                                                <MinTileCol>165</MinTileCol>
     202                                                <MaxTileCol>335</MaxTileCol>
     203                                        </TileMatrixLimits>
     204                                </TileMatrixSetLimits>
     205                        </TileMatrixSetLink>
     206                </Layer>
     207                <Layer>
     208                        <ows:Title>Cartes IGN</ows:Title>
     209                        <ows:Abstract>Cartes IGN</ows:Abstract>
     210                        <ows:Keywords>
     211                                <ows:Keyword>Cartes</ows:Keyword>
     212                        </ows:Keywords>
     213                        <ows:WGS84BoundingBox>
     214                                <ows:LowerCorner>-180 -68.1389</ows:LowerCorner>
     215                                <ows:UpperCorner>180 80</ows:UpperCorner>
     216                        </ows:WGS84BoundingBox>
     217                        <ows:Identifier>GEOGRAPHICALGRIDSYSTEMS.MAPS</ows:Identifier>
     218                        <Style isDefault="true">
     219                                <ows:Title>Données Brutes</ows:Title>
     220                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     221                                <ows:Keywords>
     222                                        <ows:Keyword>Défaut</ows:Keyword>
     223                                </ows:Keywords>
     224                                <ows:Identifier>normal</ows:Identifier>
     225                                <LegendURL format="image/jpeg" height="200"
     226                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     227                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     228                        </Style>
     229                        <Format>image/jpeg</Format>
     230                        <TileMatrixSetLink>
     231                                <TileMatrixSet>PM</TileMatrixSet>
     232                                <TileMatrixSetLimits>
     233                                        <TileMatrixLimits>
     234                                                <TileMatrix>0</TileMatrix>
     235                                                <MinTileRow>0</MinTileRow>
     236                                                <MaxTileRow>0</MaxTileRow>
     237                                                <MinTileCol>0</MinTileCol>
     238                                                <MaxTileCol>1</MaxTileCol>
     239                                        </TileMatrixLimits>
     240                                        <TileMatrixLimits>
     241                                                <TileMatrix>1</TileMatrix>
     242                                                <MinTileRow>0</MinTileRow>
     243                                                <MaxTileRow>1</MaxTileRow>
     244                                                <MinTileCol>0</MinTileCol>
     245                                                <MaxTileCol>2</MaxTileCol>
     246                                        </TileMatrixLimits>
     247                                        <TileMatrixLimits>
     248                                                <TileMatrix>10</TileMatrix>
     249                                                <MinTileRow>340</MinTileRow>
     250                                                <MaxTileRow>780</MaxTileRow>
     251                                                <MinTileCol>5</MinTileCol>
     252                                                <MaxTileCol>990</MaxTileCol>
     253                                        </TileMatrixLimits>
     254                                        <TileMatrixLimits>
     255                                                <TileMatrix>11</TileMatrix>
     256                                                <MinTileRow>681</MinTileRow>
     257                                                <MaxTileRow>1544</MaxTileRow>
     258                                                <MinTileCol>10</MinTileCol>
     259                                                <MaxTileCol>1981</MaxTileCol>
     260                                        </TileMatrixLimits>
     261                                        <TileMatrixLimits>
     262                                                <TileMatrix>12</TileMatrix>
     263                                                <MinTileRow>1363</MinTileRow>
     264                                                <MaxTileRow>3088</MaxTileRow>
     265                                                <MinTileCol>20</MinTileCol>
     266                                                <MaxTileCol>3962</MaxTileCol>
     267                                        </TileMatrixLimits>
     268                                        <TileMatrixLimits>
     269                                                <TileMatrix>13</TileMatrix>
     270                                                <MinTileRow>2726</MinTileRow>
     271                                                <MaxTileRow>6177</MaxTileRow>
     272                                                <MinTileCol>40</MinTileCol>
     273                                                <MaxTileCol>7924</MaxTileCol>
     274                                        </TileMatrixLimits>
     275                                        <TileMatrixLimits>
     276                                                <TileMatrix>14</TileMatrix>
     277                                                <MinTileRow>5452</MinTileRow>
     278                                                <MaxTileRow>12355</MaxTileRow>
     279                                                <MinTileCol>81</MinTileCol>
     280                                                <MaxTileCol>15847</MaxTileCol>
     281                                        </TileMatrixLimits>
     282                                        <TileMatrixLimits>
     283                                                <TileMatrix>15</TileMatrix>
     284                                                <MinTileRow>10944</MinTileRow>
     285                                                <MaxTileRow>21176</MaxTileRow>
     286                                                <MinTileCol>163</MinTileCol>
     287                                                <MaxTileCol>31695</MaxTileCol>
     288                                        </TileMatrixLimits>
     289                                        <TileMatrixLimits>
     290                                                <TileMatrix>16</TileMatrix>
     291                                                <MinTileRow>21889</MinTileRow>
     292                                                <MaxTileRow>42353</MaxTileRow>
     293                                                <MinTileCol>326</MinTileCol>
     294                                                <MaxTileCol>63382</MaxTileCol>
     295                                        </TileMatrixLimits>
     296                                        <TileMatrixLimits>
     297                                                <TileMatrix>17</TileMatrix>
     298                                                <MinTileRow>43776</MinTileRow>
     299                                                <MaxTileRow>73526</MaxTileRow>
     300                                                <MinTileCol>42528</MinTileCol>
     301                                                <MaxTileCol>85869</MaxTileCol>
     302                                        </TileMatrixLimits>
     303                                        <TileMatrixLimits>
     304                                                <TileMatrix>18</TileMatrix>
     305                                                <MinTileRow>87557</MinTileRow>
     306                                                <MaxTileRow>147052</MaxTileRow>
     307                                                <MinTileCol>85058</MinTileCol>
     308                                                <MaxTileCol>171738</MaxTileCol>
     309                                        </TileMatrixLimits>
     310                                        <TileMatrixLimits>
     311                                                <TileMatrix>2</TileMatrix>
     312                                                <MinTileRow>0</MinTileRow>
     313                                                <MaxTileRow>2</MaxTileRow>
     314                                                <MinTileCol>0</MinTileCol>
     315                                                <MaxTileCol>4</MaxTileCol>
     316                                        </TileMatrixLimits>
     317                                        <TileMatrixLimits>
     318                                                <TileMatrix>3</TileMatrix>
     319                                                <MinTileRow>0</MinTileRow>
     320                                                <MaxTileRow>5</MaxTileRow>
     321                                                <MinTileCol>0</MinTileCol>
     322                                                <MaxTileCol>8</MaxTileCol>
     323                                        </TileMatrixLimits>
     324                                        <TileMatrixLimits>
     325                                                <TileMatrix>4</TileMatrix>
     326                                                <MinTileRow>1</MinTileRow>
     327                                                <MaxTileRow>11</MaxTileRow>
     328                                                <MinTileCol>0</MinTileCol>
     329                                                <MaxTileCol>16</MaxTileCol>
     330                                        </TileMatrixLimits>
     331                                        <TileMatrixLimits>
     332                                                <TileMatrix>5</TileMatrix>
     333                                                <MinTileRow>3</MinTileRow>
     334                                                <MaxTileRow>22</MaxTileRow>
     335                                                <MinTileCol>0</MinTileCol>
     336                                                <MaxTileCol>32</MaxTileCol>
     337                                        </TileMatrixLimits>
     338                                        <TileMatrixLimits>
     339                                                <TileMatrix>6</TileMatrix>
     340                                                <MinTileRow>7</MinTileRow>
     341                                                <MaxTileRow>45</MaxTileRow>
     342                                                <MinTileCol>0</MinTileCol>
     343                                                <MaxTileCol>64</MaxTileCol>
     344                                        </TileMatrixLimits>
     345                                        <TileMatrixLimits>
     346                                                <TileMatrix>7</TileMatrix>
     347                                                <MinTileRow>42</MinTileRow>
     348                                                <MaxTileRow>97</MaxTileRow>
     349                                                <MinTileCol>0</MinTileCol>
     350                                                <MaxTileCol>115</MaxTileCol>
     351                                        </TileMatrixLimits>
     352                                        <TileMatrixLimits>
     353                                                <TileMatrix>8</TileMatrix>
     354                                                <MinTileRow>84</MinTileRow>
     355                                                <MaxTileRow>195</MaxTileRow>
     356                                                <MinTileCol>1</MinTileCol>
     357                                                <MaxTileCol>247</MaxTileCol>
     358                                        </TileMatrixLimits>
     359                                        <TileMatrixLimits>
     360                                                <TileMatrix>9</TileMatrix>
     361                                                <MinTileRow>170</MinTileRow>
     362                                                <MaxTileRow>390</MaxTileRow>
     363                                                <MinTileCol>2</MinTileCol>
     364                                                <MaxTileCol>495</MaxTileCol>
     365                                        </TileMatrixLimits>
     366                                </TileMatrixSetLimits>
     367                        </TileMatrixSetLink>
     368                </Layer>
     369                <Layer>
     370                        <ows:Title>PLEIADES - 2013</ows:Title>
     371                        <ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract>
     372                        <ows:Keywords>
     373                                <ows:Keyword>Images satellitaires</ows:Keyword>
     374                        </ows:Keywords>
     375                        <ows:WGS84BoundingBox>
     376                                <ows:LowerCorner>-6.92466 -21.4097</ows:LowerCorner>
     377                                <ows:UpperCorner>55.8741 51.9098</ows:UpperCorner>
     378                        </ows:WGS84BoundingBox>
     379                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150409</ows:Identifier>
     380                        <Style isDefault="true">
     381                                <ows:Title>Données Brutes</ows:Title>
     382                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     383                                <ows:Keywords>
     384                                        <ows:Keyword>Défaut</ows:Keyword>
     385                                </ows:Keywords>
     386                                <ows:Identifier>normal</ows:Identifier>
     387                                <LegendURL format="image/jpeg" height="200"
     388                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     389                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     390                        </Style>
     391                        <Format>image/png</Format>
     392                        <TileMatrixSetLink>
     393                                <TileMatrixSet>PM</TileMatrixSet>
     394                                <TileMatrixSetLimits>
     395                                        <TileMatrixLimits>
     396                                                <TileMatrix>0</TileMatrix>
     397                                                <MinTileRow>0</MinTileRow>
     398                                                <MaxTileRow>0</MaxTileRow>
     399                                                <MinTileCol>0</MinTileCol>
     400                                                <MaxTileCol>0</MaxTileCol>
     401                                        </TileMatrixLimits>
     402                                        <TileMatrixLimits>
     403                                                <TileMatrix>1</TileMatrix>
     404                                                <MinTileRow>0</MinTileRow>
     405                                                <MaxTileRow>1</MaxTileRow>
     406                                                <MinTileCol>0</MinTileCol>
     407                                                <MaxTileCol>1</MaxTileCol>
     408                                        </TileMatrixLimits>
     409                                        <TileMatrixLimits>
     410                                                <TileMatrix>10</TileMatrix>
     411                                                <MinTileRow>342</MinTileRow>
     412                                                <MaxTileRow>574</MaxTileRow>
     413                                                <MinTileCol>498</MinTileCol>
     414                                                <MaxTileCol>670</MaxTileCol>
     415                                        </TileMatrixLimits>
     416                                        <TileMatrixLimits>
     417                                                <TileMatrix>11</TileMatrix>
     418                                                <MinTileRow>685</MinTileRow>
     419                                                <MaxTileRow>1148</MaxTileRow>
     420                                                <MinTileCol>997</MinTileCol>
     421                                                <MaxTileCol>1341</MaxTileCol>
     422                                        </TileMatrixLimits>
     423                                        <TileMatrixLimits>
     424                                                <TileMatrix>12</TileMatrix>
     425                                                <MinTileRow>1370</MinTileRow>
     426                                                <MaxTileRow>2297</MaxTileRow>
     427                                                <MinTileCol>1995</MinTileCol>
     428                                                <MaxTileCol>2683</MaxTileCol>
     429                                        </TileMatrixLimits>
     430                                        <TileMatrixLimits>
     431                                                <TileMatrix>13</TileMatrix>
     432                                                <MinTileRow>2741</MinTileRow>
     433                                                <MaxTileRow>4594</MaxTileRow>
     434                                                <MinTileCol>3990</MinTileCol>
     435                                                <MaxTileCol>5367</MaxTileCol>
     436                                        </TileMatrixLimits>
     437                                        <TileMatrixLimits>
     438                                                <TileMatrix>14</TileMatrix>
     439                                                <MinTileRow>5482</MinTileRow>
     440                                                <MaxTileRow>9189</MaxTileRow>
     441                                                <MinTileCol>7980</MinTileCol>
     442                                                <MaxTileCol>10734</MaxTileCol>
     443                                        </TileMatrixLimits>
     444                                        <TileMatrixLimits>
     445                                                <TileMatrix>15</TileMatrix>
     446                                                <MinTileRow>10965</MinTileRow>
     447                                                <MaxTileRow>18379</MaxTileRow>
     448                                                <MinTileCol>15960</MinTileCol>
     449                                                <MaxTileCol>21469</MaxTileCol>
     450                                        </TileMatrixLimits>
     451                                        <TileMatrixLimits>
     452                                                <TileMatrix>16</TileMatrix>
     453                                                <MinTileRow>21931</MinTileRow>
     454                                                <MaxTileRow>36759</MaxTileRow>
     455                                                <MinTileCol>31921</MinTileCol>
     456                                                <MaxTileCol>42939</MaxTileCol>
     457                                        </TileMatrixLimits>
     458                                        <TileMatrixLimits>
     459                                                <TileMatrix>17</TileMatrix>
     460                                                <MinTileRow>43862</MinTileRow>
     461                                                <MaxTileRow>73518</MaxTileRow>
     462                                                <MinTileCol>63843</MinTileCol>
     463                                                <MaxTileCol>85878</MaxTileCol>
     464                                        </TileMatrixLimits>
     465                                        <TileMatrixLimits>
     466                                                <TileMatrix>18</TileMatrix>
     467                                                <MinTileRow>87725</MinTileRow>
     468                                                <MaxTileRow>147037</MaxTileRow>
     469                                                <MinTileCol>127686</MinTileCol>
     470                                                <MaxTileCol>171757</MaxTileCol>
     471                                        </TileMatrixLimits>
     472                                        <TileMatrixLimits>
     473                                                <TileMatrix>2</TileMatrix>
     474                                                <MinTileRow>1</MinTileRow>
     475                                                <MaxTileRow>2</MaxTileRow>
     476                                                <MinTileCol>1</MinTileCol>
     477                                                <MaxTileCol>2</MaxTileCol>
     478                                        </TileMatrixLimits>
     479                                        <TileMatrixLimits>
     480                                                <TileMatrix>3</TileMatrix>
     481                                                <MinTileRow>2</MinTileRow>
     482                                                <MaxTileRow>4</MaxTileRow>
     483                                                <MinTileCol>3</MinTileCol>
     484                                                <MaxTileCol>5</MaxTileCol>
     485                                        </TileMatrixLimits>
     486                                        <TileMatrixLimits>
     487                                                <TileMatrix>4</TileMatrix>
     488                                                <MinTileRow>5</MinTileRow>
     489                                                <MaxTileRow>8</MaxTileRow>
     490                                                <MinTileCol>7</MinTileCol>
     491                                                <MaxTileCol>10</MaxTileCol>
     492                                        </TileMatrixLimits>
     493                                        <TileMatrixLimits>
     494                                                <TileMatrix>5</TileMatrix>
     495                                                <MinTileRow>10</MinTileRow>
     496                                                <MaxTileRow>17</MaxTileRow>
     497                                                <MinTileCol>15</MinTileCol>
     498                                                <MaxTileCol>20</MaxTileCol>
     499                                        </TileMatrixLimits>
     500                                        <TileMatrixLimits>
     501                                                <TileMatrix>6</TileMatrix>
     502                                                <MinTileRow>21</MinTileRow>
     503                                                <MaxTileRow>35</MaxTileRow>
     504                                                <MinTileCol>31</MinTileCol>
     505                                                <MaxTileCol>41</MaxTileCol>
     506                                        </TileMatrixLimits>
     507                                        <TileMatrixLimits>
     508                                                <TileMatrix>7</TileMatrix>
     509                                                <MinTileRow>42</MinTileRow>
     510                                                <MaxTileRow>71</MaxTileRow>
     511                                                <MinTileCol>62</MinTileCol>
     512                                                <MaxTileCol>83</MaxTileCol>
     513                                        </TileMatrixLimits>
     514                                        <TileMatrixLimits>
     515                                                <TileMatrix>8</TileMatrix>
     516                                                <MinTileRow>85</MinTileRow>
     517                                                <MaxTileRow>143</MaxTileRow>
     518                                                <MinTileCol>124</MinTileCol>
     519                                                <MaxTileCol>167</MaxTileCol>
     520                                        </TileMatrixLimits>
     521                                        <TileMatrixLimits>
     522                                                <TileMatrix>9</TileMatrix>
     523                                                <MinTileRow>171</MinTileRow>
     524                                                <MaxTileRow>287</MaxTileRow>
     525                                                <MinTileCol>249</MinTileCol>
     526                                                <MaxTileCol>335</MaxTileCol>
     527                                        </TileMatrixLimits>
     528                                </TileMatrixSetLimits>
     529                        </TileMatrixSetLink>
     530                </Layer>
     531                <Layer>
     532                        <ows:Title>PLEIADES - 2013</ows:Title>
     533                        <ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract>
     534                        <ows:Keywords>
     535                                <ows:Keyword>Images satellitaires</ows:Keyword>
     536                        </ows:Keywords>
     537                        <ows:WGS84BoundingBox>
     538                                <ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner>
     539                                <ows:UpperCorner>55.8741 51.9098</ows:UpperCorner>
     540                        </ows:WGS84BoundingBox>
     541                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150709</ows:Identifier>
     542                        <Style isDefault="true">
     543                                <ows:Title>Données Brutes</ows:Title>
     544                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     545                                <ows:Keywords>
     546                                        <ows:Keyword>Défaut</ows:Keyword>
     547                                </ows:Keywords>
     548                                <ows:Identifier>normal</ows:Identifier>
     549                                <LegendURL format="image/jpeg" height="200"
     550                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     551                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     552                        </Style>
     553                        <Format>image/png</Format>
     554                        <TileMatrixSetLink>
     555                                <TileMatrixSet>PM</TileMatrixSet>
     556                                <TileMatrixSetLimits>
     557                                        <TileMatrixLimits>
     558                                                <TileMatrix>0</TileMatrix>
     559                                                <MinTileRow>0</MinTileRow>
     560                                                <MaxTileRow>0</MaxTileRow>
     561                                                <MinTileCol>0</MinTileCol>
     562                                                <MaxTileCol>0</MaxTileCol>
     563                                        </TileMatrixLimits>
     564                                        <TileMatrixLimits>
     565                                                <TileMatrix>1</TileMatrix>
     566                                                <MinTileRow>0</MinTileRow>
     567                                                <MaxTileRow>1</MaxTileRow>
     568                                                <MinTileCol>0</MinTileCol>
     569                                                <MaxTileCol>1</MaxTileCol>
     570                                        </TileMatrixLimits>
     571                                        <TileMatrixLimits>
     572                                                <TileMatrix>10</TileMatrix>
     573                                                <MinTileRow>342</MinTileRow>
     574                                                <MaxTileRow>574</MaxTileRow>
     575                                                <MinTileCol>332</MinTileCol>
     576                                                <MaxTileCol>670</MaxTileCol>
     577                                        </TileMatrixLimits>
     578                                        <TileMatrixLimits>
     579                                                <TileMatrix>11</TileMatrix>
     580                                                <MinTileRow>685</MinTileRow>
     581                                                <MaxTileRow>1148</MaxTileRow>
     582                                                <MinTileCol>664</MinTileCol>
     583                                                <MaxTileCol>1341</MaxTileCol>
     584                                        </TileMatrixLimits>
     585                                        <TileMatrixLimits>
     586                                                <TileMatrix>12</TileMatrix>
     587                                                <MinTileRow>1370</MinTileRow>
     588                                                <MaxTileRow>2297</MaxTileRow>
     589                                                <MinTileCol>1329</MinTileCol>
     590                                                <MaxTileCol>2683</MaxTileCol>
     591                                        </TileMatrixLimits>
     592                                        <TileMatrixLimits>
     593                                                <TileMatrix>13</TileMatrix>
     594                                                <MinTileRow>2741</MinTileRow>
     595                                                <MaxTileRow>4594</MaxTileRow>
     596                                                <MinTileCol>2658</MinTileCol>
     597                                                <MaxTileCol>5367</MaxTileCol>
     598                                        </TileMatrixLimits>
     599                                        <TileMatrixLimits>
     600                                                <TileMatrix>14</TileMatrix>
     601                                                <MinTileRow>5482</MinTileRow>
     602                                                <MaxTileRow>9189</MaxTileRow>
     603                                                <MinTileCol>5317</MinTileCol>
     604                                                <MaxTileCol>10734</MaxTileCol>
     605                                        </TileMatrixLimits>
     606                                        <TileMatrixLimits>
     607                                                <TileMatrix>15</TileMatrix>
     608                                                <MinTileRow>10965</MinTileRow>
     609                                                <MaxTileRow>18379</MaxTileRow>
     610                                                <MinTileCol>10634</MinTileCol>
     611                                                <MaxTileCol>21469</MaxTileCol>
     612                                        </TileMatrixLimits>
     613                                        <TileMatrixLimits>
     614                                                <TileMatrix>16</TileMatrix>
     615                                                <MinTileRow>21931</MinTileRow>
     616                                                <MaxTileRow>36759</MaxTileRow>
     617                                                <MinTileCol>21268</MinTileCol>
     618                                                <MaxTileCol>42939</MaxTileCol>
     619                                        </TileMatrixLimits>
     620                                        <TileMatrixLimits>
     621                                                <TileMatrix>17</TileMatrix>
     622                                                <MinTileRow>43862</MinTileRow>
     623                                                <MaxTileRow>73518</MaxTileRow>
     624                                                <MinTileCol>42536</MinTileCol>
     625                                                <MaxTileCol>85878</MaxTileCol>
     626                                        </TileMatrixLimits>
     627                                        <TileMatrixLimits>
     628                                                <TileMatrix>18</TileMatrix>
     629                                                <MinTileRow>87725</MinTileRow>
     630                                                <MaxTileRow>147037</MaxTileRow>
     631                                                <MinTileCol>85072</MinTileCol>
     632                                                <MaxTileCol>171757</MaxTileCol>
     633                                        </TileMatrixLimits>
     634                                        <TileMatrixLimits>
     635                                                <TileMatrix>2</TileMatrix>
     636                                                <MinTileRow>1</MinTileRow>
     637                                                <MaxTileRow>2</MaxTileRow>
     638                                                <MinTileCol>1</MinTileCol>
     639                                                <MaxTileCol>2</MaxTileCol>
     640                                        </TileMatrixLimits>
     641                                        <TileMatrixLimits>
     642                                                <TileMatrix>3</TileMatrix>
     643                                                <MinTileRow>2</MinTileRow>
     644                                                <MaxTileRow>4</MaxTileRow>
     645                                                <MinTileCol>2</MinTileCol>
     646                                                <MaxTileCol>5</MaxTileCol>
     647                                        </TileMatrixLimits>
     648                                        <TileMatrixLimits>
     649                                                <TileMatrix>4</TileMatrix>
     650                                                <MinTileRow>5</MinTileRow>
     651                                                <MaxTileRow>8</MaxTileRow>
     652                                                <MinTileCol>5</MinTileCol>
     653                                                <MaxTileCol>10</MaxTileCol>
     654                                        </TileMatrixLimits>
     655                                        <TileMatrixLimits>
     656                                                <TileMatrix>5</TileMatrix>
     657                                                <MinTileRow>10</MinTileRow>
     658                                                <MaxTileRow>17</MaxTileRow>
     659                                                <MinTileCol>10</MinTileCol>
     660                                                <MaxTileCol>20</MaxTileCol>
     661                                        </TileMatrixLimits>
     662                                        <TileMatrixLimits>
     663                                                <TileMatrix>6</TileMatrix>
     664                                                <MinTileRow>21</MinTileRow>
     665                                                <MaxTileRow>35</MaxTileRow>
     666                                                <MinTileCol>20</MinTileCol>
     667                                                <MaxTileCol>41</MaxTileCol>
     668                                        </TileMatrixLimits>
     669                                        <TileMatrixLimits>
     670                                                <TileMatrix>7</TileMatrix>
     671                                                <MinTileRow>42</MinTileRow>
     672                                                <MaxTileRow>71</MaxTileRow>
     673                                                <MinTileCol>41</MinTileCol>
     674                                                <MaxTileCol>83</MaxTileCol>
     675                                        </TileMatrixLimits>
     676                                        <TileMatrixLimits>
     677                                                <TileMatrix>8</TileMatrix>
     678                                                <MinTileRow>85</MinTileRow>
     679                                                <MaxTileRow>143</MaxTileRow>
     680                                                <MinTileCol>83</MinTileCol>
     681                                                <MaxTileCol>167</MaxTileCol>
     682                                        </TileMatrixLimits>
     683                                        <TileMatrixLimits>
     684                                                <TileMatrix>9</TileMatrix>
     685                                                <MinTileRow>171</MinTileRow>
     686                                                <MaxTileRow>287</MaxTileRow>
     687                                                <MinTileCol>166</MinTileCol>
     688                                                <MaxTileCol>335</MaxTileCol>
     689                                        </TileMatrixLimits>
     690                                </TileMatrixSetLimits>
     691                        </TileMatrixSetLink>
     692                </Layer>
     693                <Layer>
     694                        <ows:Title>PLEIADES - 2013</ows:Title>
     695                        <ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract>
     696                        <ows:Keywords>
     697                                <ows:Keyword>Images satellitaires</ows:Keyword>
     698                        </ows:Keywords>
     699                        <ows:WGS84BoundingBox>
     700                                <ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner>
     701                                <ows:UpperCorner>55.8741 51.9098</ows:UpperCorner>
     702                        </ows:WGS84BoundingBox>
     703                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2013_PYR-PNG_WLD_WM_20150821</ows:Identifier>
     704                        <Style isDefault="true">
     705                                <ows:Title>Données Brutes</ows:Title>
     706                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     707                                <ows:Keywords>
     708                                        <ows:Keyword>Défaut</ows:Keyword>
     709                                </ows:Keywords>
     710                                <ows:Identifier>normal</ows:Identifier>
     711                                <LegendURL format="image/jpeg" height="200"
     712                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     713                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     714                        </Style>
     715                        <Format>image/png</Format>
     716                        <TileMatrixSetLink>
     717                                <TileMatrixSet>PM</TileMatrixSet>
     718                                <TileMatrixSetLimits>
     719                                        <TileMatrixLimits>
     720                                                <TileMatrix>0</TileMatrix>
     721                                                <MinTileRow>0</MinTileRow>
     722                                                <MaxTileRow>0</MaxTileRow>
     723                                                <MinTileCol>0</MinTileCol>
     724                                                <MaxTileCol>0</MaxTileCol>
     725                                        </TileMatrixLimits>
     726                                        <TileMatrixLimits>
     727                                                <TileMatrix>1</TileMatrix>
     728                                                <MinTileRow>0</MinTileRow>
     729                                                <MaxTileRow>1</MaxTileRow>
     730                                                <MinTileCol>0</MinTileCol>
     731                                                <MaxTileCol>1</MaxTileCol>
     732                                        </TileMatrixLimits>
     733                                        <TileMatrixLimits>
     734                                                <TileMatrix>10</TileMatrix>
     735                                                <MinTileRow>342</MinTileRow>
     736                                                <MaxTileRow>574</MaxTileRow>
     737                                                <MinTileCol>332</MinTileCol>
     738                                                <MaxTileCol>670</MaxTileCol>
     739                                        </TileMatrixLimits>
     740                                        <TileMatrixLimits>
     741                                                <TileMatrix>11</TileMatrix>
     742                                                <MinTileRow>685</MinTileRow>
     743                                                <MaxTileRow>1148</MaxTileRow>
     744                                                <MinTileCol>664</MinTileCol>
     745                                                <MaxTileCol>1341</MaxTileCol>
     746                                        </TileMatrixLimits>
     747                                        <TileMatrixLimits>
     748                                                <TileMatrix>12</TileMatrix>
     749                                                <MinTileRow>1370</MinTileRow>
     750                                                <MaxTileRow>2297</MaxTileRow>
     751                                                <MinTileCol>1329</MinTileCol>
     752                                                <MaxTileCol>2683</MaxTileCol>
     753                                        </TileMatrixLimits>
     754                                        <TileMatrixLimits>
     755                                                <TileMatrix>13</TileMatrix>
     756                                                <MinTileRow>2741</MinTileRow>
     757                                                <MaxTileRow>4594</MaxTileRow>
     758                                                <MinTileCol>2658</MinTileCol>
     759                                                <MaxTileCol>5367</MaxTileCol>
     760                                        </TileMatrixLimits>
     761                                        <TileMatrixLimits>
     762                                                <TileMatrix>14</TileMatrix>
     763                                                <MinTileRow>5482</MinTileRow>
     764                                                <MaxTileRow>9189</MaxTileRow>
     765                                                <MinTileCol>5317</MinTileCol>
     766                                                <MaxTileCol>10734</MaxTileCol>
     767                                        </TileMatrixLimits>
     768                                        <TileMatrixLimits>
     769                                                <TileMatrix>15</TileMatrix>
     770                                                <MinTileRow>10965</MinTileRow>
     771                                                <MaxTileRow>18379</MaxTileRow>
     772                                                <MinTileCol>10634</MinTileCol>
     773                                                <MaxTileCol>21469</MaxTileCol>
     774                                        </TileMatrixLimits>
     775                                        <TileMatrixLimits>
     776                                                <TileMatrix>16</TileMatrix>
     777                                                <MinTileRow>21931</MinTileRow>
     778                                                <MaxTileRow>36759</MaxTileRow>
     779                                                <MinTileCol>21268</MinTileCol>
     780                                                <MaxTileCol>42939</MaxTileCol>
     781                                        </TileMatrixLimits>
     782                                        <TileMatrixLimits>
     783                                                <TileMatrix>17</TileMatrix>
     784                                                <MinTileRow>43862</MinTileRow>
     785                                                <MaxTileRow>73518</MaxTileRow>
     786                                                <MinTileCol>42536</MinTileCol>
     787                                                <MaxTileCol>85878</MaxTileCol>
     788                                        </TileMatrixLimits>
     789                                        <TileMatrixLimits>
     790                                                <TileMatrix>18</TileMatrix>
     791                                                <MinTileRow>87725</MinTileRow>
     792                                                <MaxTileRow>147037</MaxTileRow>
     793                                                <MinTileCol>85072</MinTileCol>
     794                                                <MaxTileCol>171757</MaxTileCol>
     795                                        </TileMatrixLimits>
     796                                        <TileMatrixLimits>
     797                                                <TileMatrix>2</TileMatrix>
     798                                                <MinTileRow>1</MinTileRow>
     799                                                <MaxTileRow>2</MaxTileRow>
     800                                                <MinTileCol>1</MinTileCol>
     801                                                <MaxTileCol>2</MaxTileCol>
     802                                        </TileMatrixLimits>
     803                                        <TileMatrixLimits>
     804                                                <TileMatrix>3</TileMatrix>
     805                                                <MinTileRow>2</MinTileRow>
     806                                                <MaxTileRow>4</MaxTileRow>
     807                                                <MinTileCol>2</MinTileCol>
     808                                                <MaxTileCol>5</MaxTileCol>
     809                                        </TileMatrixLimits>
     810                                        <TileMatrixLimits>
     811                                                <TileMatrix>4</TileMatrix>
     812                                                <MinTileRow>5</MinTileRow>
     813                                                <MaxTileRow>8</MaxTileRow>
     814                                                <MinTileCol>5</MinTileCol>
     815                                                <MaxTileCol>10</MaxTileCol>
     816                                        </TileMatrixLimits>
     817                                        <TileMatrixLimits>
     818                                                <TileMatrix>5</TileMatrix>
     819                                                <MinTileRow>10</MinTileRow>
     820                                                <MaxTileRow>17</MaxTileRow>
     821                                                <MinTileCol>10</MinTileCol>
     822                                                <MaxTileCol>20</MaxTileCol>
     823                                        </TileMatrixLimits>
     824                                        <TileMatrixLimits>
     825                                                <TileMatrix>6</TileMatrix>
     826                                                <MinTileRow>21</MinTileRow>
     827                                                <MaxTileRow>35</MaxTileRow>
     828                                                <MinTileCol>20</MinTileCol>
     829                                                <MaxTileCol>41</MaxTileCol>
     830                                        </TileMatrixLimits>
     831                                        <TileMatrixLimits>
     832                                                <TileMatrix>7</TileMatrix>
     833                                                <MinTileRow>42</MinTileRow>
     834                                                <MaxTileRow>71</MaxTileRow>
     835                                                <MinTileCol>41</MinTileCol>
     836                                                <MaxTileCol>83</MaxTileCol>
     837                                        </TileMatrixLimits>
     838                                        <TileMatrixLimits>
     839                                                <TileMatrix>8</TileMatrix>
     840                                                <MinTileRow>85</MinTileRow>
     841                                                <MaxTileRow>143</MaxTileRow>
     842                                                <MinTileCol>83</MinTileCol>
     843                                                <MaxTileCol>167</MaxTileCol>
     844                                        </TileMatrixLimits>
     845                                        <TileMatrixLimits>
     846                                                <TileMatrix>9</TileMatrix>
     847                                                <MinTileRow>171</MinTileRow>
     848                                                <MaxTileRow>287</MaxTileRow>
     849                                                <MinTileCol>166</MinTileCol>
     850                                                <MaxTileCol>335</MaxTileCol>
     851                                        </TileMatrixLimits>
     852                                </TileMatrixSetLimits>
     853                        </TileMatrixSetLink>
     854                </Layer>
     855                <Layer>
     856                        <ows:Title>PLEIADES - 2014</ows:Title>
     857                        <ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract>
     858                        <ows:Keywords>
     859                                <ows:Keyword>Images satellitaires</ows:Keyword>
     860                        </ows:Keywords>
     861                        <ows:WGS84BoundingBox>
     862                                <ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner>
     863                                <ows:UpperCorner>55.8632 51.1477</ows:UpperCorner>
     864                        </ows:WGS84BoundingBox>
     865                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150407</ows:Identifier>
     866                        <Style isDefault="true">
     867                                <ows:Title>Données Brutes</ows:Title>
     868                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     869                                <ows:Keywords>
     870                                        <ows:Keyword>Défaut</ows:Keyword>
     871                                </ows:Keywords>
     872                                <ows:Identifier>normal</ows:Identifier>
     873                                <LegendURL format="image/jpeg" height="200"
     874                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     875                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     876                        </Style>
     877                        <Format>image/png</Format>
     878                        <TileMatrixSetLink>
     879                                <TileMatrixSet>PM</TileMatrixSet>
     880                                <TileMatrixSetLimits>
     881                                        <TileMatrixLimits>
     882                                                <TileMatrix>0</TileMatrix>
     883                                                <MinTileRow>0</MinTileRow>
     884                                                <MaxTileRow>0</MaxTileRow>
     885                                                <MinTileCol>0</MinTileCol>
     886                                                <MaxTileCol>0</MaxTileCol>
     887                                        </TileMatrixLimits>
     888                                        <TileMatrixLimits>
     889                                                <TileMatrix>1</TileMatrix>
     890                                                <MinTileRow>0</MinTileRow>
     891                                                <MaxTileRow>1</MaxTileRow>
     892                                                <MinTileCol>0</MinTileCol>
     893                                                <MaxTileCol>1</MaxTileCol>
     894                                        </TileMatrixLimits>
     895                                        <TileMatrixLimits>
     896                                                <TileMatrix>10</TileMatrix>
     897                                                <MinTileRow>342</MinTileRow>
     898                                                <MaxTileRow>574</MaxTileRow>
     899                                                <MinTileCol>85</MinTileCol>
     900                                                <MaxTileCol>670</MaxTileCol>
     901                                        </TileMatrixLimits>
     902                                        <TileMatrixLimits>
     903                                                <TileMatrix>11</TileMatrix>
     904                                                <MinTileRow>684</MinTileRow>
     905                                                <MaxTileRow>1148</MaxTileRow>
     906                                                <MinTileCol>171</MinTileCol>
     907                                                <MaxTileCol>1341</MaxTileCol>
     908                                        </TileMatrixLimits>
     909                                        <TileMatrixLimits>
     910                                                <TileMatrix>12</TileMatrix>
     911                                                <MinTileRow>1368</MinTileRow>
     912                                                <MaxTileRow>2297</MaxTileRow>
     913                                                <MinTileCol>342</MinTileCol>
     914                                                <MaxTileCol>2683</MaxTileCol>
     915                                        </TileMatrixLimits>
     916                                        <TileMatrixLimits>
     917                                                <TileMatrix>13</TileMatrix>
     918                                                <MinTileRow>2737</MinTileRow>
     919                                                <MaxTileRow>4594</MaxTileRow>
     920                                                <MinTileCol>684</MinTileCol>
     921                                                <MaxTileCol>5367</MaxTileCol>
     922                                        </TileMatrixLimits>
     923                                        <TileMatrixLimits>
     924                                                <TileMatrix>14</TileMatrix>
     925                                                <MinTileRow>5474</MinTileRow>
     926                                                <MaxTileRow>9188</MaxTileRow>
     927                                                <MinTileCol>1368</MinTileCol>
     928                                                <MaxTileCol>10734</MaxTileCol>
     929                                        </TileMatrixLimits>
     930                                        <TileMatrixLimits>
     931                                                <TileMatrix>15</TileMatrix>
     932                                                <MinTileRow>10948</MinTileRow>
     933                                                <MaxTileRow>18377</MaxTileRow>
     934                                                <MinTileCol>2736</MinTileCol>
     935                                                <MaxTileCol>21468</MaxTileCol>
     936                                        </TileMatrixLimits>
     937                                        <TileMatrixLimits>
     938                                                <TileMatrix>16</TileMatrix>
     939                                                <MinTileRow>21897</MinTileRow>
     940                                                <MaxTileRow>36755</MaxTileRow>
     941                                                <MinTileCol>5472</MinTileCol>
     942                                                <MaxTileCol>42937</MaxTileCol>
     943                                        </TileMatrixLimits>
     944                                        <TileMatrixLimits>
     945                                                <TileMatrix>17</TileMatrix>
     946                                                <MinTileRow>43794</MinTileRow>
     947                                                <MaxTileRow>73511</MaxTileRow>
     948                                                <MinTileCol>10945</MinTileCol>
     949                                                <MaxTileCol>85875</MaxTileCol>
     950                                        </TileMatrixLimits>
     951                                        <TileMatrixLimits>
     952                                                <TileMatrix>18</TileMatrix>
     953                                                <MinTileRow>87588</MinTileRow>
     954                                                <MaxTileRow>147023</MaxTileRow>
     955                                                <MinTileCol>21890</MinTileCol>
     956                                                <MaxTileCol>171750</MaxTileCol>
     957                                        </TileMatrixLimits>
     958                                        <TileMatrixLimits>
     959                                                <TileMatrix>2</TileMatrix>
     960                                                <MinTileRow>1</MinTileRow>
     961                                                <MaxTileRow>2</MaxTileRow>
     962                                                <MinTileCol>0</MinTileCol>
     963                                                <MaxTileCol>2</MaxTileCol>
     964                                        </TileMatrixLimits>
     965                                        <TileMatrixLimits>
     966                                                <TileMatrix>3</TileMatrix>
     967                                                <MinTileRow>2</MinTileRow>
     968                                                <MaxTileRow>4</MaxTileRow>
     969                                                <MinTileCol>0</MinTileCol>
     970                                                <MaxTileCol>5</MaxTileCol>
     971                                        </TileMatrixLimits>
     972                                        <TileMatrixLimits>
     973                                                <TileMatrix>4</TileMatrix>
     974                                                <MinTileRow>5</MinTileRow>
     975                                                <MaxTileRow>8</MaxTileRow>
     976                                                <MinTileCol>1</MinTileCol>
     977                                                <MaxTileCol>10</MaxTileCol>
     978                                        </TileMatrixLimits>
     979                                        <TileMatrixLimits>
     980                                                <TileMatrix>5</TileMatrix>
     981                                                <MinTileRow>10</MinTileRow>
     982                                                <MaxTileRow>17</MaxTileRow>
     983                                                <MinTileCol>2</MinTileCol>
     984                                                <MaxTileCol>20</MaxTileCol>
     985                                        </TileMatrixLimits>
     986                                        <TileMatrixLimits>
     987                                                <TileMatrix>6</TileMatrix>
     988                                                <MinTileRow>21</MinTileRow>
     989                                                <MaxTileRow>35</MaxTileRow>
     990                                                <MinTileCol>5</MinTileCol>
     991                                                <MaxTileCol>41</MaxTileCol>
     992                                        </TileMatrixLimits>
     993                                        <TileMatrixLimits>
     994                                                <TileMatrix>7</TileMatrix>
     995                                                <MinTileRow>42</MinTileRow>
     996                                                <MaxTileRow>71</MaxTileRow>
     997                                                <MinTileCol>10</MinTileCol>
     998                                                <MaxTileCol>83</MaxTileCol>
     999                                        </TileMatrixLimits>
     1000                                        <TileMatrixLimits>
     1001                                                <TileMatrix>8</TileMatrix>
     1002                                                <MinTileRow>85</MinTileRow>
     1003                                                <MaxTileRow>143</MaxTileRow>
     1004                                                <MinTileCol>21</MinTileCol>
     1005                                                <MaxTileCol>167</MaxTileCol>
     1006                                        </TileMatrixLimits>
     1007                                        <TileMatrixLimits>
     1008                                                <TileMatrix>9</TileMatrix>
     1009                                                <MinTileRow>171</MinTileRow>
     1010                                                <MaxTileRow>287</MaxTileRow>
     1011                                                <MinTileCol>42</MinTileCol>
     1012                                                <MaxTileCol>335</MaxTileCol>
     1013                                        </TileMatrixLimits>
     1014                                </TileMatrixSetLimits>
     1015                        </TileMatrixSetLink>
     1016                </Layer>
     1017                <Layer>
     1018                        <ows:Title>PLEIADES - 2014</ows:Title>
     1019                        <ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract>
     1020                        <ows:Keywords>
     1021                                <ows:Keyword>Images satellitaires</ows:Keyword>
     1022                        </ows:Keywords>
     1023                        <ows:WGS84BoundingBox>
     1024                                <ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner>
     1025                                <ows:UpperCorner>55.8632 51.1477</ows:UpperCorner>
     1026                        </ows:WGS84BoundingBox>
     1027                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150409</ows:Identifier>
     1028                        <Style isDefault="true">
     1029                                <ows:Title>Données Brutes</ows:Title>
     1030                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1031                                <ows:Keywords>
     1032                                        <ows:Keyword>Défaut</ows:Keyword>
     1033                                </ows:Keywords>
     1034                                <ows:Identifier>normal</ows:Identifier>
     1035                                <LegendURL format="image/jpeg" height="200"
     1036                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1037                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1038                        </Style>
     1039                        <Format>image/png</Format>
     1040                        <TileMatrixSetLink>
     1041                                <TileMatrixSet>PM</TileMatrixSet>
     1042                                <TileMatrixSetLimits>
     1043                                        <TileMatrixLimits>
     1044                                                <TileMatrix>0</TileMatrix>
     1045                                                <MinTileRow>0</MinTileRow>
     1046                                                <MaxTileRow>0</MaxTileRow>
     1047                                                <MinTileCol>0</MinTileCol>
     1048                                                <MaxTileCol>0</MaxTileCol>
     1049                                        </TileMatrixLimits>
     1050                                        <TileMatrixLimits>
     1051                                                <TileMatrix>1</TileMatrix>
     1052                                                <MinTileRow>0</MinTileRow>
     1053                                                <MaxTileRow>1</MaxTileRow>
     1054                                                <MinTileCol>0</MinTileCol>
     1055                                                <MaxTileCol>1</MaxTileCol>
     1056                                        </TileMatrixLimits>
     1057                                        <TileMatrixLimits>
     1058                                                <TileMatrix>10</TileMatrix>
     1059                                                <MinTileRow>342</MinTileRow>
     1060                                                <MaxTileRow>574</MaxTileRow>
     1061                                                <MinTileCol>85</MinTileCol>
     1062                                                <MaxTileCol>670</MaxTileCol>
     1063                                        </TileMatrixLimits>
     1064                                        <TileMatrixLimits>
     1065                                                <TileMatrix>11</TileMatrix>
     1066                                                <MinTileRow>684</MinTileRow>
     1067                                                <MaxTileRow>1148</MaxTileRow>
     1068                                                <MinTileCol>171</MinTileCol>
     1069                                                <MaxTileCol>1341</MaxTileCol>
     1070                                        </TileMatrixLimits>
     1071                                        <TileMatrixLimits>
     1072                                                <TileMatrix>12</TileMatrix>
     1073                                                <MinTileRow>1368</MinTileRow>
     1074                                                <MaxTileRow>2297</MaxTileRow>
     1075                                                <MinTileCol>342</MinTileCol>
     1076                                                <MaxTileCol>2683</MaxTileCol>
     1077                                        </TileMatrixLimits>
     1078                                        <TileMatrixLimits>
     1079                                                <TileMatrix>13</TileMatrix>
     1080                                                <MinTileRow>2737</MinTileRow>
     1081                                                <MaxTileRow>4594</MaxTileRow>
     1082                                                <MinTileCol>684</MinTileCol>
     1083                                                <MaxTileCol>5367</MaxTileCol>
     1084                                        </TileMatrixLimits>
     1085                                        <TileMatrixLimits>
     1086                                                <TileMatrix>14</TileMatrix>
     1087                                                <MinTileRow>5474</MinTileRow>
     1088                                                <MaxTileRow>9188</MaxTileRow>
     1089                                                <MinTileCol>1368</MinTileCol>
     1090                                                <MaxTileCol>10734</MaxTileCol>
     1091                                        </TileMatrixLimits>
     1092                                        <TileMatrixLimits>
     1093                                                <TileMatrix>15</TileMatrix>
     1094                                                <MinTileRow>10948</MinTileRow>
     1095                                                <MaxTileRow>18377</MaxTileRow>
     1096                                                <MinTileCol>2736</MinTileCol>
     1097                                                <MaxTileCol>21468</MaxTileCol>
     1098                                        </TileMatrixLimits>
     1099                                        <TileMatrixLimits>
     1100                                                <TileMatrix>16</TileMatrix>
     1101                                                <MinTileRow>21897</MinTileRow>
     1102                                                <MaxTileRow>36755</MaxTileRow>
     1103                                                <MinTileCol>5472</MinTileCol>
     1104                                                <MaxTileCol>42937</MaxTileCol>
     1105                                        </TileMatrixLimits>
     1106                                        <TileMatrixLimits>
     1107                                                <TileMatrix>17</TileMatrix>
     1108                                                <MinTileRow>43794</MinTileRow>
     1109                                                <MaxTileRow>73511</MaxTileRow>
     1110                                                <MinTileCol>10945</MinTileCol>
     1111                                                <MaxTileCol>85875</MaxTileCol>
     1112                                        </TileMatrixLimits>
     1113                                        <TileMatrixLimits>
     1114                                                <TileMatrix>18</TileMatrix>
     1115                                                <MinTileRow>87588</MinTileRow>
     1116                                                <MaxTileRow>147023</MaxTileRow>
     1117                                                <MinTileCol>21890</MinTileCol>
     1118                                                <MaxTileCol>171750</MaxTileCol>
     1119                                        </TileMatrixLimits>
     1120                                        <TileMatrixLimits>
     1121                                                <TileMatrix>2</TileMatrix>
     1122                                                <MinTileRow>1</MinTileRow>
     1123                                                <MaxTileRow>2</MaxTileRow>
     1124                                                <MinTileCol>0</MinTileCol>
     1125                                                <MaxTileCol>2</MaxTileCol>
     1126                                        </TileMatrixLimits>
     1127                                        <TileMatrixLimits>
     1128                                                <TileMatrix>3</TileMatrix>
     1129                                                <MinTileRow>2</MinTileRow>
     1130                                                <MaxTileRow>4</MaxTileRow>
     1131                                                <MinTileCol>0</MinTileCol>
     1132                                                <MaxTileCol>5</MaxTileCol>
     1133                                        </TileMatrixLimits>
     1134                                        <TileMatrixLimits>
     1135                                                <TileMatrix>4</TileMatrix>
     1136                                                <MinTileRow>5</MinTileRow>
     1137                                                <MaxTileRow>8</MaxTileRow>
     1138                                                <MinTileCol>1</MinTileCol>
     1139                                                <MaxTileCol>10</MaxTileCol>
     1140                                        </TileMatrixLimits>
     1141                                        <TileMatrixLimits>
     1142                                                <TileMatrix>5</TileMatrix>
     1143                                                <MinTileRow>10</MinTileRow>
     1144                                                <MaxTileRow>17</MaxTileRow>
     1145                                                <MinTileCol>2</MinTileCol>
     1146                                                <MaxTileCol>20</MaxTileCol>
     1147                                        </TileMatrixLimits>
     1148                                        <TileMatrixLimits>
     1149                                                <TileMatrix>6</TileMatrix>
     1150                                                <MinTileRow>21</MinTileRow>
     1151                                                <MaxTileRow>35</MaxTileRow>
     1152                                                <MinTileCol>5</MinTileCol>
     1153                                                <MaxTileCol>41</MaxTileCol>
     1154                                        </TileMatrixLimits>
     1155                                        <TileMatrixLimits>
     1156                                                <TileMatrix>7</TileMatrix>
     1157                                                <MinTileRow>42</MinTileRow>
     1158                                                <MaxTileRow>71</MaxTileRow>
     1159                                                <MinTileCol>10</MinTileCol>
     1160                                                <MaxTileCol>83</MaxTileCol>
     1161                                        </TileMatrixLimits>
     1162                                        <TileMatrixLimits>
     1163                                                <TileMatrix>8</TileMatrix>
     1164                                                <MinTileRow>85</MinTileRow>
     1165                                                <MaxTileRow>143</MaxTileRow>
     1166                                                <MinTileCol>21</MinTileCol>
     1167                                                <MaxTileCol>167</MaxTileCol>
     1168                                        </TileMatrixLimits>
     1169                                        <TileMatrixLimits>
     1170                                                <TileMatrix>9</TileMatrix>
     1171                                                <MinTileRow>171</MinTileRow>
     1172                                                <MaxTileRow>287</MaxTileRow>
     1173                                                <MinTileCol>42</MinTileCol>
     1174                                                <MaxTileCol>335</MaxTileCol>
     1175                                        </TileMatrixLimits>
     1176                                </TileMatrixSetLimits>
     1177                        </TileMatrixSetLink>
     1178                </Layer>
     1179                <Layer>
     1180                        <ows:Title>PLEIADES - 2014</ows:Title>
     1181                        <ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract>
     1182                        <ows:Keywords>
     1183                                <ows:Keyword>Images satellitaires</ows:Keyword>
     1184                        </ows:Keywords>
     1185                        <ows:WGS84BoundingBox>
     1186                                <ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner>
     1187                                <ows:UpperCorner>55.8632 51.1477</ows:UpperCorner>
     1188                        </ows:WGS84BoundingBox>
     1189                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2014_PYR-PNG_WLD_WM_20150709</ows:Identifier>
     1190                        <Style isDefault="true">
     1191                                <ows:Title>Données Brutes</ows:Title>
     1192                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1193                                <ows:Keywords>
     1194                                        <ows:Keyword>Défaut</ows:Keyword>
     1195                                </ows:Keywords>
     1196                                <ows:Identifier>normal</ows:Identifier>
     1197                                <LegendURL format="image/jpeg" height="200"
     1198                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1199                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1200                        </Style>
     1201                        <Format>image/png</Format>
     1202                        <TileMatrixSetLink>
     1203                                <TileMatrixSet>PM</TileMatrixSet>
     1204                                <TileMatrixSetLimits>
     1205                                        <TileMatrixLimits>
     1206                                                <TileMatrix>0</TileMatrix>
     1207                                                <MinTileRow>0</MinTileRow>
     1208                                                <MaxTileRow>0</MaxTileRow>
     1209                                                <MinTileCol>0</MinTileCol>
     1210                                                <MaxTileCol>0</MaxTileCol>
     1211                                        </TileMatrixLimits>
     1212                                        <TileMatrixLimits>
     1213                                                <TileMatrix>1</TileMatrix>
     1214                                                <MinTileRow>0</MinTileRow>
     1215                                                <MaxTileRow>1</MaxTileRow>
     1216                                                <MinTileCol>0</MinTileCol>
     1217                                                <MaxTileCol>1</MaxTileCol>
     1218                                        </TileMatrixLimits>
     1219                                        <TileMatrixLimits>
     1220                                                <TileMatrix>10</TileMatrix>
     1221                                                <MinTileRow>342</MinTileRow>
     1222                                                <MaxTileRow>574</MaxTileRow>
     1223                                                <MinTileCol>85</MinTileCol>
     1224                                                <MaxTileCol>670</MaxTileCol>
     1225                                        </TileMatrixLimits>
     1226                                        <TileMatrixLimits>
     1227                                                <TileMatrix>11</TileMatrix>
     1228                                                <MinTileRow>684</MinTileRow>
     1229                                                <MaxTileRow>1148</MaxTileRow>
     1230                                                <MinTileCol>171</MinTileCol>
     1231                                                <MaxTileCol>1341</MaxTileCol>
     1232                                        </TileMatrixLimits>
     1233                                        <TileMatrixLimits>
     1234                                                <TileMatrix>12</TileMatrix>
     1235                                                <MinTileRow>1368</MinTileRow>
     1236                                                <MaxTileRow>2297</MaxTileRow>
     1237                                                <MinTileCol>342</MinTileCol>
     1238                                                <MaxTileCol>2683</MaxTileCol>
     1239                                        </TileMatrixLimits>
     1240                                        <TileMatrixLimits>
     1241                                                <TileMatrix>13</TileMatrix>
     1242                                                <MinTileRow>2737</MinTileRow>
     1243                                                <MaxTileRow>4594</MaxTileRow>
     1244                                                <MinTileCol>684</MinTileCol>
     1245                                                <MaxTileCol>5367</MaxTileCol>
     1246                                        </TileMatrixLimits>
     1247                                        <TileMatrixLimits>
     1248                                                <TileMatrix>14</TileMatrix>
     1249                                                <MinTileRow>5474</MinTileRow>
     1250                                                <MaxTileRow>9188</MaxTileRow>
     1251                                                <MinTileCol>1368</MinTileCol>
     1252                                                <MaxTileCol>10734</MaxTileCol>
     1253                                        </TileMatrixLimits>
     1254                                        <TileMatrixLimits>
     1255                                                <TileMatrix>15</TileMatrix>
     1256                                                <MinTileRow>10948</MinTileRow>
     1257                                                <MaxTileRow>18377</MaxTileRow>
     1258                                                <MinTileCol>2736</MinTileCol>
     1259                                                <MaxTileCol>21468</MaxTileCol>
     1260                                        </TileMatrixLimits>
     1261                                        <TileMatrixLimits>
     1262                                                <TileMatrix>16</TileMatrix>
     1263                                                <MinTileRow>21897</MinTileRow>
     1264                                                <MaxTileRow>36755</MaxTileRow>
     1265                                                <MinTileCol>5472</MinTileCol>
     1266                                                <MaxTileCol>42937</MaxTileCol>
     1267                                        </TileMatrixLimits>
     1268                                        <TileMatrixLimits>
     1269                                                <TileMatrix>17</TileMatrix>
     1270                                                <MinTileRow>43794</MinTileRow>
     1271                                                <MaxTileRow>73511</MaxTileRow>
     1272                                                <MinTileCol>10945</MinTileCol>
     1273                                                <MaxTileCol>85875</MaxTileCol>
     1274                                        </TileMatrixLimits>
     1275                                        <TileMatrixLimits>
     1276                                                <TileMatrix>18</TileMatrix>
     1277                                                <MinTileRow>87588</MinTileRow>
     1278                                                <MaxTileRow>147023</MaxTileRow>
     1279                                                <MinTileCol>21890</MinTileCol>
     1280                                                <MaxTileCol>171750</MaxTileCol>
     1281                                        </TileMatrixLimits>
     1282                                        <TileMatrixLimits>
     1283                                                <TileMatrix>2</TileMatrix>
     1284                                                <MinTileRow>1</MinTileRow>
     1285                                                <MaxTileRow>2</MaxTileRow>
     1286                                                <MinTileCol>0</MinTileCol>
     1287                                                <MaxTileCol>2</MaxTileCol>
     1288                                        </TileMatrixLimits>
     1289                                        <TileMatrixLimits>
     1290                                                <TileMatrix>3</TileMatrix>
     1291                                                <MinTileRow>2</MinTileRow>
     1292                                                <MaxTileRow>4</MaxTileRow>
     1293                                                <MinTileCol>0</MinTileCol>
     1294                                                <MaxTileCol>5</MaxTileCol>
     1295                                        </TileMatrixLimits>
     1296                                        <TileMatrixLimits>
     1297                                                <TileMatrix>4</TileMatrix>
     1298                                                <MinTileRow>5</MinTileRow>
     1299                                                <MaxTileRow>8</MaxTileRow>
     1300                                                <MinTileCol>1</MinTileCol>
     1301                                                <MaxTileCol>10</MaxTileCol>
     1302                                        </TileMatrixLimits>
     1303                                        <TileMatrixLimits>
     1304                                                <TileMatrix>5</TileMatrix>
     1305                                                <MinTileRow>10</MinTileRow>
     1306                                                <MaxTileRow>17</MaxTileRow>
     1307                                                <MinTileCol>2</MinTileCol>
     1308                                                <MaxTileCol>20</MaxTileCol>
     1309                                        </TileMatrixLimits>
     1310                                        <TileMatrixLimits>
     1311                                                <TileMatrix>6</TileMatrix>
     1312                                                <MinTileRow>21</MinTileRow>
     1313                                                <MaxTileRow>35</MaxTileRow>
     1314                                                <MinTileCol>5</MinTileCol>
     1315                                                <MaxTileCol>41</MaxTileCol>
     1316                                        </TileMatrixLimits>
     1317                                        <TileMatrixLimits>
     1318                                                <TileMatrix>7</TileMatrix>
     1319                                                <MinTileRow>42</MinTileRow>
     1320                                                <MaxTileRow>71</MaxTileRow>
     1321                                                <MinTileCol>10</MinTileCol>
     1322                                                <MaxTileCol>83</MaxTileCol>
     1323                                        </TileMatrixLimits>
     1324                                        <TileMatrixLimits>
     1325                                                <TileMatrix>8</TileMatrix>
     1326                                                <MinTileRow>85</MinTileRow>
     1327                                                <MaxTileRow>143</MaxTileRow>
     1328                                                <MinTileCol>21</MinTileCol>
     1329                                                <MaxTileCol>167</MaxTileCol>
     1330                                        </TileMatrixLimits>
     1331                                        <TileMatrixLimits>
     1332                                                <TileMatrix>9</TileMatrix>
     1333                                                <MinTileRow>171</MinTileRow>
     1334                                                <MaxTileRow>287</MaxTileRow>
     1335                                                <MinTileCol>42</MinTileCol>
     1336                                                <MaxTileCol>335</MaxTileCol>
     1337                                        </TileMatrixLimits>
     1338                                </TileMatrixSetLimits>
     1339                        </TileMatrixSetLink>
     1340                </Layer>
     1341                <Layer>
     1342                        <ows:Title>PLEIADES - 2015</ows:Title>
     1343                        <ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract>
     1344                        <ows:Keywords>
     1345                                <ows:Keyword>Images satellitaires</ows:Keyword>
     1346                        </ows:Keywords>
     1347                        <ows:WGS84BoundingBox>
     1348                                <ows:LowerCorner>-2.58003 43.4205</ows:LowerCorner>
     1349                                <ows:UpperCorner>6.38925 49.3404</ows:UpperCorner>
     1350                        </ows:WGS84BoundingBox>
     1351                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2015_PYR-PNG_WLD_WM_20150925</ows:Identifier>
     1352                        <Style isDefault="true">
     1353                                <ows:Title>Données Brutes</ows:Title>
     1354                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1355                                <ows:Keywords>
     1356                                        <ows:Keyword>Défaut</ows:Keyword>
     1357                                </ows:Keywords>
     1358                                <ows:Identifier>normal</ows:Identifier>
     1359                                <LegendURL format="image/jpeg" height="200"
     1360                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1361                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1362                        </Style>
     1363                        <Format>image/png</Format>
     1364                        <TileMatrixSetLink>
     1365                                <TileMatrixSet>PM</TileMatrixSet>
     1366                                <TileMatrixSetLimits>
     1367                                        <TileMatrixLimits>
     1368                                                <TileMatrix>0</TileMatrix>
     1369                                                <MinTileRow>0</MinTileRow>
     1370                                                <MaxTileRow>0</MaxTileRow>
     1371                                                <MinTileCol>0</MinTileCol>
     1372                                                <MaxTileCol>0</MaxTileCol>
     1373                                        </TileMatrixLimits>
     1374                                        <TileMatrixLimits>
     1375                                                <TileMatrix>1</TileMatrix>
     1376                                                <MinTileRow>0</MinTileRow>
     1377                                                <MaxTileRow>0</MaxTileRow>
     1378                                                <MinTileCol>0</MinTileCol>
     1379                                                <MaxTileCol>1</MaxTileCol>
     1380                                        </TileMatrixLimits>
     1381                                        <TileMatrixLimits>
     1382                                                <TileMatrix>10</TileMatrix>
     1383                                                <MinTileRow>350</MinTileRow>
     1384                                                <MaxTileRow>374</MaxTileRow>
     1385                                                <MinTileCol>504</MinTileCol>
     1386                                                <MaxTileCol>530</MaxTileCol>
     1387                                        </TileMatrixLimits>
     1388                                        <TileMatrixLimits>
     1389                                                <TileMatrix>11</TileMatrix>
     1390                                                <MinTileRow>700</MinTileRow>
     1391                                                <MaxTileRow>749</MaxTileRow>
     1392                                                <MinTileCol>1009</MinTileCol>
     1393                                                <MaxTileCol>1060</MaxTileCol>
     1394                                        </TileMatrixLimits>
     1395                                        <TileMatrixLimits>
     1396                                                <TileMatrix>12</TileMatrix>
     1397                                                <MinTileRow>1400</MinTileRow>
     1398                                                <MaxTileRow>1498</MaxTileRow>
     1399                                                <MinTileCol>2018</MinTileCol>
     1400                                                <MaxTileCol>2120</MaxTileCol>
     1401                                        </TileMatrixLimits>
     1402                                        <TileMatrixLimits>
     1403                                                <TileMatrix>13</TileMatrix>
     1404                                                <MinTileRow>2801</MinTileRow>
     1405                                                <MaxTileRow>2997</MaxTileRow>
     1406                                                <MinTileCol>4037</MinTileCol>
     1407                                                <MaxTileCol>4241</MaxTileCol>
     1408                                        </TileMatrixLimits>
     1409                                        <TileMatrixLimits>
     1410                                                <TileMatrix>14</TileMatrix>
     1411                                                <MinTileRow>5602</MinTileRow>
     1412                                                <MaxTileRow>5994</MaxTileRow>
     1413                                                <MinTileCol>8075</MinTileCol>
     1414                                                <MaxTileCol>8482</MaxTileCol>
     1415                                        </TileMatrixLimits>
     1416                                        <TileMatrixLimits>
     1417                                                <TileMatrix>15</TileMatrix>
     1418                                                <MinTileRow>11205</MinTileRow>
     1419                                                <MaxTileRow>11988</MaxTileRow>
     1420                                                <MinTileCol>16150</MinTileCol>
     1421                                                <MaxTileCol>16964</MaxTileCol>
     1422                                        </TileMatrixLimits>
     1423                                        <TileMatrixLimits>
     1424                                                <TileMatrix>16</TileMatrix>
     1425                                                <MinTileRow>22411</MinTileRow>
     1426                                                <MaxTileRow>23976</MaxTileRow>
     1427                                                <MinTileCol>32300</MinTileCol>
     1428                                                <MaxTileCol>33929</MaxTileCol>
     1429                                        </TileMatrixLimits>
     1430                                        <TileMatrixLimits>
     1431                                                <TileMatrix>17</TileMatrix>
     1432                                                <MinTileRow>44823</MinTileRow>
     1433                                                <MaxTileRow>47952</MaxTileRow>
     1434                                                <MinTileCol>64600</MinTileCol>
     1435                                                <MaxTileCol>67858</MaxTileCol>
     1436                                        </TileMatrixLimits>
     1437                                        <TileMatrixLimits>
     1438                                                <TileMatrix>18</TileMatrix>
     1439                                                <MinTileRow>89646</MinTileRow>
     1440                                                <MaxTileRow>95904</MaxTileRow>
     1441                                                <MinTileCol>129200</MinTileCol>
     1442                                                <MaxTileCol>135716</MaxTileCol>
     1443                                        </TileMatrixLimits>
     1444                                        <TileMatrixLimits>
     1445                                                <TileMatrix>2</TileMatrix>
     1446                                                <MinTileRow>1</MinTileRow>
     1447                                                <MaxTileRow>1</MaxTileRow>
     1448                                                <MinTileCol>1</MinTileCol>
     1449                                                <MaxTileCol>2</MaxTileCol>
     1450                                        </TileMatrixLimits>
     1451                                        <TileMatrixLimits>
     1452                                                <TileMatrix>3</TileMatrix>
     1453                                                <MinTileRow>2</MinTileRow>
     1454                                                <MaxTileRow>2</MaxTileRow>
     1455                                                <MinTileCol>3</MinTileCol>
     1456                                                <MaxTileCol>4</MaxTileCol>
     1457                                        </TileMatrixLimits>
     1458                                        <TileMatrixLimits>
     1459                                                <TileMatrix>4</TileMatrix>
     1460                                                <MinTileRow>5</MinTileRow>
     1461                                                <MaxTileRow>5</MaxTileRow>
     1462                                                <MinTileCol>7</MinTileCol>
     1463                                                <MaxTileCol>8</MaxTileCol>
     1464                                        </TileMatrixLimits>
     1465                                        <TileMatrixLimits>
     1466                                                <TileMatrix>5</TileMatrix>
     1467                                                <MinTileRow>10</MinTileRow>
     1468                                                <MaxTileRow>11</MaxTileRow>
     1469                                                <MinTileCol>15</MinTileCol>
     1470                                                <MaxTileCol>16</MaxTileCol>
     1471                                        </TileMatrixLimits>
     1472                                        <TileMatrixLimits>
     1473                                                <TileMatrix>6</TileMatrix>
     1474                                                <MinTileRow>21</MinTileRow>
     1475                                                <MaxTileRow>23</MaxTileRow>
     1476                                                <MinTileCol>31</MinTileCol>
     1477                                                <MaxTileCol>33</MaxTileCol>
     1478                                        </TileMatrixLimits>
     1479                                        <TileMatrixLimits>
     1480                                                <TileMatrix>7</TileMatrix>
     1481                                                <MinTileRow>43</MinTileRow>
     1482                                                <MaxTileRow>46</MaxTileRow>
     1483                                                <MinTileCol>63</MinTileCol>
     1484                                                <MaxTileCol>66</MaxTileCol>
     1485                                        </TileMatrixLimits>
     1486                                        <TileMatrixLimits>
     1487                                                <TileMatrix>8</TileMatrix>
     1488                                                <MinTileRow>87</MinTileRow>
     1489                                                <MaxTileRow>93</MaxTileRow>
     1490                                                <MinTileCol>126</MinTileCol>
     1491                                                <MaxTileCol>132</MaxTileCol>
     1492                                        </TileMatrixLimits>
     1493                                        <TileMatrixLimits>
     1494                                                <TileMatrix>9</TileMatrix>
     1495                                                <MinTileRow>175</MinTileRow>
     1496                                                <MaxTileRow>187</MaxTileRow>
     1497                                                <MinTileCol>252</MinTileCol>
     1498                                                <MaxTileCol>265</MaxTileCol>
     1499                                        </TileMatrixLimits>
     1500                                </TileMatrixSetLimits>
     1501                        </TileMatrixSetLink>
     1502                </Layer>
     1503                <Layer>
     1504                        <ows:Title>PLEIADES - 2015</ows:Title>
     1505                        <ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract>
     1506                        <ows:Keywords>
     1507                                <ows:Keyword>Images satellitaires</ows:Keyword>
     1508                        </ows:Keywords>
     1509                        <ows:WGS84BoundingBox>
     1510                                <ows:LowerCorner>-2.58003 43.1306</ows:LowerCorner>
     1511                                <ows:UpperCorner>6.38925 49.3404</ows:UpperCorner>
     1512                        </ows:WGS84BoundingBox>
     1513                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-PLEIADES-2015_PYR-PNG_WLD_WM_20151014</ows:Identifier>
     1514                        <Style isDefault="true">
     1515                                <ows:Title>Données Brutes</ows:Title>
     1516                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1517                                <ows:Keywords>
     1518                                        <ows:Keyword>Défaut</ows:Keyword>
     1519                                </ows:Keywords>
     1520                                <ows:Identifier>normal</ows:Identifier>
     1521                                <LegendURL format="image/jpeg" height="200"
     1522                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1523                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1524                        </Style>
     1525                        <Format>image/png</Format>
     1526                        <TileMatrixSetLink>
     1527                                <TileMatrixSet>PM</TileMatrixSet>
     1528                                <TileMatrixSetLimits>
     1529                                        <TileMatrixLimits>
     1530                                                <TileMatrix>0</TileMatrix>
     1531                                                <MinTileRow>0</MinTileRow>
     1532                                                <MaxTileRow>0</MaxTileRow>
     1533                                                <MinTileCol>0</MinTileCol>
     1534                                                <MaxTileCol>0</MaxTileCol>
     1535                                        </TileMatrixLimits>
     1536                                        <TileMatrixLimits>
     1537                                                <TileMatrix>1</TileMatrix>
     1538                                                <MinTileRow>0</MinTileRow>
     1539                                                <MaxTileRow>0</MaxTileRow>
     1540                                                <MinTileCol>0</MinTileCol>
     1541                                                <MaxTileCol>1</MaxTileCol>
     1542                                        </TileMatrixLimits>
     1543                                        <TileMatrixLimits>
     1544                                                <TileMatrix>10</TileMatrix>
     1545                                                <MinTileRow>350</MinTileRow>
     1546                                                <MaxTileRow>375</MaxTileRow>
     1547                                                <MinTileCol>504</MinTileCol>
     1548                                                <MaxTileCol>530</MaxTileCol>
     1549                                        </TileMatrixLimits>
     1550                                        <TileMatrixLimits>
     1551                                                <TileMatrix>11</TileMatrix>
     1552                                                <MinTileRow>700</MinTileRow>
     1553                                                <MaxTileRow>751</MaxTileRow>
     1554                                                <MinTileCol>1009</MinTileCol>
     1555                                                <MaxTileCol>1060</MaxTileCol>
     1556                                        </TileMatrixLimits>
     1557                                        <TileMatrixLimits>
     1558                                                <TileMatrix>12</TileMatrix>
     1559                                                <MinTileRow>1400</MinTileRow>
     1560                                                <MaxTileRow>1503</MaxTileRow>
     1561                                                <MinTileCol>2018</MinTileCol>
     1562                                                <MaxTileCol>2120</MaxTileCol>
     1563                                        </TileMatrixLimits>
     1564                                        <TileMatrixLimits>
     1565                                                <TileMatrix>13</TileMatrix>
     1566                                                <MinTileRow>2801</MinTileRow>
     1567                                                <MaxTileRow>3006</MaxTileRow>
     1568                                                <MinTileCol>4037</MinTileCol>
     1569                                                <MaxTileCol>4241</MaxTileCol>
     1570                                        </TileMatrixLimits>
     1571                                        <TileMatrixLimits>
     1572                                                <TileMatrix>14</TileMatrix>
     1573                                                <MinTileRow>5602</MinTileRow>
     1574                                                <MaxTileRow>6012</MaxTileRow>
     1575                                                <MinTileCol>8075</MinTileCol>
     1576                                                <MaxTileCol>8482</MaxTileCol>
     1577                                        </TileMatrixLimits>
     1578                                        <TileMatrixLimits>
     1579                                                <TileMatrix>15</TileMatrix>
     1580                                                <MinTileRow>11205</MinTileRow>
     1581                                                <MaxTileRow>12024</MaxTileRow>
     1582                                                <MinTileCol>16150</MinTileCol>
     1583                                                <MaxTileCol>16964</MaxTileCol>
     1584                                        </TileMatrixLimits>
     1585                                        <TileMatrixLimits>
     1586                                                <TileMatrix>16</TileMatrix>
     1587                                                <MinTileRow>22411</MinTileRow>
     1588                                                <MaxTileRow>24048</MaxTileRow>
     1589                                                <MinTileCol>32300</MinTileCol>
     1590                                                <MaxTileCol>33929</MaxTileCol>
     1591                                        </TileMatrixLimits>
     1592                                        <TileMatrixLimits>
     1593                                                <TileMatrix>17</TileMatrix>
     1594                                                <MinTileRow>44823</MinTileRow>
     1595                                                <MaxTileRow>48097</MaxTileRow>
     1596                                                <MinTileCol>64600</MinTileCol>
     1597                                                <MaxTileCol>67858</MaxTileCol>
     1598                                        </TileMatrixLimits>
     1599                                        <TileMatrixLimits>
     1600                                                <TileMatrix>18</TileMatrix>
     1601                                                <MinTileRow>89646</MinTileRow>
     1602                                                <MaxTileRow>96194</MaxTileRow>
     1603                                                <MinTileCol>129200</MinTileCol>
     1604                                                <MaxTileCol>135716</MaxTileCol>
     1605                                        </TileMatrixLimits>
     1606                                        <TileMatrixLimits>
     1607                                                <TileMatrix>2</TileMatrix>
     1608                                                <MinTileRow>1</MinTileRow>
     1609                                                <MaxTileRow>1</MaxTileRow>
     1610                                                <MinTileCol>1</MinTileCol>
     1611                                                <MaxTileCol>2</MaxTileCol>
     1612                                        </TileMatrixLimits>
     1613                                        <TileMatrixLimits>
     1614                                                <TileMatrix>3</TileMatrix>
     1615                                                <MinTileRow>2</MinTileRow>
     1616                                                <MaxTileRow>2</MaxTileRow>
     1617                                                <MinTileCol>3</MinTileCol>
     1618                                                <MaxTileCol>4</MaxTileCol>
     1619                                        </TileMatrixLimits>
     1620                                        <TileMatrixLimits>
     1621                                                <TileMatrix>4</TileMatrix>
     1622                                                <MinTileRow>5</MinTileRow>
     1623                                                <MaxTileRow>5</MaxTileRow>
     1624                                                <MinTileCol>7</MinTileCol>
     1625                                                <MaxTileCol>8</MaxTileCol>
     1626                                        </TileMatrixLimits>
     1627                                        <TileMatrixLimits>
     1628                                                <TileMatrix>5</TileMatrix>
     1629                                                <MinTileRow>10</MinTileRow>
     1630                                                <MaxTileRow>11</MaxTileRow>
     1631                                                <MinTileCol>15</MinTileCol>
     1632                                                <MaxTileCol>16</MaxTileCol>
     1633                                        </TileMatrixLimits>
     1634                                        <TileMatrixLimits>
     1635                                                <TileMatrix>6</TileMatrix>
     1636                                                <MinTileRow>21</MinTileRow>
     1637                                                <MaxTileRow>23</MaxTileRow>
     1638                                                <MinTileCol>31</MinTileCol>
     1639                                                <MaxTileCol>33</MaxTileCol>
     1640                                        </TileMatrixLimits>
     1641                                        <TileMatrixLimits>
     1642                                                <TileMatrix>7</TileMatrix>
     1643                                                <MinTileRow>43</MinTileRow>
     1644                                                <MaxTileRow>46</MaxTileRow>
     1645                                                <MinTileCol>63</MinTileCol>
     1646                                                <MaxTileCol>66</MaxTileCol>
     1647                                        </TileMatrixLimits>
     1648                                        <TileMatrixLimits>
     1649                                                <TileMatrix>8</TileMatrix>
     1650                                                <MinTileRow>87</MinTileRow>
     1651                                                <MaxTileRow>93</MaxTileRow>
     1652                                                <MinTileCol>126</MinTileCol>
     1653                                                <MaxTileCol>132</MaxTileCol>
     1654                                        </TileMatrixLimits>
     1655                                        <TileMatrixLimits>
     1656                                                <TileMatrix>9</TileMatrix>
     1657                                                <MinTileRow>175</MinTileRow>
     1658                                                <MaxTileRow>187</MaxTileRow>
     1659                                                <MinTileCol>252</MinTileCol>
     1660                                                <MaxTileCol>265</MaxTileCol>
     1661                                        </TileMatrixLimits>
     1662                                </TileMatrixSetLimits>
     1663                        </TileMatrixSetLink>
     1664                </Layer>
     1665                <Layer>
     1666                        <ows:Title>Millésime Spot 2013</ows:Title>
     1667                        <ows:Abstract>Agrégation des images Spot de l'année 2013</ows:Abstract>
     1668                        <ows:Keywords>
     1669                                <ows:Keyword>Photographies</ows:Keyword>
     1670                        </ows:Keywords>
     1671                        <ows:WGS84BoundingBox>
     1672                                <ows:LowerCorner>0.563585 44.8809</ows:LowerCorner>
     1673                                <ows:UpperCorner>4.29191 50.3879</ows:UpperCorner>
     1674                        </ows:WGS84BoundingBox>
     1675                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2013_PYR-JPEG_WLD_WM_2014-09-05</ows:Identifier>
     1676                        <Style isDefault="true">
     1677                                <ows:Title>Données Brutes</ows:Title>
     1678                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1679                                <ows:Keywords>
     1680                                        <ows:Keyword>Défaut</ows:Keyword>
     1681                                </ows:Keywords>
     1682                                <ows:Identifier>normal</ows:Identifier>
     1683                                <LegendURL format="image/jpeg" height="200"
     1684                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1685                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1686                        </Style>
     1687                        <Format>image/jpeg</Format>
     1688                        <TileMatrixSetLink>
     1689                                <TileMatrixSet>PM</TileMatrixSet>
     1690                                <TileMatrixSetLimits>
     1691                                        <TileMatrixLimits>
     1692                                                <TileMatrix>0</TileMatrix>
     1693                                                <MinTileRow>0</MinTileRow>
     1694                                                <MaxTileRow>0</MaxTileRow>
     1695                                                <MinTileCol>0</MinTileCol>
     1696                                                <MaxTileCol>0</MaxTileCol>
     1697                                        </TileMatrixLimits>
     1698                                        <TileMatrixLimits>
     1699                                                <TileMatrix>1</TileMatrix>
     1700                                                <MinTileRow>0</MinTileRow>
     1701                                                <MaxTileRow>0</MaxTileRow>
     1702                                                <MinTileCol>1</MinTileCol>
     1703                                                <MaxTileCol>1</MaxTileCol>
     1704                                        </TileMatrixLimits>
     1705                                        <TileMatrixLimits>
     1706                                                <TileMatrix>10</TileMatrix>
     1707                                                <MinTileRow>345</MinTileRow>
     1708                                                <MaxTileRow>368</MaxTileRow>
     1709                                                <MinTileCol>513</MinTileCol>
     1710                                                <MaxTileCol>524</MaxTileCol>
     1711                                        </TileMatrixLimits>
     1712                                        <TileMatrixLimits>
     1713                                                <TileMatrix>11</TileMatrix>
     1714                                                <MinTileRow>691</MinTileRow>
     1715                                                <MaxTileRow>737</MaxTileRow>
     1716                                                <MinTileCol>1027</MinTileCol>
     1717                                                <MaxTileCol>1048</MaxTileCol>
     1718                                        </TileMatrixLimits>
     1719                                        <TileMatrixLimits>
     1720                                                <TileMatrix>12</TileMatrix>
     1721                                                <MinTileRow>1382</MinTileRow>
     1722                                                <MaxTileRow>1475</MaxTileRow>
     1723                                                <MinTileCol>2054</MinTileCol>
     1724                                                <MaxTileCol>2096</MaxTileCol>
     1725                                        </TileMatrixLimits>
     1726                                        <TileMatrixLimits>
     1727                                                <TileMatrix>13</TileMatrix>
     1728                                                <MinTileRow>2764</MinTileRow>
     1729                                                <MaxTileRow>2950</MaxTileRow>
     1730                                                <MinTileCol>4109</MinTileCol>
     1731                                                <MaxTileCol>4193</MaxTileCol>
     1732                                        </TileMatrixLimits>
     1733                                        <TileMatrixLimits>
     1734                                                <TileMatrix>14</TileMatrix>
     1735                                                <MinTileRow>5528</MinTileRow>
     1736                                                <MaxTileRow>5900</MaxTileRow>
     1737                                                <MinTileCol>8219</MinTileCol>
     1738                                                <MaxTileCol>8386</MaxTileCol>
     1739                                        </TileMatrixLimits>
     1740                                        <TileMatrixLimits>
     1741                                                <TileMatrix>15</TileMatrix>
     1742                                                <MinTileRow>11057</MinTileRow>
     1743                                                <MaxTileRow>11800</MaxTileRow>
     1744                                                <MinTileCol>16438</MinTileCol>
     1745                                                <MaxTileCol>16773</MaxTileCol>
     1746                                        </TileMatrixLimits>
     1747                                        <TileMatrixLimits>
     1748                                                <TileMatrix>16</TileMatrix>
     1749                                                <MinTileRow>22115</MinTileRow>
     1750                                                <MaxTileRow>23600</MaxTileRow>
     1751                                                <MinTileCol>32876</MinTileCol>
     1752                                                <MaxTileCol>33547</MaxTileCol>
     1753                                        </TileMatrixLimits>
     1754                                        <TileMatrixLimits>
     1755                                                <TileMatrix>17</TileMatrix>
     1756                                                <MinTileRow>44231</MinTileRow>
     1757                                                <MaxTileRow>47201</MaxTileRow>
     1758                                                <MinTileCol>65752</MinTileCol>
     1759                                                <MaxTileCol>67094</MaxTileCol>
     1760                                        </TileMatrixLimits>
     1761                                        <TileMatrixLimits>
     1762                                                <TileMatrix>2</TileMatrix>
     1763                                                <MinTileRow>1</MinTileRow>
     1764                                                <MaxTileRow>1</MaxTileRow>
     1765                                                <MinTileCol>2</MinTileCol>
     1766                                                <MaxTileCol>2</MaxTileCol>
     1767                                        </TileMatrixLimits>
     1768                                        <TileMatrixLimits>
     1769                                                <TileMatrix>3</TileMatrix>
     1770                                                <MinTileRow>2</MinTileRow>
     1771                                                <MaxTileRow>2</MaxTileRow>
     1772                                                <MinTileCol>4</MinTileCol>
     1773                                                <MaxTileCol>4</MaxTileCol>
     1774                                        </TileMatrixLimits>
     1775                                        <TileMatrixLimits>
     1776                                                <TileMatrix>4</TileMatrix>
     1777                                                <MinTileRow>5</MinTileRow>
     1778                                                <MaxTileRow>5</MaxTileRow>
     1779                                                <MinTileCol>8</MinTileCol>
     1780                                                <MaxTileCol>8</MaxTileCol>
     1781                                        </TileMatrixLimits>
     1782                                        <TileMatrixLimits>
     1783                                                <TileMatrix>5</TileMatrix>
     1784                                                <MinTileRow>10</MinTileRow>
     1785                                                <MaxTileRow>11</MaxTileRow>
     1786                                                <MinTileCol>16</MinTileCol>
     1787                                                <MaxTileCol>16</MaxTileCol>
     1788                                        </TileMatrixLimits>
     1789                                        <TileMatrixLimits>
     1790                                                <TileMatrix>6</TileMatrix>
     1791                                                <MinTileRow>21</MinTileRow>
     1792                                                <MaxTileRow>23</MaxTileRow>
     1793                                                <MinTileCol>32</MinTileCol>
     1794                                                <MaxTileCol>32</MaxTileCol>
     1795                                        </TileMatrixLimits>
     1796                                        <TileMatrixLimits>
     1797                                                <TileMatrix>7</TileMatrix>
     1798                                                <MinTileRow>43</MinTileRow>
     1799                                                <MaxTileRow>46</MaxTileRow>
     1800                                                <MinTileCol>64</MinTileCol>
     1801                                                <MaxTileCol>65</MaxTileCol>
     1802                                        </TileMatrixLimits>
     1803                                        <TileMatrixLimits>
     1804                                                <TileMatrix>8</TileMatrix>
     1805                                                <MinTileRow>86</MinTileRow>
     1806                                                <MaxTileRow>92</MaxTileRow>
     1807                                                <MinTileCol>128</MinTileCol>
     1808                                                <MaxTileCol>131</MaxTileCol>
     1809                                        </TileMatrixLimits>
     1810                                        <TileMatrixLimits>
     1811                                                <TileMatrix>9</TileMatrix>
     1812                                                <MinTileRow>172</MinTileRow>
     1813                                                <MaxTileRow>184</MaxTileRow>
     1814                                                <MinTileCol>256</MinTileCol>
     1815                                                <MaxTileCol>262</MaxTileCol>
     1816                                        </TileMatrixLimits>
     1817                                </TileMatrixSetLimits>
     1818                        </TileMatrixSetLink>
     1819                </Layer>
     1820                <Layer>
     1821                        <ows:Title>Millésime Spot 2014</ows:Title>
     1822                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     1823                        <ows:Keywords>
     1824                                <ows:Keyword>Photographies</ows:Keyword>
     1825                        </ows:Keywords>
     1826                        <ows:WGS84BoundingBox>
     1827                                <ows:LowerCorner>2.05557 44.6002</ows:LowerCorner>
     1828                                <ows:UpperCorner>4.45587 46.8203</ows:UpperCorner>
     1829                        </ows:WGS84BoundingBox>
     1830                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-09-18</ows:Identifier>
     1831                        <Style isDefault="true">
     1832                                <ows:Title>Données Brutes</ows:Title>
     1833                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1834                                <ows:Keywords>
     1835                                        <ows:Keyword>Défaut</ows:Keyword>
     1836                                </ows:Keywords>
     1837                                <ows:Identifier>normal</ows:Identifier>
     1838                                <LegendURL format="image/jpeg" height="200"
     1839                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1840                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1841                        </Style>
     1842                        <Format>image/jpeg</Format>
     1843                        <TileMatrixSetLink>
     1844                                <TileMatrixSet>PM</TileMatrixSet>
     1845                                <TileMatrixSetLimits>
     1846                                        <TileMatrixLimits>
     1847                                                <TileMatrix>0</TileMatrix>
     1848                                                <MinTileRow>0</MinTileRow>
     1849                                                <MaxTileRow>0</MaxTileRow>
     1850                                                <MinTileCol>0</MinTileCol>
     1851                                                <MaxTileCol>0</MaxTileCol>
     1852                                        </TileMatrixLimits>
     1853                                        <TileMatrixLimits>
     1854                                                <TileMatrix>1</TileMatrix>
     1855                                                <MinTileRow>0</MinTileRow>
     1856                                                <MaxTileRow>0</MaxTileRow>
     1857                                                <MinTileCol>1</MinTileCol>
     1858                                                <MaxTileCol>1</MaxTileCol>
     1859                                        </TileMatrixLimits>
     1860                                        <TileMatrixLimits>
     1861                                                <TileMatrix>10</TileMatrix>
     1862                                                <MinTileRow>360</MinTileRow>
     1863                                                <MaxTileRow>369</MaxTileRow>
     1864                                                <MinTileCol>517</MinTileCol>
     1865                                                <MaxTileCol>524</MaxTileCol>
     1866                                        </TileMatrixLimits>
     1867                                        <TileMatrixLimits>
     1868                                                <TileMatrix>11</TileMatrix>
     1869                                                <MinTileRow>721</MinTileRow>
     1870                                                <MaxTileRow>739</MaxTileRow>
     1871                                                <MinTileCol>1035</MinTileCol>
     1872                                                <MaxTileCol>1049</MaxTileCol>
     1873                                        </TileMatrixLimits>
     1874                                        <TileMatrixLimits>
     1875                                                <TileMatrix>12</TileMatrix>
     1876                                                <MinTileRow>1443</MinTileRow>
     1877                                                <MaxTileRow>1479</MaxTileRow>
     1878                                                <MinTileCol>2071</MinTileCol>
     1879                                                <MaxTileCol>2098</MaxTileCol>
     1880                                        </TileMatrixLimits>
     1881                                        <TileMatrixLimits>
     1882                                                <TileMatrix>13</TileMatrix>
     1883                                                <MinTileRow>2887</MinTileRow>
     1884                                                <MaxTileRow>2959</MaxTileRow>
     1885                                                <MinTileCol>4143</MinTileCol>
     1886                                                <MaxTileCol>4196</MaxTileCol>
     1887                                        </TileMatrixLimits>
     1888                                        <TileMatrixLimits>
     1889                                                <TileMatrix>14</TileMatrix>
     1890                                                <MinTileRow>5774</MinTileRow>
     1891                                                <MaxTileRow>5919</MaxTileRow>
     1892                                                <MinTileCol>8287</MinTileCol>
     1893                                                <MaxTileCol>8392</MaxTileCol>
     1894                                        </TileMatrixLimits>
     1895                                        <TileMatrixLimits>
     1896                                                <TileMatrix>15</TileMatrix>
     1897                                                <MinTileRow>11548</MinTileRow>
     1898                                                <MaxTileRow>11838</MaxTileRow>
     1899                                                <MinTileCol>16574</MinTileCol>
     1900                                                <MaxTileCol>16785</MaxTileCol>
     1901                                        </TileMatrixLimits>
     1902                                        <TileMatrixLimits>
     1903                                                <TileMatrix>16</TileMatrix>
     1904                                                <MinTileRow>23097</MinTileRow>
     1905                                                <MaxTileRow>23676</MaxTileRow>
     1906                                                <MinTileCol>33148</MinTileCol>
     1907                                                <MaxTileCol>33571</MaxTileCol>
     1908                                        </TileMatrixLimits>
     1909                                        <TileMatrixLimits>
     1910                                                <TileMatrix>17</TileMatrix>
     1911                                                <MinTileRow>46195</MinTileRow>
     1912                                                <MaxTileRow>47352</MaxTileRow>
     1913                                                <MinTileCol>66296</MinTileCol>
     1914                                                <MaxTileCol>67143</MaxTileCol>
     1915                                        </TileMatrixLimits>
     1916                                        <TileMatrixLimits>
     1917                                                <TileMatrix>2</TileMatrix>
     1918                                                <MinTileRow>1</MinTileRow>
     1919                                                <MaxTileRow>1</MaxTileRow>
     1920                                                <MinTileCol>2</MinTileCol>
     1921                                                <MaxTileCol>2</MaxTileCol>
     1922                                        </TileMatrixLimits>
     1923                                        <TileMatrixLimits>
     1924                                                <TileMatrix>3</TileMatrix>
     1925                                                <MinTileRow>2</MinTileRow>
     1926                                                <MaxTileRow>2</MaxTileRow>
     1927                                                <MinTileCol>4</MinTileCol>
     1928                                                <MaxTileCol>4</MaxTileCol>
     1929                                        </TileMatrixLimits>
     1930                                        <TileMatrixLimits>
     1931                                                <TileMatrix>4</TileMatrix>
     1932                                                <MinTileRow>5</MinTileRow>
     1933                                                <MaxTileRow>5</MaxTileRow>
     1934                                                <MinTileCol>8</MinTileCol>
     1935                                                <MaxTileCol>8</MaxTileCol>
     1936                                        </TileMatrixLimits>
     1937                                        <TileMatrixLimits>
     1938                                                <TileMatrix>5</TileMatrix>
     1939                                                <MinTileRow>11</MinTileRow>
     1940                                                <MaxTileRow>11</MaxTileRow>
     1941                                                <MinTileCol>16</MinTileCol>
     1942                                                <MaxTileCol>16</MaxTileCol>
     1943                                        </TileMatrixLimits>
     1944                                        <TileMatrixLimits>
     1945                                                <TileMatrix>6</TileMatrix>
     1946                                                <MinTileRow>22</MinTileRow>
     1947                                                <MaxTileRow>23</MaxTileRow>
     1948                                                <MinTileCol>32</MinTileCol>
     1949                                                <MaxTileCol>32</MaxTileCol>
     1950                                        </TileMatrixLimits>
     1951                                        <TileMatrixLimits>
     1952                                                <TileMatrix>7</TileMatrix>
     1953                                                <MinTileRow>45</MinTileRow>
     1954                                                <MaxTileRow>46</MaxTileRow>
     1955                                                <MinTileCol>64</MinTileCol>
     1956                                                <MaxTileCol>65</MaxTileCol>
     1957                                        </TileMatrixLimits>
     1958                                        <TileMatrixLimits>
     1959                                                <TileMatrix>8</TileMatrix>
     1960                                                <MinTileRow>90</MinTileRow>
     1961                                                <MaxTileRow>92</MaxTileRow>
     1962                                                <MinTileCol>129</MinTileCol>
     1963                                                <MaxTileCol>131</MaxTileCol>
     1964                                        </TileMatrixLimits>
     1965                                        <TileMatrixLimits>
     1966                                                <TileMatrix>9</TileMatrix>
     1967                                                <MinTileRow>180</MinTileRow>
     1968                                                <MaxTileRow>184</MaxTileRow>
     1969                                                <MinTileCol>258</MinTileCol>
     1970                                                <MaxTileCol>262</MaxTileCol>
     1971                                        </TileMatrixLimits>
     1972                                </TileMatrixSetLimits>
     1973                        </TileMatrixSetLink>
     1974                </Layer>
     1975                <Layer>
     1976                        <ows:Title>Millésime Spot 2014</ows:Title>
     1977                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     1978                        <ows:Keywords>
     1979                                <ows:Keyword>Photographies</ows:Keyword>
     1980                        </ows:Keywords>
     1981                        <ows:WGS84BoundingBox>
     1982                                <ows:LowerCorner>2.05557 41.3101</ows:LowerCorner>
     1983                                <ows:UpperCorner>9.69656 46.8203</ows:UpperCorner>
     1984                        </ows:WGS84BoundingBox>
     1985                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-10-10</ows:Identifier>
     1986                        <Style isDefault="true">
     1987                                <ows:Title>Données Brutes</ows:Title>
     1988                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     1989                                <ows:Keywords>
     1990                                        <ows:Keyword>Défaut</ows:Keyword>
     1991                                </ows:Keywords>
     1992                                <ows:Identifier>normal</ows:Identifier>
     1993                                <LegendURL format="image/jpeg" height="200"
     1994                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     1995                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     1996                        </Style>
     1997                        <Format>image/jpeg</Format>
     1998                        <TileMatrixSetLink>
     1999                                <TileMatrixSet>PM</TileMatrixSet>
     2000                                <TileMatrixSetLimits>
     2001                                        <TileMatrixLimits>
     2002                                                <TileMatrix>0</TileMatrix>
     2003                                                <MinTileRow>0</MinTileRow>
     2004                                                <MaxTileRow>0</MaxTileRow>
     2005                                                <MinTileCol>0</MinTileCol>
     2006                                                <MaxTileCol>0</MaxTileCol>
     2007                                        </TileMatrixLimits>
     2008                                        <TileMatrixLimits>
     2009                                                <TileMatrix>1</TileMatrix>
     2010                                                <MinTileRow>0</MinTileRow>
     2011                                                <MaxTileRow>0</MaxTileRow>
     2012                                                <MinTileCol>1</MinTileCol>
     2013                                                <MaxTileCol>1</MaxTileCol>
     2014                                        </TileMatrixLimits>
     2015                                        <TileMatrixLimits>
     2016                                                <TileMatrix>10</TileMatrix>
     2017                                                <MinTileRow>360</MinTileRow>
     2018                                                <MaxTileRow>382</MaxTileRow>
     2019                                                <MinTileCol>517</MinTileCol>
     2020                                                <MaxTileCol>539</MaxTileCol>
     2021                                        </TileMatrixLimits>
     2022                                        <TileMatrixLimits>
     2023                                                <TileMatrix>11</TileMatrix>
     2024                                                <MinTileRow>721</MinTileRow>
     2025                                                <MaxTileRow>765</MaxTileRow>
     2026                                                <MinTileCol>1035</MinTileCol>
     2027                                                <MaxTileCol>1078</MaxTileCol>
     2028                                        </TileMatrixLimits>
     2029                                        <TileMatrixLimits>
     2030                                                <TileMatrix>12</TileMatrix>
     2031                                                <MinTileRow>1443</MinTileRow>
     2032                                                <MaxTileRow>1530</MaxTileRow>
     2033                                                <MinTileCol>2071</MinTileCol>
     2034                                                <MaxTileCol>2157</MaxTileCol>
     2035                                        </TileMatrixLimits>
     2036                                        <TileMatrixLimits>
     2037                                                <TileMatrix>13</TileMatrix>
     2038                                                <MinTileRow>2887</MinTileRow>
     2039                                                <MaxTileRow>3061</MaxTileRow>
     2040                                                <MinTileCol>4143</MinTileCol>
     2041                                                <MaxTileCol>4314</MaxTileCol>
     2042                                        </TileMatrixLimits>
     2043                                        <TileMatrixLimits>
     2044                                                <TileMatrix>14</TileMatrix>
     2045                                                <MinTileRow>5774</MinTileRow>
     2046                                                <MaxTileRow>6123</MaxTileRow>
     2047                                                <MinTileCol>8287</MinTileCol>
     2048                                                <MaxTileCol>8629</MaxTileCol>
     2049                                        </TileMatrixLimits>
     2050                                        <TileMatrixLimits>
     2051                                                <TileMatrix>15</TileMatrix>
     2052                                                <MinTileRow>11548</MinTileRow>
     2053                                                <MaxTileRow>12246</MaxTileRow>
     2054                                                <MinTileCol>16574</MinTileCol>
     2055                                                <MaxTileCol>17258</MaxTileCol>
     2056                                        </TileMatrixLimits>
     2057                                        <TileMatrixLimits>
     2058                                                <TileMatrix>16</TileMatrix>
     2059                                                <MinTileRow>23097</MinTileRow>
     2060                                                <MaxTileRow>24493</MaxTileRow>
     2061                                                <MinTileCol>33148</MinTileCol>
     2062                                                <MaxTileCol>34516</MaxTileCol>
     2063                                        </TileMatrixLimits>
     2064                                        <TileMatrixLimits>
     2065                                                <TileMatrix>17</TileMatrix>
     2066                                                <MinTileRow>46195</MinTileRow>
     2067                                                <MaxTileRow>48986</MaxTileRow>
     2068                                                <MinTileCol>66296</MinTileCol>
     2069                                                <MaxTileCol>69033</MaxTileCol>
     2070                                        </TileMatrixLimits>
     2071                                        <TileMatrixLimits>
     2072                                                <TileMatrix>2</TileMatrix>
     2073                                                <MinTileRow>1</MinTileRow>
     2074                                                <MaxTileRow>1</MaxTileRow>
     2075                                                <MinTileCol>2</MinTileCol>
     2076                                                <MaxTileCol>2</MaxTileCol>
     2077                                        </TileMatrixLimits>
     2078                                        <TileMatrixLimits>
     2079                                                <TileMatrix>3</TileMatrix>
     2080                                                <MinTileRow>2</MinTileRow>
     2081                                                <MaxTileRow>2</MaxTileRow>
     2082                                                <MinTileCol>4</MinTileCol>
     2083                                                <MaxTileCol>4</MaxTileCol>
     2084                                        </TileMatrixLimits>
     2085                                        <TileMatrixLimits>
     2086                                                <TileMatrix>4</TileMatrix>
     2087                                                <MinTileRow>5</MinTileRow>
     2088                                                <MaxTileRow>5</MaxTileRow>
     2089                                                <MinTileCol>8</MinTileCol>
     2090                                                <MaxTileCol>8</MaxTileCol>
     2091                                        </TileMatrixLimits>
     2092                                        <TileMatrixLimits>
     2093                                                <TileMatrix>5</TileMatrix>
     2094                                                <MinTileRow>11</MinTileRow>
     2095                                                <MaxTileRow>11</MaxTileRow>
     2096                                                <MinTileCol>16</MinTileCol>
     2097                                                <MaxTileCol>16</MaxTileCol>
     2098                                        </TileMatrixLimits>
     2099                                        <TileMatrixLimits>
     2100                                                <TileMatrix>6</TileMatrix>
     2101                                                <MinTileRow>22</MinTileRow>
     2102                                                <MaxTileRow>23</MaxTileRow>
     2103                                                <MinTileCol>32</MinTileCol>
     2104                                                <MaxTileCol>33</MaxTileCol>
     2105                                        </TileMatrixLimits>
     2106                                        <TileMatrixLimits>
     2107                                                <TileMatrix>7</TileMatrix>
     2108                                                <MinTileRow>45</MinTileRow>
     2109                                                <MaxTileRow>47</MaxTileRow>
     2110                                                <MinTileCol>64</MinTileCol>
     2111                                                <MaxTileCol>67</MaxTileCol>
     2112                                        </TileMatrixLimits>
     2113                                        <TileMatrixLimits>
     2114                                                <TileMatrix>8</TileMatrix>
     2115                                                <MinTileRow>90</MinTileRow>
     2116                                                <MaxTileRow>95</MaxTileRow>
     2117                                                <MinTileCol>129</MinTileCol>
     2118                                                <MaxTileCol>134</MaxTileCol>
     2119                                        </TileMatrixLimits>
     2120                                        <TileMatrixLimits>
     2121                                                <TileMatrix>9</TileMatrix>
     2122                                                <MinTileRow>180</MinTileRow>
     2123                                                <MaxTileRow>191</MaxTileRow>
     2124                                                <MinTileCol>258</MinTileCol>
     2125                                                <MaxTileCol>269</MaxTileCol>
     2126                                        </TileMatrixLimits>
     2127                                </TileMatrixSetLimits>
     2128                        </TileMatrixSetLink>
     2129                </Layer>
     2130                <Layer>
     2131                        <ows:Title>Millésime Spot 2014</ows:Title>
     2132                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2133                        <ows:Keywords>
     2134                                <ows:Keyword>Photographies</ows:Keyword>
     2135                        </ows:Keywords>
     2136                        <ows:WGS84BoundingBox>
     2137                                <ows:LowerCorner>2.05557 41.3101</ows:LowerCorner>
     2138                                <ows:UpperCorner>9.69656 48.0605</ows:UpperCorner>
     2139                        </ows:WGS84BoundingBox>
     2140                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-10-24</ows:Identifier>
     2141                        <Style isDefault="true">
     2142                                <ows:Title>Données Brutes</ows:Title>
     2143                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2144                                <ows:Keywords>
     2145                                        <ows:Keyword>Défaut</ows:Keyword>
     2146                                </ows:Keywords>
     2147                                <ows:Identifier>normal</ows:Identifier>
     2148                                <LegendURL format="image/jpeg" height="200"
     2149                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2150                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2151                        </Style>
     2152                        <Format>image/jpeg</Format>
     2153                        <TileMatrixSetLink>
     2154                                <TileMatrixSet>PM</TileMatrixSet>
     2155                                <TileMatrixSetLimits>
     2156                                        <TileMatrixLimits>
     2157                                                <TileMatrix>0</TileMatrix>
     2158                                                <MinTileRow>0</MinTileRow>
     2159                                                <MaxTileRow>0</MaxTileRow>
     2160                                                <MinTileCol>0</MinTileCol>
     2161                                                <MaxTileCol>0</MaxTileCol>
     2162                                        </TileMatrixLimits>
     2163                                        <TileMatrixLimits>
     2164                                                <TileMatrix>1</TileMatrix>
     2165                                                <MinTileRow>0</MinTileRow>
     2166                                                <MaxTileRow>0</MaxTileRow>
     2167                                                <MinTileCol>1</MinTileCol>
     2168                                                <MaxTileCol>1</MaxTileCol>
     2169                                        </TileMatrixLimits>
     2170                                        <TileMatrixLimits>
     2171                                                <TileMatrix>10</TileMatrix>
     2172                                                <MinTileRow>355</MinTileRow>
     2173                                                <MaxTileRow>382</MaxTileRow>
     2174                                                <MinTileCol>517</MinTileCol>
     2175                                                <MaxTileCol>539</MaxTileCol>
     2176                                        </TileMatrixLimits>
     2177                                        <TileMatrixLimits>
     2178                                                <TileMatrix>11</TileMatrix>
     2179                                                <MinTileRow>711</MinTileRow>
     2180                                                <MaxTileRow>765</MaxTileRow>
     2181                                                <MinTileCol>1035</MinTileCol>
     2182                                                <MaxTileCol>1078</MaxTileCol>
     2183                                        </TileMatrixLimits>
     2184                                        <TileMatrixLimits>
     2185                                                <TileMatrix>12</TileMatrix>
     2186                                                <MinTileRow>1423</MinTileRow>
     2187                                                <MaxTileRow>1530</MaxTileRow>
     2188                                                <MinTileCol>2071</MinTileCol>
     2189                                                <MaxTileCol>2157</MaxTileCol>
     2190                                        </TileMatrixLimits>
     2191                                        <TileMatrixLimits>
     2192                                                <TileMatrix>13</TileMatrix>
     2193                                                <MinTileRow>2846</MinTileRow>
     2194                                                <MaxTileRow>3061</MaxTileRow>
     2195                                                <MinTileCol>4143</MinTileCol>
     2196                                                <MaxTileCol>4314</MaxTileCol>
     2197                                        </TileMatrixLimits>
     2198                                        <TileMatrixLimits>
     2199                                                <TileMatrix>14</TileMatrix>
     2200                                                <MinTileRow>5692</MinTileRow>
     2201                                                <MaxTileRow>6123</MaxTileRow>
     2202                                                <MinTileCol>8287</MinTileCol>
     2203                                                <MaxTileCol>8629</MaxTileCol>
     2204                                        </TileMatrixLimits>
     2205                                        <TileMatrixLimits>
     2206                                                <TileMatrix>15</TileMatrix>
     2207                                                <MinTileRow>11384</MinTileRow>
     2208                                                <MaxTileRow>12246</MaxTileRow>
     2209                                                <MinTileCol>16574</MinTileCol>
     2210                                                <MaxTileCol>17258</MaxTileCol>
     2211                                        </TileMatrixLimits>
     2212                                        <TileMatrixLimits>
     2213                                                <TileMatrix>16</TileMatrix>
     2214                                                <MinTileRow>22769</MinTileRow>
     2215                                                <MaxTileRow>24493</MaxTileRow>
     2216                                                <MinTileCol>33148</MinTileCol>
     2217                                                <MaxTileCol>34516</MaxTileCol>
     2218                                        </TileMatrixLimits>
     2219                                        <TileMatrixLimits>
     2220                                                <TileMatrix>17</TileMatrix>
     2221                                                <MinTileRow>45539</MinTileRow>
     2222                                                <MaxTileRow>48986</MaxTileRow>
     2223                                                <MinTileCol>66296</MinTileCol>
     2224                                                <MaxTileCol>69033</MaxTileCol>
     2225                                        </TileMatrixLimits>
     2226                                        <TileMatrixLimits>
     2227                                                <TileMatrix>2</TileMatrix>
     2228                                                <MinTileRow>1</MinTileRow>
     2229                                                <MaxTileRow>1</MaxTileRow>
     2230                                                <MinTileCol>2</MinTileCol>
     2231                                                <MaxTileCol>2</MaxTileCol>
     2232                                        </TileMatrixLimits>
     2233                                        <TileMatrixLimits>
     2234                                                <TileMatrix>3</TileMatrix>
     2235                                                <MinTileRow>2</MinTileRow>
     2236                                                <MaxTileRow>2</MaxTileRow>
     2237                                                <MinTileCol>4</MinTileCol>
     2238                                                <MaxTileCol>4</MaxTileCol>
     2239                                        </TileMatrixLimits>
     2240                                        <TileMatrixLimits>
     2241                                                <TileMatrix>4</TileMatrix>
     2242                                                <MinTileRow>5</MinTileRow>
     2243                                                <MaxTileRow>5</MaxTileRow>
     2244                                                <MinTileCol>8</MinTileCol>
     2245                                                <MaxTileCol>8</MaxTileCol>
     2246                                        </TileMatrixLimits>
     2247                                        <TileMatrixLimits>
     2248                                                <TileMatrix>5</TileMatrix>
     2249                                                <MinTileRow>11</MinTileRow>
     2250                                                <MaxTileRow>11</MaxTileRow>
     2251                                                <MinTileCol>16</MinTileCol>
     2252                                                <MaxTileCol>16</MaxTileCol>
     2253                                        </TileMatrixLimits>
     2254                                        <TileMatrixLimits>
     2255                                                <TileMatrix>6</TileMatrix>
     2256                                                <MinTileRow>22</MinTileRow>
     2257                                                <MaxTileRow>23</MaxTileRow>
     2258                                                <MinTileCol>32</MinTileCol>
     2259                                                <MaxTileCol>33</MaxTileCol>
     2260                                        </TileMatrixLimits>
     2261                                        <TileMatrixLimits>
     2262                                                <TileMatrix>7</TileMatrix>
     2263                                                <MinTileRow>44</MinTileRow>
     2264                                                <MaxTileRow>47</MaxTileRow>
     2265                                                <MinTileCol>64</MinTileCol>
     2266                                                <MaxTileCol>67</MaxTileCol>
     2267                                        </TileMatrixLimits>
     2268                                        <TileMatrixLimits>
     2269                                                <TileMatrix>8</TileMatrix>
     2270                                                <MinTileRow>88</MinTileRow>
     2271                                                <MaxTileRow>95</MaxTileRow>
     2272                                                <MinTileCol>129</MinTileCol>
     2273                                                <MaxTileCol>134</MaxTileCol>
     2274                                        </TileMatrixLimits>
     2275                                        <TileMatrixLimits>
     2276                                                <TileMatrix>9</TileMatrix>
     2277                                                <MinTileRow>177</MinTileRow>
     2278                                                <MaxTileRow>191</MaxTileRow>
     2279                                                <MinTileCol>258</MinTileCol>
     2280                                                <MaxTileCol>269</MaxTileCol>
     2281                                        </TileMatrixLimits>
     2282                                </TileMatrixSetLimits>
     2283                        </TileMatrixSetLink>
     2284                </Layer>
     2285                <Layer>
     2286                        <ows:Title>Millésime Spot 2014</ows:Title>
     2287                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2288                        <ows:Keywords>
     2289                                <ows:Keyword>Photographies</ows:Keyword>
     2290                        </ows:Keywords>
     2291                        <ows:WGS84BoundingBox>
     2292                                <ows:LowerCorner>2.05557 41.3101</ows:LowerCorner>
     2293                                <ows:UpperCorner>9.69656 49.9972</ows:UpperCorner>
     2294                        </ows:WGS84BoundingBox>
     2295                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-11-07</ows:Identifier>
     2296                        <Style isDefault="true">
     2297                                <ows:Title>Données Brutes</ows:Title>
     2298                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2299                                <ows:Keywords>
     2300                                        <ows:Keyword>Défaut</ows:Keyword>
     2301                                </ows:Keywords>
     2302                                <ows:Identifier>normal</ows:Identifier>
     2303                                <LegendURL format="image/jpeg" height="200"
     2304                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2305                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2306                        </Style>
     2307                        <Format>image/jpeg</Format>
     2308                        <TileMatrixSetLink>
     2309                                <TileMatrixSet>PM</TileMatrixSet>
     2310                                <TileMatrixSetLimits>
     2311                                        <TileMatrixLimits>
     2312                                                <TileMatrix>0</TileMatrix>
     2313                                                <MinTileRow>0</MinTileRow>
     2314                                                <MaxTileRow>0</MaxTileRow>
     2315                                                <MinTileCol>0</MinTileCol>
     2316                                                <MaxTileCol>0</MaxTileCol>
     2317                                        </TileMatrixLimits>
     2318                                        <TileMatrixLimits>
     2319                                                <TileMatrix>1</TileMatrix>
     2320                                                <MinTileRow>0</MinTileRow>
     2321                                                <MaxTileRow>0</MaxTileRow>
     2322                                                <MinTileCol>1</MinTileCol>
     2323                                                <MaxTileCol>1</MaxTileCol>
     2324                                        </TileMatrixLimits>
     2325                                        <TileMatrixLimits>
     2326                                                <TileMatrix>10</TileMatrix>
     2327                                                <MinTileRow>347</MinTileRow>
     2328                                                <MaxTileRow>382</MaxTileRow>
     2329                                                <MinTileCol>517</MinTileCol>
     2330                                                <MaxTileCol>539</MaxTileCol>
     2331                                        </TileMatrixLimits>
     2332                                        <TileMatrixLimits>
     2333                                                <TileMatrix>11</TileMatrix>
     2334                                                <MinTileRow>694</MinTileRow>
     2335                                                <MaxTileRow>765</MaxTileRow>
     2336                                                <MinTileCol>1035</MinTileCol>
     2337                                                <MaxTileCol>1078</MaxTileCol>
     2338                                        </TileMatrixLimits>
     2339                                        <TileMatrixLimits>
     2340                                                <TileMatrix>12</TileMatrix>
     2341                                                <MinTileRow>1389</MinTileRow>
     2342                                                <MaxTileRow>1530</MaxTileRow>
     2343                                                <MinTileCol>2071</MinTileCol>
     2344                                                <MaxTileCol>2157</MaxTileCol>
     2345                                        </TileMatrixLimits>
     2346                                        <TileMatrixLimits>
     2347                                                <TileMatrix>13</TileMatrix>
     2348                                                <MinTileRow>2778</MinTileRow>
     2349                                                <MaxTileRow>3061</MaxTileRow>
     2350                                                <MinTileCol>4143</MinTileCol>
     2351                                                <MaxTileCol>4314</MaxTileCol>
     2352                                        </TileMatrixLimits>
     2353                                        <TileMatrixLimits>
     2354                                                <TileMatrix>14</TileMatrix>
     2355                                                <MinTileRow>5557</MinTileRow>
     2356                                                <MaxTileRow>6123</MaxTileRow>
     2357                                                <MinTileCol>8287</MinTileCol>
     2358                                                <MaxTileCol>8629</MaxTileCol>
     2359                                        </TileMatrixLimits>
     2360                                        <TileMatrixLimits>
     2361                                                <TileMatrix>15</TileMatrix>
     2362                                                <MinTileRow>11114</MinTileRow>
     2363                                                <MaxTileRow>12246</MaxTileRow>
     2364                                                <MinTileCol>16574</MinTileCol>
     2365                                                <MaxTileCol>17258</MaxTileCol>
     2366                                        </TileMatrixLimits>
     2367                                        <TileMatrixLimits>
     2368                                                <TileMatrix>16</TileMatrix>
     2369                                                <MinTileRow>22228</MinTileRow>
     2370                                                <MaxTileRow>24493</MaxTileRow>
     2371                                                <MinTileCol>33148</MinTileCol>
     2372                                                <MaxTileCol>34516</MaxTileCol>
     2373                                        </TileMatrixLimits>
     2374                                        <TileMatrixLimits>
     2375                                                <TileMatrix>17</TileMatrix>
     2376                                                <MinTileRow>44457</MinTileRow>
     2377                                                <MaxTileRow>48986</MaxTileRow>
     2378                                                <MinTileCol>66296</MinTileCol>
     2379                                                <MaxTileCol>69033</MaxTileCol>
     2380                                        </TileMatrixLimits>
     2381                                        <TileMatrixLimits>
     2382                                                <TileMatrix>2</TileMatrix>
     2383                                                <MinTileRow>1</MinTileRow>
     2384                                                <MaxTileRow>1</MaxTileRow>
     2385                                                <MinTileCol>2</MinTileCol>
     2386                                                <MaxTileCol>2</MaxTileCol>
     2387                                        </TileMatrixLimits>
     2388                                        <TileMatrixLimits>
     2389                                                <TileMatrix>3</TileMatrix>
     2390                                                <MinTileRow>2</MinTileRow>
     2391                                                <MaxTileRow>2</MaxTileRow>
     2392                                                <MinTileCol>4</MinTileCol>
     2393                                                <MaxTileCol>4</MaxTileCol>
     2394                                        </TileMatrixLimits>
     2395                                        <TileMatrixLimits>
     2396                                                <TileMatrix>4</TileMatrix>
     2397                                                <MinTileRow>5</MinTileRow>
     2398                                                <MaxTileRow>5</MaxTileRow>
     2399                                                <MinTileCol>8</MinTileCol>
     2400                                                <MaxTileCol>8</MaxTileCol>
     2401                                        </TileMatrixLimits>
     2402                                        <TileMatrixLimits>
     2403                                                <TileMatrix>5</TileMatrix>
     2404                                                <MinTileRow>10</MinTileRow>
     2405                                                <MaxTileRow>11</MaxTileRow>
     2406                                                <MinTileCol>16</MinTileCol>
     2407                                                <MaxTileCol>16</MaxTileCol>
     2408                                        </TileMatrixLimits>
     2409                                        <TileMatrixLimits>
     2410                                                <TileMatrix>6</TileMatrix>
     2411                                                <MinTileRow>21</MinTileRow>
     2412                                                <MaxTileRow>23</MaxTileRow>
     2413                                                <MinTileCol>32</MinTileCol>
     2414                                                <MaxTileCol>33</MaxTileCol>
     2415                                        </TileMatrixLimits>
     2416                                        <TileMatrixLimits>
     2417                                                <TileMatrix>7</TileMatrix>
     2418                                                <MinTileRow>43</MinTileRow>
     2419                                                <MaxTileRow>47</MaxTileRow>
     2420                                                <MinTileCol>64</MinTileCol>
     2421                                                <MaxTileCol>67</MaxTileCol>
     2422                                        </TileMatrixLimits>
     2423                                        <TileMatrixLimits>
     2424                                                <TileMatrix>8</TileMatrix>
     2425                                                <MinTileRow>86</MinTileRow>
     2426                                                <MaxTileRow>95</MaxTileRow>
     2427                                                <MinTileCol>129</MinTileCol>
     2428                                                <MaxTileCol>134</MaxTileCol>
     2429                                        </TileMatrixLimits>
     2430                                        <TileMatrixLimits>
     2431                                                <TileMatrix>9</TileMatrix>
     2432                                                <MinTileRow>173</MinTileRow>
     2433                                                <MaxTileRow>191</MaxTileRow>
     2434                                                <MinTileCol>258</MinTileCol>
     2435                                                <MaxTileCol>269</MaxTileCol>
     2436                                        </TileMatrixLimits>
     2437                                </TileMatrixSetLimits>
     2438                        </TileMatrixSetLink>
     2439                </Layer>
     2440                <Layer>
     2441                        <ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title>
     2442                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2443                        <ows:Keywords>
     2444                                <ows:Keyword>Photographies</ows:Keyword>
     2445                        </ows:Keywords>
     2446                        <ows:WGS84BoundingBox>
     2447                                <ows:LowerCorner>1.34338 41.3101</ows:LowerCorner>
     2448                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     2449                        </ows:WGS84BoundingBox>
     2450                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-11-24</ows:Identifier>
     2451                        <Style isDefault="true">
     2452                                <ows:Title>Données Brutes</ows:Title>
     2453                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2454                                <ows:Keywords>
     2455                                        <ows:Keyword>Défaut</ows:Keyword>
     2456                                </ows:Keywords>
     2457                                <ows:Identifier>normal</ows:Identifier>
     2458                                <LegendURL format="image/jpeg" height="200"
     2459                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2460                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2461                        </Style>
     2462                        <Format>image/jpeg</Format>
     2463                        <TileMatrixSetLink>
     2464                                <TileMatrixSet>PM</TileMatrixSet>
     2465                                <TileMatrixSetLimits>
     2466                                        <TileMatrixLimits>
     2467                                                <TileMatrix>0</TileMatrix>
     2468                                                <MinTileRow>0</MinTileRow>
     2469                                                <MaxTileRow>0</MaxTileRow>
     2470                                                <MinTileCol>0</MinTileCol>
     2471                                                <MaxTileCol>0</MaxTileCol>
     2472                                        </TileMatrixLimits>
     2473                                        <TileMatrixLimits>
     2474                                                <TileMatrix>1</TileMatrix>
     2475                                                <MinTileRow>0</MinTileRow>
     2476                                                <MaxTileRow>0</MaxTileRow>
     2477                                                <MinTileCol>1</MinTileCol>
     2478                                                <MaxTileCol>1</MaxTileCol>
     2479                                        </TileMatrixLimits>
     2480                                        <TileMatrixLimits>
     2481                                                <TileMatrix>10</TileMatrix>
     2482                                                <MinTileRow>342</MinTileRow>
     2483                                                <MaxTileRow>382</MaxTileRow>
     2484                                                <MinTileCol>515</MinTileCol>
     2485                                                <MaxTileCol>539</MaxTileCol>
     2486                                        </TileMatrixLimits>
     2487                                        <TileMatrixLimits>
     2488                                                <TileMatrix>11</TileMatrix>
     2489                                                <MinTileRow>684</MinTileRow>
     2490                                                <MaxTileRow>765</MaxTileRow>
     2491                                                <MinTileCol>1031</MinTileCol>
     2492                                                <MaxTileCol>1078</MaxTileCol>
     2493                                        </TileMatrixLimits>
     2494                                        <TileMatrixLimits>
     2495                                                <TileMatrix>12</TileMatrix>
     2496                                                <MinTileRow>1369</MinTileRow>
     2497                                                <MaxTileRow>1530</MaxTileRow>
     2498                                                <MinTileCol>2063</MinTileCol>
     2499                                                <MaxTileCol>2157</MaxTileCol>
     2500                                        </TileMatrixLimits>
     2501                                        <TileMatrixLimits>
     2502                                                <TileMatrix>13</TileMatrix>
     2503                                                <MinTileRow>2738</MinTileRow>
     2504                                                <MaxTileRow>3061</MaxTileRow>
     2505                                                <MinTileCol>4126</MinTileCol>
     2506                                                <MaxTileCol>4314</MaxTileCol>
     2507                                        </TileMatrixLimits>
     2508                                        <TileMatrixLimits>
     2509                                                <TileMatrix>14</TileMatrix>
     2510                                                <MinTileRow>5476</MinTileRow>
     2511                                                <MaxTileRow>6123</MaxTileRow>
     2512                                                <MinTileCol>8253</MinTileCol>
     2513                                                <MaxTileCol>8629</MaxTileCol>
     2514                                        </TileMatrixLimits>
     2515                                        <TileMatrixLimits>
     2516                                                <TileMatrix>15</TileMatrix>
     2517                                                <MinTileRow>10953</MinTileRow>
     2518                                                <MaxTileRow>12246</MaxTileRow>
     2519                                                <MinTileCol>16507</MinTileCol>
     2520                                                <MaxTileCol>17258</MaxTileCol>
     2521                                        </TileMatrixLimits>
     2522                                        <TileMatrixLimits>
     2523                                                <TileMatrix>16</TileMatrix>
     2524                                                <MinTileRow>21907</MinTileRow>
     2525                                                <MaxTileRow>24493</MaxTileRow>
     2526                                                <MinTileCol>33014</MinTileCol>
     2527                                                <MaxTileCol>34516</MaxTileCol>
     2528                                        </TileMatrixLimits>
     2529                                        <TileMatrixLimits>
     2530                                                <TileMatrix>17</TileMatrix>
     2531                                                <MinTileRow>43815</MinTileRow>
     2532                                                <MaxTileRow>48986</MaxTileRow>
     2533                                                <MinTileCol>66028</MinTileCol>
     2534                                                <MaxTileCol>69033</MaxTileCol>
     2535                                        </TileMatrixLimits>
     2536                                        <TileMatrixLimits>
     2537                                                <TileMatrix>2</TileMatrix>
     2538                                                <MinTileRow>1</MinTileRow>
     2539                                                <MaxTileRow>1</MaxTileRow>
     2540                                                <MinTileCol>2</MinTileCol>
     2541                                                <MaxTileCol>2</MaxTileCol>
     2542                                        </TileMatrixLimits>
     2543                                        <TileMatrixLimits>
     2544                                                <TileMatrix>3</TileMatrix>
     2545                                                <MinTileRow>2</MinTileRow>
     2546                                                <MaxTileRow>2</MaxTileRow>
     2547                                                <MinTileCol>4</MinTileCol>
     2548                                                <MaxTileCol>4</MaxTileCol>
     2549                                        </TileMatrixLimits>
     2550                                        <TileMatrixLimits>
     2551                                                <TileMatrix>4</TileMatrix>
     2552                                                <MinTileRow>5</MinTileRow>
     2553                                                <MaxTileRow>5</MaxTileRow>
     2554                                                <MinTileCol>8</MinTileCol>
     2555                                                <MaxTileCol>8</MaxTileCol>
     2556                                        </TileMatrixLimits>
     2557                                        <TileMatrixLimits>
     2558                                                <TileMatrix>5</TileMatrix>
     2559                                                <MinTileRow>10</MinTileRow>
     2560                                                <MaxTileRow>11</MaxTileRow>
     2561                                                <MinTileCol>16</MinTileCol>
     2562                                                <MaxTileCol>16</MaxTileCol>
     2563                                        </TileMatrixLimits>
     2564                                        <TileMatrixLimits>
     2565                                                <TileMatrix>6</TileMatrix>
     2566                                                <MinTileRow>21</MinTileRow>
     2567                                                <MaxTileRow>23</MaxTileRow>
     2568                                                <MinTileCol>32</MinTileCol>
     2569                                                <MaxTileCol>33</MaxTileCol>
     2570                                        </TileMatrixLimits>
     2571                                        <TileMatrixLimits>
     2572                                                <TileMatrix>7</TileMatrix>
     2573                                                <MinTileRow>42</MinTileRow>
     2574                                                <MaxTileRow>47</MaxTileRow>
     2575                                                <MinTileCol>64</MinTileCol>
     2576                                                <MaxTileCol>67</MaxTileCol>
     2577                                        </TileMatrixLimits>
     2578                                        <TileMatrixLimits>
     2579                                                <TileMatrix>8</TileMatrix>
     2580                                                <MinTileRow>85</MinTileRow>
     2581                                                <MaxTileRow>95</MaxTileRow>
     2582                                                <MinTileCol>128</MinTileCol>
     2583                                                <MaxTileCol>134</MaxTileCol>
     2584                                        </TileMatrixLimits>
     2585                                        <TileMatrixLimits>
     2586                                                <TileMatrix>9</TileMatrix>
     2587                                                <MinTileRow>171</MinTileRow>
     2588                                                <MaxTileRow>191</MaxTileRow>
     2589                                                <MinTileCol>257</MinTileCol>
     2590                                                <MaxTileCol>269</MaxTileCol>
     2591                                        </TileMatrixLimits>
     2592                                </TileMatrixSetLimits>
     2593                        </TileMatrixSetLink>
     2594                </Layer>
     2595                <Layer>
     2596                        <ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title>
     2597                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2598                        <ows:Keywords>
     2599                                <ows:Keyword>Photographies</ows:Keyword>
     2600                        </ows:Keywords>
     2601                        <ows:WGS84BoundingBox>
     2602                                <ows:LowerCorner>-2.02438 41.3101</ows:LowerCorner>
     2603                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     2604                        </ows:WGS84BoundingBox>
     2605                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-010</ows:Identifier>
     2606                        <Style isDefault="true">
     2607                                <ows:Title>Données Brutes</ows:Title>
     2608                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2609                                <ows:Keywords>
     2610                                        <ows:Keyword>Défaut</ows:Keyword>
     2611                                </ows:Keywords>
     2612                                <ows:Identifier>normal</ows:Identifier>
     2613                                <LegendURL format="image/jpeg" height="200"
     2614                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2615                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2616                        </Style>
     2617                        <Format>image/jpeg</Format>
     2618                        <TileMatrixSetLink>
     2619                                <TileMatrixSet>PM</TileMatrixSet>
     2620                                <TileMatrixSetLimits>
     2621                                        <TileMatrixLimits>
     2622                                                <TileMatrix>0</TileMatrix>
     2623                                                <MinTileRow>0</MinTileRow>
     2624                                                <MaxTileRow>0</MaxTileRow>
     2625                                                <MinTileCol>0</MinTileCol>
     2626                                                <MaxTileCol>0</MaxTileCol>
     2627                                        </TileMatrixLimits>
     2628                                        <TileMatrixLimits>
     2629                                                <TileMatrix>1</TileMatrix>
     2630                                                <MinTileRow>0</MinTileRow>
     2631                                                <MaxTileRow>0</MaxTileRow>
     2632                                                <MinTileCol>0</MinTileCol>
     2633                                                <MaxTileCol>1</MaxTileCol>
     2634                                        </TileMatrixLimits>
     2635                                        <TileMatrixLimits>
     2636                                                <TileMatrix>10</TileMatrix>
     2637                                                <MinTileRow>342</MinTileRow>
     2638                                                <MaxTileRow>382</MaxTileRow>
     2639                                                <MinTileCol>506</MinTileCol>
     2640                                                <MaxTileCol>539</MaxTileCol>
     2641                                        </TileMatrixLimits>
     2642                                        <TileMatrixLimits>
     2643                                                <TileMatrix>11</TileMatrix>
     2644                                                <MinTileRow>684</MinTileRow>
     2645                                                <MaxTileRow>765</MaxTileRow>
     2646                                                <MinTileCol>1013</MinTileCol>
     2647                                                <MaxTileCol>1078</MaxTileCol>
     2648                                        </TileMatrixLimits>
     2649                                        <TileMatrixLimits>
     2650                                                <TileMatrix>12</TileMatrix>
     2651                                                <MinTileRow>1369</MinTileRow>
     2652                                                <MaxTileRow>1530</MaxTileRow>
     2653                                                <MinTileCol>2027</MinTileCol>
     2654                                                <MaxTileCol>2157</MaxTileCol>
     2655                                        </TileMatrixLimits>
     2656                                        <TileMatrixLimits>
     2657                                                <TileMatrix>13</TileMatrix>
     2658                                                <MinTileRow>2738</MinTileRow>
     2659                                                <MaxTileRow>3061</MaxTileRow>
     2660                                                <MinTileCol>4054</MinTileCol>
     2661                                                <MaxTileCol>4314</MaxTileCol>
     2662                                        </TileMatrixLimits>
     2663                                        <TileMatrixLimits>
     2664                                                <TileMatrix>14</TileMatrix>
     2665                                                <MinTileRow>5476</MinTileRow>
     2666                                                <MaxTileRow>6123</MaxTileRow>
     2667                                                <MinTileCol>8108</MinTileCol>
     2668                                                <MaxTileCol>8629</MaxTileCol>
     2669                                        </TileMatrixLimits>
     2670                                        <TileMatrixLimits>
     2671                                                <TileMatrix>15</TileMatrix>
     2672                                                <MinTileRow>10953</MinTileRow>
     2673                                                <MaxTileRow>12246</MaxTileRow>
     2674                                                <MinTileCol>16217</MinTileCol>
     2675                                                <MaxTileCol>17258</MaxTileCol>
     2676                                        </TileMatrixLimits>
     2677                                        <TileMatrixLimits>
     2678                                                <TileMatrix>16</TileMatrix>
     2679                                                <MinTileRow>21907</MinTileRow>
     2680                                                <MaxTileRow>24493</MaxTileRow>
     2681                                                <MinTileCol>32435</MinTileCol>
     2682                                                <MaxTileCol>34516</MaxTileCol>
     2683                                        </TileMatrixLimits>
     2684                                        <TileMatrixLimits>
     2685                                                <TileMatrix>17</TileMatrix>
     2686                                                <MinTileRow>43815</MinTileRow>
     2687                                                <MaxTileRow>48986</MaxTileRow>
     2688                                                <MinTileCol>64870</MinTileCol>
     2689                                                <MaxTileCol>69033</MaxTileCol>
     2690                                        </TileMatrixLimits>
     2691                                        <TileMatrixLimits>
     2692                                                <TileMatrix>2</TileMatrix>
     2693                                                <MinTileRow>1</MinTileRow>
     2694                                                <MaxTileRow>1</MaxTileRow>
     2695                                                <MinTileCol>1</MinTileCol>
     2696                                                <MaxTileCol>2</MaxTileCol>
     2697                                        </TileMatrixLimits>
     2698                                        <TileMatrixLimits>
     2699                                                <TileMatrix>3</TileMatrix>
     2700                                                <MinTileRow>2</MinTileRow>
     2701                                                <MaxTileRow>2</MaxTileRow>
     2702                                                <MinTileCol>3</MinTileCol>
     2703                                                <MaxTileCol>4</MaxTileCol>
     2704                                        </TileMatrixLimits>
     2705                                        <TileMatrixLimits>
     2706                                                <TileMatrix>4</TileMatrix>
     2707                                                <MinTileRow>5</MinTileRow>
     2708                                                <MaxTileRow>5</MaxTileRow>
     2709                                                <MinTileCol>7</MinTileCol>
     2710                                                <MaxTileCol>8</MaxTileCol>
     2711                                        </TileMatrixLimits>
     2712                                        <TileMatrixLimits>
     2713                                                <TileMatrix>5</TileMatrix>
     2714                                                <MinTileRow>10</MinTileRow>
     2715                                                <MaxTileRow>11</MaxTileRow>
     2716                                                <MinTileCol>15</MinTileCol>
     2717                                                <MaxTileCol>16</MaxTileCol>
     2718                                        </TileMatrixLimits>
     2719                                        <TileMatrixLimits>
     2720                                                <TileMatrix>6</TileMatrix>
     2721                                                <MinTileRow>21</MinTileRow>
     2722                                                <MaxTileRow>23</MaxTileRow>
     2723                                                <MinTileCol>31</MinTileCol>
     2724                                                <MaxTileCol>33</MaxTileCol>
     2725                                        </TileMatrixLimits>
     2726                                        <TileMatrixLimits>
     2727                                                <TileMatrix>7</TileMatrix>
     2728                                                <MinTileRow>42</MinTileRow>
     2729                                                <MaxTileRow>47</MaxTileRow>
     2730                                                <MinTileCol>63</MinTileCol>
     2731                                                <MaxTileCol>67</MaxTileCol>
     2732                                        </TileMatrixLimits>
     2733                                        <TileMatrixLimits>
     2734                                                <TileMatrix>8</TileMatrix>
     2735                                                <MinTileRow>85</MinTileRow>
     2736                                                <MaxTileRow>95</MaxTileRow>
     2737                                                <MinTileCol>126</MinTileCol>
     2738                                                <MaxTileCol>134</MaxTileCol>
     2739                                        </TileMatrixLimits>
     2740                                        <TileMatrixLimits>
     2741                                                <TileMatrix>9</TileMatrix>
     2742                                                <MinTileRow>171</MinTileRow>
     2743                                                <MaxTileRow>191</MaxTileRow>
     2744                                                <MinTileCol>253</MinTileCol>
     2745                                                <MaxTileCol>269</MaxTileCol>
     2746                                        </TileMatrixLimits>
     2747                                </TileMatrixSetLimits>
     2748                        </TileMatrixSetLink>
     2749                </Layer>
     2750                <Layer>
     2751                        <ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title>
     2752                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2753                        <ows:Keywords>
     2754                                <ows:Keyword>Photographies</ows:Keyword>
     2755                        </ows:Keywords>
     2756                        <ows:WGS84BoundingBox>
     2757                                <ows:LowerCorner>-0.0844953 41.3101</ows:LowerCorner>
     2758                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     2759                        </ows:WGS84BoundingBox>
     2760                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-03</ows:Identifier>
     2761                        <Style isDefault="true">
     2762                                <ows:Title>Données Brutes</ows:Title>
     2763                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2764                                <ows:Keywords>
     2765                                        <ows:Keyword>Défaut</ows:Keyword>
     2766                                </ows:Keywords>
     2767                                <ows:Identifier>normal</ows:Identifier>
     2768                                <LegendURL format="image/jpeg" height="200"
     2769                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2770                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2771                        </Style>
     2772                        <Format>image/jpeg</Format>
     2773                        <TileMatrixSetLink>
     2774                                <TileMatrixSet>PM</TileMatrixSet>
     2775                                <TileMatrixSetLimits>
     2776                                        <TileMatrixLimits>
     2777                                                <TileMatrix>0</TileMatrix>
     2778                                                <MinTileRow>0</MinTileRow>
     2779                                                <MaxTileRow>0</MaxTileRow>
     2780                                                <MinTileCol>0</MinTileCol>
     2781                                                <MaxTileCol>0</MaxTileCol>
     2782                                        </TileMatrixLimits>
     2783                                        <TileMatrixLimits>
     2784                                                <TileMatrix>1</TileMatrix>
     2785                                                <MinTileRow>0</MinTileRow>
     2786                                                <MaxTileRow>0</MaxTileRow>
     2787                                                <MinTileCol>1</MinTileCol>
     2788                                                <MaxTileCol>1</MaxTileCol>
     2789                                        </TileMatrixLimits>
     2790                                        <TileMatrixLimits>
     2791                                                <TileMatrix>10</TileMatrix>
     2792                                                <MinTileRow>342</MinTileRow>
     2793                                                <MaxTileRow>382</MaxTileRow>
     2794                                                <MinTileCol>512</MinTileCol>
     2795                                                <MaxTileCol>539</MaxTileCol>
     2796                                        </TileMatrixLimits>
     2797                                        <TileMatrixLimits>
     2798                                                <TileMatrix>11</TileMatrix>
     2799                                                <MinTileRow>684</MinTileRow>
     2800                                                <MaxTileRow>765</MaxTileRow>
     2801                                                <MinTileCol>1024</MinTileCol>
     2802                                                <MaxTileCol>1078</MaxTileCol>
     2803                                        </TileMatrixLimits>
     2804                                        <TileMatrixLimits>
     2805                                                <TileMatrix>12</TileMatrix>
     2806                                                <MinTileRow>1369</MinTileRow>
     2807                                                <MaxTileRow>1530</MaxTileRow>
     2808                                                <MinTileCol>2048</MinTileCol>
     2809                                                <MaxTileCol>2157</MaxTileCol>
     2810                                        </TileMatrixLimits>
     2811                                        <TileMatrixLimits>
     2812                                                <TileMatrix>13</TileMatrix>
     2813                                                <MinTileRow>2738</MinTileRow>
     2814                                                <MaxTileRow>3061</MaxTileRow>
     2815                                                <MinTileCol>4096</MinTileCol>
     2816                                                <MaxTileCol>4314</MaxTileCol>
     2817                                        </TileMatrixLimits>
     2818                                        <TileMatrixLimits>
     2819                                                <TileMatrix>14</TileMatrix>
     2820                                                <MinTileRow>5476</MinTileRow>
     2821                                                <MaxTileRow>6123</MaxTileRow>
     2822                                                <MinTileCol>8192</MinTileCol>
     2823                                                <MaxTileCol>8629</MaxTileCol>
     2824                                        </TileMatrixLimits>
     2825                                        <TileMatrixLimits>
     2826                                                <TileMatrix>15</TileMatrix>
     2827                                                <MinTileRow>10953</MinTileRow>
     2828                                                <MaxTileRow>12246</MaxTileRow>
     2829                                                <MinTileCol>16385</MinTileCol>
     2830                                                <MaxTileCol>17258</MaxTileCol>
     2831                                        </TileMatrixLimits>
     2832                                        <TileMatrixLimits>
     2833                                                <TileMatrix>16</TileMatrix>
     2834                                                <MinTileRow>21907</MinTileRow>
     2835                                                <MaxTileRow>24493</MaxTileRow>
     2836                                                <MinTileCol>32770</MinTileCol>
     2837                                                <MaxTileCol>34516</MaxTileCol>
     2838                                        </TileMatrixLimits>
     2839                                        <TileMatrixLimits>
     2840                                                <TileMatrix>17</TileMatrix>
     2841                                                <MinTileRow>43815</MinTileRow>
     2842                                                <MaxTileRow>48986</MaxTileRow>
     2843                                                <MinTileCol>65540</MinTileCol>
     2844                                                <MaxTileCol>69033</MaxTileCol>
     2845                                        </TileMatrixLimits>
     2846                                        <TileMatrixLimits>
     2847                                                <TileMatrix>2</TileMatrix>
     2848                                                <MinTileRow>1</MinTileRow>
     2849                                                <MaxTileRow>1</MaxTileRow>
     2850                                                <MinTileCol>2</MinTileCol>
     2851                                                <MaxTileCol>2</MaxTileCol>
     2852                                        </TileMatrixLimits>
     2853                                        <TileMatrixLimits>
     2854                                                <TileMatrix>3</TileMatrix>
     2855                                                <MinTileRow>2</MinTileRow>
     2856                                                <MaxTileRow>2</MaxTileRow>
     2857                                                <MinTileCol>4</MinTileCol>
     2858                                                <MaxTileCol>4</MaxTileCol>
     2859                                        </TileMatrixLimits>
     2860                                        <TileMatrixLimits>
     2861                                                <TileMatrix>4</TileMatrix>
     2862                                                <MinTileRow>5</MinTileRow>
     2863                                                <MaxTileRow>5</MaxTileRow>
     2864                                                <MinTileCol>8</MinTileCol>
     2865                                                <MaxTileCol>8</MaxTileCol>
     2866                                        </TileMatrixLimits>
     2867                                        <TileMatrixLimits>
     2868                                                <TileMatrix>5</TileMatrix>
     2869                                                <MinTileRow>10</MinTileRow>
     2870                                                <MaxTileRow>11</MaxTileRow>
     2871                                                <MinTileCol>16</MinTileCol>
     2872                                                <MaxTileCol>16</MaxTileCol>
     2873                                        </TileMatrixLimits>
     2874                                        <TileMatrixLimits>
     2875                                                <TileMatrix>6</TileMatrix>
     2876                                                <MinTileRow>21</MinTileRow>
     2877                                                <MaxTileRow>23</MaxTileRow>
     2878                                                <MinTileCol>32</MinTileCol>
     2879                                                <MaxTileCol>33</MaxTileCol>
     2880                                        </TileMatrixLimits>
     2881                                        <TileMatrixLimits>
     2882                                                <TileMatrix>7</TileMatrix>
     2883                                                <MinTileRow>42</MinTileRow>
     2884                                                <MaxTileRow>47</MaxTileRow>
     2885                                                <MinTileCol>64</MinTileCol>
     2886                                                <MaxTileCol>67</MaxTileCol>
     2887                                        </TileMatrixLimits>
     2888                                        <TileMatrixLimits>
     2889                                                <TileMatrix>8</TileMatrix>
     2890                                                <MinTileRow>85</MinTileRow>
     2891                                                <MaxTileRow>95</MaxTileRow>
     2892                                                <MinTileCol>128</MinTileCol>
     2893                                                <MaxTileCol>134</MaxTileCol>
     2894                                        </TileMatrixLimits>
     2895                                        <TileMatrixLimits>
     2896                                                <TileMatrix>9</TileMatrix>
     2897                                                <MinTileRow>171</MinTileRow>
     2898                                                <MaxTileRow>191</MaxTileRow>
     2899                                                <MinTileCol>256</MinTileCol>
     2900                                                <MaxTileCol>269</MaxTileCol>
     2901                                        </TileMatrixLimits>
     2902                                </TileMatrixSetLimits>
     2903                        </TileMatrixSetLink>
     2904                </Layer>
     2905                <Layer>
     2906                        <ows:Title>Couche millésimée SPOT 2014 WMTS</ows:Title>
     2907                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     2908                        <ows:Keywords>
     2909                                <ows:Keyword>Photographies</ows:Keyword>
     2910                        </ows:Keywords>
     2911                        <ows:WGS84BoundingBox>
     2912                                <ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner>
     2913                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     2914                        </ows:WGS84BoundingBox>
     2915                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-12-22</ows:Identifier>
     2916                        <Style isDefault="true">
     2917                                <ows:Title>Données Brutes</ows:Title>
     2918                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     2919                                <ows:Keywords>
     2920                                        <ows:Keyword>Défaut</ows:Keyword>
     2921                                </ows:Keywords>
     2922                                <ows:Identifier>normal</ows:Identifier>
     2923                                <LegendURL format="image/jpeg" height="200"
     2924                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     2925                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     2926                        </Style>
     2927                        <Format>image/jpeg</Format>
     2928                        <TileMatrixSetLink>
     2929                                <TileMatrixSet>PM</TileMatrixSet>
     2930                                <TileMatrixSetLimits>
     2931                                        <TileMatrixLimits>
     2932                                                <TileMatrix>0</TileMatrix>
     2933                                                <MinTileRow>0</MinTileRow>
     2934                                                <MaxTileRow>0</MaxTileRow>
     2935                                                <MinTileCol>0</MinTileCol>
     2936                                                <MaxTileCol>0</MaxTileCol>
     2937                                        </TileMatrixLimits>
     2938                                        <TileMatrixLimits>
     2939                                                <TileMatrix>1</TileMatrix>
     2940                                                <MinTileRow>0</MinTileRow>
     2941                                                <MaxTileRow>0</MaxTileRow>
     2942                                                <MinTileCol>0</MinTileCol>
     2943                                                <MaxTileCol>1</MaxTileCol>
     2944                                        </TileMatrixLimits>
     2945                                        <TileMatrixLimits>
     2946                                                <TileMatrix>10</TileMatrix>
     2947                                                <MinTileRow>342</MinTileRow>
     2948                                                <MaxTileRow>382</MaxTileRow>
     2949                                                <MinTileCol>497</MinTileCol>
     2950                                                <MaxTileCol>539</MaxTileCol>
     2951                                        </TileMatrixLimits>
     2952                                        <TileMatrixLimits>
     2953                                                <TileMatrix>11</TileMatrix>
     2954                                                <MinTileRow>684</MinTileRow>
     2955                                                <MaxTileRow>765</MaxTileRow>
     2956                                                <MinTileCol>994</MinTileCol>
     2957                                                <MaxTileCol>1078</MaxTileCol>
     2958                                        </TileMatrixLimits>
     2959                                        <TileMatrixLimits>
     2960                                                <TileMatrix>12</TileMatrix>
     2961                                                <MinTileRow>1369</MinTileRow>
     2962                                                <MaxTileRow>1530</MaxTileRow>
     2963                                                <MinTileCol>1988</MinTileCol>
     2964                                                <MaxTileCol>2157</MaxTileCol>
     2965                                        </TileMatrixLimits>
     2966                                        <TileMatrixLimits>
     2967                                                <TileMatrix>13</TileMatrix>
     2968                                                <MinTileRow>2738</MinTileRow>
     2969                                                <MaxTileRow>3061</MaxTileRow>
     2970                                                <MinTileCol>3977</MinTileCol>
     2971                                                <MaxTileCol>4314</MaxTileCol>
     2972                                        </TileMatrixLimits>
     2973                                        <TileMatrixLimits>
     2974                                                <TileMatrix>14</TileMatrix>
     2975                                                <MinTileRow>5476</MinTileRow>
     2976                                                <MaxTileRow>6123</MaxTileRow>
     2977                                                <MinTileCol>7955</MinTileCol>
     2978                                                <MaxTileCol>8629</MaxTileCol>
     2979                                        </TileMatrixLimits>
     2980                                        <TileMatrixLimits>
     2981                                                <TileMatrix>15</TileMatrix>
     2982                                                <MinTileRow>10953</MinTileRow>
     2983                                                <MaxTileRow>12246</MaxTileRow>
     2984                                                <MinTileCol>15911</MinTileCol>
     2985                                                <MaxTileCol>17258</MaxTileCol>
     2986                                        </TileMatrixLimits>
     2987                                        <TileMatrixLimits>
     2988                                                <TileMatrix>16</TileMatrix>
     2989                                                <MinTileRow>21907</MinTileRow>
     2990                                                <MaxTileRow>24493</MaxTileRow>
     2991                                                <MinTileCol>31823</MinTileCol>
     2992                                                <MaxTileCol>34516</MaxTileCol>
     2993                                        </TileMatrixLimits>
     2994                                        <TileMatrixLimits>
     2995                                                <TileMatrix>17</TileMatrix>
     2996                                                <MinTileRow>43815</MinTileRow>
     2997                                                <MaxTileRow>48986</MaxTileRow>
     2998                                                <MinTileCol>63646</MinTileCol>
     2999                                                <MaxTileCol>69033</MaxTileCol>
     3000                                        </TileMatrixLimits>
     3001                                        <TileMatrixLimits>
     3002                                                <TileMatrix>2</TileMatrix>
     3003                                                <MinTileRow>1</MinTileRow>
     3004                                                <MaxTileRow>1</MaxTileRow>
     3005                                                <MinTileCol>1</MinTileCol>
     3006                                                <MaxTileCol>2</MaxTileCol>
     3007                                        </TileMatrixLimits>
     3008                                        <TileMatrixLimits>
     3009                                                <TileMatrix>3</TileMatrix>
     3010                                                <MinTileRow>2</MinTileRow>
     3011                                                <MaxTileRow>2</MaxTileRow>
     3012                                                <MinTileCol>3</MinTileCol>
     3013                                                <MaxTileCol>4</MaxTileCol>
     3014                                        </TileMatrixLimits>
     3015                                        <TileMatrixLimits>
     3016                                                <TileMatrix>4</TileMatrix>
     3017                                                <MinTileRow>5</MinTileRow>
     3018                                                <MaxTileRow>5</MaxTileRow>
     3019                                                <MinTileCol>7</MinTileCol>
     3020                                                <MaxTileCol>8</MaxTileCol>
     3021                                        </TileMatrixLimits>
     3022                                        <TileMatrixLimits>
     3023                                                <TileMatrix>5</TileMatrix>
     3024                                                <MinTileRow>10</MinTileRow>
     3025                                                <MaxTileRow>11</MaxTileRow>
     3026                                                <MinTileCol>15</MinTileCol>
     3027                                                <MaxTileCol>16</MaxTileCol>
     3028                                        </TileMatrixLimits>
     3029                                        <TileMatrixLimits>
     3030                                                <TileMatrix>6</TileMatrix>
     3031                                                <MinTileRow>21</MinTileRow>
     3032                                                <MaxTileRow>23</MaxTileRow>
     3033                                                <MinTileCol>31</MinTileCol>
     3034                                                <MaxTileCol>33</MaxTileCol>
     3035                                        </TileMatrixLimits>
     3036                                        <TileMatrixLimits>
     3037                                                <TileMatrix>7</TileMatrix>
     3038                                                <MinTileRow>42</MinTileRow>
     3039                                                <MaxTileRow>47</MaxTileRow>
     3040                                                <MinTileCol>62</MinTileCol>
     3041                                                <MaxTileCol>67</MaxTileCol>
     3042                                        </TileMatrixLimits>
     3043                                        <TileMatrixLimits>
     3044                                                <TileMatrix>8</TileMatrix>
     3045                                                <MinTileRow>85</MinTileRow>
     3046                                                <MaxTileRow>95</MaxTileRow>
     3047                                                <MinTileCol>124</MinTileCol>
     3048                                                <MaxTileCol>134</MaxTileCol>
     3049                                        </TileMatrixLimits>
     3050                                        <TileMatrixLimits>
     3051                                                <TileMatrix>9</TileMatrix>
     3052                                                <MinTileRow>171</MinTileRow>
     3053                                                <MaxTileRow>191</MaxTileRow>
     3054                                                <MinTileCol>248</MinTileCol>
     3055                                                <MaxTileCol>269</MaxTileCol>
     3056                                        </TileMatrixLimits>
     3057                                </TileMatrixSetLimits>
     3058                        </TileMatrixSetLink>
     3059                </Layer>
     3060                <Layer>
     3061                        <ows:Title>Millésime Spot 2014</ows:Title>
     3062                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     3063                        <ows:Keywords>
     3064                                <ows:Keyword>Photographies</ows:Keyword>
     3065                        </ows:Keywords>
     3066                        <ows:WGS84BoundingBox>
     3067                                <ows:LowerCorner>2.05557 41.3101</ows:LowerCorner>
     3068                                <ows:UpperCorner>9.69656 49.9972</ows:UpperCorner>
     3069                        </ows:WGS84BoundingBox>
     3070                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2014-17-07</ows:Identifier>
     3071                        <Style isDefault="true">
     3072                                <ows:Title>Données Brutes</ows:Title>
     3073                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3074                                <ows:Keywords>
     3075                                        <ows:Keyword>Défaut</ows:Keyword>
     3076                                </ows:Keywords>
     3077                                <ows:Identifier>normal</ows:Identifier>
     3078                                <LegendURL format="image/jpeg" height="200"
     3079                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3080                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3081                        </Style>
     3082                        <Format>image/jpeg</Format>
     3083                        <TileMatrixSetLink>
     3084                                <TileMatrixSet>PM</TileMatrixSet>
     3085                                <TileMatrixSetLimits>
     3086                                        <TileMatrixLimits>
     3087                                                <TileMatrix>0</TileMatrix>
     3088                                                <MinTileRow>0</MinTileRow>
     3089                                                <MaxTileRow>0</MaxTileRow>
     3090                                                <MinTileCol>0</MinTileCol>
     3091                                                <MaxTileCol>0</MaxTileCol>
     3092                                        </TileMatrixLimits>
     3093                                        <TileMatrixLimits>
     3094                                                <TileMatrix>1</TileMatrix>
     3095                                                <MinTileRow>0</MinTileRow>
     3096                                                <MaxTileRow>0</MaxTileRow>
     3097                                                <MinTileCol>1</MinTileCol>
     3098                                                <MaxTileCol>1</MaxTileCol>
     3099                                        </TileMatrixLimits>
     3100                                        <TileMatrixLimits>
     3101                                                <TileMatrix>10</TileMatrix>
     3102                                                <MinTileRow>347</MinTileRow>
     3103                                                <MaxTileRow>382</MaxTileRow>
     3104                                                <MinTileCol>517</MinTileCol>
     3105                                                <MaxTileCol>539</MaxTileCol>
     3106                                        </TileMatrixLimits>
     3107                                        <TileMatrixLimits>
     3108                                                <TileMatrix>11</TileMatrix>
     3109                                                <MinTileRow>694</MinTileRow>
     3110                                                <MaxTileRow>765</MaxTileRow>
     3111                                                <MinTileCol>1035</MinTileCol>
     3112                                                <MaxTileCol>1078</MaxTileCol>
     3113                                        </TileMatrixLimits>
     3114                                        <TileMatrixLimits>
     3115                                                <TileMatrix>12</TileMatrix>
     3116                                                <MinTileRow>1389</MinTileRow>
     3117                                                <MaxTileRow>1530</MaxTileRow>
     3118                                                <MinTileCol>2071</MinTileCol>
     3119                                                <MaxTileCol>2157</MaxTileCol>
     3120                                        </TileMatrixLimits>
     3121                                        <TileMatrixLimits>
     3122                                                <TileMatrix>13</TileMatrix>
     3123                                                <MinTileRow>2778</MinTileRow>
     3124                                                <MaxTileRow>3061</MaxTileRow>
     3125                                                <MinTileCol>4143</MinTileCol>
     3126                                                <MaxTileCol>4314</MaxTileCol>
     3127                                        </TileMatrixLimits>
     3128                                        <TileMatrixLimits>
     3129                                                <TileMatrix>14</TileMatrix>
     3130                                                <MinTileRow>5557</MinTileRow>
     3131                                                <MaxTileRow>6123</MaxTileRow>
     3132                                                <MinTileCol>8287</MinTileCol>
     3133                                                <MaxTileCol>8629</MaxTileCol>
     3134                                        </TileMatrixLimits>
     3135                                        <TileMatrixLimits>
     3136                                                <TileMatrix>15</TileMatrix>
     3137                                                <MinTileRow>11114</MinTileRow>
     3138                                                <MaxTileRow>12246</MaxTileRow>
     3139                                                <MinTileCol>16574</MinTileCol>
     3140                                                <MaxTileCol>17258</MaxTileCol>
     3141                                        </TileMatrixLimits>
     3142                                        <TileMatrixLimits>
     3143                                                <TileMatrix>16</TileMatrix>
     3144                                                <MinTileRow>22228</MinTileRow>
     3145                                                <MaxTileRow>24493</MaxTileRow>
     3146                                                <MinTileCol>33148</MinTileCol>
     3147                                                <MaxTileCol>34516</MaxTileCol>
     3148                                        </TileMatrixLimits>
     3149                                        <TileMatrixLimits>
     3150                                                <TileMatrix>17</TileMatrix>
     3151                                                <MinTileRow>44457</MinTileRow>
     3152                                                <MaxTileRow>48986</MaxTileRow>
     3153                                                <MinTileCol>66296</MinTileCol>
     3154                                                <MaxTileCol>69033</MaxTileCol>
     3155                                        </TileMatrixLimits>
     3156                                        <TileMatrixLimits>
     3157                                                <TileMatrix>2</TileMatrix>
     3158                                                <MinTileRow>1</MinTileRow>
     3159                                                <MaxTileRow>1</MaxTileRow>
     3160                                                <MinTileCol>2</MinTileCol>
     3161                                                <MaxTileCol>2</MaxTileCol>
     3162                                        </TileMatrixLimits>
     3163                                        <TileMatrixLimits>
     3164                                                <TileMatrix>3</TileMatrix>
     3165                                                <MinTileRow>2</MinTileRow>
     3166                                                <MaxTileRow>2</MaxTileRow>
     3167                                                <MinTileCol>4</MinTileCol>
     3168                                                <MaxTileCol>4</MaxTileCol>
     3169                                        </TileMatrixLimits>
     3170                                        <TileMatrixLimits>
     3171                                                <TileMatrix>4</TileMatrix>
     3172                                                <MinTileRow>5</MinTileRow>
     3173                                                <MaxTileRow>5</MaxTileRow>
     3174                                                <MinTileCol>8</MinTileCol>
     3175                                                <MaxTileCol>8</MaxTileCol>
     3176                                        </TileMatrixLimits>
     3177                                        <TileMatrixLimits>
     3178                                                <TileMatrix>5</TileMatrix>
     3179                                                <MinTileRow>10</MinTileRow>
     3180                                                <MaxTileRow>11</MaxTileRow>
     3181                                                <MinTileCol>16</MinTileCol>
     3182                                                <MaxTileCol>16</MaxTileCol>
     3183                                        </TileMatrixLimits>
     3184                                        <TileMatrixLimits>
     3185                                                <TileMatrix>6</TileMatrix>
     3186                                                <MinTileRow>21</MinTileRow>
     3187                                                <MaxTileRow>23</MaxTileRow>
     3188                                                <MinTileCol>32</MinTileCol>
     3189                                                <MaxTileCol>33</MaxTileCol>
     3190                                        </TileMatrixLimits>
     3191                                        <TileMatrixLimits>
     3192                                                <TileMatrix>7</TileMatrix>
     3193                                                <MinTileRow>43</MinTileRow>
     3194                                                <MaxTileRow>47</MaxTileRow>
     3195                                                <MinTileCol>64</MinTileCol>
     3196                                                <MaxTileCol>67</MaxTileCol>
     3197                                        </TileMatrixLimits>
     3198                                        <TileMatrixLimits>
     3199                                                <TileMatrix>8</TileMatrix>
     3200                                                <MinTileRow>86</MinTileRow>
     3201                                                <MaxTileRow>95</MaxTileRow>
     3202                                                <MinTileCol>129</MinTileCol>
     3203                                                <MaxTileCol>134</MaxTileCol>
     3204                                        </TileMatrixLimits>
     3205                                        <TileMatrixLimits>
     3206                                                <TileMatrix>9</TileMatrix>
     3207                                                <MinTileRow>173</MinTileRow>
     3208                                                <MaxTileRow>191</MaxTileRow>
     3209                                                <MinTileCol>258</MinTileCol>
     3210                                                <MaxTileCol>269</MaxTileCol>
     3211                                        </TileMatrixLimits>
     3212                                </TileMatrixSetLimits>
     3213                        </TileMatrixSetLink>
     3214                </Layer>
     3215                <Layer>
     3216                        <ows:Title>SPOT 6 - 2014</ows:Title>
     3217                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     3218                        <ows:Keywords>
     3219                                <ows:Keyword>Photographies</ows:Keyword>
     3220                        </ows:Keywords>
     3221                        <ows:WGS84BoundingBox>
     3222                                <ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner>
     3223                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     3224                        </ows:WGS84BoundingBox>
     3225                        <ows:Identifier>ORTHO-SAT-ASSEMBLEE-SPOT-2014_PYR-JPEG_WLD_WM_2015-01-22</ows:Identifier>
     3226                        <Style isDefault="true">
     3227                                <ows:Title>Données Brutes</ows:Title>
     3228                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3229                                <ows:Keywords>
     3230                                        <ows:Keyword>Défaut</ows:Keyword>
     3231                                </ows:Keywords>
     3232                                <ows:Identifier>normal</ows:Identifier>
     3233                                <LegendURL format="image/jpeg" height="200"
     3234                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3235                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3236                        </Style>
     3237                        <Format>image/jpeg</Format>
     3238                        <TileMatrixSetLink>
     3239                                <TileMatrixSet>PM</TileMatrixSet>
     3240                                <TileMatrixSetLimits>
     3241                                        <TileMatrixLimits>
     3242                                                <TileMatrix>0</TileMatrix>
     3243                                                <MinTileRow>0</MinTileRow>
     3244                                                <MaxTileRow>0</MaxTileRow>
     3245                                                <MinTileCol>0</MinTileCol>
     3246                                                <MaxTileCol>0</MaxTileCol>
     3247                                        </TileMatrixLimits>
     3248                                        <TileMatrixLimits>
     3249                                                <TileMatrix>1</TileMatrix>
     3250                                                <MinTileRow>0</MinTileRow>
     3251                                                <MaxTileRow>0</MaxTileRow>
     3252                                                <MinTileCol>0</MinTileCol>
     3253                                                <MaxTileCol>1</MaxTileCol>
     3254                                        </TileMatrixLimits>
     3255                                        <TileMatrixLimits>
     3256                                                <TileMatrix>10</TileMatrix>
     3257                                                <MinTileRow>342</MinTileRow>
     3258                                                <MaxTileRow>382</MaxTileRow>
     3259                                                <MinTileCol>497</MinTileCol>
     3260                                                <MaxTileCol>539</MaxTileCol>
     3261                                        </TileMatrixLimits>
     3262                                        <TileMatrixLimits>
     3263                                                <TileMatrix>11</TileMatrix>
     3264                                                <MinTileRow>684</MinTileRow>
     3265                                                <MaxTileRow>765</MaxTileRow>
     3266                                                <MinTileCol>994</MinTileCol>
     3267                                                <MaxTileCol>1078</MaxTileCol>
     3268                                        </TileMatrixLimits>
     3269                                        <TileMatrixLimits>
     3270                                                <TileMatrix>12</TileMatrix>
     3271                                                <MinTileRow>1369</MinTileRow>
     3272                                                <MaxTileRow>1530</MaxTileRow>
     3273                                                <MinTileCol>1988</MinTileCol>
     3274                                                <MaxTileCol>2157</MaxTileCol>
     3275                                        </TileMatrixLimits>
     3276                                        <TileMatrixLimits>
     3277                                                <TileMatrix>13</TileMatrix>
     3278                                                <MinTileRow>2738</MinTileRow>
     3279                                                <MaxTileRow>3061</MaxTileRow>
     3280                                                <MinTileCol>3977</MinTileCol>
     3281                                                <MaxTileCol>4314</MaxTileCol>
     3282                                        </TileMatrixLimits>
     3283                                        <TileMatrixLimits>
     3284                                                <TileMatrix>14</TileMatrix>
     3285                                                <MinTileRow>5476</MinTileRow>
     3286                                                <MaxTileRow>6123</MaxTileRow>
     3287                                                <MinTileCol>7955</MinTileCol>
     3288                                                <MaxTileCol>8629</MaxTileCol>
     3289                                        </TileMatrixLimits>
     3290                                        <TileMatrixLimits>
     3291                                                <TileMatrix>15</TileMatrix>
     3292                                                <MinTileRow>10953</MinTileRow>
     3293                                                <MaxTileRow>12246</MaxTileRow>
     3294                                                <MinTileCol>15911</MinTileCol>
     3295                                                <MaxTileCol>17258</MaxTileCol>
     3296                                        </TileMatrixLimits>
     3297                                        <TileMatrixLimits>
     3298                                                <TileMatrix>16</TileMatrix>
     3299                                                <MinTileRow>21907</MinTileRow>
     3300                                                <MaxTileRow>24493</MaxTileRow>
     3301                                                <MinTileCol>31823</MinTileCol>
     3302                                                <MaxTileCol>34516</MaxTileCol>
     3303                                        </TileMatrixLimits>
     3304                                        <TileMatrixLimits>
     3305                                                <TileMatrix>17</TileMatrix>
     3306                                                <MinTileRow>43815</MinTileRow>
     3307                                                <MaxTileRow>48986</MaxTileRow>
     3308                                                <MinTileCol>63646</MinTileCol>
     3309                                                <MaxTileCol>69033</MaxTileCol>
     3310                                        </TileMatrixLimits>
     3311                                        <TileMatrixLimits>
     3312                                                <TileMatrix>2</TileMatrix>
     3313                                                <MinTileRow>1</MinTileRow>
     3314                                                <MaxTileRow>1</MaxTileRow>
     3315                                                <MinTileCol>1</MinTileCol>
     3316                                                <MaxTileCol>2</MaxTileCol>
     3317                                        </TileMatrixLimits>
     3318                                        <TileMatrixLimits>
     3319                                                <TileMatrix>3</TileMatrix>
     3320                                                <MinTileRow>2</MinTileRow>
     3321                                                <MaxTileRow>2</MaxTileRow>
     3322                                                <MinTileCol>3</MinTileCol>
     3323                                                <MaxTileCol>4</MaxTileCol>
     3324                                        </TileMatrixLimits>
     3325                                        <TileMatrixLimits>
     3326                                                <TileMatrix>4</TileMatrix>
     3327                                                <MinTileRow>5</MinTileRow>
     3328                                                <MaxTileRow>5</MaxTileRow>
     3329                                                <MinTileCol>7</MinTileCol>
     3330                                                <MaxTileCol>8</MaxTileCol>
     3331                                        </TileMatrixLimits>
     3332                                        <TileMatrixLimits>
     3333                                                <TileMatrix>5</TileMatrix>
     3334                                                <MinTileRow>10</MinTileRow>
     3335                                                <MaxTileRow>11</MaxTileRow>
     3336                                                <MinTileCol>15</MinTileCol>
     3337                                                <MaxTileCol>16</MaxTileCol>
     3338                                        </TileMatrixLimits>
     3339                                        <TileMatrixLimits>
     3340                                                <TileMatrix>6</TileMatrix>
     3341                                                <MinTileRow>21</MinTileRow>
     3342                                                <MaxTileRow>23</MaxTileRow>
     3343                                                <MinTileCol>31</MinTileCol>
     3344                                                <MaxTileCol>33</MaxTileCol>
     3345                                        </TileMatrixLimits>
     3346                                        <TileMatrixLimits>
     3347                                                <TileMatrix>7</TileMatrix>
     3348                                                <MinTileRow>42</MinTileRow>
     3349                                                <MaxTileRow>47</MaxTileRow>
     3350                                                <MinTileCol>62</MinTileCol>
     3351                                                <MaxTileCol>67</MaxTileCol>
     3352                                        </TileMatrixLimits>
     3353                                        <TileMatrixLimits>
     3354                                                <TileMatrix>8</TileMatrix>
     3355                                                <MinTileRow>85</MinTileRow>
     3356                                                <MaxTileRow>95</MaxTileRow>
     3357                                                <MinTileCol>124</MinTileCol>
     3358                                                <MaxTileCol>134</MaxTileCol>
     3359                                        </TileMatrixLimits>
     3360                                        <TileMatrixLimits>
     3361                                                <TileMatrix>9</TileMatrix>
     3362                                                <MinTileRow>171</MinTileRow>
     3363                                                <MaxTileRow>191</MaxTileRow>
     3364                                                <MinTileCol>248</MinTileCol>
     3365                                                <MaxTileCol>269</MaxTileCol>
     3366                                        </TileMatrixLimits>
     3367                                </TileMatrixSetLimits>
     3368                        </TileMatrixSetLink>
     3369                </Layer>
     3370                <Layer>
     3371                        <ows:Title>Couche RapidEye 2010</ows:Title>
     3372                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     3373                        <ows:Keywords>
     3374                                <ows:Keyword>Photographies</ows:Keyword>
     3375                        </ows:Keywords>
     3376                        <ows:WGS84BoundingBox>
     3377                                <ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner>
     3378                                <ows:UpperCorner>10.961 50.9218</ows:UpperCorner>
     3379                        </ows:WGS84BoundingBox>
     3380                        <ows:Identifier>ORTHO-SAT-RAPIDEYE-2010_PYR-JPEG_WLD_WM_WMTS</ows:Identifier>
     3381                        <Style isDefault="true">
     3382                                <ows:Title>Données Brutes</ows:Title>
     3383                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3384                                <ows:Keywords>
     3385                                        <ows:Keyword>Défaut</ows:Keyword>
     3386                                </ows:Keywords>
     3387                                <ows:Identifier>normal</ows:Identifier>
     3388                                <LegendURL format="image/jpeg" height="200"
     3389                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3390                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3391                        </Style>
     3392                        <Format>image/jpeg</Format>
     3393                        <TileMatrixSetLink>
     3394                                <TileMatrixSet>PM</TileMatrixSet>
     3395                                <TileMatrixSetLimits>
     3396                                        <TileMatrixLimits>
     3397                                                <TileMatrix>0</TileMatrix>
     3398                                                <MinTileRow>0</MinTileRow>
     3399                                                <MaxTileRow>0</MaxTileRow>
     3400                                                <MinTileCol>0</MinTileCol>
     3401                                                <MaxTileCol>0</MaxTileCol>
     3402                                        </TileMatrixLimits>
     3403                                        <TileMatrixLimits>
     3404                                                <TileMatrix>1</TileMatrix>
     3405                                                <MinTileRow>0</MinTileRow>
     3406                                                <MaxTileRow>0</MaxTileRow>
     3407                                                <MinTileCol>0</MinTileCol>
     3408                                                <MaxTileCol>1</MaxTileCol>
     3409                                        </TileMatrixLimits>
     3410                                        <TileMatrixLimits>
     3411                                                <TileMatrix>10</TileMatrix>
     3412                                                <MinTileRow>342</MinTileRow>
     3413                                                <MaxTileRow>382</MaxTileRow>
     3414                                                <MinTileCol>496</MinTileCol>
     3415                                                <MaxTileCol>539</MaxTileCol>
     3416                                        </TileMatrixLimits>
     3417                                        <TileMatrixLimits>
     3418                                                <TileMatrix>11</TileMatrix>
     3419                                                <MinTileRow>684</MinTileRow>
     3420                                                <MaxTileRow>765</MaxTileRow>
     3421                                                <MinTileCol>993</MinTileCol>
     3422                                                <MaxTileCol>1079</MaxTileCol>
     3423                                        </TileMatrixLimits>
     3424                                        <TileMatrixLimits>
     3425                                                <TileMatrix>12</TileMatrix>
     3426                                                <MinTileRow>1368</MinTileRow>
     3427                                                <MaxTileRow>1531</MaxTileRow>
     3428                                                <MinTileCol>1986</MinTileCol>
     3429                                                <MaxTileCol>2159</MaxTileCol>
     3430                                        </TileMatrixLimits>
     3431                                        <TileMatrixLimits>
     3432                                                <TileMatrix>13</TileMatrix>
     3433                                                <MinTileRow>2736</MinTileRow>
     3434                                                <MaxTileRow>3063</MaxTileRow>
     3435                                                <MinTileCol>3972</MinTileCol>
     3436                                                <MaxTileCol>4319</MaxTileCol>
     3437                                        </TileMatrixLimits>
     3438                                        <TileMatrixLimits>
     3439                                                <TileMatrix>14</TileMatrix>
     3440                                                <MinTileRow>5472</MinTileRow>
     3441                                                <MaxTileRow>6126</MaxTileRow>
     3442                                                <MinTileCol>7945</MinTileCol>
     3443                                                <MaxTileCol>8638</MaxTileCol>
     3444                                        </TileMatrixLimits>
     3445                                        <TileMatrixLimits>
     3446                                                <TileMatrix>15</TileMatrix>
     3447                                                <MinTileRow>10944</MinTileRow>
     3448                                                <MaxTileRow>12253</MaxTileRow>
     3449                                                <MinTileCol>15890</MinTileCol>
     3450                                                <MaxTileCol>17277</MaxTileCol>
     3451                                        </TileMatrixLimits>
     3452                                        <TileMatrixLimits>
     3453                                                <TileMatrix>2</TileMatrix>
     3454                                                <MinTileRow>1</MinTileRow>
     3455                                                <MaxTileRow>1</MaxTileRow>
     3456                                                <MinTileCol>1</MinTileCol>
     3457                                                <MaxTileCol>2</MaxTileCol>
     3458                                        </TileMatrixLimits>
     3459                                        <TileMatrixLimits>
     3460                                                <TileMatrix>3</TileMatrix>
     3461                                                <MinTileRow>2</MinTileRow>
     3462                                                <MaxTileRow>2</MaxTileRow>
     3463                                                <MinTileCol>3</MinTileCol>
     3464                                                <MaxTileCol>4</MaxTileCol>
     3465                                        </TileMatrixLimits>
     3466                                        <TileMatrixLimits>
     3467                                                <TileMatrix>4</TileMatrix>
     3468                                                <MinTileRow>5</MinTileRow>
     3469                                                <MaxTileRow>5</MaxTileRow>
     3470                                                <MinTileCol>7</MinTileCol>
     3471                                                <MaxTileCol>8</MaxTileCol>
     3472                                        </TileMatrixLimits>
     3473                                        <TileMatrixLimits>
     3474                                                <TileMatrix>5</TileMatrix>
     3475                                                <MinTileRow>10</MinTileRow>
     3476                                                <MaxTileRow>11</MaxTileRow>
     3477                                                <MinTileCol>15</MinTileCol>
     3478                                                <MaxTileCol>16</MaxTileCol>
     3479                                        </TileMatrixLimits>
     3480                                        <TileMatrixLimits>
     3481                                                <TileMatrix>6</TileMatrix>
     3482                                                <MinTileRow>21</MinTileRow>
     3483                                                <MaxTileRow>23</MaxTileRow>
     3484                                                <MinTileCol>31</MinTileCol>
     3485                                                <MaxTileCol>33</MaxTileCol>
     3486                                        </TileMatrixLimits>
     3487                                        <TileMatrixLimits>
     3488                                                <TileMatrix>7</TileMatrix>
     3489                                                <MinTileRow>42</MinTileRow>
     3490                                                <MaxTileRow>47</MaxTileRow>
     3491                                                <MinTileCol>62</MinTileCol>
     3492                                                <MaxTileCol>67</MaxTileCol>
     3493                                        </TileMatrixLimits>
     3494                                        <TileMatrixLimits>
     3495                                                <TileMatrix>8</TileMatrix>
     3496                                                <MinTileRow>85</MinTileRow>
     3497                                                <MaxTileRow>95</MaxTileRow>
     3498                                                <MinTileCol>124</MinTileCol>
     3499                                                <MaxTileCol>134</MaxTileCol>
     3500                                        </TileMatrixLimits>
     3501                                        <TileMatrixLimits>
     3502                                                <TileMatrix>9</TileMatrix>
     3503                                                <MinTileRow>171</MinTileRow>
     3504                                                <MaxTileRow>191</MaxTileRow>
     3505                                                <MinTileCol>248</MinTileCol>
     3506                                                <MaxTileCol>269</MaxTileCol>
     3507                                        </TileMatrixLimits>
     3508                                </TileMatrixSetLimits>
     3509                        </TileMatrixSetLink>
     3510                </Layer>
     3511                <Layer>
     3512                        <ows:Title>Couche RapidEye 2011</ows:Title>
     3513                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     3514                        <ows:Keywords>
     3515                                <ows:Keyword>Photographies</ows:Keyword>
     3516                        </ows:Keywords>
     3517                        <ows:WGS84BoundingBox>
     3518                                <ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner>
     3519                                <ows:UpperCorner>10.961 51.1752</ows:UpperCorner>
     3520                        </ows:WGS84BoundingBox>
     3521                        <ows:Identifier>ORTHO-SAT-RAPIDEYE-2011_PYR-JPEG_WLD_WM_WMTS</ows:Identifier>
     3522                        <Style isDefault="true">
     3523                                <ows:Title>Données Brutes</ows:Title>
     3524                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3525                                <ows:Keywords>
     3526                                        <ows:Keyword>Défaut</ows:Keyword>
     3527                                </ows:Keywords>
     3528                                <ows:Identifier>normal</ows:Identifier>
     3529                                <LegendURL format="image/jpeg" height="200"
     3530                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3531                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3532                        </Style>
     3533                        <Format>image/jpeg</Format>
     3534                        <TileMatrixSetLink>
     3535                                <TileMatrixSet>PM</TileMatrixSet>
     3536                                <TileMatrixSetLimits>
     3537                                        <TileMatrixLimits>
     3538                                                <TileMatrix>0</TileMatrix>
     3539                                                <MinTileRow>0</MinTileRow>
     3540                                                <MaxTileRow>0</MaxTileRow>
     3541                                                <MinTileCol>0</MinTileCol>
     3542                                                <MaxTileCol>0</MaxTileCol>
     3543                                        </TileMatrixLimits>
     3544                                        <TileMatrixLimits>
     3545                                                <TileMatrix>1</TileMatrix>
     3546                                                <MinTileRow>0</MinTileRow>
     3547                                                <MaxTileRow>0</MaxTileRow>
     3548                                                <MinTileCol>0</MinTileCol>
     3549                                                <MaxTileCol>1</MaxTileCol>
     3550                                        </TileMatrixLimits>
     3551                                        <TileMatrixLimits>
     3552                                                <TileMatrix>10</TileMatrix>
     3553                                                <MinTileRow>342</MinTileRow>
     3554                                                <MaxTileRow>383</MaxTileRow>
     3555                                                <MinTileCol>496</MinTileCol>
     3556                                                <MaxTileCol>540</MaxTileCol>
     3557                                        </TileMatrixLimits>
     3558                                        <TileMatrixLimits>
     3559                                                <TileMatrix>11</TileMatrix>
     3560                                                <MinTileRow>684</MinTileRow>
     3561                                                <MaxTileRow>767</MaxTileRow>
     3562                                                <MinTileCol>993</MinTileCol>
     3563                                                <MaxTileCol>1080</MaxTileCol>
     3564                                        </TileMatrixLimits>
     3565                                        <TileMatrixLimits>
     3566                                                <TileMatrix>12</TileMatrix>
     3567                                                <MinTileRow>1368</MinTileRow>
     3568                                                <MaxTileRow>1534</MaxTileRow>
     3569                                                <MinTileCol>1986</MinTileCol>
     3570                                                <MaxTileCol>2160</MaxTileCol>
     3571                                        </TileMatrixLimits>
     3572                                        <TileMatrixLimits>
     3573                                                <TileMatrix>13</TileMatrix>
     3574                                                <MinTileRow>2736</MinTileRow>
     3575                                                <MaxTileRow>3068</MaxTileRow>
     3576                                                <MinTileCol>3972</MinTileCol>
     3577                                                <MaxTileCol>4321</MaxTileCol>
     3578                                        </TileMatrixLimits>
     3579                                        <TileMatrixLimits>
     3580                                                <TileMatrix>14</TileMatrix>
     3581                                                <MinTileRow>5472</MinTileRow>
     3582                                                <MaxTileRow>6137</MaxTileRow>
     3583                                                <MinTileCol>7945</MinTileCol>
     3584                                                <MaxTileCol>8642</MaxTileCol>
     3585                                        </TileMatrixLimits>
     3586                                        <TileMatrixLimits>
     3587                                                <TileMatrix>15</TileMatrix>
     3588                                                <MinTileRow>10944</MinTileRow>
     3589                                                <MaxTileRow>12275</MaxTileRow>
     3590                                                <MinTileCol>15890</MinTileCol>
     3591                                                <MaxTileCol>17285</MaxTileCol>
     3592                                        </TileMatrixLimits>
     3593                                        <TileMatrixLimits>
     3594                                                <TileMatrix>2</TileMatrix>
     3595                                                <MinTileRow>1</MinTileRow>
     3596                                                <MaxTileRow>1</MaxTileRow>
     3597                                                <MinTileCol>1</MinTileCol>
     3598                                                <MaxTileCol>2</MaxTileCol>
     3599                                        </TileMatrixLimits>
     3600                                        <TileMatrixLimits>
     3601                                                <TileMatrix>3</TileMatrix>
     3602                                                <MinTileRow>2</MinTileRow>
     3603                                                <MaxTileRow>2</MaxTileRow>
     3604                                                <MinTileCol>3</MinTileCol>
     3605                                                <MaxTileCol>4</MaxTileCol>
     3606                                        </TileMatrixLimits>
     3607                                        <TileMatrixLimits>
     3608                                                <TileMatrix>4</TileMatrix>
     3609                                                <MinTileRow>5</MinTileRow>
     3610                                                <MaxTileRow>5</MaxTileRow>
     3611                                                <MinTileCol>7</MinTileCol>
     3612                                                <MaxTileCol>8</MaxTileCol>
     3613                                        </TileMatrixLimits>
     3614                                        <TileMatrixLimits>
     3615                                                <TileMatrix>5</TileMatrix>
     3616                                                <MinTileRow>10</MinTileRow>
     3617                                                <MaxTileRow>11</MaxTileRow>
     3618                                                <MinTileCol>15</MinTileCol>
     3619                                                <MaxTileCol>16</MaxTileCol>
     3620                                        </TileMatrixLimits>
     3621                                        <TileMatrixLimits>
     3622                                                <TileMatrix>6</TileMatrix>
     3623                                                <MinTileRow>21</MinTileRow>
     3624                                                <MaxTileRow>23</MaxTileRow>
     3625                                                <MinTileCol>31</MinTileCol>
     3626                                                <MaxTileCol>33</MaxTileCol>
     3627                                        </TileMatrixLimits>
     3628                                        <TileMatrixLimits>
     3629                                                <TileMatrix>7</TileMatrix>
     3630                                                <MinTileRow>42</MinTileRow>
     3631                                                <MaxTileRow>47</MaxTileRow>
     3632                                                <MinTileCol>62</MinTileCol>
     3633                                                <MaxTileCol>67</MaxTileCol>
     3634                                        </TileMatrixLimits>
     3635                                        <TileMatrixLimits>
     3636                                                <TileMatrix>8</TileMatrix>
     3637                                                <MinTileRow>85</MinTileRow>
     3638                                                <MaxTileRow>95</MaxTileRow>
     3639                                                <MinTileCol>124</MinTileCol>
     3640                                                <MaxTileCol>135</MaxTileCol>
     3641                                        </TileMatrixLimits>
     3642                                        <TileMatrixLimits>
     3643                                                <TileMatrix>9</TileMatrix>
     3644                                                <MinTileRow>171</MinTileRow>
     3645                                                <MaxTileRow>191</MaxTileRow>
     3646                                                <MinTileCol>248</MinTileCol>
     3647                                                <MaxTileCol>270</MaxTileCol>
     3648                                        </TileMatrixLimits>
     3649                                </TileMatrixSetLimits>
     3650                        </TileMatrixSetLink>
     3651                </Layer>
     3652                <Layer>
     3653                        <ows:Title>RAPIDEYE - 2011</ows:Title>
     3654                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     3655                        <ows:Keywords>
     3656                                <ows:Keyword>Photographies</ows:Keyword>
     3657                        </ows:Keywords>
     3658                        <ows:WGS84BoundingBox>
     3659                                <ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner>
     3660                                <ows:UpperCorner>10.961 51.1752</ows:UpperCorner>
     3661                        </ows:WGS84BoundingBox>
     3662                        <ows:Identifier>ORTHO-SAT-RAPIDEYE-2011_PYR-JPEG_WLD_WM_WMTS2</ows:Identifier>
     3663                        <Style isDefault="true">
     3664                                <ows:Title>Données Brutes</ows:Title>
     3665                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3666                                <ows:Keywords>
     3667                                        <ows:Keyword>Défaut</ows:Keyword>
     3668                                </ows:Keywords>
     3669                                <ows:Identifier>normal</ows:Identifier>
     3670                                <LegendURL format="image/jpeg" height="200"
     3671                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3672                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3673                        </Style>
     3674                        <Format>image/jpeg</Format>
     3675                        <TileMatrixSetLink>
     3676                                <TileMatrixSet>PM</TileMatrixSet>
     3677                                <TileMatrixSetLimits>
     3678                                        <TileMatrixLimits>
     3679                                                <TileMatrix>0</TileMatrix>
     3680                                                <MinTileRow>0</MinTileRow>
     3681                                                <MaxTileRow>0</MaxTileRow>
     3682                                                <MinTileCol>0</MinTileCol>
     3683                                                <MaxTileCol>0</MaxTileCol>
     3684                                        </TileMatrixLimits>
     3685                                        <TileMatrixLimits>
     3686                                                <TileMatrix>1</TileMatrix>
     3687                                                <MinTileRow>0</MinTileRow>
     3688                                                <MaxTileRow>0</MaxTileRow>
     3689                                                <MinTileCol>0</MinTileCol>
     3690                                                <MaxTileCol>1</MaxTileCol>
     3691                                        </TileMatrixLimits>
     3692                                        <TileMatrixLimits>
     3693                                                <TileMatrix>10</TileMatrix>
     3694                                                <MinTileRow>342</MinTileRow>
     3695                                                <MaxTileRow>383</MaxTileRow>
     3696                                                <MinTileCol>496</MinTileCol>
     3697                                                <MaxTileCol>540</MaxTileCol>
     3698                                        </TileMatrixLimits>
     3699                                        <TileMatrixLimits>
     3700                                                <TileMatrix>11</TileMatrix>
     3701                                                <MinTileRow>684</MinTileRow>
     3702                                                <MaxTileRow>767</MaxTileRow>
     3703                                                <MinTileCol>993</MinTileCol>
     3704                                                <MaxTileCol>1080</MaxTileCol>
     3705                                        </TileMatrixLimits>
     3706                                        <TileMatrixLimits>
     3707                                                <TileMatrix>12</TileMatrix>
     3708                                                <MinTileRow>1368</MinTileRow>
     3709                                                <MaxTileRow>1534</MaxTileRow>
     3710                                                <MinTileCol>1986</MinTileCol>
     3711                                                <MaxTileCol>2160</MaxTileCol>
     3712                                        </TileMatrixLimits>
     3713                                        <TileMatrixLimits>
     3714                                                <TileMatrix>13</TileMatrix>
     3715                                                <MinTileRow>2736</MinTileRow>
     3716                                                <MaxTileRow>3068</MaxTileRow>
     3717                                                <MinTileCol>3972</MinTileCol>
     3718                                                <MaxTileCol>4321</MaxTileCol>
     3719                                        </TileMatrixLimits>
     3720                                        <TileMatrixLimits>
     3721                                                <TileMatrix>14</TileMatrix>
     3722                                                <MinTileRow>5472</MinTileRow>
     3723                                                <MaxTileRow>6137</MaxTileRow>
     3724                                                <MinTileCol>7945</MinTileCol>
     3725                                                <MaxTileCol>8642</MaxTileCol>
     3726                                        </TileMatrixLimits>
     3727                                        <TileMatrixLimits>
     3728                                                <TileMatrix>15</TileMatrix>
     3729                                                <MinTileRow>10944</MinTileRow>
     3730                                                <MaxTileRow>12275</MaxTileRow>
     3731                                                <MinTileCol>15890</MinTileCol>
     3732                                                <MaxTileCol>17285</MaxTileCol>
     3733                                        </TileMatrixLimits>
     3734                                        <TileMatrixLimits>
     3735                                                <TileMatrix>2</TileMatrix>
     3736                                                <MinTileRow>1</MinTileRow>
     3737                                                <MaxTileRow>1</MaxTileRow>
     3738                                                <MinTileCol>1</MinTileCol>
     3739                                                <MaxTileCol>2</MaxTileCol>
     3740                                        </TileMatrixLimits>
     3741                                        <TileMatrixLimits>
     3742                                                <TileMatrix>3</TileMatrix>
     3743                                                <MinTileRow>2</MinTileRow>
     3744                                                <MaxTileRow>2</MaxTileRow>
     3745                                                <MinTileCol>3</MinTileCol>
     3746                                                <MaxTileCol>4</MaxTileCol>
     3747                                        </TileMatrixLimits>
     3748                                        <TileMatrixLimits>
     3749                                                <TileMatrix>4</TileMatrix>
     3750                                                <MinTileRow>5</MinTileRow>
     3751                                                <MaxTileRow>5</MaxTileRow>
     3752                                                <MinTileCol>7</MinTileCol>
     3753                                                <MaxTileCol>8</MaxTileCol>
     3754                                        </TileMatrixLimits>
     3755                                        <TileMatrixLimits>
     3756                                                <TileMatrix>5</TileMatrix>
     3757                                                <MinTileRow>10</MinTileRow>
     3758                                                <MaxTileRow>11</MaxTileRow>
     3759                                                <MinTileCol>15</MinTileCol>
     3760                                                <MaxTileCol>16</MaxTileCol>
     3761                                        </TileMatrixLimits>
     3762                                        <TileMatrixLimits>
     3763                                                <TileMatrix>6</TileMatrix>
     3764                                                <MinTileRow>21</MinTileRow>
     3765                                                <MaxTileRow>23</MaxTileRow>
     3766                                                <MinTileCol>31</MinTileCol>
     3767                                                <MaxTileCol>33</MaxTileCol>
     3768                                        </TileMatrixLimits>
     3769                                        <TileMatrixLimits>
     3770                                                <TileMatrix>7</TileMatrix>
     3771                                                <MinTileRow>42</MinTileRow>
     3772                                                <MaxTileRow>47</MaxTileRow>
     3773                                                <MinTileCol>62</MinTileCol>
     3774                                                <MaxTileCol>67</MaxTileCol>
     3775                                        </TileMatrixLimits>
     3776                                        <TileMatrixLimits>
     3777                                                <TileMatrix>8</TileMatrix>
     3778                                                <MinTileRow>85</MinTileRow>
     3779                                                <MaxTileRow>95</MaxTileRow>
     3780                                                <MinTileCol>124</MinTileCol>
     3781                                                <MaxTileCol>135</MaxTileCol>
     3782                                        </TileMatrixLimits>
     3783                                        <TileMatrixLimits>
     3784                                                <TileMatrix>9</TileMatrix>
     3785                                                <MinTileRow>171</MinTileRow>
     3786                                                <MaxTileRow>191</MaxTileRow>
     3787                                                <MinTileCol>248</MinTileCol>
     3788                                                <MaxTileCol>270</MaxTileCol>
     3789                                        </TileMatrixLimits>
     3790                                </TileMatrixSetLimits>
     3791                        </TileMatrixSetLink>
     3792                </Layer>
     3793                <Layer>
     3794                        <ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT01 2015</ows:Title>
     3795                        <ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT01 issues du projet Geosud.</ows:Abstract>
     3796                        <ows:Keywords>
     3797                                <ows:Keyword>Images satellitaires</ows:Keyword>
     3798                        </ows:Keywords>
     3799                        <ows:WGS84BoundingBox>
     3800                                <ows:LowerCorner>-5.36 41.303</ows:LowerCorner>
     3801                                <ows:UpperCorner>9.72838 51.106</ows:UpperCorner>
     3802                        </ows:WGS84BoundingBox>
     3803                        <ows:Identifier>ORTHO-SAT-SPOT-2015_PYR-JPEG_WLD_WM_CHAINED_FRANCE-2015-LOT01-2015</ows:Identifier>
     3804                        <Style isDefault="true">
     3805                                <ows:Title>Données Brutes</ows:Title>
     3806                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3807                                <ows:Keywords>
     3808                                        <ows:Keyword>Défaut</ows:Keyword>
     3809                                </ows:Keywords>
     3810                                <ows:Identifier>normal</ows:Identifier>
     3811                                <LegendURL format="image/jpeg" height="200"
     3812                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3813                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3814                        </Style>
     3815                        <Format>image/jpeg</Format>
     3816                        <TileMatrixSetLink>
     3817                                <TileMatrixSet>PM</TileMatrixSet>
     3818                                <TileMatrixSetLimits>
     3819                                        <TileMatrixLimits>
     3820                                                <TileMatrix>0</TileMatrix>
     3821                                                <MinTileRow>0</MinTileRow>
     3822                                                <MaxTileRow>0</MaxTileRow>
     3823                                                <MinTileCol>0</MinTileCol>
     3824                                                <MaxTileCol>0</MaxTileCol>
     3825                                        </TileMatrixLimits>
     3826                                        <TileMatrixLimits>
     3827                                                <TileMatrix>1</TileMatrix>
     3828                                                <MinTileRow>0</MinTileRow>
     3829                                                <MaxTileRow>0</MaxTileRow>
     3830                                                <MinTileCol>0</MinTileCol>
     3831                                                <MaxTileCol>1</MaxTileCol>
     3832                                        </TileMatrixLimits>
     3833                                        <TileMatrixLimits>
     3834                                                <TileMatrix>10</TileMatrix>
     3835                                                <MinTileRow>342</MinTileRow>
     3836                                                <MaxTileRow>382</MaxTileRow>
     3837                                                <MinTileCol>497</MinTileCol>
     3838                                                <MaxTileCol>539</MaxTileCol>
     3839                                        </TileMatrixLimits>
     3840                                        <TileMatrixLimits>
     3841                                                <TileMatrix>11</TileMatrix>
     3842                                                <MinTileRow>684</MinTileRow>
     3843                                                <MaxTileRow>765</MaxTileRow>
     3844                                                <MinTileCol>994</MinTileCol>
     3845                                                <MaxTileCol>1078</MaxTileCol>
     3846                                        </TileMatrixLimits>
     3847                                        <TileMatrixLimits>
     3848                                                <TileMatrix>12</TileMatrix>
     3849                                                <MinTileRow>1369</MinTileRow>
     3850                                                <MaxTileRow>1530</MaxTileRow>
     3851                                                <MinTileCol>1988</MinTileCol>
     3852                                                <MaxTileCol>2157</MaxTileCol>
     3853                                        </TileMatrixLimits>
     3854                                        <TileMatrixLimits>
     3855                                                <TileMatrix>13</TileMatrix>
     3856                                                <MinTileRow>2738</MinTileRow>
     3857                                                <MaxTileRow>3061</MaxTileRow>
     3858                                                <MinTileCol>3977</MinTileCol>
     3859                                                <MaxTileCol>4315</MaxTileCol>
     3860                                        </TileMatrixLimits>
     3861                                        <TileMatrixLimits>
     3862                                                <TileMatrix>14</TileMatrix>
     3863                                                <MinTileRow>5476</MinTileRow>
     3864                                                <MaxTileRow>6123</MaxTileRow>
     3865                                                <MinTileCol>7955</MinTileCol>
     3866                                                <MaxTileCol>8630</MaxTileCol>
     3867                                        </TileMatrixLimits>
     3868                                        <TileMatrixLimits>
     3869                                                <TileMatrix>15</TileMatrix>
     3870                                                <MinTileRow>10953</MinTileRow>
     3871                                                <MaxTileRow>12247</MaxTileRow>
     3872                                                <MinTileCol>15911</MinTileCol>
     3873                                                <MaxTileCol>17261</MaxTileCol>
     3874                                        </TileMatrixLimits>
     3875                                        <TileMatrixLimits>
     3876                                                <TileMatrix>16</TileMatrix>
     3877                                                <MinTileRow>21907</MinTileRow>
     3878                                                <MaxTileRow>24494</MaxTileRow>
     3879                                                <MinTileCol>31822</MinTileCol>
     3880                                                <MaxTileCol>34523</MaxTileCol>
     3881                                        </TileMatrixLimits>
     3882                                        <TileMatrixLimits>
     3883                                                <TileMatrix>17</TileMatrix>
     3884                                                <MinTileRow>43815</MinTileRow>
     3885                                                <MaxTileRow>48989</MaxTileRow>
     3886                                                <MinTileCol>63645</MinTileCol>
     3887                                                <MaxTileCol>69047</MaxTileCol>
     3888                                        </TileMatrixLimits>
     3889                                        <TileMatrixLimits>
     3890                                                <TileMatrix>2</TileMatrix>
     3891                                                <MinTileRow>1</MinTileRow>
     3892                                                <MaxTileRow>1</MaxTileRow>
     3893                                                <MinTileCol>1</MinTileCol>
     3894                                                <MaxTileCol>2</MaxTileCol>
     3895                                        </TileMatrixLimits>
     3896                                        <TileMatrixLimits>
     3897                                                <TileMatrix>3</TileMatrix>
     3898                                                <MinTileRow>2</MinTileRow>
     3899                                                <MaxTileRow>2</MaxTileRow>
     3900                                                <MinTileCol>3</MinTileCol>
     3901                                                <MaxTileCol>4</MaxTileCol>
     3902                                        </TileMatrixLimits>
     3903                                        <TileMatrixLimits>
     3904                                                <TileMatrix>4</TileMatrix>
     3905                                                <MinTileRow>5</MinTileRow>
     3906                                                <MaxTileRow>5</MaxTileRow>
     3907                                                <MinTileCol>7</MinTileCol>
     3908                                                <MaxTileCol>8</MaxTileCol>
     3909                                        </TileMatrixLimits>
     3910                                        <TileMatrixLimits>
     3911                                                <TileMatrix>5</TileMatrix>
     3912                                                <MinTileRow>10</MinTileRow>
     3913                                                <MaxTileRow>11</MaxTileRow>
     3914                                                <MinTileCol>15</MinTileCol>
     3915                                                <MaxTileCol>16</MaxTileCol>
     3916                                        </TileMatrixLimits>
     3917                                        <TileMatrixLimits>
     3918                                                <TileMatrix>6</TileMatrix>
     3919                                                <MinTileRow>21</MinTileRow>
     3920                                                <MaxTileRow>23</MaxTileRow>
     3921                                                <MinTileCol>31</MinTileCol>
     3922                                                <MaxTileCol>33</MaxTileCol>
     3923                                        </TileMatrixLimits>
     3924                                        <TileMatrixLimits>
     3925                                                <TileMatrix>7</TileMatrix>
     3926                                                <MinTileRow>42</MinTileRow>
     3927                                                <MaxTileRow>47</MaxTileRow>
     3928                                                <MinTileCol>62</MinTileCol>
     3929                                                <MaxTileCol>67</MaxTileCol>
     3930                                        </TileMatrixLimits>
     3931                                        <TileMatrixLimits>
     3932                                                <TileMatrix>8</TileMatrix>
     3933                                                <MinTileRow>85</MinTileRow>
     3934                                                <MaxTileRow>95</MaxTileRow>
     3935                                                <MinTileCol>124</MinTileCol>
     3936                                                <MaxTileCol>134</MaxTileCol>
     3937                                        </TileMatrixLimits>
     3938                                        <TileMatrixLimits>
     3939                                                <TileMatrix>9</TileMatrix>
     3940                                                <MinTileRow>171</MinTileRow>
     3941                                                <MaxTileRow>191</MaxTileRow>
     3942                                                <MinTileCol>248</MinTileCol>
     3943                                                <MaxTileCol>269</MaxTileCol>
     3944                                        </TileMatrixLimits>
     3945                                </TileMatrixSetLimits>
     3946                        </TileMatrixSetLink>
     3947                </Layer>
     3948                <Layer>
     3949                        <ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT05 2015</ows:Title>
     3950                        <ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT05 issues du projet Geosud.</ows:Abstract>
     3951                        <ows:Keywords>
     3952                                <ows:Keyword>Images satellitaires</ows:Keyword>
     3953                        </ows:Keywords>
     3954                        <ows:WGS84BoundingBox>
     3955                                <ows:LowerCorner>-5.36 41.303</ows:LowerCorner>
     3956                                <ows:UpperCorner>9.72838 51.106</ows:UpperCorner>
     3957                        </ows:WGS84BoundingBox>
     3958                        <ows:Identifier>ORTHO-SAT-SPOT-2015_PYR-JPEG_WLD_WM_CHAINED_FRANCE-2015-LOT05-2015</ows:Identifier>
     3959                        <Style isDefault="true">
     3960                                <ows:Title>Données Brutes</ows:Title>
     3961                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     3962                                <ows:Keywords>
     3963                                        <ows:Keyword>Défaut</ows:Keyword>
     3964                                </ows:Keywords>
     3965                                <ows:Identifier>normal</ows:Identifier>
     3966                                <LegendURL format="image/jpeg" height="200"
     3967                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     3968                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     3969                        </Style>
     3970                        <Format>image/jpeg</Format>
     3971                        <TileMatrixSetLink>
     3972                                <TileMatrixSet>PM</TileMatrixSet>
     3973                                <TileMatrixSetLimits>
     3974                                        <TileMatrixLimits>
     3975                                                <TileMatrix>0</TileMatrix>
     3976                                                <MinTileRow>0</MinTileRow>
     3977                                                <MaxTileRow>0</MaxTileRow>
     3978                                                <MinTileCol>0</MinTileCol>
     3979                                                <MaxTileCol>0</MaxTileCol>
     3980                                        </TileMatrixLimits>
     3981                                        <TileMatrixLimits>
     3982                                                <TileMatrix>1</TileMatrix>
     3983                                                <MinTileRow>0</MinTileRow>
     3984                                                <MaxTileRow>0</MaxTileRow>
     3985                                                <MinTileCol>0</MinTileCol>
     3986                                                <MaxTileCol>1</MaxTileCol>
     3987                                        </TileMatrixLimits>
     3988                                        <TileMatrixLimits>
     3989                                                <TileMatrix>10</TileMatrix>
     3990                                                <MinTileRow>342</MinTileRow>
     3991                                                <MaxTileRow>382</MaxTileRow>
     3992                                                <MinTileCol>497</MinTileCol>
     3993                                                <MaxTileCol>539</MaxTileCol>
     3994                                        </TileMatrixLimits>
     3995                                        <TileMatrixLimits>
     3996                                                <TileMatrix>11</TileMatrix>
     3997                                                <MinTileRow>684</MinTileRow>
     3998                                                <MaxTileRow>765</MaxTileRow>
     3999                                                <MinTileCol>994</MinTileCol>
     4000                                                <MaxTileCol>1078</MaxTileCol>
     4001                                        </TileMatrixLimits>
     4002                                        <TileMatrixLimits>
     4003                                                <TileMatrix>12</TileMatrix>
     4004                                                <MinTileRow>1369</MinTileRow>
     4005                                                <MaxTileRow>1530</MaxTileRow>
     4006                                                <MinTileCol>1988</MinTileCol>
     4007                                                <MaxTileCol>2157</MaxTileCol>
     4008                                        </TileMatrixLimits>
     4009                                        <TileMatrixLimits>
     4010                                                <TileMatrix>13</TileMatrix>
     4011                                                <MinTileRow>2738</MinTileRow>
     4012                                                <MaxTileRow>3061</MaxTileRow>
     4013                                                <MinTileCol>3977</MinTileCol>
     4014                                                <MaxTileCol>4315</MaxTileCol>
     4015                                        </TileMatrixLimits>
     4016                                        <TileMatrixLimits>
     4017                                                <TileMatrix>14</TileMatrix>
     4018                                                <MinTileRow>5476</MinTileRow>
     4019                                                <MaxTileRow>6123</MaxTileRow>
     4020                                                <MinTileCol>7955</MinTileCol>
     4021                                                <MaxTileCol>8630</MaxTileCol>
     4022                                        </TileMatrixLimits>
     4023                                        <TileMatrixLimits>
     4024                                                <TileMatrix>15</TileMatrix>
     4025                                                <MinTileRow>10953</MinTileRow>
     4026                                                <MaxTileRow>12247</MaxTileRow>
     4027                                                <MinTileCol>15911</MinTileCol>
     4028                                                <MaxTileCol>17261</MaxTileCol>
     4029                                        </TileMatrixLimits>
     4030                                        <TileMatrixLimits>
     4031                                                <TileMatrix>16</TileMatrix>
     4032                                                <MinTileRow>21907</MinTileRow>
     4033                                                <MaxTileRow>24494</MaxTileRow>
     4034                                                <MinTileCol>31822</MinTileCol>
     4035                                                <MaxTileCol>34523</MaxTileCol>
     4036                                        </TileMatrixLimits>
     4037                                        <TileMatrixLimits>
     4038                                                <TileMatrix>17</TileMatrix>
     4039                                                <MinTileRow>43815</MinTileRow>
     4040                                                <MaxTileRow>48989</MaxTileRow>
     4041                                                <MinTileCol>63645</MinTileCol>
     4042                                                <MaxTileCol>69047</MaxTileCol>
     4043                                        </TileMatrixLimits>
     4044                                        <TileMatrixLimits>
     4045                                                <TileMatrix>2</TileMatrix>
     4046                                                <MinTileRow>1</MinTileRow>
     4047                                                <MaxTileRow>1</MaxTileRow>
     4048                                                <MinTileCol>1</MinTileCol>
     4049                                                <MaxTileCol>2</MaxTileCol>
     4050                                        </TileMatrixLimits>
     4051                                        <TileMatrixLimits>
     4052                                                <TileMatrix>3</TileMatrix>
     4053                                                <MinTileRow>2</MinTileRow>
     4054                                                <MaxTileRow>2</MaxTileRow>
     4055                                                <MinTileCol>3</MinTileCol>
     4056                                                <MaxTileCol>4</MaxTileCol>
     4057                                        </TileMatrixLimits>
     4058                                        <TileMatrixLimits>
     4059                                                <TileMatrix>4</TileMatrix>
     4060                                                <MinTileRow>5</MinTileRow>
     4061                                                <MaxTileRow>5</MaxTileRow>
     4062                                                <MinTileCol>7</MinTileCol>
     4063                                                <MaxTileCol>8</MaxTileCol>
     4064                                        </TileMatrixLimits>
     4065                                        <TileMatrixLimits>
     4066                                                <TileMatrix>5</TileMatrix>
     4067                                                <MinTileRow>10</MinTileRow>
     4068                                                <MaxTileRow>11</MaxTileRow>
     4069                                                <MinTileCol>15</MinTileCol>
     4070                                                <MaxTileCol>16</MaxTileCol>
     4071                                        </TileMatrixLimits>
     4072                                        <TileMatrixLimits>
     4073                                                <TileMatrix>6</TileMatrix>
     4074                                                <MinTileRow>21</MinTileRow>
     4075                                                <MaxTileRow>23</MaxTileRow>
     4076                                                <MinTileCol>31</MinTileCol>
     4077                                                <MaxTileCol>33</MaxTileCol>
     4078                                        </TileMatrixLimits>
     4079                                        <TileMatrixLimits>
     4080                                                <TileMatrix>7</TileMatrix>
     4081                                                <MinTileRow>42</MinTileRow>
     4082                                                <MaxTileRow>47</MaxTileRow>
     4083                                                <MinTileCol>62</MinTileCol>
     4084                                                <MaxTileCol>67</MaxTileCol>
     4085                                        </TileMatrixLimits>
     4086                                        <TileMatrixLimits>
     4087                                                <TileMatrix>8</TileMatrix>
     4088                                                <MinTileRow>85</MinTileRow>
     4089                                                <MaxTileRow>95</MaxTileRow>
     4090                                                <MinTileCol>124</MinTileCol>
     4091                                                <MaxTileCol>134</MaxTileCol>
     4092                                        </TileMatrixLimits>
     4093                                        <TileMatrixLimits>
     4094                                                <TileMatrix>9</TileMatrix>
     4095                                                <MinTileRow>171</MinTileRow>
     4096                                                <MaxTileRow>191</MaxTileRow>
     4097                                                <MinTileCol>248</MinTileCol>
     4098                                                <MaxTileCol>269</MaxTileCol>
     4099                                        </TileMatrixLimits>
     4100                                </TileMatrixSetLimits>
     4101                        </TileMatrixSetLink>
     4102                </Layer>
     4103                <Layer>
     4104                        <ows:Title>Orthophotographies Geosud de ALES 2014</ows:Title>
     4105                        <ows:Abstract>Orthophotographies satellites de ALES issues du projet Geosud.</ows:Abstract>
     4106                        <ows:Keywords>
     4107                                <ows:Keyword>Photographies</ows:Keyword>
     4108                        </ows:Keywords>
     4109                        <ows:WGS84BoundingBox>
     4110                                <ows:LowerCorner>3.94776 44.0082</ows:LowerCorner>
     4111                                <ows:UpperCorner>4.22692 44.2359</ows:UpperCorner>
     4112                        </ows:WGS84BoundingBox>
     4113                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ALES-2014-03-13-38958824</ows:Identifier>
     4114                        <Style isDefault="true">
     4115                                <ows:Title>Données Brutes</ows:Title>
     4116                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4117                                <ows:Keywords>
     4118                                        <ows:Keyword>Défaut</ows:Keyword>
     4119                                </ows:Keywords>
     4120                                <ows:Identifier>normal</ows:Identifier>
     4121                                <LegendURL format="image/jpeg" height="200"
     4122                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4123                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4124                        </Style>
     4125                        <Format>image/jpeg</Format>
     4126                        <TileMatrixSetLink>
     4127                                <TileMatrixSet>PM</TileMatrixSet>
     4128                                <TileMatrixSetLimits>
     4129                                        <TileMatrixLimits>
     4130                                                <TileMatrix>0</TileMatrix>
     4131                                                <MinTileRow>0</MinTileRow>
     4132                                                <MaxTileRow>0</MaxTileRow>
     4133                                                <MinTileCol>0</MinTileCol>
     4134                                                <MaxTileCol>0</MaxTileCol>
     4135                                        </TileMatrixLimits>
     4136                                        <TileMatrixLimits>
     4137                                                <TileMatrix>1</TileMatrix>
     4138                                                <MinTileRow>0</MinTileRow>
     4139                                                <MaxTileRow>0</MaxTileRow>
     4140                                                <MinTileCol>1</MinTileCol>
     4141                                                <MaxTileCol>1</MaxTileCol>
     4142                                        </TileMatrixLimits>
     4143                                        <TileMatrixLimits>
     4144                                                <TileMatrix>10</TileMatrix>
     4145                                                <MinTileRow>371</MinTileRow>
     4146                                                <MaxTileRow>372</MaxTileRow>
     4147                                                <MinTileCol>523</MinTileCol>
     4148                                                <MaxTileCol>524</MaxTileCol>
     4149                                        </TileMatrixLimits>
     4150                                        <TileMatrixLimits>
     4151                                                <TileMatrix>11</TileMatrix>
     4152                                                <MinTileRow>742</MinTileRow>
     4153                                                <MaxTileRow>744</MaxTileRow>
     4154                                                <MinTileCol>1046</MinTileCol>
     4155                                                <MaxTileCol>1048</MaxTileCol>
     4156                                        </TileMatrixLimits>
     4157                                        <TileMatrixLimits>
     4158                                                <TileMatrix>12</TileMatrix>
     4159                                                <MinTileRow>1485</MinTileRow>
     4160                                                <MaxTileRow>1489</MaxTileRow>
     4161                                                <MinTileCol>2092</MinTileCol>
     4162                                                <MaxTileCol>2096</MaxTileCol>
     4163                                        </TileMatrixLimits>
     4164                                        <TileMatrixLimits>
     4165                                                <TileMatrix>13</TileMatrix>
     4166                                                <MinTileRow>2971</MinTileRow>
     4167                                                <MaxTileRow>2978</MaxTileRow>
     4168                                                <MinTileCol>4185</MinTileCol>
     4169                                                <MaxTileCol>4192</MaxTileCol>
     4170                                        </TileMatrixLimits>
     4171                                        <TileMatrixLimits>
     4172                                                <TileMatrix>14</TileMatrix>
     4173                                                <MinTileRow>5942</MinTileRow>
     4174                                                <MaxTileRow>5956</MaxTileRow>
     4175                                                <MinTileCol>8371</MinTileCol>
     4176                                                <MaxTileCol>8384</MaxTileCol>
     4177                                        </TileMatrixLimits>
     4178                                        <TileMatrixLimits>
     4179                                                <TileMatrix>15</TileMatrix>
     4180                                                <MinTileRow>11885</MinTileRow>
     4181                                                <MaxTileRow>11913</MaxTileRow>
     4182                                                <MinTileCol>16743</MinTileCol>
     4183                                                <MaxTileCol>16768</MaxTileCol>
     4184                                        </TileMatrixLimits>
     4185                                        <TileMatrixLimits>
     4186                                                <TileMatrix>16</TileMatrix>
     4187                                                <MinTileRow>23770</MinTileRow>
     4188                                                <MaxTileRow>23827</MaxTileRow>
     4189                                                <MinTileCol>33487</MinTileCol>
     4190                                                <MaxTileCol>33537</MaxTileCol>
     4191                                        </TileMatrixLimits>
     4192                                        <TileMatrixLimits>
     4193                                                <TileMatrix>17</TileMatrix>
     4194                                                <MinTileRow>47541</MinTileRow>
     4195                                                <MaxTileRow>47655</MaxTileRow>
     4196                                                <MinTileCol>66974</MinTileCol>
     4197                                                <MaxTileCol>67075</MaxTileCol>
     4198                                        </TileMatrixLimits>
     4199                                        <TileMatrixLimits>
     4200                                                <TileMatrix>18</TileMatrix>
     4201                                                <MinTileRow>95082</MinTileRow>
     4202                                                <MaxTileRow>95310</MaxTileRow>
     4203                                                <MinTileCol>133948</MinTileCol>
     4204                                                <MaxTileCol>134150</MaxTileCol>
     4205                                        </TileMatrixLimits>
     4206                                        <TileMatrixLimits>
     4207                                                <TileMatrix>2</TileMatrix>
     4208                                                <MinTileRow>1</MinTileRow>
     4209                                                <MaxTileRow>1</MaxTileRow>
     4210                                                <MinTileCol>2</MinTileCol>
     4211                                                <MaxTileCol>2</MaxTileCol>
     4212                                        </TileMatrixLimits>
     4213                                        <TileMatrixLimits>
     4214                                                <TileMatrix>3</TileMatrix>
     4215                                                <MinTileRow>2</MinTileRow>
     4216                                                <MaxTileRow>2</MaxTileRow>
     4217                                                <MinTileCol>4</MinTileCol>
     4218                                                <MaxTileCol>4</MaxTileCol>
     4219                                        </TileMatrixLimits>
     4220                                        <TileMatrixLimits>
     4221                                                <TileMatrix>4</TileMatrix>
     4222                                                <MinTileRow>5</MinTileRow>
     4223                                                <MaxTileRow>5</MaxTileRow>
     4224                                                <MinTileCol>8</MinTileCol>
     4225                                                <MaxTileCol>8</MaxTileCol>
     4226                                        </TileMatrixLimits>
     4227                                        <TileMatrixLimits>
     4228                                                <TileMatrix>5</TileMatrix>
     4229                                                <MinTileRow>11</MinTileRow>
     4230                                                <MaxTileRow>11</MaxTileRow>
     4231                                                <MinTileCol>16</MinTileCol>
     4232                                                <MaxTileCol>16</MaxTileCol>
     4233                                        </TileMatrixLimits>
     4234                                        <TileMatrixLimits>
     4235                                                <TileMatrix>6</TileMatrix>
     4236                                                <MinTileRow>23</MinTileRow>
     4237                                                <MaxTileRow>23</MaxTileRow>
     4238                                                <MinTileCol>32</MinTileCol>
     4239                                                <MaxTileCol>32</MaxTileCol>
     4240                                        </TileMatrixLimits>
     4241                                        <TileMatrixLimits>
     4242                                                <TileMatrix>7</TileMatrix>
     4243                                                <MinTileRow>46</MinTileRow>
     4244                                                <MaxTileRow>46</MaxTileRow>
     4245                                                <MinTileCol>65</MinTileCol>
     4246                                                <MaxTileCol>65</MaxTileCol>
     4247                                        </TileMatrixLimits>
     4248                                        <TileMatrixLimits>
     4249                                                <TileMatrix>8</TileMatrix>
     4250                                                <MinTileRow>92</MinTileRow>
     4251                                                <MaxTileRow>93</MaxTileRow>
     4252                                                <MinTileCol>130</MinTileCol>
     4253                                                <MaxTileCol>131</MaxTileCol>
     4254                                        </TileMatrixLimits>
     4255                                        <TileMatrixLimits>
     4256                                                <TileMatrix>9</TileMatrix>
     4257                                                <MinTileRow>185</MinTileRow>
     4258                                                <MaxTileRow>186</MaxTileRow>
     4259                                                <MinTileCol>261</MinTileCol>
     4260                                                <MaxTileCol>262</MaxTileCol>
     4261                                        </TileMatrixLimits>
     4262                                </TileMatrixSetLimits>
     4263                        </TileMatrixSetLink>
     4264                </Layer>
     4265                <Layer>
     4266                        <ows:Title>Orthophotographies Geosud de ALSACE 2014</ows:Title>
     4267                        <ows:Abstract>Orthophotographies satellites de ALSACE issues du projet Geosud.</ows:Abstract>
     4268                        <ows:Keywords>
     4269                                <ows:Keyword>Photographies</ows:Keyword>
     4270                        </ows:Keywords>
     4271                        <ows:WGS84BoundingBox>
     4272                                <ows:LowerCorner>6.80774 47.3669</ows:LowerCorner>
     4273                                <ows:UpperCorner>8.24454 49.1139</ows:UpperCorner>
     4274                        </ows:WGS84BoundingBox>
     4275                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ALSACE-2014</ows:Identifier>
     4276                        <Style isDefault="true">
     4277                                <ows:Title>Données Brutes</ows:Title>
     4278                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4279                                <ows:Keywords>
     4280                                        <ows:Keyword>Défaut</ows:Keyword>
     4281                                </ows:Keywords>
     4282                                <ows:Identifier>normal</ows:Identifier>
     4283                                <LegendURL format="image/jpeg" height="200"
     4284                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4285                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4286                        </Style>
     4287                        <Format>image/jpeg</Format>
     4288                        <TileMatrixSetLink>
     4289                                <TileMatrixSet>PM</TileMatrixSet>
     4290                                <TileMatrixSetLimits>
     4291                                        <TileMatrixLimits>
     4292                                                <TileMatrix>0</TileMatrix>
     4293                                                <MinTileRow>0</MinTileRow>
     4294                                                <MaxTileRow>0</MaxTileRow>
     4295                                                <MinTileCol>0</MinTileCol>
     4296                                                <MaxTileCol>0</MaxTileCol>
     4297                                        </TileMatrixLimits>
     4298                                        <TileMatrixLimits>
     4299                                                <TileMatrix>1</TileMatrix>
     4300                                                <MinTileRow>0</MinTileRow>
     4301                                                <MaxTileRow>0</MaxTileRow>
     4302                                                <MinTileCol>1</MinTileCol>
     4303                                                <MaxTileCol>1</MaxTileCol>
     4304                                        </TileMatrixLimits>
     4305                                        <TileMatrixLimits>
     4306                                                <TileMatrix>10</TileMatrix>
     4307                                                <MinTileRow>351</MinTileRow>
     4308                                                <MaxTileRow>358</MaxTileRow>
     4309                                                <MinTileCol>531</MinTileCol>
     4310                                                <MaxTileCol>535</MaxTileCol>
     4311                                        </TileMatrixLimits>
     4312                                        <TileMatrixLimits>
     4313                                                <TileMatrix>11</TileMatrix>
     4314                                                <MinTileRow>702</MinTileRow>
     4315                                                <MaxTileRow>716</MaxTileRow>
     4316                                                <MinTileCol>1062</MinTileCol>
     4317                                                <MaxTileCol>1070</MaxTileCol>
     4318                                        </TileMatrixLimits>
     4319                                        <TileMatrixLimits>
     4320                                                <TileMatrix>12</TileMatrix>
     4321                                                <MinTileRow>1405</MinTileRow>
     4322                                                <MaxTileRow>1433</MaxTileRow>
     4323                                                <MinTileCol>2125</MinTileCol>
     4324                                                <MaxTileCol>2141</MaxTileCol>
     4325                                        </TileMatrixLimits>
     4326                                        <TileMatrixLimits>
     4327                                                <TileMatrix>13</TileMatrix>
     4328                                                <MinTileRow>2810</MinTileRow>
     4329                                                <MaxTileRow>2867</MaxTileRow>
     4330                                                <MinTileCol>4251</MinTileCol>
     4331                                                <MaxTileCol>4283</MaxTileCol>
     4332                                        </TileMatrixLimits>
     4333                                        <TileMatrixLimits>
     4334                                                <TileMatrix>14</TileMatrix>
     4335                                                <MinTileRow>5620</MinTileRow>
     4336                                                <MaxTileRow>5735</MaxTileRow>
     4337                                                <MinTileCol>8502</MinTileCol>
     4338                                                <MaxTileCol>8566</MaxTileCol>
     4339                                        </TileMatrixLimits>
     4340                                        <TileMatrixLimits>
     4341                                                <TileMatrix>15</TileMatrix>
     4342                                                <MinTileRow>11240</MinTileRow>
     4343                                                <MaxTileRow>11471</MaxTileRow>
     4344                                                <MinTileCol>17005</MinTileCol>
     4345                                                <MaxTileCol>17133</MaxTileCol>
     4346                                        </TileMatrixLimits>
     4347                                        <TileMatrixLimits>
     4348                                                <TileMatrix>16</TileMatrix>
     4349                                                <MinTileRow>22481</MinTileRow>
     4350                                                <MaxTileRow>22943</MaxTileRow>
     4351                                                <MinTileCol>34011</MinTileCol>
     4352                                                <MaxTileCol>34267</MaxTileCol>
     4353                                        </TileMatrixLimits>
     4354                                        <TileMatrixLimits>
     4355                                                <TileMatrix>17</TileMatrix>
     4356                                                <MinTileRow>44963</MinTileRow>
     4357                                                <MaxTileRow>45887</MaxTileRow>
     4358                                                <MinTileCol>68023</MinTileCol>
     4359                                                <MaxTileCol>68535</MaxTileCol>
     4360                                        </TileMatrixLimits>
     4361                                        <TileMatrixLimits>
     4362                                                <TileMatrix>2</TileMatrix>
     4363                                                <MinTileRow>1</MinTileRow>
     4364                                                <MaxTileRow>1</MaxTileRow>
     4365                                                <MinTileCol>2</MinTileCol>
     4366                                                <MaxTileCol>2</MaxTileCol>
     4367                                        </TileMatrixLimits>
     4368                                        <TileMatrixLimits>
     4369                                                <TileMatrix>3</TileMatrix>
     4370                                                <MinTileRow>2</MinTileRow>
     4371                                                <MaxTileRow>2</MaxTileRow>
     4372                                                <MinTileCol>4</MinTileCol>
     4373                                                <MaxTileCol>4</MaxTileCol>
     4374                                        </TileMatrixLimits>
     4375                                        <TileMatrixLimits>
     4376                                                <TileMatrix>4</TileMatrix>
     4377                                                <MinTileRow>5</MinTileRow>
     4378                                                <MaxTileRow>5</MaxTileRow>
     4379                                                <MinTileCol>8</MinTileCol>
     4380                                                <MaxTileCol>8</MaxTileCol>
     4381                                        </TileMatrixLimits>
     4382                                        <TileMatrixLimits>
     4383                                                <TileMatrix>5</TileMatrix>
     4384                                                <MinTileRow>10</MinTileRow>
     4385                                                <MaxTileRow>11</MaxTileRow>
     4386                                                <MinTileCol>16</MinTileCol>
     4387                                                <MaxTileCol>16</MaxTileCol>
     4388                                        </TileMatrixLimits>
     4389                                        <TileMatrixLimits>
     4390                                                <TileMatrix>6</TileMatrix>
     4391                                                <MinTileRow>21</MinTileRow>
     4392                                                <MaxTileRow>22</MaxTileRow>
     4393                                                <MinTileCol>33</MinTileCol>
     4394                                                <MaxTileCol>33</MaxTileCol>
     4395                                        </TileMatrixLimits>
     4396                                        <TileMatrixLimits>
     4397                                                <TileMatrix>7</TileMatrix>
     4398                                                <MinTileRow>43</MinTileRow>
     4399                                                <MaxTileRow>44</MaxTileRow>
     4400                                                <MinTileCol>66</MinTileCol>
     4401                                                <MaxTileCol>66</MaxTileCol>
     4402                                        </TileMatrixLimits>
     4403                                        <TileMatrixLimits>
     4404                                                <TileMatrix>8</TileMatrix>
     4405                                                <MinTileRow>87</MinTileRow>
     4406                                                <MaxTileRow>89</MaxTileRow>
     4407                                                <MinTileCol>132</MinTileCol>
     4408                                                <MaxTileCol>133</MaxTileCol>
     4409                                        </TileMatrixLimits>
     4410                                        <TileMatrixLimits>
     4411                                                <TileMatrix>9</TileMatrix>
     4412                                                <MinTileRow>175</MinTileRow>
     4413                                                <MaxTileRow>179</MaxTileRow>
     4414                                                <MinTileCol>265</MinTileCol>
     4415                                                <MaxTileCol>267</MaxTileCol>
     4416                                        </TileMatrixLimits>
     4417                                </TileMatrixSetLimits>
     4418                        </TileMatrixSetLink>
     4419                </Layer>
     4420                <Layer>
     4421                        <ows:Title>Orthophotographies Geosud de Amiens</ows:Title>
     4422                        <ows:Abstract>Orthophotographies satellites de Amiens issues du projet Geosud.</ows:Abstract>
     4423                        <ows:Keywords>
     4424                                <ows:Keyword>Photographies</ows:Keyword>
     4425                        </ows:Keywords>
     4426                        <ows:WGS84BoundingBox>
     4427                                <ows:LowerCorner>2.16454 49.79</ows:LowerCorner>
     4428                                <ows:UpperCorner>2.45875 49.9624</ows:UpperCorner>
     4429                        </ows:WGS84BoundingBox>
     4430                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AMIENS-2013-08-02-39754444</ows:Identifier>
     4431                        <Style isDefault="true">
     4432                                <ows:Title>Données Brutes</ows:Title>
     4433                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4434                                <ows:Keywords>
     4435                                        <ows:Keyword>Défaut</ows:Keyword>
     4436                                </ows:Keywords>
     4437                                <ows:Identifier>normal</ows:Identifier>
     4438                                <LegendURL format="image/jpeg" height="200"
     4439                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4440                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4441                        </Style>
     4442                        <Format>image/jpeg</Format>
     4443                        <TileMatrixSetLink>
     4444                                <TileMatrixSet>PM</TileMatrixSet>
     4445                                <TileMatrixSetLimits>
     4446                                        <TileMatrixLimits>
     4447                                                <TileMatrix>0</TileMatrix>
     4448                                                <MinTileRow>0</MinTileRow>
     4449                                                <MaxTileRow>0</MaxTileRow>
     4450                                                <MinTileCol>0</MinTileCol>
     4451                                                <MaxTileCol>0</MaxTileCol>
     4452                                        </TileMatrixLimits>
     4453                                        <TileMatrixLimits>
     4454                                                <TileMatrix>1</TileMatrix>
     4455                                                <MinTileRow>0</MinTileRow>
     4456                                                <MaxTileRow>0</MaxTileRow>
     4457                                                <MinTileCol>1</MinTileCol>
     4458                                                <MaxTileCol>1</MaxTileCol>
     4459                                        </TileMatrixLimits>
     4460                                        <TileMatrixLimits>
     4461                                                <TileMatrix>10</TileMatrix>
     4462                                                <MinTileRow>347</MinTileRow>
     4463                                                <MaxTileRow>348</MaxTileRow>
     4464                                                <MinTileCol>518</MinTileCol>
     4465                                                <MaxTileCol>518</MaxTileCol>
     4466                                        </TileMatrixLimits>
     4467                                        <TileMatrixLimits>
     4468                                                <TileMatrix>11</TileMatrix>
     4469                                                <MinTileRow>694</MinTileRow>
     4470                                                <MaxTileRow>696</MaxTileRow>
     4471                                                <MinTileCol>1036</MinTileCol>
     4472                                                <MaxTileCol>1037</MaxTileCol>
     4473                                        </TileMatrixLimits>
     4474                                        <TileMatrixLimits>
     4475                                                <TileMatrix>12</TileMatrix>
     4476                                                <MinTileRow>1389</MinTileRow>
     4477                                                <MaxTileRow>1392</MaxTileRow>
     4478                                                <MinTileCol>2072</MinTileCol>
     4479                                                <MaxTileCol>2075</MaxTileCol>
     4480                                        </TileMatrixLimits>
     4481                                        <TileMatrixLimits>
     4482                                                <TileMatrix>13</TileMatrix>
     4483                                                <MinTileRow>2779</MinTileRow>
     4484                                                <MaxTileRow>2785</MaxTileRow>
     4485                                                <MinTileCol>4145</MinTileCol>
     4486                                                <MaxTileCol>4151</MaxTileCol>
     4487                                        </TileMatrixLimits>
     4488                                        <TileMatrixLimits>
     4489                                                <TileMatrix>14</TileMatrix>
     4490                                                <MinTileRow>5559</MinTileRow>
     4491                                                <MaxTileRow>5571</MaxTileRow>
     4492                                                <MinTileCol>8290</MinTileCol>
     4493                                                <MaxTileCol>8303</MaxTileCol>
     4494                                        </TileMatrixLimits>
     4495                                        <TileMatrixLimits>
     4496                                                <TileMatrix>15</TileMatrix>
     4497                                                <MinTileRow>11118</MinTileRow>
     4498                                                <MaxTileRow>11142</MaxTileRow>
     4499                                                <MinTileCol>16580</MinTileCol>
     4500                                                <MaxTileCol>16607</MaxTileCol>
     4501                                        </TileMatrixLimits>
     4502                                        <TileMatrixLimits>
     4503                                                <TileMatrix>16</TileMatrix>
     4504                                                <MinTileRow>22236</MinTileRow>
     4505                                                <MaxTileRow>22285</MaxTileRow>
     4506                                                <MinTileCol>33161</MinTileCol>
     4507                                                <MaxTileCol>33215</MaxTileCol>
     4508                                        </TileMatrixLimits>
     4509                                        <TileMatrixLimits>
     4510                                                <TileMatrix>17</TileMatrix>
     4511                                                <MinTileRow>44473</MinTileRow>
     4512                                                <MaxTileRow>44570</MaxTileRow>
     4513                                                <MinTileCol>66323</MinTileCol>
     4514                                                <MaxTileCol>66431</MaxTileCol>
     4515                                        </TileMatrixLimits>
     4516                                        <TileMatrixLimits>
     4517                                                <TileMatrix>18</TileMatrix>
     4518                                                <MinTileRow>88947</MinTileRow>
     4519                                                <MaxTileRow>89140</MaxTileRow>
     4520                                                <MinTileCol>132647</MinTileCol>
     4521                                                <MaxTileCol>132862</MaxTileCol>
     4522                                        </TileMatrixLimits>
     4523                                        <TileMatrixLimits>
     4524                                                <TileMatrix>2</TileMatrix>
     4525                                                <MinTileRow>1</MinTileRow>
     4526                                                <MaxTileRow>1</MaxTileRow>
     4527                                                <MinTileCol>2</MinTileCol>
     4528                                                <MaxTileCol>2</MaxTileCol>
     4529                                        </TileMatrixLimits>
     4530                                        <TileMatrixLimits>
     4531                                                <TileMatrix>3</TileMatrix>
     4532                                                <MinTileRow>2</MinTileRow>
     4533                                                <MaxTileRow>2</MaxTileRow>
     4534                                                <MinTileCol>4</MinTileCol>
     4535                                                <MaxTileCol>4</MaxTileCol>
     4536                                        </TileMatrixLimits>
     4537                                        <TileMatrixLimits>
     4538                                                <TileMatrix>4</TileMatrix>
     4539                                                <MinTileRow>5</MinTileRow>
     4540                                                <MaxTileRow>5</MaxTileRow>
     4541                                                <MinTileCol>8</MinTileCol>
     4542                                                <MaxTileCol>8</MaxTileCol>
     4543                                        </TileMatrixLimits>
     4544                                        <TileMatrixLimits>
     4545                                                <TileMatrix>5</TileMatrix>
     4546                                                <MinTileRow>10</MinTileRow>
     4547                                                <MaxTileRow>10</MaxTileRow>
     4548                                                <MinTileCol>16</MinTileCol>
     4549                                                <MaxTileCol>16</MaxTileCol>
     4550                                        </TileMatrixLimits>
     4551                                        <TileMatrixLimits>
     4552                                                <TileMatrix>6</TileMatrix>
     4553                                                <MinTileRow>21</MinTileRow>
     4554                                                <MaxTileRow>21</MaxTileRow>
     4555                                                <MinTileCol>32</MinTileCol>
     4556                                                <MaxTileCol>32</MaxTileCol>
     4557                                        </TileMatrixLimits>
     4558                                        <TileMatrixLimits>
     4559                                                <TileMatrix>7</TileMatrix>
     4560                                                <MinTileRow>43</MinTileRow>
     4561                                                <MaxTileRow>43</MaxTileRow>
     4562                                                <MinTileCol>64</MinTileCol>
     4563                                                <MaxTileCol>64</MaxTileCol>
     4564                                        </TileMatrixLimits>
     4565                                        <TileMatrixLimits>
     4566                                                <TileMatrix>8</TileMatrix>
     4567                                                <MinTileRow>86</MinTileRow>
     4568                                                <MaxTileRow>87</MaxTileRow>
     4569                                                <MinTileCol>129</MinTileCol>
     4570                                                <MaxTileCol>129</MaxTileCol>
     4571                                        </TileMatrixLimits>
     4572                                        <TileMatrixLimits>
     4573                                                <TileMatrix>9</TileMatrix>
     4574                                                <MinTileRow>173</MinTileRow>
     4575                                                <MaxTileRow>174</MaxTileRow>
     4576                                                <MinTileCol>259</MinTileCol>
     4577                                                <MaxTileCol>259</MaxTileCol>
     4578                                        </TileMatrixLimits>
     4579                                </TileMatrixSetLimits>
     4580                        </TileMatrixSetLink>
     4581                </Layer>
     4582                <Layer>
     4583                        <ows:Title>Orthophotographies Geosud de ANNECY 2014</ows:Title>
     4584                        <ows:Abstract>Orthophotographies satellites de ANNECY issues du projet Geosud.</ows:Abstract>
     4585                        <ows:Keywords>
     4586                                <ows:Keyword>Photographies</ows:Keyword>
     4587                        </ows:Keywords>
     4588                        <ows:WGS84BoundingBox>
     4589                                <ows:LowerCorner>5.95957 45.751</ows:LowerCorner>
     4590                                <ows:UpperCorner>6.25668 46.0018</ows:UpperCorner>
     4591                        </ows:WGS84BoundingBox>
     4592                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ANNECY-2014-03-08-38230574</ows:Identifier>
     4593                        <Style isDefault="true">
     4594                                <ows:Title>Données Brutes</ows:Title>
     4595                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4596                                <ows:Keywords>
     4597                                        <ows:Keyword>Défaut</ows:Keyword>
     4598                                </ows:Keywords>
     4599                                <ows:Identifier>normal</ows:Identifier>
     4600                                <LegendURL format="image/jpeg" height="200"
     4601                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4602                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4603                        </Style>
     4604                        <Format>image/jpeg</Format>
     4605                        <TileMatrixSetLink>
     4606                                <TileMatrixSet>PM</TileMatrixSet>
     4607                                <TileMatrixSetLimits>
     4608                                        <TileMatrixLimits>
     4609                                                <TileMatrix>0</TileMatrix>
     4610                                                <MinTileRow>0</MinTileRow>
     4611                                                <MaxTileRow>0</MaxTileRow>
     4612                                                <MinTileCol>0</MinTileCol>
     4613                                                <MaxTileCol>0</MaxTileCol>
     4614                                        </TileMatrixLimits>
     4615                                        <TileMatrixLimits>
     4616                                                <TileMatrix>1</TileMatrix>
     4617                                                <MinTileRow>0</MinTileRow>
     4618                                                <MaxTileRow>0</MaxTileRow>
     4619                                                <MinTileCol>1</MinTileCol>
     4620                                                <MaxTileCol>1</MaxTileCol>
     4621                                        </TileMatrixLimits>
     4622                                        <TileMatrixLimits>
     4623                                                <TileMatrix>10</TileMatrix>
     4624                                                <MinTileRow>364</MinTileRow>
     4625                                                <MaxTileRow>365</MaxTileRow>
     4626                                                <MinTileCol>528</MinTileCol>
     4627                                                <MaxTileCol>529</MaxTileCol>
     4628                                        </TileMatrixLimits>
     4629                                        <TileMatrixLimits>
     4630                                                <TileMatrix>11</TileMatrix>
     4631                                                <MinTileRow>728</MinTileRow>
     4632                                                <MaxTileRow>730</MaxTileRow>
     4633                                                <MinTileCol>1057</MinTileCol>
     4634                                                <MaxTileCol>1059</MaxTileCol>
     4635                                        </TileMatrixLimits>
     4636                                        <TileMatrixLimits>
     4637                                                <TileMatrix>12</TileMatrix>
     4638                                                <MinTileRow>1457</MinTileRow>
     4639                                                <MaxTileRow>1461</MaxTileRow>
     4640                                                <MinTileCol>2115</MinTileCol>
     4641                                                <MaxTileCol>2119</MaxTileCol>
     4642                                        </TileMatrixLimits>
     4643                                        <TileMatrixLimits>
     4644                                                <TileMatrix>13</TileMatrix>
     4645                                                <MinTileRow>2914</MinTileRow>
     4646                                                <MaxTileRow>2922</MaxTileRow>
     4647                                                <MinTileCol>4231</MinTileCol>
     4648                                                <MaxTileCol>4238</MaxTileCol>
     4649                                        </TileMatrixLimits>
     4650                                        <TileMatrixLimits>
     4651                                                <TileMatrix>14</TileMatrix>
     4652                                                <MinTileRow>5829</MinTileRow>
     4653                                                <MaxTileRow>5844</MaxTileRow>
     4654                                                <MinTileCol>8463</MinTileCol>
     4655                                                <MaxTileCol>8476</MaxTileCol>
     4656                                        </TileMatrixLimits>
     4657                                        <TileMatrixLimits>
     4658                                                <TileMatrix>15</TileMatrix>
     4659                                                <MinTileRow>11658</MinTileRow>
     4660                                                <MaxTileRow>11689</MaxTileRow>
     4661                                                <MinTileCol>16926</MinTileCol>
     4662                                                <MaxTileCol>16952</MaxTileCol>
     4663                                        </TileMatrixLimits>
     4664                                        <TileMatrixLimits>
     4665                                                <TileMatrix>16</TileMatrix>
     4666                                                <MinTileRow>23316</MinTileRow>
     4667                                                <MaxTileRow>23378</MaxTileRow>
     4668                                                <MinTileCol>33852</MinTileCol>
     4669                                                <MaxTileCol>33905</MaxTileCol>
     4670                                        </TileMatrixLimits>
     4671                                        <TileMatrixLimits>
     4672                                                <TileMatrix>17</TileMatrix>
     4673                                                <MinTileRow>46632</MinTileRow>
     4674                                                <MaxTileRow>46757</MaxTileRow>
     4675                                                <MinTileCol>67705</MinTileCol>
     4676                                                <MaxTileCol>67811</MaxTileCol>
     4677                                        </TileMatrixLimits>
     4678                                        <TileMatrixLimits>
     4679                                                <TileMatrix>18</TileMatrix>
     4680                                                <MinTileRow>93264</MinTileRow>
     4681                                                <MaxTileRow>93515</MaxTileRow>
     4682                                                <MinTileCol>135411</MinTileCol>
     4683                                                <MaxTileCol>135623</MaxTileCol>
     4684                                        </TileMatrixLimits>
     4685                                        <TileMatrixLimits>
     4686                                                <TileMatrix>2</TileMatrix>
     4687                                                <MinTileRow>1</MinTileRow>
     4688                                                <MaxTileRow>1</MaxTileRow>
     4689                                                <MinTileCol>2</MinTileCol>
     4690                                                <MaxTileCol>2</MaxTileCol>
     4691                                        </TileMatrixLimits>
     4692                                        <TileMatrixLimits>
     4693                                                <TileMatrix>3</TileMatrix>
     4694                                                <MinTileRow>2</MinTileRow>
     4695                                                <MaxTileRow>2</MaxTileRow>
     4696                                                <MinTileCol>4</MinTileCol>
     4697                                                <MaxTileCol>4</MaxTileCol>
     4698                                        </TileMatrixLimits>
     4699                                        <TileMatrixLimits>
     4700                                                <TileMatrix>4</TileMatrix>
     4701                                                <MinTileRow>5</MinTileRow>
     4702                                                <MaxTileRow>5</MaxTileRow>
     4703                                                <MinTileCol>8</MinTileCol>
     4704                                                <MaxTileCol>8</MaxTileCol>
     4705                                        </TileMatrixLimits>
     4706                                        <TileMatrixLimits>
     4707                                                <TileMatrix>5</TileMatrix>
     4708                                                <MinTileRow>11</MinTileRow>
     4709                                                <MaxTileRow>11</MaxTileRow>
     4710                                                <MinTileCol>16</MinTileCol>
     4711                                                <MaxTileCol>16</MaxTileCol>
     4712                                        </TileMatrixLimits>
     4713                                        <TileMatrixLimits>
     4714                                                <TileMatrix>6</TileMatrix>
     4715                                                <MinTileRow>22</MinTileRow>
     4716                                                <MaxTileRow>22</MaxTileRow>
     4717                                                <MinTileCol>33</MinTileCol>
     4718                                                <MaxTileCol>33</MaxTileCol>
     4719                                        </TileMatrixLimits>
     4720                                        <TileMatrixLimits>
     4721                                                <TileMatrix>7</TileMatrix>
     4722                                                <MinTileRow>45</MinTileRow>
     4723                                                <MaxTileRow>45</MaxTileRow>
     4724                                                <MinTileCol>66</MinTileCol>
     4725                                                <MaxTileCol>66</MaxTileCol>
     4726                                        </TileMatrixLimits>
     4727                                        <TileMatrixLimits>
     4728                                                <TileMatrix>8</TileMatrix>
     4729                                                <MinTileRow>91</MinTileRow>
     4730                                                <MaxTileRow>91</MaxTileRow>
     4731                                                <MinTileCol>132</MinTileCol>
     4732                                                <MaxTileCol>132</MaxTileCol>
     4733                                        </TileMatrixLimits>
     4734                                        <TileMatrixLimits>
     4735                                                <TileMatrix>9</TileMatrix>
     4736                                                <MinTileRow>182</MinTileRow>
     4737                                                <MaxTileRow>182</MaxTileRow>
     4738                                                <MinTileCol>264</MinTileCol>
     4739                                                <MaxTileCol>264</MaxTileCol>
     4740                                        </TileMatrixLimits>
     4741                                </TileMatrixSetLimits>
     4742                        </TileMatrixSetLink>
     4743                </Layer>
     4744                <Layer>
     4745                        <ows:Title>Orthophotographies Geosud de AQUITAINE 2014</ows:Title>
     4746                        <ows:Abstract>Orthophotographies satellites de AQUITAINE issues du projet Geosud.</ows:Abstract>
     4747                        <ows:Keywords>
     4748                                <ows:Keyword>Photographies</ows:Keyword>
     4749                        </ows:Keywords>
     4750                        <ows:WGS84BoundingBox>
     4751                                <ows:LowerCorner>-2.02438 42.7212</ows:LowerCorner>
     4752                                <ows:UpperCorner>1.52198 45.7599</ows:UpperCorner>
     4753                        </ows:WGS84BoundingBox>
     4754                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AQUITAINE-2014</ows:Identifier>
     4755                        <Style isDefault="true">
     4756                                <ows:Title>Données Brutes</ows:Title>
     4757                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4758                                <ows:Keywords>
     4759                                        <ows:Keyword>Défaut</ows:Keyword>
     4760                                </ows:Keywords>
     4761                                <ows:Identifier>normal</ows:Identifier>
     4762                                <LegendURL format="image/jpeg" height="200"
     4763                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4764                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4765                        </Style>
     4766                        <Format>image/jpeg</Format>
     4767                        <TileMatrixSetLink>
     4768                                <TileMatrixSet>PM</TileMatrixSet>
     4769                                <TileMatrixSetLimits>
     4770                                        <TileMatrixLimits>
     4771                                                <TileMatrix>0</TileMatrix>
     4772                                                <MinTileRow>0</MinTileRow>
     4773                                                <MaxTileRow>0</MaxTileRow>
     4774                                                <MinTileCol>0</MinTileCol>
     4775                                                <MaxTileCol>0</MaxTileCol>
     4776                                        </TileMatrixLimits>
     4777                                        <TileMatrixLimits>
     4778                                                <TileMatrix>1</TileMatrix>
     4779                                                <MinTileRow>0</MinTileRow>
     4780                                                <MaxTileRow>0</MaxTileRow>
     4781                                                <MinTileCol>0</MinTileCol>
     4782                                                <MaxTileCol>1</MaxTileCol>
     4783                                        </TileMatrixLimits>
     4784                                        <TileMatrixLimits>
     4785                                                <TileMatrix>10</TileMatrix>
     4786                                                <MinTileRow>365</MinTileRow>
     4787                                                <MaxTileRow>377</MaxTileRow>
     4788                                                <MinTileCol>506</MinTileCol>
     4789                                                <MaxTileCol>516</MaxTileCol>
     4790                                        </TileMatrixLimits>
     4791                                        <TileMatrixLimits>
     4792                                                <TileMatrix>11</TileMatrix>
     4793                                                <MinTileRow>730</MinTileRow>
     4794                                                <MaxTileRow>754</MaxTileRow>
     4795                                                <MinTileCol>1013</MinTileCol>
     4796                                                <MaxTileCol>1032</MaxTileCol>
     4797                                        </TileMatrixLimits>
     4798                                        <TileMatrixLimits>
     4799                                                <TileMatrix>12</TileMatrix>
     4800                                                <MinTileRow>1461</MinTileRow>
     4801                                                <MaxTileRow>1508</MaxTileRow>
     4802                                                <MinTileCol>2027</MinTileCol>
     4803                                                <MaxTileCol>2064</MaxTileCol>
     4804                                        </TileMatrixLimits>
     4805                                        <TileMatrixLimits>
     4806                                                <TileMatrix>13</TileMatrix>
     4807                                                <MinTileRow>2922</MinTileRow>
     4808                                                <MaxTileRow>3017</MaxTileRow>
     4809                                                <MinTileCol>4054</MinTileCol>
     4810                                                <MaxTileCol>4129</MaxTileCol>
     4811                                        </TileMatrixLimits>
     4812                                        <TileMatrixLimits>
     4813                                                <TileMatrix>14</TileMatrix>
     4814                                                <MinTileRow>5845</MinTileRow>
     4815                                                <MaxTileRow>6034</MaxTileRow>
     4816                                                <MinTileCol>8108</MinTileCol>
     4817                                                <MaxTileCol>8258</MaxTileCol>
     4818                                        </TileMatrixLimits>
     4819                                        <TileMatrixLimits>
     4820                                                <TileMatrix>15</TileMatrix>
     4821                                                <MinTileRow>11690</MinTileRow>
     4822                                                <MaxTileRow>12069</MaxTileRow>
     4823                                                <MinTileCol>16217</MinTileCol>
     4824                                                <MaxTileCol>16517</MaxTileCol>
     4825                                        </TileMatrixLimits>
     4826                                        <TileMatrixLimits>
     4827                                                <TileMatrix>16</TileMatrix>
     4828                                                <MinTileRow>23381</MinTileRow>
     4829                                                <MaxTileRow>24139</MaxTileRow>
     4830                                                <MinTileCol>32435</MinTileCol>
     4831                                                <MaxTileCol>33035</MaxTileCol>
     4832                                        </TileMatrixLimits>
     4833                                        <TileMatrixLimits>
     4834                                                <TileMatrix>17</TileMatrix>
     4835                                                <MinTileRow>46762</MinTileRow>
     4836                                                <MaxTileRow>48278</MaxTileRow>
     4837                                                <MinTileCol>64870</MinTileCol>
     4838                                                <MaxTileCol>66071</MaxTileCol>
     4839                                        </TileMatrixLimits>
     4840                                        <TileMatrixLimits>
     4841                                                <TileMatrix>2</TileMatrix>
     4842                                                <MinTileRow>1</MinTileRow>
     4843                                                <MaxTileRow>1</MaxTileRow>
     4844                                                <MinTileCol>1</MinTileCol>
     4845                                                <MaxTileCol>2</MaxTileCol>
     4846                                        </TileMatrixLimits>
     4847                                        <TileMatrixLimits>
     4848                                                <TileMatrix>3</TileMatrix>
     4849                                                <MinTileRow>2</MinTileRow>
     4850                                                <MaxTileRow>2</MaxTileRow>
     4851                                                <MinTileCol>3</MinTileCol>
     4852                                                <MaxTileCol>4</MaxTileCol>
     4853                                        </TileMatrixLimits>
     4854                                        <TileMatrixLimits>
     4855                                                <TileMatrix>4</TileMatrix>
     4856                                                <MinTileRow>5</MinTileRow>
     4857                                                <MaxTileRow>5</MaxTileRow>
     4858                                                <MinTileCol>7</MinTileCol>
     4859                                                <MaxTileCol>8</MaxTileCol>
     4860                                        </TileMatrixLimits>
     4861                                        <TileMatrixLimits>
     4862                                                <TileMatrix>5</TileMatrix>
     4863                                                <MinTileRow>11</MinTileRow>
     4864                                                <MaxTileRow>11</MaxTileRow>
     4865                                                <MinTileCol>15</MinTileCol>
     4866                                                <MaxTileCol>16</MaxTileCol>
     4867                                        </TileMatrixLimits>
     4868                                        <TileMatrixLimits>
     4869                                                <TileMatrix>6</TileMatrix>
     4870                                                <MinTileRow>22</MinTileRow>
     4871                                                <MaxTileRow>23</MaxTileRow>
     4872                                                <MinTileCol>31</MinTileCol>
     4873                                                <MaxTileCol>32</MaxTileCol>
     4874                                        </TileMatrixLimits>
     4875                                        <TileMatrixLimits>
     4876                                                <TileMatrix>7</TileMatrix>
     4877                                                <MinTileRow>45</MinTileRow>
     4878                                                <MaxTileRow>47</MaxTileRow>
     4879                                                <MinTileCol>63</MinTileCol>
     4880                                                <MaxTileCol>64</MaxTileCol>
     4881                                        </TileMatrixLimits>
     4882                                        <TileMatrixLimits>
     4883                                                <TileMatrix>8</TileMatrix>
     4884                                                <MinTileRow>91</MinTileRow>
     4885                                                <MaxTileRow>94</MaxTileRow>
     4886                                                <MinTileCol>126</MinTileCol>
     4887                                                <MaxTileCol>129</MaxTileCol>
     4888                                        </TileMatrixLimits>
     4889                                        <TileMatrixLimits>
     4890                                                <TileMatrix>9</TileMatrix>
     4891                                                <MinTileRow>182</MinTileRow>
     4892                                                <MaxTileRow>188</MaxTileRow>
     4893                                                <MinTileCol>253</MinTileCol>
     4894                                                <MaxTileCol>258</MaxTileCol>
     4895                                        </TileMatrixLimits>
     4896                                </TileMatrixSetLimits>
     4897                        </TileMatrixSetLink>
     4898                </Layer>
     4899                <Layer>
     4900                        <ows:Title>Orthophotographies Geosud de ARCACHONBASSIN</ows:Title>
     4901                        <ows:Abstract>Orthophotographies satellites de ARCACHONBASSIN issues du projet Geosud.</ows:Abstract>
     4902                        <ows:Keywords>
     4903                                <ows:Keyword>Photographies</ows:Keyword>
     4904                        </ows:Keywords>
     4905                        <ows:WGS84BoundingBox>
     4906                                <ows:LowerCorner>-1.27459 44.608</ows:LowerCorner>
     4907                                <ows:UpperCorner>-0.997329 44.7887</ows:UpperCorner>
     4908                        </ows:WGS84BoundingBox>
     4909                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ARCACHONBASSIN-2013-12-04-39689753</ows:Identifier>
     4910                        <Style isDefault="true">
     4911                                <ows:Title>Données Brutes</ows:Title>
     4912                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     4913                                <ows:Keywords>
     4914                                        <ows:Keyword>Défaut</ows:Keyword>
     4915                                </ows:Keywords>
     4916                                <ows:Identifier>normal</ows:Identifier>
     4917                                <LegendURL format="image/jpeg" height="200"
     4918                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     4919                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     4920                        </Style>
     4921                        <Format>image/jpeg</Format>
     4922                        <TileMatrixSetLink>
     4923                                <TileMatrixSet>PM</TileMatrixSet>
     4924                                <TileMatrixSetLimits>
     4925                                        <TileMatrixLimits>
     4926                                                <TileMatrix>0</TileMatrix>
     4927                                                <MinTileRow>0</MinTileRow>
     4928                                                <MaxTileRow>0</MaxTileRow>
     4929                                                <MinTileCol>0</MinTileCol>
     4930                                                <MaxTileCol>0</MaxTileCol>
     4931                                        </TileMatrixLimits>
     4932                                        <TileMatrixLimits>
     4933                                                <TileMatrix>1</TileMatrix>
     4934                                                <MinTileRow>0</MinTileRow>
     4935                                                <MaxTileRow>0</MaxTileRow>
     4936                                                <MinTileCol>0</MinTileCol>
     4937                                                <MaxTileCol>0</MaxTileCol>
     4938                                        </TileMatrixLimits>
     4939                                        <TileMatrixLimits>
     4940                                                <TileMatrix>10</TileMatrix>
     4941                                                <MinTileRow>369</MinTileRow>
     4942                                                <MaxTileRow>369</MaxTileRow>
     4943                                                <MinTileCol>508</MinTileCol>
     4944                                                <MaxTileCol>509</MaxTileCol>
     4945                                        </TileMatrixLimits>
     4946                                        <TileMatrixLimits>
     4947                                                <TileMatrix>11</TileMatrix>
     4948                                                <MinTileRow>738</MinTileRow>
     4949                                                <MaxTileRow>739</MaxTileRow>
     4950                                                <MinTileCol>1016</MinTileCol>
     4951                                                <MaxTileCol>1018</MaxTileCol>
     4952                                        </TileMatrixLimits>
     4953                                        <TileMatrixLimits>
     4954                                                <TileMatrix>12</TileMatrix>
     4955                                                <MinTileRow>1476</MinTileRow>
     4956                                                <MaxTileRow>1479</MaxTileRow>
     4957                                                <MinTileCol>2033</MinTileCol>
     4958                                                <MaxTileCol>2036</MaxTileCol>
     4959                                        </TileMatrixLimits>
     4960                                        <TileMatrixLimits>
     4961                                                <TileMatrix>13</TileMatrix>
     4962                                                <MinTileRow>2953</MinTileRow>
     4963                                                <MaxTileRow>2959</MaxTileRow>
     4964                                                <MinTileCol>4066</MinTileCol>
     4965                                                <MaxTileCol>4073</MaxTileCol>
     4966                                        </TileMatrixLimits>
     4967                                        <TileMatrixLimits>
     4968                                                <TileMatrix>14</TileMatrix>
     4969                                                <MinTileRow>5907</MinTileRow>
     4970                                                <MaxTileRow>5918</MaxTileRow>
     4971                                                <MinTileCol>8133</MinTileCol>
     4972                                                <MaxTileCol>8146</MaxTileCol>
     4973                                        </TileMatrixLimits>
     4974                                        <TileMatrixLimits>
     4975                                                <TileMatrix>15</TileMatrix>
     4976                                                <MinTileRow>11814</MinTileRow>
     4977                                                <MaxTileRow>11837</MaxTileRow>
     4978                                                <MinTileCol>16267</MinTileCol>
     4979                                                <MaxTileCol>16292</MaxTileCol>
     4980                                        </TileMatrixLimits>
     4981                                        <TileMatrixLimits>
     4982                                                <TileMatrix>16</TileMatrix>
     4983                                                <MinTileRow>23629</MinTileRow>
     4984                                                <MaxTileRow>23674</MaxTileRow>
     4985                                                <MinTileCol>32535</MinTileCol>
     4986                                                <MaxTileCol>32585</MaxTileCol>
     4987                                        </TileMatrixLimits>
     4988                                        <TileMatrixLimits>
     4989                                                <TileMatrix>17</TileMatrix>
     4990                                                <MinTileRow>47258</MinTileRow>
     4991                                                <MaxTileRow>47349</MaxTileRow>
     4992                                                <MinTileCol>65071</MinTileCol>
     4993                                                <MaxTileCol>65171</MaxTileCol>
     4994                                        </TileMatrixLimits>
     4995                                        <TileMatrixLimits>
     4996                                                <TileMatrix>18</TileMatrix>
     4997                                                <MinTileRow>94516</MinTileRow>
     4998                                                <MaxTileRow>94698</MaxTileRow>
     4999                                                <MinTileCol>130143</MinTileCol>
     5000                                                <MaxTileCol>130342</MaxTileCol>
     5001                                        </TileMatrixLimits>
     5002                                        <TileMatrixLimits>
     5003                                                <TileMatrix>2</TileMatrix>
     5004                                                <MinTileRow>1</MinTileRow>
     5005                                                <MaxTileRow>1</MaxTileRow>
     5006                                                <MinTileCol>1</MinTileCol>
     5007                                                <MaxTileCol>1</MaxTileCol>
     5008                                        </TileMatrixLimits>
     5009                                        <TileMatrixLimits>
     5010                                                <TileMatrix>3</TileMatrix>
     5011                                                <MinTileRow>2</MinTileRow>
     5012                                                <MaxTileRow>2</MaxTileRow>
     5013                                                <MinTileCol>3</MinTileCol>
     5014                                                <MaxTileCol>3</MaxTileCol>
     5015                                        </TileMatrixLimits>
     5016                                        <TileMatrixLimits>
     5017                                                <TileMatrix>4</TileMatrix>
     5018                                                <MinTileRow>5</MinTileRow>
     5019                                                <MaxTileRow>5</MaxTileRow>
     5020                                                <MinTileCol>7</MinTileCol>
     5021                                                <MaxTileCol>7</MaxTileCol>
     5022                                        </TileMatrixLimits>
     5023                                        <TileMatrixLimits>
     5024                                                <TileMatrix>5</TileMatrix>
     5025                                                <MinTileRow>11</MinTileRow>
     5026                                                <MaxTileRow>11</MaxTileRow>
     5027                                                <MinTileCol>15</MinTileCol>
     5028                                                <MaxTileCol>15</MaxTileCol>
     5029                                        </TileMatrixLimits>
     5030                                        <TileMatrixLimits>
     5031                                                <TileMatrix>6</TileMatrix>
     5032                                                <MinTileRow>23</MinTileRow>
     5033                                                <MaxTileRow>23</MaxTileRow>
     5034                                                <MinTileCol>31</MinTileCol>
     5035                                                <MaxTileCol>31</MaxTileCol>
     5036                                        </TileMatrixLimits>
     5037                                        <TileMatrixLimits>
     5038                                                <TileMatrix>7</TileMatrix>
     5039                                                <MinTileRow>46</MinTileRow>
     5040                                                <MaxTileRow>46</MaxTileRow>
     5041                                                <MinTileCol>63</MinTileCol>
     5042                                                <MaxTileCol>63</MaxTileCol>
     5043                                        </TileMatrixLimits>
     5044                                        <TileMatrixLimits>
     5045                                                <TileMatrix>8</TileMatrix>
     5046                                                <MinTileRow>92</MinTileRow>
     5047                                                <MaxTileRow>92</MaxTileRow>
     5048                                                <MinTileCol>127</MinTileCol>
     5049                                                <MaxTileCol>127</MaxTileCol>
     5050                                        </TileMatrixLimits>
     5051                                        <TileMatrixLimits>
     5052                                                <TileMatrix>9</TileMatrix>
     5053                                                <MinTileRow>184</MinTileRow>
     5054                                                <MaxTileRow>184</MaxTileRow>
     5055                                                <MinTileCol>254</MinTileCol>
     5056                                                <MaxTileCol>254</MaxTileCol>
     5057                                        </TileMatrixLimits>
     5058                                </TileMatrixSetLimits>
     5059                        </TileMatrixSetLink>
     5060                </Layer>
     5061                <Layer>
     5062                        <ows:Title>Orthophotographies Geosud de Aurignac</ows:Title>
     5063                        <ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract>
     5064                        <ows:Keywords>
     5065                                <ows:Keyword>Photographies</ows:Keyword>
     5066                        </ows:Keywords>
     5067                        <ows:WGS84BoundingBox>
     5068                                <ows:LowerCorner>0.735621 43.1905</ows:LowerCorner>
     5069                                <ows:UpperCorner>0.971231 43.2491</ows:UpperCorner>
     5070                        </ows:WGS84BoundingBox>
     5071                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-09-23-39867200</ows:Identifier>
     5072                        <Style isDefault="true">
     5073                                <ows:Title>Données Brutes</ows:Title>
     5074                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5075                                <ows:Keywords>
     5076                                        <ows:Keyword>Défaut</ows:Keyword>
     5077                                </ows:Keywords>
     5078                                <ows:Identifier>normal</ows:Identifier>
     5079                                <LegendURL format="image/jpeg" height="200"
     5080                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5081                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5082                        </Style>
     5083                        <Format>image/jpeg</Format>
     5084                        <TileMatrixSetLink>
     5085                                <TileMatrixSet>PM</TileMatrixSet>
     5086                                <TileMatrixSetLimits>
     5087                                        <TileMatrixLimits>
     5088                                                <TileMatrix>0</TileMatrix>
     5089                                                <MinTileRow>0</MinTileRow>
     5090                                                <MaxTileRow>0</MaxTileRow>
     5091                                                <MinTileCol>0</MinTileCol>
     5092                                                <MaxTileCol>0</MaxTileCol>
     5093                                        </TileMatrixLimits>
     5094                                        <TileMatrixLimits>
     5095                                                <TileMatrix>1</TileMatrix>
     5096                                                <MinTileRow>0</MinTileRow>
     5097                                                <MaxTileRow>0</MaxTileRow>
     5098                                                <MinTileCol>1</MinTileCol>
     5099                                                <MaxTileCol>1</MaxTileCol>
     5100                                        </TileMatrixLimits>
     5101                                        <TileMatrixLimits>
     5102                                                <TileMatrix>10</TileMatrix>
     5103                                                <MinTileRow>375</MinTileRow>
     5104                                                <MaxTileRow>375</MaxTileRow>
     5105                                                <MinTileCol>514</MinTileCol>
     5106                                                <MaxTileCol>514</MaxTileCol>
     5107                                        </TileMatrixLimits>
     5108                                        <TileMatrixLimits>
     5109                                                <TileMatrix>11</TileMatrix>
     5110                                                <MinTileRow>750</MinTileRow>
     5111                                                <MaxTileRow>751</MaxTileRow>
     5112                                                <MinTileCol>1028</MinTileCol>
     5113                                                <MaxTileCol>1029</MaxTileCol>
     5114                                        </TileMatrixLimits>
     5115                                        <TileMatrixLimits>
     5116                                                <TileMatrix>12</TileMatrix>
     5117                                                <MinTileRow>1501</MinTileRow>
     5118                                                <MaxTileRow>1502</MaxTileRow>
     5119                                                <MinTileCol>2056</MinTileCol>
     5120                                                <MaxTileCol>2059</MaxTileCol>
     5121                                        </TileMatrixLimits>
     5122                                        <TileMatrixLimits>
     5123                                                <TileMatrix>13</TileMatrix>
     5124                                                <MinTileRow>3002</MinTileRow>
     5125                                                <MaxTileRow>3004</MaxTileRow>
     5126                                                <MinTileCol>4112</MinTileCol>
     5127                                                <MaxTileCol>4118</MaxTileCol>
     5128                                        </TileMatrixLimits>
     5129                                        <TileMatrixLimits>
     5130                                                <TileMatrix>14</TileMatrix>
     5131                                                <MinTileRow>6004</MinTileRow>
     5132                                                <MaxTileRow>6008</MaxTileRow>
     5133                                                <MinTileCol>8225</MinTileCol>
     5134                                                <MaxTileCol>8236</MaxTileCol>
     5135                                        </TileMatrixLimits>
     5136                                        <TileMatrixLimits>
     5137                                                <TileMatrix>15</TileMatrix>
     5138                                                <MinTileRow>12009</MinTileRow>
     5139                                                <MaxTileRow>12016</MaxTileRow>
     5140                                                <MinTileCol>16451</MinTileCol>
     5141                                                <MaxTileCol>16472</MaxTileCol>
     5142                                        </TileMatrixLimits>
     5143                                        <TileMatrixLimits>
     5144                                                <TileMatrix>16</TileMatrix>
     5145                                                <MinTileRow>24019</MinTileRow>
     5146                                                <MaxTileRow>24033</MaxTileRow>
     5147                                                <MinTileCol>32902</MinTileCol>
     5148                                                <MaxTileCol>32944</MaxTileCol>
     5149                                        </TileMatrixLimits>
     5150                                        <TileMatrixLimits>
     5151                                                <TileMatrix>17</TileMatrix>
     5152                                                <MinTileRow>48039</MinTileRow>
     5153                                                <MaxTileRow>48067</MaxTileRow>
     5154                                                <MinTileCol>65804</MinTileCol>
     5155                                                <MaxTileCol>65889</MaxTileCol>
     5156                                        </TileMatrixLimits>
     5157                                        <TileMatrixLimits>
     5158                                                <TileMatrix>18</TileMatrix>
     5159                                                <MinTileRow>96078</MinTileRow>
     5160                                                <MaxTileRow>96134</MaxTileRow>
     5161                                                <MinTileCol>131608</MinTileCol>
     5162                                                <MaxTileCol>131779</MaxTileCol>
     5163                                        </TileMatrixLimits>
     5164                                        <TileMatrixLimits>
     5165                                                <TileMatrix>2</TileMatrix>
     5166                                                <MinTileRow>1</MinTileRow>
     5167                                                <MaxTileRow>1</MaxTileRow>
     5168                                                <MinTileCol>2</MinTileCol>
     5169                                                <MaxTileCol>2</MaxTileCol>
     5170                                        </TileMatrixLimits>
     5171                                        <TileMatrixLimits>
     5172                                                <TileMatrix>3</TileMatrix>
     5173                                                <MinTileRow>2</MinTileRow>
     5174                                                <MaxTileRow>2</MaxTileRow>
     5175                                                <MinTileCol>4</MinTileCol>
     5176                                                <MaxTileCol>4</MaxTileCol>
     5177                                        </TileMatrixLimits>
     5178                                        <TileMatrixLimits>
     5179                                                <TileMatrix>4</TileMatrix>
     5180                                                <MinTileRow>5</MinTileRow>
     5181                                                <MaxTileRow>5</MaxTileRow>
     5182                                                <MinTileCol>8</MinTileCol>
     5183                                                <MaxTileCol>8</MaxTileCol>
     5184                                        </TileMatrixLimits>
     5185                                        <TileMatrixLimits>
     5186                                                <TileMatrix>5</TileMatrix>
     5187                                                <MinTileRow>11</MinTileRow>
     5188                                                <MaxTileRow>11</MaxTileRow>
     5189                                                <MinTileCol>16</MinTileCol>
     5190                                                <MaxTileCol>16</MaxTileCol>
     5191                                        </TileMatrixLimits>
     5192                                        <TileMatrixLimits>
     5193                                                <TileMatrix>6</TileMatrix>
     5194                                                <MinTileRow>23</MinTileRow>
     5195                                                <MaxTileRow>23</MaxTileRow>
     5196                                                <MinTileCol>32</MinTileCol>
     5197                                                <MaxTileCol>32</MaxTileCol>
     5198                                        </TileMatrixLimits>
     5199                                        <TileMatrixLimits>
     5200                                                <TileMatrix>7</TileMatrix>
     5201                                                <MinTileRow>46</MinTileRow>
     5202                                                <MaxTileRow>46</MaxTileRow>
     5203                                                <MinTileCol>64</MinTileCol>
     5204                                                <MaxTileCol>64</MaxTileCol>
     5205                                        </TileMatrixLimits>
     5206                                        <TileMatrixLimits>
     5207                                                <TileMatrix>8</TileMatrix>
     5208                                                <MinTileRow>93</MinTileRow>
     5209                                                <MaxTileRow>93</MaxTileRow>
     5210                                                <MinTileCol>128</MinTileCol>
     5211                                                <MaxTileCol>128</MaxTileCol>
     5212                                        </TileMatrixLimits>
     5213                                        <TileMatrixLimits>
     5214                                                <TileMatrix>9</TileMatrix>
     5215                                                <MinTileRow>187</MinTileRow>
     5216                                                <MaxTileRow>187</MaxTileRow>
     5217                                                <MinTileCol>257</MinTileCol>
     5218                                                <MaxTileCol>257</MaxTileCol>
     5219                                        </TileMatrixLimits>
     5220                                </TileMatrixSetLimits>
     5221                        </TileMatrixSetLink>
     5222                </Layer>
     5223                <Layer>
     5224                        <ows:Title>Orthophotographies Geosud de Aurignac</ows:Title>
     5225                        <ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract>
     5226                        <ows:Keywords>
     5227                                <ows:Keyword>Photographies</ows:Keyword>
     5228                        </ows:Keywords>
     5229                        <ows:WGS84BoundingBox>
     5230                                <ows:LowerCorner>0.735621 43.1905</ows:LowerCorner>
     5231                                <ows:UpperCorner>0.971231 43.2491</ows:UpperCorner>
     5232                        </ows:WGS84BoundingBox>
     5233                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-09-23-39905819</ows:Identifier>
     5234                        <Style isDefault="true">
     5235                                <ows:Title>Données Brutes</ows:Title>
     5236                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5237                                <ows:Keywords>
     5238                                        <ows:Keyword>Défaut</ows:Keyword>
     5239                                </ows:Keywords>
     5240                                <ows:Identifier>normal</ows:Identifier>
     5241                                <LegendURL format="image/jpeg" height="200"
     5242                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5243                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5244                        </Style>
     5245                        <Format>image/jpeg</Format>
     5246                        <TileMatrixSetLink>
     5247                                <TileMatrixSet>PM</TileMatrixSet>
     5248                                <TileMatrixSetLimits>
     5249                                        <TileMatrixLimits>
     5250                                                <TileMatrix>0</TileMatrix>
     5251                                                <MinTileRow>0</MinTileRow>
     5252                                                <MaxTileRow>0</MaxTileRow>
     5253                                                <MinTileCol>0</MinTileCol>
     5254                                                <MaxTileCol>0</MaxTileCol>
     5255                                        </TileMatrixLimits>
     5256                                        <TileMatrixLimits>
     5257                                                <TileMatrix>1</TileMatrix>
     5258                                                <MinTileRow>0</MinTileRow>
     5259                                                <MaxTileRow>0</MaxTileRow>
     5260                                                <MinTileCol>1</MinTileCol>
     5261                                                <MaxTileCol>1</MaxTileCol>
     5262                                        </TileMatrixLimits>
     5263                                        <TileMatrixLimits>
     5264                                                <TileMatrix>10</TileMatrix>
     5265                                                <MinTileRow>375</MinTileRow>
     5266                                                <MaxTileRow>375</MaxTileRow>
     5267                                                <MinTileCol>514</MinTileCol>
     5268                                                <MaxTileCol>514</MaxTileCol>
     5269                                        </TileMatrixLimits>
     5270                                        <TileMatrixLimits>
     5271                                                <TileMatrix>11</TileMatrix>
     5272                                                <MinTileRow>750</MinTileRow>
     5273                                                <MaxTileRow>751</MaxTileRow>
     5274                                                <MinTileCol>1028</MinTileCol>
     5275                                                <MaxTileCol>1029</MaxTileCol>
     5276                                        </TileMatrixLimits>
     5277                                        <TileMatrixLimits>
     5278                                                <TileMatrix>12</TileMatrix>
     5279                                                <MinTileRow>1501</MinTileRow>
     5280                                                <MaxTileRow>1502</MaxTileRow>
     5281                                                <MinTileCol>2056</MinTileCol>
     5282                                                <MaxTileCol>2059</MaxTileCol>
     5283                                        </TileMatrixLimits>
     5284                                        <TileMatrixLimits>
     5285                                                <TileMatrix>13</TileMatrix>
     5286                                                <MinTileRow>3002</MinTileRow>
     5287                                                <MaxTileRow>3004</MaxTileRow>
     5288                                                <MinTileCol>4112</MinTileCol>
     5289                                                <MaxTileCol>4118</MaxTileCol>
     5290                                        </TileMatrixLimits>
     5291                                        <TileMatrixLimits>
     5292                                                <TileMatrix>14</TileMatrix>
     5293                                                <MinTileRow>6004</MinTileRow>
     5294                                                <MaxTileRow>6008</MaxTileRow>
     5295                                                <MinTileCol>8225</MinTileCol>
     5296                                                <MaxTileCol>8236</MaxTileCol>
     5297                                        </TileMatrixLimits>
     5298                                        <TileMatrixLimits>
     5299                                                <TileMatrix>15</TileMatrix>
     5300                                                <MinTileRow>12009</MinTileRow>
     5301                                                <MaxTileRow>12016</MaxTileRow>
     5302                                                <MinTileCol>16451</MinTileCol>
     5303                                                <MaxTileCol>16472</MaxTileCol>
     5304                                        </TileMatrixLimits>
     5305                                        <TileMatrixLimits>
     5306                                                <TileMatrix>16</TileMatrix>
     5307                                                <MinTileRow>24019</MinTileRow>
     5308                                                <MaxTileRow>24033</MaxTileRow>
     5309                                                <MinTileCol>32902</MinTileCol>
     5310                                                <MaxTileCol>32944</MaxTileCol>
     5311                                        </TileMatrixLimits>
     5312                                        <TileMatrixLimits>
     5313                                                <TileMatrix>17</TileMatrix>
     5314                                                <MinTileRow>48039</MinTileRow>
     5315                                                <MaxTileRow>48067</MaxTileRow>
     5316                                                <MinTileCol>65804</MinTileCol>
     5317                                                <MaxTileCol>65889</MaxTileCol>
     5318                                        </TileMatrixLimits>
     5319                                        <TileMatrixLimits>
     5320                                                <TileMatrix>18</TileMatrix>
     5321                                                <MinTileRow>96078</MinTileRow>
     5322                                                <MaxTileRow>96134</MaxTileRow>
     5323                                                <MinTileCol>131608</MinTileCol>
     5324                                                <MaxTileCol>131779</MaxTileCol>
     5325                                        </TileMatrixLimits>
     5326                                        <TileMatrixLimits>
     5327                                                <TileMatrix>2</TileMatrix>
     5328                                                <MinTileRow>1</MinTileRow>
     5329                                                <MaxTileRow>1</MaxTileRow>
     5330                                                <MinTileCol>2</MinTileCol>
     5331                                                <MaxTileCol>2</MaxTileCol>
     5332                                        </TileMatrixLimits>
     5333                                        <TileMatrixLimits>
     5334                                                <TileMatrix>3</TileMatrix>
     5335                                                <MinTileRow>2</MinTileRow>
     5336                                                <MaxTileRow>2</MaxTileRow>
     5337                                                <MinTileCol>4</MinTileCol>
     5338                                                <MaxTileCol>4</MaxTileCol>
     5339                                        </TileMatrixLimits>
     5340                                        <TileMatrixLimits>
     5341                                                <TileMatrix>4</TileMatrix>
     5342                                                <MinTileRow>5</MinTileRow>
     5343                                                <MaxTileRow>5</MaxTileRow>
     5344                                                <MinTileCol>8</MinTileCol>
     5345                                                <MaxTileCol>8</MaxTileCol>
     5346                                        </TileMatrixLimits>
     5347                                        <TileMatrixLimits>
     5348                                                <TileMatrix>5</TileMatrix>
     5349                                                <MinTileRow>11</MinTileRow>
     5350                                                <MaxTileRow>11</MaxTileRow>
     5351                                                <MinTileCol>16</MinTileCol>
     5352                                                <MaxTileCol>16</MaxTileCol>
     5353                                        </TileMatrixLimits>
     5354                                        <TileMatrixLimits>
     5355                                                <TileMatrix>6</TileMatrix>
     5356                                                <MinTileRow>23</MinTileRow>
     5357                                                <MaxTileRow>23</MaxTileRow>
     5358                                                <MinTileCol>32</MinTileCol>
     5359                                                <MaxTileCol>32</MaxTileCol>
     5360                                        </TileMatrixLimits>
     5361                                        <TileMatrixLimits>
     5362                                                <TileMatrix>7</TileMatrix>
     5363                                                <MinTileRow>46</MinTileRow>
     5364                                                <MaxTileRow>46</MaxTileRow>
     5365                                                <MinTileCol>64</MinTileCol>
     5366                                                <MaxTileCol>64</MaxTileCol>
     5367                                        </TileMatrixLimits>
     5368                                        <TileMatrixLimits>
     5369                                                <TileMatrix>8</TileMatrix>
     5370                                                <MinTileRow>93</MinTileRow>
     5371                                                <MaxTileRow>93</MaxTileRow>
     5372                                                <MinTileCol>128</MinTileCol>
     5373                                                <MaxTileCol>128</MaxTileCol>
     5374                                        </TileMatrixLimits>
     5375                                        <TileMatrixLimits>
     5376                                                <TileMatrix>9</TileMatrix>
     5377                                                <MinTileRow>187</MinTileRow>
     5378                                                <MaxTileRow>187</MaxTileRow>
     5379                                                <MinTileCol>257</MinTileCol>
     5380                                                <MaxTileCol>257</MaxTileCol>
     5381                                        </TileMatrixLimits>
     5382                                </TileMatrixSetLimits>
     5383                        </TileMatrixSetLink>
     5384                </Layer>
     5385                <Layer>
     5386                        <ows:Title>Orthophotographies Geosud de Aurignac</ows:Title>
     5387                        <ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract>
     5388                        <ows:Keywords>
     5389                                <ows:Keyword>Photographies</ows:Keyword>
     5390                        </ows:Keywords>
     5391                        <ows:WGS84BoundingBox>
     5392                                <ows:LowerCorner>0.74194 43.1997</ows:LowerCorner>
     5393                                <ows:UpperCorner>0.983207 43.4022</ows:UpperCorner>
     5394                        </ows:WGS84BoundingBox>
     5395                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-10-12-40067122</ows:Identifier>
     5396                        <Style isDefault="true">
     5397                                <ows:Title>Données Brutes</ows:Title>
     5398                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5399                                <ows:Keywords>
     5400                                        <ows:Keyword>Défaut</ows:Keyword>
     5401                                </ows:Keywords>
     5402                                <ows:Identifier>normal</ows:Identifier>
     5403                                <LegendURL format="image/jpeg" height="200"
     5404                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5405                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5406                        </Style>
     5407                        <Format>image/jpeg</Format>
     5408                        <TileMatrixSetLink>
     5409                                <TileMatrixSet>PM</TileMatrixSet>
     5410                                <TileMatrixSetLimits>
     5411                                        <TileMatrixLimits>
     5412                                                <TileMatrix>0</TileMatrix>
     5413                                                <MinTileRow>0</MinTileRow>
     5414                                                <MaxTileRow>0</MaxTileRow>
     5415                                                <MinTileCol>0</MinTileCol>
     5416                                                <MaxTileCol>0</MaxTileCol>
     5417                                        </TileMatrixLimits>
     5418                                        <TileMatrixLimits>
     5419                                                <TileMatrix>1</TileMatrix>
     5420                                                <MinTileRow>0</MinTileRow>
     5421                                                <MaxTileRow>0</MaxTileRow>
     5422                                                <MinTileCol>1</MinTileCol>
     5423                                                <MaxTileCol>1</MaxTileCol>
     5424                                        </TileMatrixLimits>
     5425                                        <TileMatrixLimits>
     5426                                                <TileMatrix>10</TileMatrix>
     5427                                                <MinTileRow>374</MinTileRow>
     5428                                                <MaxTileRow>375</MaxTileRow>
     5429                                                <MinTileCol>514</MinTileCol>
     5430                                                <MaxTileCol>514</MaxTileCol>
     5431                                        </TileMatrixLimits>
     5432                                        <TileMatrixLimits>
     5433                                                <TileMatrix>11</TileMatrix>
     5434                                                <MinTileRow>749</MinTileRow>
     5435                                                <MaxTileRow>750</MaxTileRow>
     5436                                                <MinTileCol>1028</MinTileCol>
     5437                                                <MaxTileCol>1029</MaxTileCol>
     5438                                        </TileMatrixLimits>
     5439                                        <TileMatrixLimits>
     5440                                                <TileMatrix>12</TileMatrix>
     5441                                                <MinTileRow>1498</MinTileRow>
     5442                                                <MaxTileRow>1501</MaxTileRow>
     5443                                                <MinTileCol>2056</MinTileCol>
     5444                                                <MaxTileCol>2059</MaxTileCol>
     5445                                        </TileMatrixLimits>
     5446                                        <TileMatrixLimits>
     5447                                                <TileMatrix>13</TileMatrix>
     5448                                                <MinTileRow>2997</MinTileRow>
     5449                                                <MaxTileRow>3003</MaxTileRow>
     5450                                                <MinTileCol>4112</MinTileCol>
     5451                                                <MaxTileCol>4118</MaxTileCol>
     5452                                        </TileMatrixLimits>
     5453                                        <TileMatrixLimits>
     5454                                                <TileMatrix>14</TileMatrix>
     5455                                                <MinTileRow>5995</MinTileRow>
     5456                                                <MaxTileRow>6007</MaxTileRow>
     5457                                                <MinTileCol>8225</MinTileCol>
     5458                                                <MaxTileCol>8236</MaxTileCol>
     5459                                        </TileMatrixLimits>
     5460                                        <TileMatrixLimits>
     5461                                                <TileMatrix>15</TileMatrix>
     5462                                                <MinTileRow>11990</MinTileRow>
     5463                                                <MaxTileRow>12015</MaxTileRow>
     5464                                                <MinTileCol>16451</MinTileCol>
     5465                                                <MaxTileCol>16473</MaxTileCol>
     5466                                        </TileMatrixLimits>
     5467                                        <TileMatrixLimits>
     5468                                                <TileMatrix>16</TileMatrix>
     5469                                                <MinTileRow>23980</MinTileRow>
     5470                                                <MaxTileRow>24030</MaxTileRow>
     5471                                                <MinTileCol>32903</MinTileCol>
     5472                                                <MaxTileCol>32946</MaxTileCol>
     5473                                        </TileMatrixLimits>
     5474                                        <TileMatrixLimits>
     5475                                                <TileMatrix>17</TileMatrix>
     5476                                                <MinTileRow>47961</MinTileRow>
     5477                                                <MaxTileRow>48061</MaxTileRow>
     5478                                                <MinTileCol>65806</MinTileCol>
     5479                                                <MaxTileCol>65892</MaxTileCol>
     5480                                        </TileMatrixLimits>
     5481                                        <TileMatrixLimits>
     5482                                                <TileMatrix>18</TileMatrix>
     5483                                                <MinTileRow>95922</MinTileRow>
     5484                                                <MaxTileRow>96122</MaxTileRow>
     5485                                                <MinTileCol>131612</MinTileCol>
     5486                                                <MaxTileCol>131785</MaxTileCol>
     5487                                        </TileMatrixLimits>
     5488                                        <TileMatrixLimits>
     5489                                                <TileMatrix>2</TileMatrix>
     5490                                                <MinTileRow>1</MinTileRow>
     5491                                                <MaxTileRow>1</MaxTileRow>
     5492                                                <MinTileCol>2</MinTileCol>
     5493                                                <MaxTileCol>2</MaxTileCol>
     5494                                        </TileMatrixLimits>
     5495                                        <TileMatrixLimits>
     5496                                                <TileMatrix>3</TileMatrix>
     5497                                                <MinTileRow>2</MinTileRow>
     5498                                                <MaxTileRow>2</MaxTileRow>
     5499                                                <MinTileCol>4</MinTileCol>
     5500                                                <MaxTileCol>4</MaxTileCol>
     5501                                        </TileMatrixLimits>
     5502                                        <TileMatrixLimits>
     5503                                                <TileMatrix>4</TileMatrix>
     5504                                                <MinTileRow>5</MinTileRow>
     5505                                                <MaxTileRow>5</MaxTileRow>
     5506                                                <MinTileCol>8</MinTileCol>
     5507                                                <MaxTileCol>8</MaxTileCol>
     5508                                        </TileMatrixLimits>
     5509                                        <TileMatrixLimits>
     5510                                                <TileMatrix>5</TileMatrix>
     5511                                                <MinTileRow>11</MinTileRow>
     5512                                                <MaxTileRow>11</MaxTileRow>
     5513                                                <MinTileCol>16</MinTileCol>
     5514                                                <MaxTileCol>16</MaxTileCol>
     5515                                        </TileMatrixLimits>
     5516                                        <TileMatrixLimits>
     5517                                                <TileMatrix>6</TileMatrix>
     5518                                                <MinTileRow>23</MinTileRow>
     5519                                                <MaxTileRow>23</MaxTileRow>
     5520                                                <MinTileCol>32</MinTileCol>
     5521                                                <MaxTileCol>32</MaxTileCol>
     5522                                        </TileMatrixLimits>
     5523                                        <TileMatrixLimits>
     5524                                                <TileMatrix>7</TileMatrix>
     5525                                                <MinTileRow>46</MinTileRow>
     5526                                                <MaxTileRow>46</MaxTileRow>
     5527                                                <MinTileCol>64</MinTileCol>
     5528                                                <MaxTileCol>64</MaxTileCol>
     5529                                        </TileMatrixLimits>
     5530                                        <TileMatrixLimits>
     5531                                                <TileMatrix>8</TileMatrix>
     5532                                                <MinTileRow>93</MinTileRow>
     5533                                                <MaxTileRow>93</MaxTileRow>
     5534                                                <MinTileCol>128</MinTileCol>
     5535                                                <MaxTileCol>128</MaxTileCol>
     5536                                        </TileMatrixLimits>
     5537                                        <TileMatrixLimits>
     5538                                                <TileMatrix>9</TileMatrix>
     5539                                                <MinTileRow>187</MinTileRow>
     5540                                                <MaxTileRow>187</MaxTileRow>
     5541                                                <MinTileCol>257</MinTileCol>
     5542                                                <MaxTileCol>257</MaxTileCol>
     5543                                        </TileMatrixLimits>
     5544                                </TileMatrixSetLimits>
     5545                        </TileMatrixSetLink>
     5546                </Layer>
     5547                <Layer>
     5548                        <ows:Title>Orthophotographies Geosud de Aurignac</ows:Title>
     5549                        <ows:Abstract>Orthophotographies satellites de Aurignac issues du projet Geosud.</ows:Abstract>
     5550                        <ows:Keywords>
     5551                                <ows:Keyword>Photographies</ows:Keyword>
     5552                        </ows:Keywords>
     5553                        <ows:WGS84BoundingBox>
     5554                                <ows:LowerCorner>0.74194 43.2087</ows:LowerCorner>
     5555                                <ows:UpperCorner>0.982893 43.4022</ows:UpperCorner>
     5556                        </ows:WGS84BoundingBox>
     5557                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AURIGNAC-2013-10-12-40111509</ows:Identifier>
     5558                        <Style isDefault="true">
     5559                                <ows:Title>Données Brutes</ows:Title>
     5560                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5561                                <ows:Keywords>
     5562                                        <ows:Keyword>Défaut</ows:Keyword>
     5563                                </ows:Keywords>
     5564                                <ows:Identifier>normal</ows:Identifier>
     5565                                <LegendURL format="image/jpeg" height="200"
     5566                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5567                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5568                        </Style>
     5569                        <Format>image/jpeg</Format>
     5570                        <TileMatrixSetLink>
     5571                                <TileMatrixSet>PM</TileMatrixSet>
     5572                                <TileMatrixSetLimits>
     5573                                        <TileMatrixLimits>
     5574                                                <TileMatrix>0</TileMatrix>
     5575                                                <MinTileRow>0</MinTileRow>
     5576                                                <MaxTileRow>0</MaxTileRow>
     5577                                                <MinTileCol>0</MinTileCol>
     5578                                                <MaxTileCol>0</MaxTileCol>
     5579                                        </TileMatrixLimits>
     5580                                        <TileMatrixLimits>
     5581                                                <TileMatrix>1</TileMatrix>
     5582                                                <MinTileRow>0</MinTileRow>
     5583                                                <MaxTileRow>0</MaxTileRow>
     5584                                                <MinTileCol>1</MinTileCol>
     5585                                                <MaxTileCol>1</MaxTileCol>
     5586                                        </TileMatrixLimits>
     5587                                        <TileMatrixLimits>
     5588                                                <TileMatrix>10</TileMatrix>
     5589                                                <MinTileRow>374</MinTileRow>
     5590                                                <MaxTileRow>375</MaxTileRow>
     5591                                                <MinTileCol>514</MinTileCol>
     5592                                                <MaxTileCol>514</MaxTileCol>
     5593                                        </TileMatrixLimits>
     5594                                        <TileMatrixLimits>
     5595                                                <TileMatrix>11</TileMatrix>
     5596                                                <MinTileRow>749</MinTileRow>
     5597                                                <MaxTileRow>750</MaxTileRow>
     5598                                                <MinTileCol>1028</MinTileCol>
     5599                                                <MaxTileCol>1029</MaxTileCol>
     5600                                        </TileMatrixLimits>
     5601                                        <TileMatrixLimits>
     5602                                                <TileMatrix>12</TileMatrix>
     5603                                                <MinTileRow>1498</MinTileRow>
     5604                                                <MaxTileRow>1501</MaxTileRow>
     5605                                                <MinTileCol>2056</MinTileCol>
     5606                                                <MaxTileCol>2059</MaxTileCol>
     5607                                        </TileMatrixLimits>
     5608                                        <TileMatrixLimits>
     5609                                                <TileMatrix>13</TileMatrix>
     5610                                                <MinTileRow>2997</MinTileRow>
     5611                                                <MaxTileRow>3003</MaxTileRow>
     5612                                                <MinTileCol>4112</MinTileCol>
     5613                                                <MaxTileCol>4118</MaxTileCol>
     5614                                        </TileMatrixLimits>
     5615                                        <TileMatrixLimits>
     5616                                                <TileMatrix>14</TileMatrix>
     5617                                                <MinTileRow>5995</MinTileRow>
     5618                                                <MaxTileRow>6007</MaxTileRow>
     5619                                                <MinTileCol>8225</MinTileCol>
     5620                                                <MaxTileCol>8236</MaxTileCol>
     5621                                        </TileMatrixLimits>
     5622                                        <TileMatrixLimits>
     5623                                                <TileMatrix>15</TileMatrix>
     5624                                                <MinTileRow>11990</MinTileRow>
     5625                                                <MaxTileRow>12014</MaxTileRow>
     5626                                                <MinTileCol>16451</MinTileCol>
     5627                                                <MaxTileCol>16473</MaxTileCol>
     5628                                        </TileMatrixLimits>
     5629                                        <TileMatrixLimits>
     5630                                                <TileMatrix>16</TileMatrix>
     5631                                                <MinTileRow>23980</MinTileRow>
     5632                                                <MaxTileRow>24029</MaxTileRow>
     5633                                                <MinTileCol>32903</MinTileCol>
     5634                                                <MaxTileCol>32946</MaxTileCol>
     5635                                        </TileMatrixLimits>
     5636                                        <TileMatrixLimits>
     5637                                                <TileMatrix>17</TileMatrix>
     5638                                                <MinTileRow>47961</MinTileRow>
     5639                                                <MaxTileRow>48058</MaxTileRow>
     5640                                                <MinTileCol>65806</MinTileCol>
     5641                                                <MaxTileCol>65892</MaxTileCol>
     5642                                        </TileMatrixLimits>
     5643                                        <TileMatrixLimits>
     5644                                                <TileMatrix>18</TileMatrix>
     5645                                                <MinTileRow>95922</MinTileRow>
     5646                                                <MaxTileRow>96116</MaxTileRow>
     5647                                                <MinTileCol>131612</MinTileCol>
     5648                                                <MaxTileCol>131785</MaxTileCol>
     5649                                        </TileMatrixLimits>
     5650                                        <TileMatrixLimits>
     5651                                                <TileMatrix>2</TileMatrix>
     5652                                                <MinTileRow>1</MinTileRow>
     5653                                                <MaxTileRow>1</MaxTileRow>
     5654                                                <MinTileCol>2</MinTileCol>
     5655                                                <MaxTileCol>2</MaxTileCol>
     5656                                        </TileMatrixLimits>
     5657                                        <TileMatrixLimits>
     5658                                                <TileMatrix>3</TileMatrix>
     5659                                                <MinTileRow>2</MinTileRow>
     5660                                                <MaxTileRow>2</MaxTileRow>
     5661                                                <MinTileCol>4</MinTileCol>
     5662                                                <MaxTileCol>4</MaxTileCol>
     5663                                        </TileMatrixLimits>
     5664                                        <TileMatrixLimits>
     5665                                                <TileMatrix>4</TileMatrix>
     5666                                                <MinTileRow>5</MinTileRow>
     5667                                                <MaxTileRow>5</MaxTileRow>
     5668                                                <MinTileCol>8</MinTileCol>
     5669                                                <MaxTileCol>8</MaxTileCol>
     5670                                        </TileMatrixLimits>
     5671                                        <TileMatrixLimits>
     5672                                                <TileMatrix>5</TileMatrix>
     5673                                                <MinTileRow>11</MinTileRow>
     5674                                                <MaxTileRow>11</MaxTileRow>
     5675                                                <MinTileCol>16</MinTileCol>
     5676                                                <MaxTileCol>16</MaxTileCol>
     5677                                        </TileMatrixLimits>
     5678                                        <TileMatrixLimits>
     5679                                                <TileMatrix>6</TileMatrix>
     5680                                                <MinTileRow>23</MinTileRow>
     5681                                                <MaxTileRow>23</MaxTileRow>
     5682                                                <MinTileCol>32</MinTileCol>
     5683                                                <MaxTileCol>32</MaxTileCol>
     5684                                        </TileMatrixLimits>
     5685                                        <TileMatrixLimits>
     5686                                                <TileMatrix>7</TileMatrix>
     5687                                                <MinTileRow>46</MinTileRow>
     5688                                                <MaxTileRow>46</MaxTileRow>
     5689                                                <MinTileCol>64</MinTileCol>
     5690                                                <MaxTileCol>64</MaxTileCol>
     5691                                        </TileMatrixLimits>
     5692                                        <TileMatrixLimits>
     5693                                                <TileMatrix>8</TileMatrix>
     5694                                                <MinTileRow>93</MinTileRow>
     5695                                                <MaxTileRow>93</MaxTileRow>
     5696                                                <MinTileCol>128</MinTileCol>
     5697                                                <MaxTileCol>128</MaxTileCol>
     5698                                        </TileMatrixLimits>
     5699                                        <TileMatrixLimits>
     5700                                                <TileMatrix>9</TileMatrix>
     5701                                                <MinTileRow>187</MinTileRow>
     5702                                                <MaxTileRow>187</MaxTileRow>
     5703                                                <MinTileCol>257</MinTileCol>
     5704                                                <MaxTileCol>257</MaxTileCol>
     5705                                        </TileMatrixLimits>
     5706                                </TileMatrixSetLimits>
     5707                        </TileMatrixSetLink>
     5708                </Layer>
     5709                <Layer>
     5710                        <ows:Title>Orthophotographies Geosud de AUVERGNE-2014</ows:Title>
     5711                        <ows:Abstract>Orthophotographies satellites de AUVERGNE-2014 issues du projet Geosud.</ows:Abstract>
     5712                        <ows:Keywords>
     5713                                <ows:Keyword>Photographies</ows:Keyword>
     5714                        </ows:Keywords>
     5715                        <ows:WGS84BoundingBox>
     5716                                <ows:LowerCorner>2.05557 44.6002</ows:LowerCorner>
     5717                                <ows:UpperCorner>4.45587 46.8203</ows:UpperCorner>
     5718                        </ows:WGS84BoundingBox>
     5719                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AUVERGNE-2014</ows:Identifier>
     5720                        <Style isDefault="true">
     5721                                <ows:Title>Données Brutes</ows:Title>
     5722                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5723                                <ows:Keywords>
     5724                                        <ows:Keyword>Défaut</ows:Keyword>
     5725                                </ows:Keywords>
     5726                                <ows:Identifier>normal</ows:Identifier>
     5727                                <LegendURL format="image/jpeg" height="200"
     5728                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5729                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5730                        </Style>
     5731                        <Format>image/jpeg</Format>
     5732                        <TileMatrixSetLink>
     5733                                <TileMatrixSet>PM</TileMatrixSet>
     5734                                <TileMatrixSetLimits>
     5735                                        <TileMatrixLimits>
     5736                                                <TileMatrix>0</TileMatrix>
     5737                                                <MinTileRow>0</MinTileRow>
     5738                                                <MaxTileRow>0</MaxTileRow>
     5739                                                <MinTileCol>0</MinTileCol>
     5740                                                <MaxTileCol>0</MaxTileCol>
     5741                                        </TileMatrixLimits>
     5742                                        <TileMatrixLimits>
     5743                                                <TileMatrix>1</TileMatrix>
     5744                                                <MinTileRow>0</MinTileRow>
     5745                                                <MaxTileRow>0</MaxTileRow>
     5746                                                <MinTileCol>1</MinTileCol>
     5747                                                <MaxTileCol>1</MaxTileCol>
     5748                                        </TileMatrixLimits>
     5749                                        <TileMatrixLimits>
     5750                                                <TileMatrix>10</TileMatrix>
     5751                                                <MinTileRow>360</MinTileRow>
     5752                                                <MaxTileRow>369</MaxTileRow>
     5753                                                <MinTileCol>517</MinTileCol>
     5754                                                <MaxTileCol>524</MaxTileCol>
     5755                                        </TileMatrixLimits>
     5756                                        <TileMatrixLimits>
     5757                                                <TileMatrix>11</TileMatrix>
     5758                                                <MinTileRow>721</MinTileRow>
     5759                                                <MaxTileRow>739</MaxTileRow>
     5760                                                <MinTileCol>1035</MinTileCol>
     5761                                                <MaxTileCol>1049</MaxTileCol>
     5762                                        </TileMatrixLimits>
     5763                                        <TileMatrixLimits>
     5764                                                <TileMatrix>12</TileMatrix>
     5765                                                <MinTileRow>1443</MinTileRow>
     5766                                                <MaxTileRow>1479</MaxTileRow>
     5767                                                <MinTileCol>2071</MinTileCol>
     5768                                                <MaxTileCol>2098</MaxTileCol>
     5769                                        </TileMatrixLimits>
     5770                                        <TileMatrixLimits>
     5771                                                <TileMatrix>13</TileMatrix>
     5772                                                <MinTileRow>2887</MinTileRow>
     5773                                                <MaxTileRow>2959</MaxTileRow>
     5774                                                <MinTileCol>4143</MinTileCol>
     5775                                                <MaxTileCol>4196</MaxTileCol>
     5776                                        </TileMatrixLimits>
     5777                                        <TileMatrixLimits>
     5778                                                <TileMatrix>14</TileMatrix>
     5779                                                <MinTileRow>5774</MinTileRow>
     5780                                                <MaxTileRow>5919</MaxTileRow>
     5781                                                <MinTileCol>8287</MinTileCol>
     5782                                                <MaxTileCol>8392</MaxTileCol>
     5783                                        </TileMatrixLimits>
     5784                                        <TileMatrixLimits>
     5785                                                <TileMatrix>15</TileMatrix>
     5786                                                <MinTileRow>11548</MinTileRow>
     5787                                                <MaxTileRow>11838</MaxTileRow>
     5788                                                <MinTileCol>16574</MinTileCol>
     5789                                                <MaxTileCol>16785</MaxTileCol>
     5790                                        </TileMatrixLimits>
     5791                                        <TileMatrixLimits>
     5792                                                <TileMatrix>16</TileMatrix>
     5793                                                <MinTileRow>23097</MinTileRow>
     5794                                                <MaxTileRow>23676</MaxTileRow>
     5795                                                <MinTileCol>33148</MinTileCol>
     5796                                                <MaxTileCol>33571</MaxTileCol>
     5797                                        </TileMatrixLimits>
     5798                                        <TileMatrixLimits>
     5799                                                <TileMatrix>17</TileMatrix>
     5800                                                <MinTileRow>46195</MinTileRow>
     5801                                                <MaxTileRow>47352</MaxTileRow>
     5802                                                <MinTileCol>66296</MinTileCol>
     5803                                                <MaxTileCol>67143</MaxTileCol>
     5804                                        </TileMatrixLimits>
     5805                                        <TileMatrixLimits>
     5806                                                <TileMatrix>2</TileMatrix>
     5807                                                <MinTileRow>1</MinTileRow>
     5808                                                <MaxTileRow>1</MaxTileRow>
     5809                                                <MinTileCol>2</MinTileCol>
     5810                                                <MaxTileCol>2</MaxTileCol>
     5811                                        </TileMatrixLimits>
     5812                                        <TileMatrixLimits>
     5813                                                <TileMatrix>3</TileMatrix>
     5814                                                <MinTileRow>2</MinTileRow>
     5815                                                <MaxTileRow>2</MaxTileRow>
     5816                                                <MinTileCol>4</MinTileCol>
     5817                                                <MaxTileCol>4</MaxTileCol>
     5818                                        </TileMatrixLimits>
     5819                                        <TileMatrixLimits>
     5820                                                <TileMatrix>4</TileMatrix>
     5821                                                <MinTileRow>5</MinTileRow>
     5822                                                <MaxTileRow>5</MaxTileRow>
     5823                                                <MinTileCol>8</MinTileCol>
     5824                                                <MaxTileCol>8</MaxTileCol>
     5825                                        </TileMatrixLimits>
     5826                                        <TileMatrixLimits>
     5827                                                <TileMatrix>5</TileMatrix>
     5828                                                <MinTileRow>11</MinTileRow>
     5829                                                <MaxTileRow>11</MaxTileRow>
     5830                                                <MinTileCol>16</MinTileCol>
     5831                                                <MaxTileCol>16</MaxTileCol>
     5832                                        </TileMatrixLimits>
     5833                                        <TileMatrixLimits>
     5834                                                <TileMatrix>6</TileMatrix>
     5835                                                <MinTileRow>22</MinTileRow>
     5836                                                <MaxTileRow>23</MaxTileRow>
     5837                                                <MinTileCol>32</MinTileCol>
     5838                                                <MaxTileCol>32</MaxTileCol>
     5839                                        </TileMatrixLimits>
     5840                                        <TileMatrixLimits>
     5841                                                <TileMatrix>7</TileMatrix>
     5842                                                <MinTileRow>45</MinTileRow>
     5843                                                <MaxTileRow>46</MaxTileRow>
     5844                                                <MinTileCol>64</MinTileCol>
     5845                                                <MaxTileCol>65</MaxTileCol>
     5846                                        </TileMatrixLimits>
     5847                                        <TileMatrixLimits>
     5848                                                <TileMatrix>8</TileMatrix>
     5849                                                <MinTileRow>90</MinTileRow>
     5850                                                <MaxTileRow>92</MaxTileRow>
     5851                                                <MinTileCol>129</MinTileCol>
     5852                                                <MaxTileCol>131</MaxTileCol>
     5853                                        </TileMatrixLimits>
     5854                                        <TileMatrixLimits>
     5855                                                <TileMatrix>9</TileMatrix>
     5856                                                <MinTileRow>180</MinTileRow>
     5857                                                <MaxTileRow>184</MaxTileRow>
     5858                                                <MinTileCol>258</MinTileCol>
     5859                                                <MaxTileCol>262</MaxTileCol>
     5860                                        </TileMatrixLimits>
     5861                                </TileMatrixSetLimits>
     5862                        </TileMatrixSetLink>
     5863                </Layer>
     5864                <Layer>
     5865                        <ows:Title>Orthophotographies Geosud de AVIGNON 2014</ows:Title>
     5866                        <ows:Abstract>Orthophotographies satellites de AVIGNON issues du projet Geosud.</ows:Abstract>
     5867                        <ows:Keywords>
     5868                                <ows:Keyword>Photographies</ows:Keyword>
     5869                        </ows:Keywords>
     5870                        <ows:WGS84BoundingBox>
     5871                                <ows:LowerCorner>4.67779 43.8086</ows:LowerCorner>
     5872                                <ows:UpperCorner>4.95819 44.02</ows:UpperCorner>
     5873                        </ows:WGS84BoundingBox>
     5874                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_AVIGNON-2014-04-09-38462569</ows:Identifier>
     5875                        <Style isDefault="true">
     5876                                <ows:Title>Données Brutes</ows:Title>
     5877                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     5878                                <ows:Keywords>
     5879                                        <ows:Keyword>Défaut</ows:Keyword>
     5880                                </ows:Keywords>
     5881                                <ows:Identifier>normal</ows:Identifier>
     5882                                <LegendURL format="image/jpeg" height="200"
     5883                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     5884                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     5885                        </Style>
     5886                        <Format>image/jpeg</Format>
     5887                        <TileMatrixSetLink>
     5888                                <TileMatrixSet>PM</TileMatrixSet>
     5889                                <TileMatrixSetLimits>
     5890                                        <TileMatrixLimits>
     5891                                                <TileMatrix>0</TileMatrix>
     5892                                                <MinTileRow>0</MinTileRow>
     5893                                                <MaxTileRow>0</MaxTileRow>
     5894                                                <MinTileCol>0</MinTileCol>
     5895                                                <MaxTileCol>0</MaxTileCol>
     5896                                        </TileMatrixLimits>
     5897                                        <TileMatrixLimits>
     5898                                                <TileMatrix>1</TileMatrix>
     5899                                                <MinTileRow>0</MinTileRow>
     5900                                                <MaxTileRow>0</MaxTileRow>
     5901                                                <MinTileCol>1</MinTileCol>
     5902                                                <MaxTileCol>1</MaxTileCol>
     5903                                        </TileMatrixLimits>
     5904                                        <TileMatrixLimits>
     5905                                                <TileMatrix>10</TileMatrix>
     5906                                                <MinTileRow>372</MinTileRow>
     5907                                                <MaxTileRow>373</MaxTileRow>
     5908                                                <MinTileCol>525</MinTileCol>
     5909                                                <MaxTileCol>526</MaxTileCol>
     5910                                        </TileMatrixLimits>
     5911                                        <TileMatrixLimits>
     5912                                                <TileMatrix>11</TileMatrix>
     5913                                                <MinTileRow>744</MinTileRow>
     5914                                                <MaxTileRow>746</MaxTileRow>
     5915                                                <MinTileCol>1050</MinTileCol>
     5916                                                <MaxTileCol>1052</MaxTileCol>
     5917                                        </TileMatrixLimits>
     5918                                        <TileMatrixLimits>
     5919                                                <TileMatrix>12</TileMatrix>
     5920                                                <MinTileRow>1489</MinTileRow>
     5921                                                <MaxTileRow>1492</MaxTileRow>
     5922                                                <MinTileCol>2101</MinTileCol>
     5923                                                <MaxTileCol>2104</MaxTileCol>
     5924                                        </TileMatrixLimits>
     5925                                        <TileMatrixLimits>
     5926                                                <TileMatrix>13</TileMatrix>
     5927                                                <MinTileRow>2978</MinTileRow>
     5928                                                <MaxTileRow>2984</MaxTileRow>
     5929                                                <MinTileCol>4202</MinTileCol>
     5930                                                <MaxTileCol>4208</MaxTileCol>
     5931                                        </TileMatrixLimits>
     5932                                        <TileMatrixLimits>
     5933                                                <TileMatrix>14</TileMatrix>
     5934                                                <MinTileRow>5956</MinTileRow>
     5935                                                <MaxTileRow>5969</MaxTileRow>
     5936                                                <MinTileCol>8405</MinTileCol>
     5937                                                <MaxTileCol>8417</MaxTileCol>
     5938                                        </TileMatrixLimits>
     5939                                        <TileMatrixLimits>
     5940                                                <TileMatrix>15</TileMatrix>
     5941                                                <MinTileRow>11912</MinTileRow>
     5942                                                <MaxTileRow>11939</MaxTileRow>
     5943                                                <MinTileCol>16810</MinTileCol>
     5944                                                <MaxTileCol>16835</MaxTileCol>
     5945                                        </TileMatrixLimits>
     5946                                        <TileMatrixLimits>
     5947                                                <TileMatrix>16</TileMatrix>
     5948                                                <MinTileRow>23825</MinTileRow>
     5949                                                <MaxTileRow>23878</MaxTileRow>
     5950                                                <MinTileCol>33620</MinTileCol>
     5951                                                <MaxTileCol>33670</MaxTileCol>
     5952                                        </TileMatrixLimits>
     5953                                        <TileMatrixLimits>
     5954                                                <TileMatrix>17</TileMatrix>
     5955                                                <MinTileRow>47651</MinTileRow>
     5956                                                <MaxTileRow>47756</MaxTileRow>
     5957                                                <MinTileCol>67240</MinTileCol>
     5958                                                <MaxTileCol>67341</MaxTileCol>
     5959                                        </TileMatrixLimits>
     5960                                        <TileMatrixLimits>
     5961                                                <TileMatrix>18</TileMatrix>
     5962                                                <MinTileRow>95302</MinTileRow>
     5963                                                <MaxTileRow>95513</MaxTileRow>
     5964                                                <MinTileCol>134480</MinTileCol>
     5965                                                <MaxTileCol>134682</MaxTileCol>
     5966                                        </TileMatrixLimits>
     5967                                        <TileMatrixLimits>
     5968                                                <TileMatrix>2</TileMatrix>
     5969                                                <MinTileRow>1</MinTileRow>
     5970                                                <MaxTileRow>1</MaxTileRow>
     5971                                                <MinTileCol>2</MinTileCol>
     5972                                                <MaxTileCol>2</MaxTileCol>
     5973                                        </TileMatrixLimits>
     5974                                        <TileMatrixLimits>
     5975                                                <TileMatrix>3</TileMatrix>
     5976                                                <MinTileRow>2</MinTileRow>
     5977                                                <MaxTileRow>2</MaxTileRow>
     5978                                                <MinTileCol>4</MinTileCol>
     5979                                                <MaxTileCol>4</MaxTileCol>
     5980                                        </TileMatrixLimits>
     5981                                        <TileMatrixLimits>
     5982                                                <TileMatrix>4</TileMatrix>
     5983                                                <MinTileRow>5</MinTileRow>
     5984                                                <MaxTileRow>5</MaxTileRow>
     5985                                                <MinTileCol>8</MinTileCol>
     5986                                                <MaxTileCol>8</MaxTileCol>
     5987                                        </TileMatrixLimits>
     5988                                        <TileMatrixLimits>
     5989                                                <TileMatrix>5</TileMatrix>
     5990                                                <MinTileRow>11</MinTileRow>
     5991                                                <MaxTileRow>11</MaxTileRow>
     5992                                                <MinTileCol>16</MinTileCol>
     5993                                                <MaxTileCol>16</MaxTileCol>
     5994                                        </TileMatrixLimits>
     5995                                        <TileMatrixLimits>
     5996                                                <TileMatrix>6</TileMatrix>
     5997                                                <MinTileRow>23</MinTileRow>
     5998                                                <MaxTileRow>23</MaxTileRow>
     5999                                                <MinTileCol>32</MinTileCol>
     6000                                                <MaxTileCol>32</MaxTileCol>
     6001                                        </TileMatrixLimits>
     6002                                        <TileMatrixLimits>
     6003                                                <TileMatrix>7</TileMatrix>
     6004                                                <MinTileRow>46</MinTileRow>
     6005                                                <MaxTileRow>46</MaxTileRow>
     6006                                                <MinTileCol>65</MinTileCol>
     6007                                                <MaxTileCol>65</MaxTileCol>
     6008                                        </TileMatrixLimits>
     6009                                        <TileMatrixLimits>
     6010                                                <TileMatrix>8</TileMatrix>
     6011                                                <MinTileRow>93</MinTileRow>
     6012                                                <MaxTileRow>93</MaxTileRow>
     6013                                                <MinTileCol>131</MinTileCol>
     6014                                                <MaxTileCol>131</MaxTileCol>
     6015                                        </TileMatrixLimits>
     6016                                        <TileMatrixLimits>
     6017                                                <TileMatrix>9</TileMatrix>
     6018                                                <MinTileRow>186</MinTileRow>
     6019                                                <MaxTileRow>186</MaxTileRow>
     6020                                                <MinTileCol>262</MinTileCol>
     6021                                                <MaxTileCol>263</MaxTileCol>
     6022                                        </TileMatrixLimits>
     6023                                </TileMatrixSetLimits>
     6024                        </TileMatrixSetLink>
     6025                </Layer>
     6026                <Layer>
     6027                        <ows:Title>Orthophotographies Geosud de BASSE-NORMANDIE 2014</ows:Title>
     6028                        <ows:Abstract>Orthophotographies satellites de BASSE-NORMANDIE issues du projet Geosud.</ows:Abstract>
     6029                        <ows:Keywords>
     6030                                <ows:Keyword>Photographies</ows:Keyword>
     6031                        </ows:Keywords>
     6032                        <ows:WGS84BoundingBox>
     6033                                <ows:LowerCorner>-2.00865 48.0207</ows:LowerCorner>
     6034                                <ows:UpperCorner>1.09203 49.8309</ows:UpperCorner>
     6035                        </ows:WGS84BoundingBox>
     6036                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BASSE-NORMANDIE-2014</ows:Identifier>
     6037                        <Style isDefault="true">
     6038                                <ows:Title>Données Brutes</ows:Title>
     6039                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6040                                <ows:Keywords>
     6041                                        <ows:Keyword>Défaut</ows:Keyword>
     6042                                </ows:Keywords>
     6043                                <ows:Identifier>normal</ows:Identifier>
     6044                                <LegendURL format="image/jpeg" height="200"
     6045                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6046                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6047                        </Style>
     6048                        <Format>image/jpeg</Format>
     6049                        <TileMatrixSetLink>
     6050                                <TileMatrixSet>PM</TileMatrixSet>
     6051                                <TileMatrixSetLimits>
     6052                                        <TileMatrixLimits>
     6053                                                <TileMatrix>0</TileMatrix>
     6054                                                <MinTileRow>0</MinTileRow>
     6055                                                <MaxTileRow>0</MaxTileRow>
     6056                                                <MinTileCol>0</MinTileCol>
     6057                                                <MaxTileCol>0</MaxTileCol>
     6058                                        </TileMatrixLimits>
     6059                                        <TileMatrixLimits>
     6060                                                <TileMatrix>1</TileMatrix>
     6061                                                <MinTileRow>0</MinTileRow>
     6062                                                <MaxTileRow>0</MaxTileRow>
     6063                                                <MinTileCol>0</MinTileCol>
     6064                                                <MaxTileCol>1</MaxTileCol>
     6065                                        </TileMatrixLimits>
     6066                                        <TileMatrixLimits>
     6067                                                <TileMatrix>10</TileMatrix>
     6068                                                <MinTileRow>348</MinTileRow>
     6069                                                <MaxTileRow>355</MaxTileRow>
     6070                                                <MinTileCol>506</MinTileCol>
     6071                                                <MaxTileCol>515</MaxTileCol>
     6072                                        </TileMatrixLimits>
     6073                                        <TileMatrixLimits>
     6074                                                <TileMatrix>11</TileMatrix>
     6075                                                <MinTileRow>696</MinTileRow>
     6076                                                <MaxTileRow>711</MaxTileRow>
     6077                                                <MinTileCol>1012</MinTileCol>
     6078                                                <MaxTileCol>1030</MaxTileCol>
     6079                                        </TileMatrixLimits>
     6080                                        <TileMatrixLimits>
     6081                                                <TileMatrix>12</TileMatrix>
     6082                                                <MinTileRow>1393</MinTileRow>
     6083                                                <MaxTileRow>1422</MaxTileRow>
     6084                                                <MinTileCol>2025</MinTileCol>
     6085                                                <MaxTileCol>2060</MaxTileCol>
     6086                                        </TileMatrixLimits>
     6087                                        <TileMatrixLimits>
     6088                                                <TileMatrix>13</TileMatrix>
     6089                                                <MinTileRow>2787</MinTileRow>
     6090                                                <MaxTileRow>2844</MaxTileRow>
     6091                                                <MinTileCol>4050</MinTileCol>
     6092                                                <MaxTileCol>4120</MaxTileCol>
     6093                                        </TileMatrixLimits>
     6094                                        <TileMatrixLimits>
     6095                                                <TileMatrix>14</TileMatrix>
     6096                                                <MinTileRow>5574</MinTileRow>
     6097                                                <MaxTileRow>5688</MaxTileRow>
     6098                                                <MinTileCol>8100</MinTileCol>
     6099                                                <MaxTileCol>8241</MaxTileCol>
     6100                                        </TileMatrixLimits>
     6101                                        <TileMatrixLimits>
     6102                                                <TileMatrix>15</TileMatrix>
     6103                                                <MinTileRow>11148</MinTileRow>
     6104                                                <MaxTileRow>11376</MaxTileRow>
     6105                                                <MinTileCol>16201</MinTileCol>
     6106                                                <MaxTileCol>16483</MaxTileCol>
     6107                                        </TileMatrixLimits>
     6108                                        <TileMatrixLimits>
     6109                                                <TileMatrix>16</TileMatrix>
     6110                                                <MinTileRow>22296</MinTileRow>
     6111                                                <MaxTileRow>22753</MaxTileRow>
     6112                                                <MinTileCol>32402</MinTileCol>
     6113                                                <MaxTileCol>32966</MaxTileCol>
     6114                                        </TileMatrixLimits>
     6115                                        <TileMatrixLimits>
     6116                                                <TileMatrix>17</TileMatrix>
     6117                                                <MinTileRow>44592</MinTileRow>
     6118                                                <MaxTileRow>45506</MaxTileRow>
     6119                                                <MinTileCol>64804</MinTileCol>
     6120                                                <MaxTileCol>65933</MaxTileCol>
     6121                                        </TileMatrixLimits>
     6122                                        <TileMatrixLimits>
     6123                                                <TileMatrix>2</TileMatrix>
     6124                                                <MinTileRow>1</MinTileRow>
     6125                                                <MaxTileRow>1</MaxTileRow>
     6126                                                <MinTileCol>1</MinTileCol>
     6127                                                <MaxTileCol>2</MaxTileCol>
     6128                                        </TileMatrixLimits>
     6129                                        <TileMatrixLimits>
     6130                                                <TileMatrix>3</TileMatrix>
     6131                                                <MinTileRow>2</MinTileRow>
     6132                                                <MaxTileRow>2</MaxTileRow>
     6133                                                <MinTileCol>3</MinTileCol>
     6134                                                <MaxTileCol>4</MaxTileCol>
     6135                                        </TileMatrixLimits>
     6136                                        <TileMatrixLimits>
     6137                                                <TileMatrix>4</TileMatrix>
     6138                                                <MinTileRow>5</MinTileRow>
     6139                                                <MaxTileRow>5</MaxTileRow>
     6140                                                <MinTileCol>7</MinTileCol>
     6141                                                <MaxTileCol>8</MaxTileCol>
     6142                                        </TileMatrixLimits>
     6143                                        <TileMatrixLimits>
     6144                                                <TileMatrix>5</TileMatrix>
     6145                                                <MinTileRow>10</MinTileRow>
     6146                                                <MaxTileRow>11</MaxTileRow>
     6147                                                <MinTileCol>15</MinTileCol>
     6148                                                <MaxTileCol>16</MaxTileCol>
     6149                                        </TileMatrixLimits>
     6150                                        <TileMatrixLimits>
     6151                                                <TileMatrix>6</TileMatrix>
     6152                                                <MinTileRow>21</MinTileRow>
     6153                                                <MaxTileRow>22</MaxTileRow>
     6154                                                <MinTileCol>31</MinTileCol>
     6155                                                <MaxTileCol>32</MaxTileCol>
     6156                                        </TileMatrixLimits>
     6157                                        <TileMatrixLimits>
     6158                                                <TileMatrix>7</TileMatrix>
     6159                                                <MinTileRow>43</MinTileRow>
     6160                                                <MaxTileRow>44</MaxTileRow>
     6161                                                <MinTileCol>63</MinTileCol>
     6162                                                <MaxTileCol>64</MaxTileCol>
     6163                                        </TileMatrixLimits>
     6164                                        <TileMatrixLimits>
     6165                                                <TileMatrix>8</TileMatrix>
     6166                                                <MinTileRow>87</MinTileRow>
     6167                                                <MaxTileRow>88</MaxTileRow>
     6168                                                <MinTileCol>126</MinTileCol>
     6169                                                <MaxTileCol>128</MaxTileCol>
     6170                                        </TileMatrixLimits>
     6171                                        <TileMatrixLimits>
     6172                                                <TileMatrix>9</TileMatrix>
     6173                                                <MinTileRow>174</MinTileRow>
     6174                                                <MaxTileRow>177</MaxTileRow>
     6175                                                <MinTileCol>253</MinTileCol>
     6176                                                <MaxTileCol>257</MaxTileCol>
     6177                                        </TileMatrixLimits>
     6178                                </TileMatrixSetLimits>
     6179                        </TileMatrixSetLink>
     6180                </Layer>
     6181                <Layer>
     6182                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6183                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6184                        <ows:Keywords>
     6185                                <ows:Keyword>Photographies</ows:Keyword>
     6186                        </ows:Keywords>
     6187                        <ows:WGS84BoundingBox>
     6188                                <ows:LowerCorner>-1.16799 45.4248</ows:LowerCorner>
     6189                                <ows:UpperCorner>-0.787325 46.0841</ows:UpperCorner>
     6190                        </ows:WGS84BoundingBox>
     6191                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-04-25-40507946</ows:Identifier>
     6192                        <Style isDefault="true">
     6193                                <ows:Title>Données Brutes</ows:Title>
     6194                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6195                                <ows:Keywords>
     6196                                        <ows:Keyword>Défaut</ows:Keyword>
     6197                                </ows:Keywords>
     6198                                <ows:Identifier>normal</ows:Identifier>
     6199                                <LegendURL format="image/jpeg" height="200"
     6200                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6201                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6202                        </Style>
     6203                        <Format>image/jpeg</Format>
     6204                        <TileMatrixSetLink>
     6205                                <TileMatrixSet>PM</TileMatrixSet>
     6206                                <TileMatrixSetLimits>
     6207                                        <TileMatrixLimits>
     6208                                                <TileMatrix>0</TileMatrix>
     6209                                                <MinTileRow>0</MinTileRow>
     6210                                                <MaxTileRow>0</MaxTileRow>
     6211                                                <MinTileCol>0</MinTileCol>
     6212                                                <MaxTileCol>0</MaxTileCol>
     6213                                        </TileMatrixLimits>
     6214                                        <TileMatrixLimits>
     6215                                                <TileMatrix>1</TileMatrix>
     6216                                                <MinTileRow>0</MinTileRow>
     6217                                                <MaxTileRow>0</MaxTileRow>
     6218                                                <MinTileCol>0</MinTileCol>
     6219                                                <MaxTileCol>0</MaxTileCol>
     6220                                        </TileMatrixLimits>
     6221                                        <TileMatrixLimits>
     6222                                                <TileMatrix>10</TileMatrix>
     6223                                                <MinTileRow>363</MinTileRow>
     6224                                                <MaxTileRow>366</MaxTileRow>
     6225                                                <MinTileCol>508</MinTileCol>
     6226                                                <MaxTileCol>509</MaxTileCol>
     6227                                        </TileMatrixLimits>
     6228                                        <TileMatrixLimits>
     6229                                                <TileMatrix>11</TileMatrix>
     6230                                                <MinTileRow>727</MinTileRow>
     6231                                                <MaxTileRow>733</MaxTileRow>
     6232                                                <MinTileCol>1017</MinTileCol>
     6233                                                <MaxTileCol>1019</MaxTileCol>
     6234                                        </TileMatrixLimits>
     6235                                        <TileMatrixLimits>
     6236                                                <TileMatrix>12</TileMatrix>
     6237                                                <MinTileRow>1455</MinTileRow>
     6238                                                <MaxTileRow>1466</MaxTileRow>
     6239                                                <MinTileCol>2035</MinTileCol>
     6240                                                <MaxTileCol>2038</MaxTileCol>
     6241                                        </TileMatrixLimits>
     6242                                        <TileMatrixLimits>
     6243                                                <TileMatrix>13</TileMatrix>
     6244                                                <MinTileRow>2911</MinTileRow>
     6245                                                <MaxTileRow>2932</MaxTileRow>
     6246                                                <MinTileCol>4070</MinTileCol>
     6247                                                <MaxTileCol>4077</MaxTileCol>
     6248                                        </TileMatrixLimits>
     6249                                        <TileMatrixLimits>
     6250                                                <TileMatrix>14</TileMatrix>
     6251                                                <MinTileRow>5823</MinTileRow>
     6252                                                <MaxTileRow>5865</MaxTileRow>
     6253                                                <MinTileCol>8140</MinTileCol>
     6254                                                <MaxTileCol>8154</MaxTileCol>
     6255                                        </TileMatrixLimits>
     6256                                        <TileMatrixLimits>
     6257                                                <TileMatrix>15</TileMatrix>
     6258                                                <MinTileRow>11646</MinTileRow>
     6259                                                <MaxTileRow>11731</MaxTileRow>
     6260                                                <MinTileCol>16280</MinTileCol>
     6261                                                <MaxTileCol>16308</MaxTileCol>
     6262                                        </TileMatrixLimits>
     6263                                        <TileMatrixLimits>
     6264                                                <TileMatrix>16</TileMatrix>
     6265                                                <MinTileRow>23293</MinTileRow>
     6266                                                <MaxTileRow>23462</MaxTileRow>
     6267                                                <MinTileCol>32560</MinTileCol>
     6268                                                <MaxTileCol>32617</MaxTileCol>
     6269                                        </TileMatrixLimits>
     6270                                        <TileMatrixLimits>
     6271                                                <TileMatrix>17</TileMatrix>
     6272                                                <MinTileRow>46586</MinTileRow>
     6273                                                <MaxTileRow>46925</MaxTileRow>
     6274                                                <MinTileCol>65121</MinTileCol>
     6275                                                <MaxTileCol>65235</MaxTileCol>
     6276                                        </TileMatrixLimits>
     6277                                        <TileMatrixLimits>
     6278                                                <TileMatrix>18</TileMatrix>
     6279                                                <MinTileRow>93172</MinTileRow>
     6280                                                <MaxTileRow>93851</MaxTileRow>
     6281                                                <MinTileCol>130243</MinTileCol>
     6282                                                <MaxTileCol>130471</MaxTileCol>
     6283                                        </TileMatrixLimits>
     6284                                        <TileMatrixLimits>
     6285                                                <TileMatrix>2</TileMatrix>
     6286                                                <MinTileRow>1</MinTileRow>
     6287                                                <MaxTileRow>1</MaxTileRow>
     6288                                                <MinTileCol>1</MinTileCol>
     6289                                                <MaxTileCol>1</MaxTileCol>
     6290                                        </TileMatrixLimits>
     6291                                        <TileMatrixLimits>
     6292                                                <TileMatrix>3</TileMatrix>
     6293                                                <MinTileRow>2</MinTileRow>
     6294                                                <MaxTileRow>2</MaxTileRow>
     6295                                                <MinTileCol>3</MinTileCol>
     6296                                                <MaxTileCol>3</MaxTileCol>
     6297                                        </TileMatrixLimits>
     6298                                        <TileMatrixLimits>
     6299                                                <TileMatrix>4</TileMatrix>
     6300                                                <MinTileRow>5</MinTileRow>
     6301                                                <MaxTileRow>5</MaxTileRow>
     6302                                                <MinTileCol>7</MinTileCol>
     6303                                                <MaxTileCol>7</MaxTileCol>
     6304                                        </TileMatrixLimits>
     6305                                        <TileMatrixLimits>
     6306                                                <TileMatrix>5</TileMatrix>
     6307                                                <MinTileRow>11</MinTileRow>
     6308                                                <MaxTileRow>11</MaxTileRow>
     6309                                                <MinTileCol>15</MinTileCol>
     6310                                                <MaxTileCol>15</MaxTileCol>
     6311                                        </TileMatrixLimits>
     6312                                        <TileMatrixLimits>
     6313                                                <TileMatrix>6</TileMatrix>
     6314                                                <MinTileRow>22</MinTileRow>
     6315                                                <MaxTileRow>22</MaxTileRow>
     6316                                                <MinTileCol>31</MinTileCol>
     6317                                                <MaxTileCol>31</MaxTileCol>
     6318                                        </TileMatrixLimits>
     6319                                        <TileMatrixLimits>
     6320                                                <TileMatrix>7</TileMatrix>
     6321                                                <MinTileRow>45</MinTileRow>
     6322                                                <MaxTileRow>45</MaxTileRow>
     6323                                                <MinTileCol>63</MinTileCol>
     6324                                                <MaxTileCol>63</MaxTileCol>
     6325                                        </TileMatrixLimits>
     6326                                        <TileMatrixLimits>
     6327                                                <TileMatrix>8</TileMatrix>
     6328                                                <MinTileRow>90</MinTileRow>
     6329                                                <MaxTileRow>91</MaxTileRow>
     6330                                                <MinTileCol>127</MinTileCol>
     6331                                                <MaxTileCol>127</MaxTileCol>
     6332                                        </TileMatrixLimits>
     6333                                        <TileMatrixLimits>
     6334                                                <TileMatrix>9</TileMatrix>
     6335                                                <MinTileRow>181</MinTileRow>
     6336                                                <MaxTileRow>183</MaxTileRow>
     6337                                                <MinTileCol>254</MinTileCol>
     6338                                                <MaxTileCol>254</MaxTileCol>
     6339                                        </TileMatrixLimits>
     6340                                </TileMatrixSetLimits>
     6341                        </TileMatrixSetLink>
     6342                </Layer>
     6343                <Layer>
     6344                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6345                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6346                        <ows:Keywords>
     6347                                <ows:Keyword>Photographies</ows:Keyword>
     6348                        </ows:Keywords>
     6349                        <ows:WGS84BoundingBox>
     6350                                <ows:LowerCorner>-1.45583 45.9176</ows:LowerCorner>
     6351                                <ows:UpperCorner>-1.20864 46.1153</ows:UpperCorner>
     6352                        </ows:WGS84BoundingBox>
     6353                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-05-27-40794522</ows:Identifier>
     6354                        <Style isDefault="true">
     6355                                <ows:Title>Données Brutes</ows:Title>
     6356                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6357                                <ows:Keywords>
     6358                                        <ows:Keyword>Défaut</ows:Keyword>
     6359                                </ows:Keywords>
     6360                                <ows:Identifier>normal</ows:Identifier>
     6361                                <LegendURL format="image/jpeg" height="200"
     6362                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6363                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6364                        </Style>
     6365                        <Format>image/jpeg</Format>
     6366                        <TileMatrixSetLink>
     6367                                <TileMatrixSet>PM</TileMatrixSet>
     6368                                <TileMatrixSetLimits>
     6369                                        <TileMatrixLimits>
     6370                                                <TileMatrix>0</TileMatrix>
     6371                                                <MinTileRow>0</MinTileRow>
     6372                                                <MaxTileRow>0</MaxTileRow>
     6373                                                <MinTileCol>0</MinTileCol>
     6374                                                <MaxTileCol>0</MaxTileCol>
     6375                                        </TileMatrixLimits>
     6376                                        <TileMatrixLimits>
     6377                                                <TileMatrix>1</TileMatrix>
     6378                                                <MinTileRow>0</MinTileRow>
     6379                                                <MaxTileRow>0</MaxTileRow>
     6380                                                <MinTileCol>0</MinTileCol>
     6381                                                <MaxTileCol>0</MaxTileCol>
     6382                                        </TileMatrixLimits>
     6383                                        <TileMatrixLimits>
     6384                                                <TileMatrix>10</TileMatrix>
     6385                                                <MinTileRow>363</MinTileRow>
     6386                                                <MaxTileRow>364</MaxTileRow>
     6387                                                <MinTileCol>507</MinTileCol>
     6388                                                <MaxTileCol>508</MaxTileCol>
     6389                                        </TileMatrixLimits>
     6390                                        <TileMatrixLimits>
     6391                                                <TileMatrix>11</TileMatrix>
     6392                                                <MinTileRow>727</MinTileRow>
     6393                                                <MaxTileRow>729</MaxTileRow>
     6394                                                <MinTileCol>1015</MinTileCol>
     6395                                                <MaxTileCol>1017</MaxTileCol>
     6396                                        </TileMatrixLimits>
     6397                                        <TileMatrixLimits>
     6398                                                <TileMatrix>12</TileMatrix>
     6399                                                <MinTileRow>1455</MinTileRow>
     6400                                                <MaxTileRow>1458</MaxTileRow>
     6401                                                <MinTileCol>2031</MinTileCol>
     6402                                                <MaxTileCol>2034</MaxTileCol>
     6403                                        </TileMatrixLimits>
     6404                                        <TileMatrixLimits>
     6405                                                <TileMatrix>13</TileMatrix>
     6406                                                <MinTileRow>2910</MinTileRow>
     6407                                                <MaxTileRow>2917</MaxTileRow>
     6408                                                <MinTileCol>4062</MinTileCol>
     6409                                                <MaxTileCol>4068</MaxTileCol>
     6410                                        </TileMatrixLimits>
     6411                                        <TileMatrixLimits>
     6412                                                <TileMatrix>14</TileMatrix>
     6413                                                <MinTileRow>5821</MinTileRow>
     6414                                                <MaxTileRow>5834</MaxTileRow>
     6415                                                <MinTileCol>8125</MinTileCol>
     6416                                                <MaxTileCol>8136</MaxTileCol>
     6417                                        </TileMatrixLimits>
     6418                                        <TileMatrixLimits>
     6419                                                <TileMatrix>15</TileMatrix>
     6420                                                <MinTileRow>11642</MinTileRow>
     6421                                                <MaxTileRow>11668</MaxTileRow>
     6422                                                <MinTileCol>16251</MinTileCol>
     6423                                                <MaxTileCol>16273</MaxTileCol>
     6424                                        </TileMatrixLimits>
     6425                                        <TileMatrixLimits>
     6426                                                <TileMatrix>16</TileMatrix>
     6427                                                <MinTileRow>23285</MinTileRow>
     6428                                                <MaxTileRow>23336</MaxTileRow>
     6429                                                <MinTileCol>32502</MinTileCol>
     6430                                                <MaxTileCol>32547</MaxTileCol>
     6431                                        </TileMatrixLimits>
     6432                                        <TileMatrixLimits>
     6433                                                <TileMatrix>17</TileMatrix>
     6434                                                <MinTileRow>46570</MinTileRow>
     6435                                                <MaxTileRow>46673</MaxTileRow>
     6436                                                <MinTileCol>65005</MinTileCol>
     6437                                                <MaxTileCol>65095</MaxTileCol>
     6438                                        </TileMatrixLimits>
     6439                                        <TileMatrixLimits>
     6440                                                <TileMatrix>18</TileMatrix>
     6441                                                <MinTileRow>93140</MinTileRow>
     6442                                                <MaxTileRow>93346</MaxTileRow>
     6443                                                <MinTileCol>130011</MinTileCol>
     6444                                                <MaxTileCol>130191</MaxTileCol>
     6445                                        </TileMatrixLimits>
     6446                                        <TileMatrixLimits>
     6447                                                <TileMatrix>2</TileMatrix>
     6448                                                <MinTileRow>1</MinTileRow>
     6449                                                <MaxTileRow>1</MaxTileRow>
     6450                                                <MinTileCol>1</MinTileCol>
     6451                                                <MaxTileCol>1</MaxTileCol>
     6452                                        </TileMatrixLimits>
     6453                                        <TileMatrixLimits>
     6454                                                <TileMatrix>3</TileMatrix>
     6455                                                <MinTileRow>2</MinTileRow>
     6456                                                <MaxTileRow>2</MaxTileRow>
     6457                                                <MinTileCol>3</MinTileCol>
     6458                                                <MaxTileCol>3</MaxTileCol>
     6459                                        </TileMatrixLimits>
     6460                                        <TileMatrixLimits>
     6461                                                <TileMatrix>4</TileMatrix>
     6462                                                <MinTileRow>5</MinTileRow>
     6463                                                <MaxTileRow>5</MaxTileRow>
     6464                                                <MinTileCol>7</MinTileCol>
     6465                                                <MaxTileCol>7</MaxTileCol>
     6466                                        </TileMatrixLimits>
     6467                                        <TileMatrixLimits>
     6468                                                <TileMatrix>5</TileMatrix>
     6469                                                <MinTileRow>11</MinTileRow>
     6470                                                <MaxTileRow>11</MaxTileRow>
     6471                                                <MinTileCol>15</MinTileCol>
     6472                                                <MaxTileCol>15</MaxTileCol>
     6473                                        </TileMatrixLimits>
     6474                                        <TileMatrixLimits>
     6475                                                <TileMatrix>6</TileMatrix>
     6476                                                <MinTileRow>22</MinTileRow>
     6477                                                <MaxTileRow>22</MaxTileRow>
     6478                                                <MinTileCol>31</MinTileCol>
     6479                                                <MaxTileCol>31</MaxTileCol>
     6480                                        </TileMatrixLimits>
     6481                                        <TileMatrixLimits>
     6482                                                <TileMatrix>7</TileMatrix>
     6483                                                <MinTileRow>45</MinTileRow>
     6484                                                <MaxTileRow>45</MaxTileRow>
     6485                                                <MinTileCol>63</MinTileCol>
     6486                                                <MaxTileCol>63</MaxTileCol>
     6487                                        </TileMatrixLimits>
     6488                                        <TileMatrixLimits>
     6489                                                <TileMatrix>8</TileMatrix>
     6490                                                <MinTileRow>90</MinTileRow>
     6491                                                <MaxTileRow>91</MaxTileRow>
     6492                                                <MinTileCol>126</MinTileCol>
     6493                                                <MaxTileCol>127</MaxTileCol>
     6494                                        </TileMatrixLimits>
     6495                                        <TileMatrixLimits>
     6496                                                <TileMatrix>9</TileMatrix>
     6497                                                <MinTileRow>181</MinTileRow>
     6498                                                <MaxTileRow>182</MaxTileRow>
     6499                                                <MinTileCol>253</MinTileCol>
     6500                                                <MaxTileCol>254</MaxTileCol>
     6501                                        </TileMatrixLimits>
     6502                                </TileMatrixSetLimits>
     6503                        </TileMatrixSetLink>
     6504                </Layer>
     6505                <Layer>
     6506                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6507                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6508                        <ows:Keywords>
     6509                                <ows:Keyword>Photographies</ows:Keyword>
     6510                        </ows:Keywords>
     6511                        <ows:WGS84BoundingBox>
     6512                                <ows:LowerCorner>-0.955482 45.523</ows:LowerCorner>
     6513                                <ows:UpperCorner>-0.575906 46.3702</ows:UpperCorner>
     6514                        </ows:WGS84BoundingBox>
     6515                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-04-40027333</ows:Identifier>
     6516                        <Style isDefault="true">
     6517                                <ows:Title>Données Brutes</ows:Title>
     6518                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6519                                <ows:Keywords>
     6520                                        <ows:Keyword>Défaut</ows:Keyword>
     6521                                </ows:Keywords>
     6522                                <ows:Identifier>normal</ows:Identifier>
     6523                                <LegendURL format="image/jpeg" height="200"
     6524                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6525                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6526                        </Style>
     6527                        <Format>image/jpeg</Format>
     6528                        <TileMatrixSetLink>
     6529                                <TileMatrixSet>PM</TileMatrixSet>
     6530                                <TileMatrixSetLimits>
     6531                                        <TileMatrixLimits>
     6532                                                <TileMatrix>0</TileMatrix>
     6533                                                <MinTileRow>0</MinTileRow>
     6534                                                <MaxTileRow>0</MaxTileRow>
     6535                                                <MinTileCol>0</MinTileCol>
     6536                                                <MaxTileCol>0</MaxTileCol>
     6537                                        </TileMatrixLimits>
     6538                                        <TileMatrixLimits>
     6539                                                <TileMatrix>1</TileMatrix>
     6540                                                <MinTileRow>0</MinTileRow>
     6541                                                <MaxTileRow>0</MaxTileRow>
     6542                                                <MinTileCol>0</MinTileCol>
     6543                                                <MaxTileCol>0</MaxTileCol>
     6544                                        </TileMatrixLimits>
     6545                                        <TileMatrixLimits>
     6546                                                <TileMatrix>10</TileMatrix>
     6547                                                <MinTileRow>362</MinTileRow>
     6548                                                <MaxTileRow>366</MaxTileRow>
     6549                                                <MinTileCol>509</MinTileCol>
     6550                                                <MaxTileCol>510</MaxTileCol>
     6551                                        </TileMatrixLimits>
     6552                                        <TileMatrixLimits>
     6553                                                <TileMatrix>11</TileMatrix>
     6554                                                <MinTileRow>725</MinTileRow>
     6555                                                <MaxTileRow>732</MaxTileRow>
     6556                                                <MinTileCol>1018</MinTileCol>
     6557                                                <MaxTileCol>1020</MaxTileCol>
     6558                                        </TileMatrixLimits>
     6559                                        <TileMatrixLimits>
     6560                                                <TileMatrix>12</TileMatrix>
     6561                                                <MinTileRow>1451</MinTileRow>
     6562                                                <MaxTileRow>1464</MaxTileRow>
     6563                                                <MinTileCol>2037</MinTileCol>
     6564                                                <MaxTileCol>2041</MaxTileCol>
     6565                                        </TileMatrixLimits>
     6566                                        <TileMatrixLimits>
     6567                                                <TileMatrix>13</TileMatrix>
     6568                                                <MinTileRow>2902</MinTileRow>
     6569                                                <MaxTileRow>2929</MaxTileRow>
     6570                                                <MinTileCol>4075</MinTileCol>
     6571                                                <MaxTileCol>4082</MaxTileCol>
     6572                                        </TileMatrixLimits>
     6573                                        <TileMatrixLimits>
     6574                                                <TileMatrix>14</TileMatrix>
     6575                                                <MinTileRow>5804</MinTileRow>
     6576                                                <MaxTileRow>5859</MaxTileRow>
     6577                                                <MinTileCol>8150</MinTileCol>
     6578                                                <MaxTileCol>8164</MaxTileCol>
     6579                                        </TileMatrixLimits>
     6580                                        <TileMatrixLimits>
     6581                                                <TileMatrix>15</TileMatrix>
     6582                                                <MinTileRow>11609</MinTileRow>
     6583                                                <MaxTileRow>11719</MaxTileRow>
     6584                                                <MinTileCol>16301</MinTileCol>
     6585                                                <MaxTileCol>16328</MaxTileCol>
     6586                                        </TileMatrixLimits>
     6587                                        <TileMatrixLimits>
     6588                                                <TileMatrix>16</TileMatrix>
     6589                                                <MinTileRow>23218</MinTileRow>
     6590                                                <MaxTileRow>23438</MaxTileRow>
     6591                                                <MinTileCol>32603</MinTileCol>
     6592                                                <MaxTileCol>32656</MaxTileCol>
     6593                                        </TileMatrixLimits>
     6594                                        <TileMatrixLimits>
     6595                                                <TileMatrix>17</TileMatrix>
     6596                                                <MinTileRow>46437</MinTileRow>
     6597                                                <MaxTileRow>46877</MaxTileRow>
     6598                                                <MinTileCol>65207</MinTileCol>
     6599                                                <MaxTileCol>65313</MaxTileCol>
     6600                                        </TileMatrixLimits>
     6601                                        <TileMatrixLimits>
     6602                                                <TileMatrix>18</TileMatrix>
     6603                                                <MinTileRow>92875</MinTileRow>
     6604                                                <MaxTileRow>93755</MaxTileRow>
     6605                                                <MinTileCol>130415</MinTileCol>
     6606                                                <MaxTileCol>130626</MaxTileCol>
     6607                                        </TileMatrixLimits>
     6608                                        <TileMatrixLimits>
     6609                                                <TileMatrix>2</TileMatrix>
     6610                                                <MinTileRow>1</MinTileRow>
     6611                                                <MaxTileRow>1</MaxTileRow>
     6612                                                <MinTileCol>1</MinTileCol>
     6613                                                <MaxTileCol>1</MaxTileCol>
     6614                                        </TileMatrixLimits>
     6615                                        <TileMatrixLimits>
     6616                                                <TileMatrix>3</TileMatrix>
     6617                                                <MinTileRow>2</MinTileRow>
     6618                                                <MaxTileRow>2</MaxTileRow>
     6619                                                <MinTileCol>3</MinTileCol>
     6620                                                <MaxTileCol>3</MaxTileCol>
     6621                                        </TileMatrixLimits>
     6622                                        <TileMatrixLimits>
     6623                                                <TileMatrix>4</TileMatrix>
     6624                                                <MinTileRow>5</MinTileRow>
     6625                                                <MaxTileRow>5</MaxTileRow>
     6626                                                <MinTileCol>7</MinTileCol>
     6627                                                <MaxTileCol>7</MaxTileCol>
     6628                                        </TileMatrixLimits>
     6629                                        <TileMatrixLimits>
     6630                                                <TileMatrix>5</TileMatrix>
     6631                                                <MinTileRow>11</MinTileRow>
     6632                                                <MaxTileRow>11</MaxTileRow>
     6633                                                <MinTileCol>15</MinTileCol>
     6634                                                <MaxTileCol>15</MaxTileCol>
     6635                                        </TileMatrixLimits>
     6636                                        <TileMatrixLimits>
     6637                                                <TileMatrix>6</TileMatrix>
     6638                                                <MinTileRow>22</MinTileRow>
     6639                                                <MaxTileRow>22</MaxTileRow>
     6640                                                <MinTileCol>31</MinTileCol>
     6641                                                <MaxTileCol>31</MaxTileCol>
     6642                                        </TileMatrixLimits>
     6643                                        <TileMatrixLimits>
     6644                                                <TileMatrix>7</TileMatrix>
     6645                                                <MinTileRow>45</MinTileRow>
     6646                                                <MaxTileRow>45</MaxTileRow>
     6647                                                <MinTileCol>63</MinTileCol>
     6648                                                <MaxTileCol>63</MaxTileCol>
     6649                                        </TileMatrixLimits>
     6650                                        <TileMatrixLimits>
     6651                                                <TileMatrix>8</TileMatrix>
     6652                                                <MinTileRow>90</MinTileRow>
     6653                                                <MaxTileRow>91</MaxTileRow>
     6654                                                <MinTileCol>127</MinTileCol>
     6655                                                <MaxTileCol>127</MaxTileCol>
     6656                                        </TileMatrixLimits>
     6657                                        <TileMatrixLimits>
     6658                                                <TileMatrix>9</TileMatrix>
     6659                                                <MinTileRow>181</MinTileRow>
     6660                                                <MaxTileRow>183</MaxTileRow>
     6661                                                <MinTileCol>254</MinTileCol>
     6662                                                <MaxTileCol>255</MaxTileCol>
     6663                                        </TileMatrixLimits>
     6664                                </TileMatrixSetLimits>
     6665                        </TileMatrixSetLink>
     6666                </Layer>
     6667                <Layer>
     6668                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6669                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6670                        <ows:Keywords>
     6671                                <ows:Keyword>Photographies</ows:Keyword>
     6672                        </ows:Keywords>
     6673                        <ows:WGS84BoundingBox>
     6674                                <ows:LowerCorner>-0.474961 45.7715</ows:LowerCorner>
     6675                                <ows:UpperCorner>-0.153929 45.9785</ows:UpperCorner>
     6676                        </ows:WGS84BoundingBox>
     6677                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-16-40523571</ows:Identifier>
     6678                        <Style isDefault="true">
     6679                                <ows:Title>Données Brutes</ows:Title>
     6680                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6681                                <ows:Keywords>
     6682                                        <ows:Keyword>Défaut</ows:Keyword>
     6683                                </ows:Keywords>
     6684                                <ows:Identifier>normal</ows:Identifier>
     6685                                <LegendURL format="image/jpeg" height="200"
     6686                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6687                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6688                        </Style>
     6689                        <Format>image/jpeg</Format>
     6690                        <TileMatrixSetLink>
     6691                                <TileMatrixSet>PM</TileMatrixSet>
     6692                                <TileMatrixSetLimits>
     6693                                        <TileMatrixLimits>
     6694                                                <TileMatrix>0</TileMatrix>
     6695                                                <MinTileRow>0</MinTileRow>
     6696                                                <MaxTileRow>0</MaxTileRow>
     6697                                                <MinTileCol>0</MinTileCol>
     6698                                                <MaxTileCol>0</MaxTileCol>
     6699                                        </TileMatrixLimits>
     6700                                        <TileMatrixLimits>
     6701                                                <TileMatrix>1</TileMatrix>
     6702                                                <MinTileRow>0</MinTileRow>
     6703                                                <MaxTileRow>0</MaxTileRow>
     6704                                                <MinTileCol>0</MinTileCol>
     6705                                                <MaxTileCol>0</MaxTileCol>
     6706                                        </TileMatrixLimits>
     6707                                        <TileMatrixLimits>
     6708                                                <TileMatrix>10</TileMatrix>
     6709                                                <MinTileRow>364</MinTileRow>
     6710                                                <MaxTileRow>365</MaxTileRow>
     6711                                                <MinTileCol>510</MinTileCol>
     6712                                                <MaxTileCol>511</MaxTileCol>
     6713                                        </TileMatrixLimits>
     6714                                        <TileMatrixLimits>
     6715                                                <TileMatrix>11</TileMatrix>
     6716                                                <MinTileRow>728</MinTileRow>
     6717                                                <MaxTileRow>730</MaxTileRow>
     6718                                                <MinTileCol>1021</MinTileCol>
     6719                                                <MaxTileCol>1023</MaxTileCol>
     6720                                        </TileMatrixLimits>
     6721                                        <TileMatrixLimits>
     6722                                                <TileMatrix>12</TileMatrix>
     6723                                                <MinTileRow>1457</MinTileRow>
     6724                                                <MaxTileRow>1460</MaxTileRow>
     6725                                                <MinTileCol>2042</MinTileCol>
     6726                                                <MaxTileCol>2046</MaxTileCol>
     6727                                        </TileMatrixLimits>
     6728                                        <TileMatrixLimits>
     6729                                                <TileMatrix>13</TileMatrix>
     6730                                                <MinTileRow>2915</MinTileRow>
     6731                                                <MaxTileRow>2921</MaxTileRow>
     6732                                                <MinTileCol>4085</MinTileCol>
     6733                                                <MaxTileCol>4092</MaxTileCol>
     6734                                        </TileMatrixLimits>
     6735                                        <TileMatrixLimits>
     6736                                                <TileMatrix>14</TileMatrix>
     6737                                                <MinTileRow>5830</MinTileRow>
     6738                                                <MaxTileRow>5843</MaxTileRow>
     6739                                                <MinTileCol>8170</MinTileCol>
     6740                                                <MaxTileCol>8185</MaxTileCol>
     6741                                        </TileMatrixLimits>
     6742                                        <TileMatrixLimits>
     6743                                                <TileMatrix>15</TileMatrix>
     6744                                                <MinTileRow>11660</MinTileRow>
     6745                                                <MaxTileRow>11687</MaxTileRow>
     6746                                                <MinTileCol>16341</MinTileCol>
     6747                                                <MaxTileCol>16370</MaxTileCol>
     6748                                        </TileMatrixLimits>
     6749                                        <TileMatrixLimits>
     6750                                                <TileMatrix>16</TileMatrix>
     6751                                                <MinTileRow>23320</MinTileRow>
     6752                                                <MaxTileRow>23374</MaxTileRow>
     6753                                                <MinTileCol>32683</MinTileCol>
     6754                                                <MaxTileCol>32740</MaxTileCol>
     6755                                        </TileMatrixLimits>
     6756                                        <TileMatrixLimits>
     6757                                                <TileMatrix>17</TileMatrix>
     6758                                                <MinTileRow>46641</MinTileRow>
     6759                                                <MaxTileRow>46749</MaxTileRow>
     6760                                                <MinTileCol>65366</MinTileCol>
     6761                                                <MaxTileCol>65480</MaxTileCol>
     6762                                        </TileMatrixLimits>
     6763                                        <TileMatrixLimits>
     6764                                                <TileMatrix>18</TileMatrix>
     6765                                                <MinTileRow>93283</MinTileRow>
     6766                                                <MaxTileRow>93499</MaxTileRow>
     6767                                                <MinTileCol>130733</MinTileCol>
     6768                                                <MaxTileCol>130960</MaxTileCol>
     6769                                        </TileMatrixLimits>
     6770                                        <TileMatrixLimits>
     6771                                                <TileMatrix>2</TileMatrix>
     6772                                                <MinTileRow>1</MinTileRow>
     6773                                                <MaxTileRow>1</MaxTileRow>
     6774                                                <MinTileCol>1</MinTileCol>
     6775                                                <MaxTileCol>1</MaxTileCol>
     6776                                        </TileMatrixLimits>
     6777                                        <TileMatrixLimits>
     6778                                                <TileMatrix>3</TileMatrix>
     6779                                                <MinTileRow>2</MinTileRow>
     6780                                                <MaxTileRow>2</MaxTileRow>
     6781                                                <MinTileCol>3</MinTileCol>
     6782                                                <MaxTileCol>3</MaxTileCol>
     6783                                        </TileMatrixLimits>
     6784                                        <TileMatrixLimits>
     6785                                                <TileMatrix>4</TileMatrix>
     6786                                                <MinTileRow>5</MinTileRow>
     6787                                                <MaxTileRow>5</MaxTileRow>
     6788                                                <MinTileCol>7</MinTileCol>
     6789                                                <MaxTileCol>7</MaxTileCol>
     6790                                        </TileMatrixLimits>
     6791                                        <TileMatrixLimits>
     6792                                                <TileMatrix>5</TileMatrix>
     6793                                                <MinTileRow>11</MinTileRow>
     6794                                                <MaxTileRow>11</MaxTileRow>
     6795                                                <MinTileCol>15</MinTileCol>
     6796                                                <MaxTileCol>15</MaxTileCol>
     6797                                        </TileMatrixLimits>
     6798                                        <TileMatrixLimits>
     6799                                                <TileMatrix>6</TileMatrix>
     6800                                                <MinTileRow>22</MinTileRow>
     6801                                                <MaxTileRow>22</MaxTileRow>
     6802                                                <MinTileCol>31</MinTileCol>
     6803                                                <MaxTileCol>31</MaxTileCol>
     6804                                        </TileMatrixLimits>
     6805                                        <TileMatrixLimits>
     6806                                                <TileMatrix>7</TileMatrix>
     6807                                                <MinTileRow>45</MinTileRow>
     6808                                                <MaxTileRow>45</MaxTileRow>
     6809                                                <MinTileCol>63</MinTileCol>
     6810                                                <MaxTileCol>63</MaxTileCol>
     6811                                        </TileMatrixLimits>
     6812                                        <TileMatrixLimits>
     6813                                                <TileMatrix>8</TileMatrix>
     6814                                                <MinTileRow>91</MinTileRow>
     6815                                                <MaxTileRow>91</MaxTileRow>
     6816                                                <MinTileCol>127</MinTileCol>
     6817                                                <MaxTileCol>127</MaxTileCol>
     6818                                        </TileMatrixLimits>
     6819                                        <TileMatrixLimits>
     6820                                                <TileMatrix>9</TileMatrix>
     6821                                                <MinTileRow>182</MinTileRow>
     6822                                                <MaxTileRow>182</MaxTileRow>
     6823                                                <MinTileCol>255</MinTileCol>
     6824                                                <MaxTileCol>255</MaxTileCol>
     6825                                        </TileMatrixLimits>
     6826                                </TileMatrixSetLimits>
     6827                        </TileMatrixSetLink>
     6828                </Layer>
     6829                <Layer>
     6830                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6831                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6832                        <ows:Keywords>
     6833                                <ows:Keyword>Photographies</ows:Keyword>
     6834                        </ows:Keywords>
     6835                        <ows:WGS84BoundingBox>
     6836                                <ows:LowerCorner>-0.726144 45.5209</ows:LowerCorner>
     6837                                <ows:UpperCorner>-0.344945 46.0625</ows:UpperCorner>
     6838                        </ows:WGS84BoundingBox>
     6839                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-06-16-40534571</ows:Identifier>
     6840                        <Style isDefault="true">
     6841                                <ows:Title>Données Brutes</ows:Title>
     6842                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     6843                                <ows:Keywords>
     6844                                        <ows:Keyword>Défaut</ows:Keyword>
     6845                                </ows:Keywords>
     6846                                <ows:Identifier>normal</ows:Identifier>
     6847                                <LegendURL format="image/jpeg" height="200"
     6848                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     6849                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     6850                        </Style>
     6851                        <Format>image/jpeg</Format>
     6852                        <TileMatrixSetLink>
     6853                                <TileMatrixSet>PM</TileMatrixSet>
     6854                                <TileMatrixSetLimits>
     6855                                        <TileMatrixLimits>
     6856                                                <TileMatrix>0</TileMatrix>
     6857                                                <MinTileRow>0</MinTileRow>
     6858                                                <MaxTileRow>0</MaxTileRow>
     6859                                                <MinTileCol>0</MinTileCol>
     6860                                                <MaxTileCol>0</MaxTileCol>
     6861                                        </TileMatrixLimits>
     6862                                        <TileMatrixLimits>
     6863                                                <TileMatrix>1</TileMatrix>
     6864                                                <MinTileRow>0</MinTileRow>
     6865                                                <MaxTileRow>0</MaxTileRow>
     6866                                                <MinTileCol>0</MinTileCol>
     6867                                                <MaxTileCol>0</MaxTileCol>
     6868                                        </TileMatrixLimits>
     6869                                        <TileMatrixLimits>
     6870                                                <TileMatrix>10</TileMatrix>
     6871                                                <MinTileRow>364</MinTileRow>
     6872                                                <MaxTileRow>366</MaxTileRow>
     6873                                                <MinTileCol>510</MinTileCol>
     6874                                                <MaxTileCol>510</MaxTileCol>
     6875                                        </TileMatrixLimits>
     6876                                        <TileMatrixLimits>
     6877                                                <TileMatrix>11</TileMatrix>
     6878                                                <MinTileRow>728</MinTileRow>
     6879                                                <MaxTileRow>732</MaxTileRow>
     6880                                                <MinTileCol>1020</MinTileCol>
     6881                                                <MaxTileCol>1021</MaxTileCol>
     6882                                        </TileMatrixLimits>
     6883                                        <TileMatrixLimits>
     6884                                                <TileMatrix>12</TileMatrix>
     6885                                                <MinTileRow>1456</MinTileRow>
     6886                                                <MaxTileRow>1465</MaxTileRow>
     6887                                                <MinTileCol>2040</MinTileCol>
     6888                                                <MaxTileCol>2043</MaxTileCol>
     6889                                        </TileMatrixLimits>
     6890                                        <TileMatrixLimits>
     6891                                                <TileMatrix>13</TileMatrix>
     6892                                                <MinTileRow>2912</MinTileRow>
     6893                                                <MaxTileRow>2930</MaxTileRow>
     6894                                                <MinTileCol>4080</MinTileCol>
     6895                                                <MaxTileCol>4087</MaxTileCol>
     6896                                        </TileMatrixLimits>
     6897                                        <TileMatrixLimits>
     6898                                                <TileMatrix>14</TileMatrix>
     6899                                                <MinTileRow>5824</MinTileRow>
     6900                                                <MaxTileRow>5860</MaxTileRow>
     6901                                                <MinTileCol>8160</MinTileCol>
     6902                                                <MaxTileCol>8175</MaxTileCol>
     6903                                        </TileMatrixLimits>
     6904                                        <TileMatrixLimits>
     6905                                                <TileMatrix>15</TileMatrix>
     6906                                                <MinTileRow>11649</MinTileRow>
     6907                                                <MaxTileRow>11720</MaxTileRow>
     6908                                                <MinTileCol>16320</MinTileCol>
     6909                                                <MaxTileCol>16350</MaxTileCol>
     6910                                        </TileMatrixLimits>
     6911                                        <TileMatrixLimits>
     6912                                                <TileMatrix>16</TileMatrix>
     6913                                                <MinTileRow>23298</MinTileRow>
     6914                                                <MaxTileRow>23440</MaxTileRow>
     6915                                                <MinTileCol>32641</MinTileCol>
     6916                                                <MaxTileCol>32700</MaxTileCol>
     6917                                        </TileMatrixLimits>
     6918                                        <TileMatrixLimits>
     6919                                                <TileMatrix>17</TileMatrix>
     6920                                                <MinTileRow>46597</MinTileRow>
     6921                                                <MaxTileRow>46880</MaxTileRow>
     6922                                                <MinTileCol>65283</MinTileCol>
     6923                                                <MaxTileCol>65400</MaxTileCol>
     6924                                        </TileMatrixLimits>
     6925                                        <TileMatrixLimits>
     6926                                                <TileMatrix>18</TileMatrix>
     6927                                                <MinTileRow>93195</MinTileRow>
     6928                                                <MaxTileRow>93760</MaxTileRow>
     6929                                                <MinTileCol>130566</MinTileCol>
     6930                                                <MaxTileCol>130801</MaxTileCol>
     6931                                        </TileMatrixLimits>
     6932                                        <TileMatrixLimits>
     6933                                                <TileMatrix>2</TileMatrix>
     6934                                                <MinTileRow>1</MinTileRow>
     6935                                                <MaxTileRow>1</MaxTileRow>
     6936                                                <MinTileCol>1</MinTileCol>
     6937                                                <MaxTileCol>1</MaxTileCol>
     6938                                        </TileMatrixLimits>
     6939                                        <TileMatrixLimits>
     6940                                                <TileMatrix>3</TileMatrix>
     6941                                                <MinTileRow>2</MinTileRow>
     6942                                                <MaxTileRow>2</MaxTileRow>
     6943                                                <MinTileCol>3</MinTileCol>
     6944                                                <MaxTileCol>3</MaxTileCol>
     6945                                        </TileMatrixLimits>
     6946                                        <TileMatrixLimits>
     6947                                                <TileMatrix>4</TileMatrix>
     6948                                                <MinTileRow>5</MinTileRow>
     6949                                                <MaxTileRow>5</MaxTileRow>
     6950                                                <MinTileCol>7</MinTileCol>
     6951                                                <MaxTileCol>7</MaxTileCol>
     6952                                        </TileMatrixLimits>
     6953                                        <TileMatrixLimits>
     6954                                                <TileMatrix>5</TileMatrix>
     6955                                                <MinTileRow>11</MinTileRow>
     6956                                                <MaxTileRow>11</MaxTileRow>
     6957                                                <MinTileCol>15</MinTileCol>
     6958                                                <MaxTileCol>15</MaxTileCol>
     6959                                        </TileMatrixLimits>
     6960                                        <TileMatrixLimits>
     6961                                                <TileMatrix>6</TileMatrix>
     6962                                                <MinTileRow>22</MinTileRow>
     6963                                                <MaxTileRow>22</MaxTileRow>
     6964                                                <MinTileCol>31</MinTileCol>
     6965                                                <MaxTileCol>31</MaxTileCol>
     6966                                        </TileMatrixLimits>
     6967                                        <TileMatrixLimits>
     6968                                                <TileMatrix>7</TileMatrix>
     6969                                                <MinTileRow>45</MinTileRow>
     6970                                                <MaxTileRow>45</MaxTileRow>
     6971                                                <MinTileCol>63</MinTileCol>
     6972                                                <MaxTileCol>63</MaxTileCol>
     6973                                        </TileMatrixLimits>
     6974                                        <TileMatrixLimits>
     6975                                                <TileMatrix>8</TileMatrix>
     6976                                                <MinTileRow>91</MinTileRow>
     6977                                                <MaxTileRow>91</MaxTileRow>
     6978                                                <MinTileCol>127</MinTileCol>
     6979                                                <MaxTileCol>127</MaxTileCol>
     6980                                        </TileMatrixLimits>
     6981                                        <TileMatrixLimits>
     6982                                                <TileMatrix>9</TileMatrix>
     6983                                                <MinTileRow>182</MinTileRow>
     6984                                                <MaxTileRow>183</MaxTileRow>
     6985                                                <MinTileCol>255</MinTileCol>
     6986                                                <MaxTileCol>255</MaxTileCol>
     6987                                        </TileMatrixLimits>
     6988                                </TileMatrixSetLimits>
     6989                        </TileMatrixSetLink>
     6990                </Layer>
     6991                <Layer>
     6992                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     6993                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     6994                        <ows:Keywords>
     6995                                <ows:Keyword>Photographies</ows:Keyword>
     6996                        </ows:Keywords>
     6997                        <ows:WGS84BoundingBox>
     6998                                <ows:LowerCorner>-1.35891 45.8222</ows:LowerCorner>
     6999                                <ows:UpperCorner>-1.04673 46.0401</ows:UpperCorner>
     7000                        </ows:WGS84BoundingBox>
     7001                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-06-40363199</ows:Identifier>
     7002                        <Style isDefault="true">
     7003                                <ows:Title>Données Brutes</ows:Title>
     7004                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7005                                <ows:Keywords>
     7006                                        <ows:Keyword>Défaut</ows:Keyword>
     7007                                </ows:Keywords>
     7008                                <ows:Identifier>normal</ows:Identifier>
     7009                                <LegendURL format="image/jpeg" height="200"
     7010                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7011                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7012                        </Style>
     7013                        <Format>image/jpeg</Format>
     7014                        <TileMatrixSetLink>
     7015                                <TileMatrixSet>PM</TileMatrixSet>
     7016                                <TileMatrixSetLimits>
     7017                                        <TileMatrixLimits>
     7018                                                <TileMatrix>0</TileMatrix>
     7019                                                <MinTileRow>0</MinTileRow>
     7020                                                <MaxTileRow>0</MaxTileRow>
     7021                                                <MinTileCol>0</MinTileCol>
     7022                                                <MaxTileCol>0</MaxTileCol>
     7023                                        </TileMatrixLimits>
     7024                                        <TileMatrixLimits>
     7025                                                <TileMatrix>1</TileMatrix>
     7026                                                <MinTileRow>0</MinTileRow>
     7027                                                <MaxTileRow>0</MaxTileRow>
     7028                                                <MinTileCol>0</MinTileCol>
     7029                                                <MaxTileCol>0</MaxTileCol>
     7030                                        </TileMatrixLimits>
     7031                                        <TileMatrixLimits>
     7032                                                <TileMatrix>10</TileMatrix>
     7033                                                <MinTileRow>364</MinTileRow>
     7034                                                <MaxTileRow>364</MaxTileRow>
     7035                                                <MinTileCol>508</MinTileCol>
     7036                                                <MaxTileCol>509</MaxTileCol>
     7037                                        </TileMatrixLimits>
     7038                                        <TileMatrixLimits>
     7039                                                <TileMatrix>11</TileMatrix>
     7040                                                <MinTileRow>728</MinTileRow>
     7041                                                <MaxTileRow>729</MaxTileRow>
     7042                                                <MinTileCol>1016</MinTileCol>
     7043                                                <MaxTileCol>1018</MaxTileCol>
     7044                                        </TileMatrixLimits>
     7045                                        <TileMatrixLimits>
     7046                                                <TileMatrix>12</TileMatrix>
     7047                                                <MinTileRow>1456</MinTileRow>
     7048                                                <MaxTileRow>1459</MaxTileRow>
     7049                                                <MinTileCol>2032</MinTileCol>
     7050                                                <MaxTileCol>2036</MaxTileCol>
     7051                                        </TileMatrixLimits>
     7052                                        <TileMatrixLimits>
     7053                                                <TileMatrix>13</TileMatrix>
     7054                                                <MinTileRow>2913</MinTileRow>
     7055                                                <MaxTileRow>2919</MaxTileRow>
     7056                                                <MinTileCol>4065</MinTileCol>
     7057                                                <MaxTileCol>4072</MaxTileCol>
     7058                                        </TileMatrixLimits>
     7059                                        <TileMatrixLimits>
     7060                                                <TileMatrix>14</TileMatrix>
     7061                                                <MinTileRow>5826</MinTileRow>
     7062                                                <MaxTileRow>5839</MaxTileRow>
     7063                                                <MinTileCol>8130</MinTileCol>
     7064                                                <MaxTileCol>8144</MaxTileCol>
     7065                                        </TileMatrixLimits>
     7066                                        <TileMatrixLimits>
     7067                                                <TileMatrix>15</TileMatrix>
     7068                                                <MinTileRow>11652</MinTileRow>
     7069                                                <MaxTileRow>11679</MaxTileRow>
     7070                                                <MinTileCol>16260</MinTileCol>
     7071                                                <MaxTileCol>16288</MaxTileCol>
     7072                                        </TileMatrixLimits>
     7073                                        <TileMatrixLimits>
     7074                                                <TileMatrix>16</TileMatrix>
     7075                                                <MinTileRow>23304</MinTileRow>
     7076                                                <MaxTileRow>23359</MaxTileRow>
     7077                                                <MinTileCol>32520</MinTileCol>
     7078                                                <MaxTileCol>32576</MaxTileCol>
     7079                                        </TileMatrixLimits>
     7080                                        <TileMatrixLimits>
     7081                                                <TileMatrix>17</TileMatrix>
     7082                                                <MinTileRow>46609</MinTileRow>
     7083                                                <MaxTileRow>46719</MaxTileRow>
     7084                                                <MinTileCol>65041</MinTileCol>
     7085                                                <MaxTileCol>65152</MaxTileCol>
     7086                                        </TileMatrixLimits>
     7087                                        <TileMatrixLimits>
     7088                                                <TileMatrix>18</TileMatrix>
     7089                                                <MinTileRow>93218</MinTileRow>
     7090                                                <MaxTileRow>93438</MaxTileRow>
     7091                                                <MinTileCol>130083</MinTileCol>
     7092                                                <MaxTileCol>130304</MaxTileCol>
     7093                                        </TileMatrixLimits>
     7094                                        <TileMatrixLimits>
     7095                                                <TileMatrix>2</TileMatrix>
     7096                                                <MinTileRow>1</MinTileRow>
     7097                                                <MaxTileRow>1</MaxTileRow>
     7098                                                <MinTileCol>1</MinTileCol>
     7099                                                <MaxTileCol>1</MaxTileCol>
     7100                                        </TileMatrixLimits>
     7101                                        <TileMatrixLimits>
     7102                                                <TileMatrix>3</TileMatrix>
     7103                                                <MinTileRow>2</MinTileRow>
     7104                                                <MaxTileRow>2</MaxTileRow>
     7105                                                <MinTileCol>3</MinTileCol>
     7106                                                <MaxTileCol>3</MaxTileCol>
     7107                                        </TileMatrixLimits>
     7108                                        <TileMatrixLimits>
     7109                                                <TileMatrix>4</TileMatrix>
     7110                                                <MinTileRow>5</MinTileRow>
     7111                                                <MaxTileRow>5</MaxTileRow>
     7112                                                <MinTileCol>7</MinTileCol>
     7113                                                <MaxTileCol>7</MaxTileCol>
     7114                                        </TileMatrixLimits>
     7115                                        <TileMatrixLimits>
     7116                                                <TileMatrix>5</TileMatrix>
     7117                                                <MinTileRow>11</MinTileRow>
     7118                                                <MaxTileRow>11</MaxTileRow>
     7119                                                <MinTileCol>15</MinTileCol>
     7120                                                <MaxTileCol>15</MaxTileCol>
     7121                                        </TileMatrixLimits>
     7122                                        <TileMatrixLimits>
     7123                                                <TileMatrix>6</TileMatrix>
     7124                                                <MinTileRow>22</MinTileRow>
     7125                                                <MaxTileRow>22</MaxTileRow>
     7126                                                <MinTileCol>31</MinTileCol>
     7127                                                <MaxTileCol>31</MaxTileCol>
     7128                                        </TileMatrixLimits>
     7129                                        <TileMatrixLimits>
     7130                                                <TileMatrix>7</TileMatrix>
     7131                                                <MinTileRow>45</MinTileRow>
     7132                                                <MaxTileRow>45</MaxTileRow>
     7133                                                <MinTileCol>63</MinTileCol>
     7134                                                <MaxTileCol>63</MaxTileCol>
     7135                                        </TileMatrixLimits>
     7136                                        <TileMatrixLimits>
     7137                                                <TileMatrix>8</TileMatrix>
     7138                                                <MinTileRow>91</MinTileRow>
     7139                                                <MaxTileRow>91</MaxTileRow>
     7140                                                <MinTileCol>127</MinTileCol>
     7141                                                <MaxTileCol>127</MaxTileCol>
     7142                                        </TileMatrixLimits>
     7143                                        <TileMatrixLimits>
     7144                                                <TileMatrix>9</TileMatrix>
     7145                                                <MinTileRow>182</MinTileRow>
     7146                                                <MaxTileRow>182</MaxTileRow>
     7147                                                <MinTileCol>254</MinTileCol>
     7148                                                <MaxTileCol>254</MaxTileCol>
     7149                                        </TileMatrixLimits>
     7150                                </TileMatrixSetLimits>
     7151                        </TileMatrixSetLink>
     7152                </Layer>
     7153                <Layer>
     7154                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7155                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7156                        <ows:Keywords>
     7157                                <ows:Keyword>Photographies</ows:Keyword>
     7158                        </ows:Keywords>
     7159                        <ows:WGS84BoundingBox>
     7160                                <ows:LowerCorner>-1.44345 45.8457</ows:LowerCorner>
     7161                                <ows:UpperCorner>-1.21602 45.962</ows:UpperCorner>
     7162                        </ows:WGS84BoundingBox>
     7163                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-06-40371824</ows:Identifier>
     7164                        <Style isDefault="true">
     7165                                <ows:Title>Données Brutes</ows:Title>
     7166                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7167                                <ows:Keywords>
     7168                                        <ows:Keyword>Défaut</ows:Keyword>
     7169                                </ows:Keywords>
     7170                                <ows:Identifier>normal</ows:Identifier>
     7171                                <LegendURL format="image/jpeg" height="200"
     7172                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7173                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7174                        </Style>
     7175                        <Format>image/jpeg</Format>
     7176                        <TileMatrixSetLink>
     7177                                <TileMatrixSet>PM</TileMatrixSet>
     7178                                <TileMatrixSetLimits>
     7179                                        <TileMatrixLimits>
     7180                                                <TileMatrix>0</TileMatrix>
     7181                                                <MinTileRow>0</MinTileRow>
     7182                                                <MaxTileRow>0</MaxTileRow>
     7183                                                <MinTileCol>0</MinTileCol>
     7184                                                <MaxTileCol>0</MaxTileCol>
     7185                                        </TileMatrixLimits>
     7186                                        <TileMatrixLimits>
     7187                                                <TileMatrix>1</TileMatrix>
     7188                                                <MinTileRow>0</MinTileRow>
     7189                                                <MaxTileRow>0</MaxTileRow>
     7190                                                <MinTileCol>0</MinTileCol>
     7191                                                <MaxTileCol>0</MaxTileCol>
     7192                                        </TileMatrixLimits>
     7193                                        <TileMatrixLimits>
     7194                                                <TileMatrix>10</TileMatrix>
     7195                                                <MinTileRow>364</MinTileRow>
     7196                                                <MaxTileRow>364</MaxTileRow>
     7197                                                <MinTileCol>507</MinTileCol>
     7198                                                <MaxTileCol>508</MaxTileCol>
     7199                                        </TileMatrixLimits>
     7200                                        <TileMatrixLimits>
     7201                                                <TileMatrix>11</TileMatrix>
     7202                                                <MinTileRow>728</MinTileRow>
     7203                                                <MaxTileRow>729</MaxTileRow>
     7204                                                <MinTileCol>1015</MinTileCol>
     7205                                                <MaxTileCol>1017</MaxTileCol>
     7206                                        </TileMatrixLimits>
     7207                                        <TileMatrixLimits>
     7208                                                <TileMatrix>12</TileMatrix>
     7209                                                <MinTileRow>1457</MinTileRow>
     7210                                                <MaxTileRow>1459</MaxTileRow>
     7211                                                <MinTileCol>2031</MinTileCol>
     7212                                                <MaxTileCol>2034</MaxTileCol>
     7213                                        </TileMatrixLimits>
     7214                                        <TileMatrixLimits>
     7215                                                <TileMatrix>13</TileMatrix>
     7216                                                <MinTileRow>2915</MinTileRow>
     7217                                                <MaxTileRow>2919</MaxTileRow>
     7218                                                <MinTileCol>4063</MinTileCol>
     7219                                                <MaxTileCol>4068</MaxTileCol>
     7220                                        </TileMatrixLimits>
     7221                                        <TileMatrixLimits>
     7222                                                <TileMatrix>14</TileMatrix>
     7223                                                <MinTileRow>5831</MinTileRow>
     7224                                                <MaxTileRow>5838</MaxTileRow>
     7225                                                <MinTileCol>8126</MinTileCol>
     7226                                                <MaxTileCol>8136</MaxTileCol>
     7227                                        </TileMatrixLimits>
     7228                                        <TileMatrixLimits>
     7229                                                <TileMatrix>15</TileMatrix>
     7230                                                <MinTileRow>11662</MinTileRow>
     7231                                                <MaxTileRow>11677</MaxTileRow>
     7232                                                <MinTileCol>16252</MinTileCol>
     7233                                                <MaxTileCol>16273</MaxTileCol>
     7234                                        </TileMatrixLimits>
     7235                                        <TileMatrixLimits>
     7236                                                <TileMatrix>16</TileMatrix>
     7237                                                <MinTileRow>23325</MinTileRow>
     7238                                                <MaxTileRow>23354</MaxTileRow>
     7239                                                <MinTileCol>32505</MinTileCol>
     7240                                                <MaxTileCol>32546</MaxTileCol>
     7241                                        </TileMatrixLimits>
     7242                                        <TileMatrixLimits>
     7243                                                <TileMatrix>17</TileMatrix>
     7244                                                <MinTileRow>46650</MinTileRow>
     7245                                                <MaxTileRow>46709</MaxTileRow>
     7246                                                <MinTileCol>65010</MinTileCol>
     7247                                                <MaxTileCol>65093</MaxTileCol>
     7248                                        </TileMatrixLimits>
     7249                                        <TileMatrixLimits>
     7250                                                <TileMatrix>18</TileMatrix>
     7251                                                <MinTileRow>93300</MinTileRow>
     7252                                                <MaxTileRow>93418</MaxTileRow>
     7253                                                <MinTileCol>130020</MinTileCol>
     7254                                                <MaxTileCol>130186</MaxTileCol>
     7255                                        </TileMatrixLimits>
     7256                                        <TileMatrixLimits>
     7257                                                <TileMatrix>2</TileMatrix>
     7258                                                <MinTileRow>1</MinTileRow>
     7259                                                <MaxTileRow>1</MaxTileRow>
     7260                                                <MinTileCol>1</MinTileCol>
     7261                                                <MaxTileCol>1</MaxTileCol>
     7262                                        </TileMatrixLimits>
     7263                                        <TileMatrixLimits>
     7264                                                <TileMatrix>3</TileMatrix>
     7265                                                <MinTileRow>2</MinTileRow>
     7266                                                <MaxTileRow>2</MaxTileRow>
     7267                                                <MinTileCol>3</MinTileCol>
     7268                                                <MaxTileCol>3</MaxTileCol>
     7269                                        </TileMatrixLimits>
     7270                                        <TileMatrixLimits>
     7271                                                <TileMatrix>4</TileMatrix>
     7272                                                <MinTileRow>5</MinTileRow>
     7273                                                <MaxTileRow>5</MaxTileRow>
     7274                                                <MinTileCol>7</MinTileCol>
     7275                                                <MaxTileCol>7</MaxTileCol>
     7276                                        </TileMatrixLimits>
     7277                                        <TileMatrixLimits>
     7278                                                <TileMatrix>5</TileMatrix>
     7279                                                <MinTileRow>11</MinTileRow>
     7280                                                <MaxTileRow>11</MaxTileRow>
     7281                                                <MinTileCol>15</MinTileCol>
     7282                                                <MaxTileCol>15</MaxTileCol>
     7283                                        </TileMatrixLimits>
     7284                                        <TileMatrixLimits>
     7285                                                <TileMatrix>6</TileMatrix>
     7286                                                <MinTileRow>22</MinTileRow>
     7287                                                <MaxTileRow>22</MaxTileRow>
     7288                                                <MinTileCol>31</MinTileCol>
     7289                                                <MaxTileCol>31</MaxTileCol>
     7290                                        </TileMatrixLimits>
     7291                                        <TileMatrixLimits>
     7292                                                <TileMatrix>7</TileMatrix>
     7293                                                <MinTileRow>45</MinTileRow>
     7294                                                <MaxTileRow>45</MaxTileRow>
     7295                                                <MinTileCol>63</MinTileCol>
     7296                                                <MaxTileCol>63</MaxTileCol>
     7297                                        </TileMatrixLimits>
     7298                                        <TileMatrixLimits>
     7299                                                <TileMatrix>8</TileMatrix>
     7300                                                <MinTileRow>91</MinTileRow>
     7301                                                <MaxTileRow>91</MaxTileRow>
     7302                                                <MinTileCol>126</MinTileCol>
     7303                                                <MaxTileCol>127</MaxTileCol>
     7304                                        </TileMatrixLimits>
     7305                                        <TileMatrixLimits>
     7306                                                <TileMatrix>9</TileMatrix>
     7307                                                <MinTileRow>182</MinTileRow>
     7308                                                <MaxTileRow>182</MaxTileRow>
     7309                                                <MinTileCol>253</MinTileCol>
     7310                                                <MaxTileCol>254</MaxTileCol>
     7311                                        </TileMatrixLimits>
     7312                                </TileMatrixSetLimits>
     7313                        </TileMatrixSetLink>
     7314                </Layer>
     7315                <Layer>
     7316                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7317                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7318                        <ows:Keywords>
     7319                                <ows:Keyword>Photographies</ows:Keyword>
     7320                        </ows:Keywords>
     7321                        <ows:WGS84BoundingBox>
     7322                                <ows:LowerCorner>-1.16603 46.0283</ows:LowerCorner>
     7323                                <ows:UpperCorner>-0.803031 46.3998</ows:UpperCorner>
     7324                        </ows:WGS84BoundingBox>
     7325                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41005459</ows:Identifier>
     7326                        <Style isDefault="true">
     7327                                <ows:Title>Données Brutes</ows:Title>
     7328                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7329                                <ows:Keywords>
     7330                                        <ows:Keyword>Défaut</ows:Keyword>
     7331                                </ows:Keywords>
     7332                                <ows:Identifier>normal</ows:Identifier>
     7333                                <LegendURL format="image/jpeg" height="200"
     7334                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7335                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7336                        </Style>
     7337                        <Format>image/jpeg</Format>
     7338                        <TileMatrixSetLink>
     7339                                <TileMatrixSet>PM</TileMatrixSet>
     7340                                <TileMatrixSetLimits>
     7341                                        <TileMatrixLimits>
     7342                                                <TileMatrix>0</TileMatrix>
     7343                                                <MinTileRow>0</MinTileRow>
     7344                                                <MaxTileRow>0</MaxTileRow>
     7345                                                <MinTileCol>0</MinTileCol>
     7346                                                <MaxTileCol>0</MaxTileCol>
     7347                                        </TileMatrixLimits>
     7348                                        <TileMatrixLimits>
     7349                                                <TileMatrix>1</TileMatrix>
     7350                                                <MinTileRow>0</MinTileRow>
     7351                                                <MaxTileRow>0</MaxTileRow>
     7352                                                <MinTileCol>0</MinTileCol>
     7353                                                <MaxTileCol>0</MaxTileCol>
     7354                                        </TileMatrixLimits>
     7355                                        <TileMatrixLimits>
     7356                                                <TileMatrix>10</TileMatrix>
     7357                                                <MinTileRow>362</MinTileRow>
     7358                                                <MaxTileRow>364</MaxTileRow>
     7359                                                <MinTileCol>508</MinTileCol>
     7360                                                <MaxTileCol>509</MaxTileCol>
     7361                                        </TileMatrixLimits>
     7362                                        <TileMatrixLimits>
     7363                                                <TileMatrix>11</TileMatrix>
     7364                                                <MinTileRow>725</MinTileRow>
     7365                                                <MaxTileRow>728</MaxTileRow>
     7366                                                <MinTileCol>1017</MinTileCol>
     7367                                                <MaxTileCol>1019</MaxTileCol>
     7368                                        </TileMatrixLimits>
     7369                                        <TileMatrixLimits>
     7370                                                <TileMatrix>12</TileMatrix>
     7371                                                <MinTileRow>1450</MinTileRow>
     7372                                                <MaxTileRow>1456</MaxTileRow>
     7373                                                <MinTileCol>2034</MinTileCol>
     7374                                                <MaxTileCol>2038</MaxTileCol>
     7375                                        </TileMatrixLimits>
     7376                                        <TileMatrixLimits>
     7377                                                <TileMatrix>13</TileMatrix>
     7378                                                <MinTileRow>2901</MinTileRow>
     7379                                                <MaxTileRow>2913</MaxTileRow>
     7380                                                <MinTileCol>4069</MinTileCol>
     7381                                                <MaxTileCol>4077</MaxTileCol>
     7382                                        </TileMatrixLimits>
     7383                                        <TileMatrixLimits>
     7384                                                <TileMatrix>14</TileMatrix>
     7385                                                <MinTileRow>5802</MinTileRow>
     7386                                                <MaxTileRow>5826</MaxTileRow>
     7387                                                <MinTileCol>8139</MinTileCol>
     7388                                                <MaxTileCol>8154</MaxTileCol>
     7389                                        </TileMatrixLimits>
     7390                                        <TileMatrixLimits>
     7391                                                <TileMatrix>15</TileMatrix>
     7392                                                <MinTileRow>11605</MinTileRow>
     7393                                                <MaxTileRow>11652</MaxTileRow>
     7394                                                <MinTileCol>16279</MinTileCol>
     7395                                                <MaxTileCol>16309</MaxTileCol>
     7396                                        </TileMatrixLimits>
     7397                                        <TileMatrixLimits>
     7398                                                <TileMatrix>16</TileMatrix>
     7399                                                <MinTileRow>23210</MinTileRow>
     7400                                                <MaxTileRow>23305</MaxTileRow>
     7401                                                <MinTileCol>32559</MinTileCol>
     7402                                                <MaxTileCol>32618</MaxTileCol>
     7403                                        </TileMatrixLimits>
     7404                                        <TileMatrixLimits>
     7405                                                <TileMatrix>17</TileMatrix>
     7406                                                <MinTileRow>46421</MinTileRow>
     7407                                                <MaxTileRow>46611</MaxTileRow>
     7408                                                <MinTileCol>65119</MinTileCol>
     7409                                                <MaxTileCol>65237</MaxTileCol>
     7410                                        </TileMatrixLimits>
     7411                                        <TileMatrixLimits>
     7412                                                <TileMatrix>18</TileMatrix>
     7413                                                <MinTileRow>92842</MinTileRow>
     7414                                                <MaxTileRow>93222</MaxTileRow>
     7415                                                <MinTileCol>130238</MinTileCol>
     7416                                                <MaxTileCol>130475</MaxTileCol>
     7417                                        </TileMatrixLimits>
     7418                                        <TileMatrixLimits>
     7419                                                <TileMatrix>2</TileMatrix>
     7420                                                <MinTileRow>1</MinTileRow>
     7421                                                <MaxTileRow>1</MaxTileRow>
     7422                                                <MinTileCol>1</MinTileCol>
     7423                                                <MaxTileCol>1</MaxTileCol>
     7424                                        </TileMatrixLimits>
     7425                                        <TileMatrixLimits>
     7426                                                <TileMatrix>3</TileMatrix>
     7427                                                <MinTileRow>2</MinTileRow>
     7428                                                <MaxTileRow>2</MaxTileRow>
     7429                                                <MinTileCol>3</MinTileCol>
     7430                                                <MaxTileCol>3</MaxTileCol>
     7431                                        </TileMatrixLimits>
     7432                                        <TileMatrixLimits>
     7433                                                <TileMatrix>4</TileMatrix>
     7434                                                <MinTileRow>5</MinTileRow>
     7435                                                <MaxTileRow>5</MaxTileRow>
     7436                                                <MinTileCol>7</MinTileCol>
     7437                                                <MaxTileCol>7</MaxTileCol>
     7438                                        </TileMatrixLimits>
     7439                                        <TileMatrixLimits>
     7440                                                <TileMatrix>5</TileMatrix>
     7441                                                <MinTileRow>11</MinTileRow>
     7442                                                <MaxTileRow>11</MaxTileRow>
     7443                                                <MinTileCol>15</MinTileCol>
     7444                                                <MaxTileCol>15</MaxTileCol>
     7445                                        </TileMatrixLimits>
     7446                                        <TileMatrixLimits>
     7447                                                <TileMatrix>6</TileMatrix>
     7448                                                <MinTileRow>22</MinTileRow>
     7449                                                <MaxTileRow>22</MaxTileRow>
     7450                                                <MinTileCol>31</MinTileCol>
     7451                                                <MaxTileCol>31</MaxTileCol>
     7452                                        </TileMatrixLimits>
     7453                                        <TileMatrixLimits>
     7454                                                <TileMatrix>7</TileMatrix>
     7455                                                <MinTileRow>45</MinTileRow>
     7456                                                <MaxTileRow>45</MaxTileRow>
     7457                                                <MinTileCol>63</MinTileCol>
     7458                                                <MaxTileCol>63</MaxTileCol>
     7459                                        </TileMatrixLimits>
     7460                                        <TileMatrixLimits>
     7461                                                <TileMatrix>8</TileMatrix>
     7462                                                <MinTileRow>90</MinTileRow>
     7463                                                <MaxTileRow>91</MaxTileRow>
     7464                                                <MinTileCol>127</MinTileCol>
     7465                                                <MaxTileCol>127</MaxTileCol>
     7466                                        </TileMatrixLimits>
     7467                                        <TileMatrixLimits>
     7468                                                <TileMatrix>9</TileMatrix>
     7469                                                <MinTileRow>181</MinTileRow>
     7470                                                <MaxTileRow>182</MaxTileRow>
     7471                                                <MinTileCol>254</MinTileCol>
     7472                                                <MaxTileCol>254</MaxTileCol>
     7473                                        </TileMatrixLimits>
     7474                                </TileMatrixSetLimits>
     7475                        </TileMatrixSetLink>
     7476                </Layer>
     7477                <Layer>
     7478                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7479                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7480                        <ows:Keywords>
     7481                                <ows:Keyword>Photographies</ows:Keyword>
     7482                        </ows:Keywords>
     7483                        <ows:WGS84BoundingBox>
     7484                                <ows:LowerCorner>-1.397 45.9836</ows:LowerCorner>
     7485                                <ows:UpperCorner>-1.01993 46.3562</ows:UpperCorner>
     7486                        </ows:WGS84BoundingBox>
     7487                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41018576</ows:Identifier>
     7488                        <Style isDefault="true">
     7489                                <ows:Title>Données Brutes</ows:Title>
     7490                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7491                                <ows:Keywords>
     7492                                        <ows:Keyword>Défaut</ows:Keyword>
     7493                                </ows:Keywords>
     7494                                <ows:Identifier>normal</ows:Identifier>
     7495                                <LegendURL format="image/jpeg" height="200"
     7496                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7497                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7498                        </Style>
     7499                        <Format>image/jpeg</Format>
     7500                        <TileMatrixSetLink>
     7501                                <TileMatrixSet>PM</TileMatrixSet>
     7502                                <TileMatrixSetLimits>
     7503                                        <TileMatrixLimits>
     7504                                                <TileMatrix>0</TileMatrix>
     7505                                                <MinTileRow>0</MinTileRow>
     7506                                                <MaxTileRow>0</MaxTileRow>
     7507                                                <MinTileCol>0</MinTileCol>
     7508                                                <MaxTileCol>0</MaxTileCol>
     7509                                        </TileMatrixLimits>
     7510                                        <TileMatrixLimits>
     7511                                                <TileMatrix>1</TileMatrix>
     7512                                                <MinTileRow>0</MinTileRow>
     7513                                                <MaxTileRow>0</MaxTileRow>
     7514                                                <MinTileCol>0</MinTileCol>
     7515                                                <MaxTileCol>0</MaxTileCol>
     7516                                        </TileMatrixLimits>
     7517                                        <TileMatrixLimits>
     7518                                                <TileMatrix>10</TileMatrix>
     7519                                                <MinTileRow>362</MinTileRow>
     7520                                                <MaxTileRow>364</MaxTileRow>
     7521                                                <MinTileCol>508</MinTileCol>
     7522                                                <MaxTileCol>509</MaxTileCol>
     7523                                        </TileMatrixLimits>
     7524                                        <TileMatrixLimits>
     7525                                                <TileMatrix>11</TileMatrix>
     7526                                                <MinTileRow>725</MinTileRow>
     7527                                                <MaxTileRow>728</MaxTileRow>
     7528                                                <MinTileCol>1016</MinTileCol>
     7529                                                <MaxTileCol>1018</MaxTileCol>
     7530                                        </TileMatrixLimits>
     7531                                        <TileMatrixLimits>
     7532                                                <TileMatrix>12</TileMatrix>
     7533                                                <MinTileRow>1451</MinTileRow>
     7534                                                <MaxTileRow>1457</MaxTileRow>
     7535                                                <MinTileCol>2032</MinTileCol>
     7536                                                <MaxTileCol>2036</MaxTileCol>
     7537                                        </TileMatrixLimits>
     7538                                        <TileMatrixLimits>
     7539                                                <TileMatrix>13</TileMatrix>
     7540                                                <MinTileRow>2902</MinTileRow>
     7541                                                <MaxTileRow>2914</MaxTileRow>
     7542                                                <MinTileCol>4064</MinTileCol>
     7543                                                <MaxTileCol>4072</MaxTileCol>
     7544                                        </TileMatrixLimits>
     7545                                        <TileMatrixLimits>
     7546                                                <TileMatrix>14</TileMatrix>
     7547                                                <MinTileRow>5805</MinTileRow>
     7548                                                <MaxTileRow>5829</MaxTileRow>
     7549                                                <MinTileCol>8129</MinTileCol>
     7550                                                <MaxTileCol>8144</MaxTileCol>
     7551                                        </TileMatrixLimits>
     7552                                        <TileMatrixLimits>
     7553                                                <TileMatrix>15</TileMatrix>
     7554                                                <MinTileRow>11610</MinTileRow>
     7555                                                <MaxTileRow>11658</MaxTileRow>
     7556                                                <MinTileCol>16259</MinTileCol>
     7557                                                <MaxTileCol>16289</MaxTileCol>
     7558                                        </TileMatrixLimits>
     7559                                        <TileMatrixLimits>
     7560                                                <TileMatrix>16</TileMatrix>
     7561                                                <MinTileRow>23221</MinTileRow>
     7562                                                <MaxTileRow>23316</MaxTileRow>
     7563                                                <MinTileCol>32518</MinTileCol>
     7564                                                <MaxTileCol>32578</MaxTileCol>
     7565                                        </TileMatrixLimits>
     7566                                        <TileMatrixLimits>
     7567                                                <TileMatrix>17</TileMatrix>
     7568                                                <MinTileRow>46443</MinTileRow>
     7569                                                <MaxTileRow>46633</MaxTileRow>
     7570                                                <MinTileCol>65036</MinTileCol>
     7571                                                <MaxTileCol>65156</MaxTileCol>
     7572                                        </TileMatrixLimits>
     7573                                        <TileMatrixLimits>
     7574                                                <TileMatrix>18</TileMatrix>
     7575                                                <MinTileRow>92886</MinTileRow>
     7576                                                <MaxTileRow>93267</MaxTileRow>
     7577                                                <MinTileCol>130073</MinTileCol>
     7578                                                <MaxTileCol>130312</MaxTileCol>
     7579                                        </TileMatrixLimits>
     7580                                        <TileMatrixLimits>
     7581                                                <TileMatrix>2</TileMatrix>
     7582                                                <MinTileRow>1</MinTileRow>
     7583                                                <MaxTileRow>1</MaxTileRow>
     7584                                                <MinTileCol>1</MinTileCol>
     7585                                                <MaxTileCol>1</MaxTileCol>
     7586                                        </TileMatrixLimits>
     7587                                        <TileMatrixLimits>
     7588                                                <TileMatrix>3</TileMatrix>
     7589                                                <MinTileRow>2</MinTileRow>
     7590                                                <MaxTileRow>2</MaxTileRow>
     7591                                                <MinTileCol>3</MinTileCol>
     7592                                                <MaxTileCol>3</MaxTileCol>
     7593                                        </TileMatrixLimits>
     7594                                        <TileMatrixLimits>
     7595                                                <TileMatrix>4</TileMatrix>
     7596                                                <MinTileRow>5</MinTileRow>
     7597                                                <MaxTileRow>5</MaxTileRow>
     7598                                                <MinTileCol>7</MinTileCol>
     7599                                                <MaxTileCol>7</MaxTileCol>
     7600                                        </TileMatrixLimits>
     7601                                        <TileMatrixLimits>
     7602                                                <TileMatrix>5</TileMatrix>
     7603                                                <MinTileRow>11</MinTileRow>
     7604                                                <MaxTileRow>11</MaxTileRow>
     7605                                                <MinTileCol>15</MinTileCol>
     7606                                                <MaxTileCol>15</MaxTileCol>
     7607                                        </TileMatrixLimits>
     7608                                        <TileMatrixLimits>
     7609                                                <TileMatrix>6</TileMatrix>
     7610                                                <MinTileRow>22</MinTileRow>
     7611                                                <MaxTileRow>22</MaxTileRow>
     7612                                                <MinTileCol>31</MinTileCol>
     7613                                                <MaxTileCol>31</MaxTileCol>
     7614                                        </TileMatrixLimits>
     7615                                        <TileMatrixLimits>
     7616                                                <TileMatrix>7</TileMatrix>
     7617                                                <MinTileRow>45</MinTileRow>
     7618                                                <MaxTileRow>45</MaxTileRow>
     7619                                                <MinTileCol>63</MinTileCol>
     7620                                                <MaxTileCol>63</MaxTileCol>
     7621                                        </TileMatrixLimits>
     7622                                        <TileMatrixLimits>
     7623                                                <TileMatrix>8</TileMatrix>
     7624                                                <MinTileRow>90</MinTileRow>
     7625                                                <MaxTileRow>91</MaxTileRow>
     7626                                                <MinTileCol>127</MinTileCol>
     7627                                                <MaxTileCol>127</MaxTileCol>
     7628                                        </TileMatrixLimits>
     7629                                        <TileMatrixLimits>
     7630                                                <TileMatrix>9</TileMatrix>
     7631                                                <MinTileRow>181</MinTileRow>
     7632                                                <MaxTileRow>182</MaxTileRow>
     7633                                                <MinTileCol>254</MinTileCol>
     7634                                                <MaxTileCol>254</MaxTileCol>
     7635                                        </TileMatrixLimits>
     7636                                </TileMatrixSetLimits>
     7637                        </TileMatrixSetLink>
     7638                </Layer>
     7639                <Layer>
     7640                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7641                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7642                        <ows:Keywords>
     7643                                <ows:Keyword>Photographies</ows:Keyword>
     7644                        </ows:Keywords>
     7645                        <ows:WGS84BoundingBox>
     7646                                <ows:LowerCorner>-1.33324 45.571</ows:LowerCorner>
     7647                                <ows:UpperCorner>-1.01553 45.8786</ows:UpperCorner>
     7648                        </ows:WGS84BoundingBox>
     7649                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-11-41029325</ows:Identifier>
     7650                        <Style isDefault="true">
     7651                                <ows:Title>Données Brutes</ows:Title>
     7652                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7653                                <ows:Keywords>
     7654                                        <ows:Keyword>Défaut</ows:Keyword>
     7655                                </ows:Keywords>
     7656                                <ows:Identifier>normal</ows:Identifier>
     7657                                <LegendURL format="image/jpeg" height="200"
     7658                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7659                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7660                        </Style>
     7661                        <Format>image/jpeg</Format>
     7662                        <TileMatrixSetLink>
     7663                                <TileMatrixSet>PM</TileMatrixSet>
     7664                                <TileMatrixSetLimits>
     7665                                        <TileMatrixLimits>
     7666                                                <TileMatrix>0</TileMatrix>
     7667                                                <MinTileRow>0</MinTileRow>
     7668                                                <MaxTileRow>0</MaxTileRow>
     7669                                                <MinTileCol>0</MinTileCol>
     7670                                                <MaxTileCol>0</MaxTileCol>
     7671                                        </TileMatrixLimits>
     7672                                        <TileMatrixLimits>
     7673                                                <TileMatrix>1</TileMatrix>
     7674                                                <MinTileRow>0</MinTileRow>
     7675                                                <MaxTileRow>0</MaxTileRow>
     7676                                                <MinTileCol>0</MinTileCol>
     7677                                                <MaxTileCol>0</MaxTileCol>
     7678                                        </TileMatrixLimits>
     7679                                        <TileMatrixLimits>
     7680                                                <TileMatrix>10</TileMatrix>
     7681                                                <MinTileRow>364</MinTileRow>
     7682                                                <MaxTileRow>366</MaxTileRow>
     7683                                                <MinTileCol>508</MinTileCol>
     7684                                                <MaxTileCol>509</MaxTileCol>
     7685                                        </TileMatrixLimits>
     7686                                        <TileMatrixLimits>
     7687                                                <TileMatrix>11</TileMatrix>
     7688                                                <MinTileRow>729</MinTileRow>
     7689                                                <MaxTileRow>732</MaxTileRow>
     7690                                                <MinTileCol>1016</MinTileCol>
     7691                                                <MaxTileCol>1018</MaxTileCol>
     7692                                        </TileMatrixLimits>
     7693                                        <TileMatrixLimits>
     7694                                                <TileMatrix>12</TileMatrix>
     7695                                                <MinTileRow>1459</MinTileRow>
     7696                                                <MaxTileRow>1464</MaxTileRow>
     7697                                                <MinTileCol>2032</MinTileCol>
     7698                                                <MaxTileCol>2036</MaxTileCol>
     7699                                        </TileMatrixLimits>
     7700                                        <TileMatrixLimits>
     7701                                                <TileMatrix>13</TileMatrix>
     7702                                                <MinTileRow>2918</MinTileRow>
     7703                                                <MaxTileRow>2928</MaxTileRow>
     7704                                                <MinTileCol>4065</MinTileCol>
     7705                                                <MaxTileCol>4072</MaxTileCol>
     7706                                        </TileMatrixLimits>
     7707                                        <TileMatrixLimits>
     7708                                                <TileMatrix>14</TileMatrix>
     7709                                                <MinTileRow>5837</MinTileRow>
     7710                                                <MaxTileRow>5856</MaxTileRow>
     7711                                                <MinTileCol>8131</MinTileCol>
     7712                                                <MaxTileCol>8145</MaxTileCol>
     7713                                        </TileMatrixLimits>
     7714                                        <TileMatrixLimits>
     7715                                                <TileMatrix>15</TileMatrix>
     7716                                                <MinTileRow>11674</MinTileRow>
     7717                                                <MaxTileRow>11712</MaxTileRow>
     7718                                                <MinTileCol>16262</MinTileCol>
     7719                                                <MaxTileCol>16290</MaxTileCol>
     7720                                        </TileMatrixLimits>
     7721                                        <TileMatrixLimits>
     7722                                                <TileMatrix>16</TileMatrix>
     7723                                                <MinTileRow>23348</MinTileRow>
     7724                                                <MaxTileRow>23424</MaxTileRow>
     7725                                                <MinTileCol>32525</MinTileCol>
     7726                                                <MaxTileCol>32580</MaxTileCol>
     7727                                        </TileMatrixLimits>
     7728                                        <TileMatrixLimits>
     7729                                                <TileMatrix>17</TileMatrix>
     7730                                                <MinTileRow>46697</MinTileRow>
     7731                                                <MaxTileRow>46849</MaxTileRow>
     7732                                                <MinTileCol>65050</MinTileCol>
     7733                                                <MaxTileCol>65161</MaxTileCol>
     7734                                        </TileMatrixLimits>
     7735                                        <TileMatrixLimits>
     7736                                                <TileMatrix>18</TileMatrix>
     7737                                                <MinTileRow>93394</MinTileRow>
     7738                                                <MaxTileRow>93699</MaxTileRow>
     7739                                                <MinTileCol>130100</MinTileCol>
     7740                                                <MaxTileCol>130322</MaxTileCol>
     7741                                        </TileMatrixLimits>
     7742                                        <TileMatrixLimits>
     7743                                                <TileMatrix>2</TileMatrix>
     7744                                                <MinTileRow>1</MinTileRow>
     7745                                                <MaxTileRow>1</MaxTileRow>
     7746                                                <MinTileCol>1</MinTileCol>
     7747                                                <MaxTileCol>1</MaxTileCol>
     7748                                        </TileMatrixLimits>
     7749                                        <TileMatrixLimits>
     7750                                                <TileMatrix>3</TileMatrix>
     7751                                                <MinTileRow>2</MinTileRow>
     7752                                                <MaxTileRow>2</MaxTileRow>
     7753                                                <MinTileCol>3</MinTileCol>
     7754                                                <MaxTileCol>3</MaxTileCol>
     7755                                        </TileMatrixLimits>
     7756                                        <TileMatrixLimits>
     7757                                                <TileMatrix>4</TileMatrix>
     7758                                                <MinTileRow>5</MinTileRow>
     7759                                                <MaxTileRow>5</MaxTileRow>
     7760                                                <MinTileCol>7</MinTileCol>
     7761                                                <MaxTileCol>7</MaxTileCol>
     7762                                        </TileMatrixLimits>
     7763                                        <TileMatrixLimits>
     7764                                                <TileMatrix>5</TileMatrix>
     7765                                                <MinTileRow>11</MinTileRow>
     7766                                                <MaxTileRow>11</MaxTileRow>
     7767                                                <MinTileCol>15</MinTileCol>
     7768                                                <MaxTileCol>15</MaxTileCol>
     7769                                        </TileMatrixLimits>
     7770                                        <TileMatrixLimits>
     7771                                                <TileMatrix>6</TileMatrix>
     7772                                                <MinTileRow>22</MinTileRow>
     7773                                                <MaxTileRow>22</MaxTileRow>
     7774                                                <MinTileCol>31</MinTileCol>
     7775                                                <MaxTileCol>31</MaxTileCol>
     7776                                        </TileMatrixLimits>
     7777                                        <TileMatrixLimits>
     7778                                                <TileMatrix>7</TileMatrix>
     7779                                                <MinTileRow>45</MinTileRow>
     7780                                                <MaxTileRow>45</MaxTileRow>
     7781                                                <MinTileCol>63</MinTileCol>
     7782                                                <MaxTileCol>63</MaxTileCol>
     7783                                        </TileMatrixLimits>
     7784                                        <TileMatrixLimits>
     7785                                                <TileMatrix>8</TileMatrix>
     7786                                                <MinTileRow>91</MinTileRow>
     7787                                                <MaxTileRow>91</MaxTileRow>
     7788                                                <MinTileCol>127</MinTileCol>
     7789                                                <MaxTileCol>127</MaxTileCol>
     7790                                        </TileMatrixLimits>
     7791                                        <TileMatrixLimits>
     7792                                                <TileMatrix>9</TileMatrix>
     7793                                                <MinTileRow>182</MinTileRow>
     7794                                                <MaxTileRow>183</MaxTileRow>
     7795                                                <MinTileCol>254</MinTileCol>
     7796                                                <MaxTileCol>254</MaxTileCol>
     7797                                        </TileMatrixLimits>
     7798                                </TileMatrixSetLimits>
     7799                        </TileMatrixSetLink>
     7800                </Layer>
     7801                <Layer>
     7802                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7803                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7804                        <ows:Keywords>
     7805                                <ows:Keyword>Photographies</ows:Keyword>
     7806                        </ows:Keywords>
     7807                        <ows:WGS84BoundingBox>
     7808                                <ows:LowerCorner>-0.503355 45.0597</ows:LowerCorner>
     7809                                <ows:UpperCorner>-0.113846 45.8166</ows:UpperCorner>
     7810                        </ows:WGS84BoundingBox>
     7811                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-18-40793951</ows:Identifier>
     7812                        <Style isDefault="true">
     7813                                <ows:Title>Données Brutes</ows:Title>
     7814                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7815                                <ows:Keywords>
     7816                                        <ows:Keyword>Défaut</ows:Keyword>
     7817                                </ows:Keywords>
     7818                                <ows:Identifier>normal</ows:Identifier>
     7819                                <LegendURL format="image/jpeg" height="200"
     7820                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7821                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7822                        </Style>
     7823                        <Format>image/jpeg</Format>
     7824                        <TileMatrixSetLink>
     7825                                <TileMatrixSet>PM</TileMatrixSet>
     7826                                <TileMatrixSetLimits>
     7827                                        <TileMatrixLimits>
     7828                                                <TileMatrix>0</TileMatrix>
     7829                                                <MinTileRow>0</MinTileRow>
     7830                                                <MaxTileRow>0</MaxTileRow>
     7831                                                <MinTileCol>0</MinTileCol>
     7832                                                <MaxTileCol>0</MaxTileCol>
     7833                                        </TileMatrixLimits>
     7834                                        <TileMatrixLimits>
     7835                                                <TileMatrix>1</TileMatrix>
     7836                                                <MinTileRow>0</MinTileRow>
     7837                                                <MaxTileRow>0</MaxTileRow>
     7838                                                <MinTileCol>0</MinTileCol>
     7839                                                <MaxTileCol>0</MaxTileCol>
     7840                                        </TileMatrixLimits>
     7841                                        <TileMatrixLimits>
     7842                                                <TileMatrix>10</TileMatrix>
     7843                                                <MinTileRow>365</MinTileRow>
     7844                                                <MaxTileRow>368</MaxTileRow>
     7845                                                <MinTileCol>510</MinTileCol>
     7846                                                <MaxTileCol>511</MaxTileCol>
     7847                                        </TileMatrixLimits>
     7848                                        <TileMatrixLimits>
     7849                                                <TileMatrix>11</TileMatrix>
     7850                                                <MinTileRow>730</MinTileRow>
     7851                                                <MaxTileRow>736</MaxTileRow>
     7852                                                <MinTileCol>1021</MinTileCol>
     7853                                                <MaxTileCol>1023</MaxTileCol>
     7854                                        </TileMatrixLimits>
     7855                                        <TileMatrixLimits>
     7856                                                <TileMatrix>12</TileMatrix>
     7857                                                <MinTileRow>1460</MinTileRow>
     7858                                                <MaxTileRow>1472</MaxTileRow>
     7859                                                <MinTileCol>2042</MinTileCol>
     7860                                                <MaxTileCol>2046</MaxTileCol>
     7861                                        </TileMatrixLimits>
     7862                                        <TileMatrixLimits>
     7863                                                <TileMatrix>13</TileMatrix>
     7864                                                <MinTileRow>2920</MinTileRow>
     7865                                                <MaxTileRow>2944</MaxTileRow>
     7866                                                <MinTileCol>4085</MinTileCol>
     7867                                                <MaxTileCol>4092</MaxTileCol>
     7868                                        </TileMatrixLimits>
     7869                                        <TileMatrixLimits>
     7870                                                <TileMatrix>14</TileMatrix>
     7871                                                <MinTileRow>5841</MinTileRow>
     7872                                                <MaxTileRow>5889</MaxTileRow>
     7873                                                <MinTileCol>8170</MinTileCol>
     7874                                                <MaxTileCol>8185</MaxTileCol>
     7875                                        </TileMatrixLimits>
     7876                                        <TileMatrixLimits>
     7877                                                <TileMatrix>15</TileMatrix>
     7878                                                <MinTileRow>11682</MinTileRow>
     7879                                                <MaxTileRow>11778</MaxTileRow>
     7880                                                <MinTileCol>16341</MinTileCol>
     7881                                                <MaxTileCol>16370</MaxTileCol>
     7882                                        </TileMatrixLimits>
     7883                                        <TileMatrixLimits>
     7884                                                <TileMatrix>16</TileMatrix>
     7885                                                <MinTileRow>23364</MinTileRow>
     7886                                                <MaxTileRow>23557</MaxTileRow>
     7887                                                <MinTileCol>32682</MinTileCol>
     7888                                                <MaxTileCol>32740</MaxTileCol>
     7889                                        </TileMatrixLimits>
     7890                                        <TileMatrixLimits>
     7891                                                <TileMatrix>17</TileMatrix>
     7892                                                <MinTileRow>46728</MinTileRow>
     7893                                                <MaxTileRow>47115</MaxTileRow>
     7894                                                <MinTileCol>65364</MinTileCol>
     7895                                                <MaxTileCol>65480</MaxTileCol>
     7896                                        </TileMatrixLimits>
     7897                                        <TileMatrixLimits>
     7898                                                <TileMatrix>18</TileMatrix>
     7899                                                <MinTileRow>93456</MinTileRow>
     7900                                                <MaxTileRow>94231</MaxTileRow>
     7901                                                <MinTileCol>130728</MinTileCol>
     7902                                                <MaxTileCol>130961</MaxTileCol>
     7903                                        </TileMatrixLimits>
     7904                                        <TileMatrixLimits>
     7905                                                <TileMatrix>2</TileMatrix>
     7906                                                <MinTileRow>1</MinTileRow>
     7907                                                <MaxTileRow>1</MaxTileRow>
     7908                                                <MinTileCol>1</MinTileCol>
     7909                                                <MaxTileCol>1</MaxTileCol>
     7910                                        </TileMatrixLimits>
     7911                                        <TileMatrixLimits>
     7912                                                <TileMatrix>3</TileMatrix>
     7913                                                <MinTileRow>2</MinTileRow>
     7914                                                <MaxTileRow>2</MaxTileRow>
     7915                                                <MinTileCol>3</MinTileCol>
     7916                                                <MaxTileCol>3</MaxTileCol>
     7917                                        </TileMatrixLimits>
     7918                                        <TileMatrixLimits>
     7919                                                <TileMatrix>4</TileMatrix>
     7920                                                <MinTileRow>5</MinTileRow>
     7921                                                <MaxTileRow>5</MaxTileRow>
     7922                                                <MinTileCol>7</MinTileCol>
     7923                                                <MaxTileCol>7</MaxTileCol>
     7924                                        </TileMatrixLimits>
     7925                                        <TileMatrixLimits>
     7926                                                <TileMatrix>5</TileMatrix>
     7927                                                <MinTileRow>11</MinTileRow>
     7928                                                <MaxTileRow>11</MaxTileRow>
     7929                                                <MinTileCol>15</MinTileCol>
     7930                                                <MaxTileCol>15</MaxTileCol>
     7931                                        </TileMatrixLimits>
     7932                                        <TileMatrixLimits>
     7933                                                <TileMatrix>6</TileMatrix>
     7934                                                <MinTileRow>22</MinTileRow>
     7935                                                <MaxTileRow>23</MaxTileRow>
     7936                                                <MinTileCol>31</MinTileCol>
     7937                                                <MaxTileCol>31</MaxTileCol>
     7938                                        </TileMatrixLimits>
     7939                                        <TileMatrixLimits>
     7940                                                <TileMatrix>7</TileMatrix>
     7941                                                <MinTileRow>45</MinTileRow>
     7942                                                <MaxTileRow>46</MaxTileRow>
     7943                                                <MinTileCol>63</MinTileCol>
     7944                                                <MaxTileCol>63</MaxTileCol>
     7945                                        </TileMatrixLimits>
     7946                                        <TileMatrixLimits>
     7947                                                <TileMatrix>8</TileMatrix>
     7948                                                <MinTileRow>91</MinTileRow>
     7949                                                <MaxTileRow>92</MaxTileRow>
     7950                                                <MinTileCol>127</MinTileCol>
     7951                                                <MaxTileCol>127</MaxTileCol>
     7952                                        </TileMatrixLimits>
     7953                                        <TileMatrixLimits>
     7954                                                <TileMatrix>9</TileMatrix>
     7955                                                <MinTileRow>182</MinTileRow>
     7956                                                <MaxTileRow>184</MaxTileRow>
     7957                                                <MinTileCol>255</MinTileCol>
     7958                                                <MaxTileCol>255</MaxTileCol>
     7959                                        </TileMatrixLimits>
     7960                                </TileMatrixSetLimits>
     7961                        </TileMatrixSetLink>
     7962                </Layer>
     7963                <Layer>
     7964                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     7965                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     7966                        <ows:Keywords>
     7967                                <ows:Keyword>Photographies</ows:Keyword>
     7968                        </ows:Keywords>
     7969                        <ows:WGS84BoundingBox>
     7970                                <ows:LowerCorner>-0.923963 45.2793</ows:LowerCorner>
     7971                                <ows:UpperCorner>-0.5858 45.5688</ows:UpperCorner>
     7972                        </ows:WGS84BoundingBox>
     7973                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-18-40814075</ows:Identifier>
     7974                        <Style isDefault="true">
     7975                                <ows:Title>Données Brutes</ows:Title>
     7976                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     7977                                <ows:Keywords>
     7978                                        <ows:Keyword>Défaut</ows:Keyword>
     7979                                </ows:Keywords>
     7980                                <ows:Identifier>normal</ows:Identifier>
     7981                                <LegendURL format="image/jpeg" height="200"
     7982                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     7983                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     7984                        </Style>
     7985                        <Format>image/jpeg</Format>
     7986                        <TileMatrixSetLink>
     7987                                <TileMatrixSet>PM</TileMatrixSet>
     7988                                <TileMatrixSetLimits>
     7989                                        <TileMatrixLimits>
     7990                                                <TileMatrix>0</TileMatrix>
     7991                                                <MinTileRow>0</MinTileRow>
     7992                                                <MaxTileRow>0</MaxTileRow>
     7993                                                <MinTileCol>0</MinTileCol>
     7994                                                <MaxTileCol>0</MaxTileCol>
     7995                                        </TileMatrixLimits>
     7996                                        <TileMatrixLimits>
     7997                                                <TileMatrix>1</TileMatrix>
     7998                                                <MinTileRow>0</MinTileRow>
     7999                                                <MaxTileRow>0</MaxTileRow>
     8000                                                <MinTileCol>0</MinTileCol>
     8001                                                <MaxTileCol>0</MaxTileCol>
     8002                                        </TileMatrixLimits>
     8003                                        <TileMatrixLimits>
     8004                                                <TileMatrix>10</TileMatrix>
     8005                                                <MinTileRow>366</MinTileRow>
     8006                                                <MaxTileRow>367</MaxTileRow>
     8007                                                <MinTileCol>509</MinTileCol>
     8008                                                <MaxTileCol>510</MaxTileCol>
     8009                                        </TileMatrixLimits>
     8010                                        <TileMatrixLimits>
     8011                                                <TileMatrix>11</TileMatrix>
     8012                                                <MinTileRow>732</MinTileRow>
     8013                                                <MaxTileRow>734</MaxTileRow>
     8014                                                <MinTileCol>1018</MinTileCol>
     8015                                                <MaxTileCol>1020</MaxTileCol>
     8016                                        </TileMatrixLimits>
     8017                                        <TileMatrixLimits>
     8018                                                <TileMatrix>12</TileMatrix>
     8019                                                <MinTileRow>1464</MinTileRow>
     8020                                                <MaxTileRow>1468</MaxTileRow>
     8021                                                <MinTileCol>2037</MinTileCol>
     8022                                                <MaxTileCol>2041</MaxTileCol>
     8023                                        </TileMatrixLimits>
     8024                                        <TileMatrixLimits>
     8025                                                <TileMatrix>13</TileMatrix>
     8026                                                <MinTileRow>2928</MinTileRow>
     8027                                                <MaxTileRow>2937</MaxTileRow>
     8028                                                <MinTileCol>4075</MinTileCol>
     8029                                                <MaxTileCol>4082</MaxTileCol>
     8030                                        </TileMatrixLimits>
     8031                                        <TileMatrixLimits>
     8032                                                <TileMatrix>14</TileMatrix>
     8033                                                <MinTileRow>5856</MinTileRow>
     8034                                                <MaxTileRow>5875</MaxTileRow>
     8035                                                <MinTileCol>8150</MinTileCol>
     8036                                                <MaxTileCol>8164</MaxTileCol>
     8037                                        </TileMatrixLimits>
     8038                                        <TileMatrixLimits>
     8039                                                <TileMatrix>15</TileMatrix>
     8040                                                <MinTileRow>11713</MinTileRow>
     8041                                                <MaxTileRow>11750</MaxTileRow>
     8042                                                <MinTileCol>16300</MinTileCol>
     8043                                                <MaxTileCol>16329</MaxTileCol>
     8044                                        </TileMatrixLimits>
     8045                                        <TileMatrixLimits>
     8046                                                <TileMatrix>16</TileMatrix>
     8047                                                <MinTileRow>23427</MinTileRow>
     8048                                                <MaxTileRow>23500</MaxTileRow>
     8049                                                <MinTileCol>32600</MinTileCol>
     8050                                                <MaxTileCol>32659</MaxTileCol>
     8051                                        </TileMatrixLimits>
     8052                                        <TileMatrixLimits>
     8053                                                <TileMatrix>17</TileMatrix>
     8054                                                <MinTileRow>46855</MinTileRow>
     8055                                                <MaxTileRow>47001</MaxTileRow>
     8056                                                <MinTileCol>65201</MinTileCol>
     8057                                                <MaxTileCol>65319</MaxTileCol>
     8058                                        </TileMatrixLimits>
     8059                                        <TileMatrixLimits>
     8060                                                <TileMatrix>18</TileMatrix>
     8061                                                <MinTileRow>93711</MinTileRow>
     8062                                                <MaxTileRow>94003</MaxTileRow>
     8063                                                <MinTileCol>130403</MinTileCol>
     8064                                                <MaxTileCol>130638</MaxTileCol>
     8065                                        </TileMatrixLimits>
     8066                                        <TileMatrixLimits>
     8067                                                <TileMatrix>2</TileMatrix>
     8068                                                <MinTileRow>1</MinTileRow>
     8069                                                <MaxTileRow>1</MaxTileRow>
     8070                                                <MinTileCol>1</MinTileCol>
     8071                                                <MaxTileCol>1</MaxTileCol>
     8072                                        </TileMatrixLimits>
     8073                                        <TileMatrixLimits>
     8074                                                <TileMatrix>3</TileMatrix>
     8075                                                <MinTileRow>2</MinTileRow>
     8076                                                <MaxTileRow>2</MaxTileRow>
     8077                                                <MinTileCol>3</MinTileCol>
     8078                                                <MaxTileCol>3</MaxTileCol>
     8079                                        </TileMatrixLimits>
     8080                                        <TileMatrixLimits>
     8081                                                <TileMatrix>4</TileMatrix>
     8082                                                <MinTileRow>5</MinTileRow>
     8083                                                <MaxTileRow>5</MaxTileRow>
     8084                                                <MinTileCol>7</MinTileCol>
     8085                                                <MaxTileCol>7</MaxTileCol>
     8086                                        </TileMatrixLimits>
     8087                                        <TileMatrixLimits>
     8088                                                <TileMatrix>5</TileMatrix>
     8089                                                <MinTileRow>11</MinTileRow>
     8090                                                <MaxTileRow>11</MaxTileRow>
     8091                                                <MinTileCol>15</MinTileCol>
     8092                                                <MaxTileCol>15</MaxTileCol>
     8093                                        </TileMatrixLimits>
     8094                                        <TileMatrixLimits>
     8095                                                <TileMatrix>6</TileMatrix>
     8096                                                <MinTileRow>22</MinTileRow>
     8097                                                <MaxTileRow>22</MaxTileRow>
     8098                                                <MinTileCol>31</MinTileCol>
     8099                                                <MaxTileCol>31</MaxTileCol>
     8100                                        </TileMatrixLimits>
     8101                                        <TileMatrixLimits>
     8102                                                <TileMatrix>7</TileMatrix>
     8103                                                <MinTileRow>45</MinTileRow>
     8104                                                <MaxTileRow>45</MaxTileRow>
     8105                                                <MinTileCol>63</MinTileCol>
     8106                                                <MaxTileCol>63</MaxTileCol>
     8107                                        </TileMatrixLimits>
     8108                                        <TileMatrixLimits>
     8109                                                <TileMatrix>8</TileMatrix>
     8110                                                <MinTileRow>91</MinTileRow>
     8111                                                <MaxTileRow>91</MaxTileRow>
     8112                                                <MinTileCol>127</MinTileCol>
     8113                                                <MaxTileCol>127</MaxTileCol>
     8114                                        </TileMatrixLimits>
     8115                                        <TileMatrixLimits>
     8116                                                <TileMatrix>9</TileMatrix>
     8117                                                <MinTileRow>183</MinTileRow>
     8118                                                <MaxTileRow>183</MaxTileRow>
     8119                                                <MinTileCol>254</MinTileCol>
     8120                                                <MaxTileCol>255</MaxTileCol>
     8121                                        </TileMatrixLimits>
     8122                                </TileMatrixSetLimits>
     8123                        </TileMatrixSetLink>
     8124                </Layer>
     8125                <Layer>
     8126                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8127                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8128                        <ows:Keywords>
     8129                                <ows:Keyword>Photographies</ows:Keyword>
     8130                        </ows:Keywords>
     8131                        <ows:WGS84BoundingBox>
     8132                                <ows:LowerCorner>-0.244285 45.0575</ows:LowerCorner>
     8133                                <ows:UpperCorner>0.0643915 45.3535</ows:UpperCorner>
     8134                        </ows:WGS84BoundingBox>
     8135                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-20-39937449</ows:Identifier>
     8136                        <Style isDefault="true">
     8137                                <ows:Title>Données Brutes</ows:Title>
     8138                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8139                                <ows:Keywords>
     8140                                        <ows:Keyword>Défaut</ows:Keyword>
     8141                                </ows:Keywords>
     8142                                <ows:Identifier>normal</ows:Identifier>
     8143                                <LegendURL format="image/jpeg" height="200"
     8144                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8145                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8146                        </Style>
     8147                        <Format>image/jpeg</Format>
     8148                        <TileMatrixSetLink>
     8149                                <TileMatrixSet>PM</TileMatrixSet>
     8150                                <TileMatrixSetLimits>
     8151                                        <TileMatrixLimits>
     8152                                                <TileMatrix>0</TileMatrix>
     8153                                                <MinTileRow>0</MinTileRow>
     8154                                                <MaxTileRow>0</MaxTileRow>
     8155                                                <MinTileCol>0</MinTileCol>
     8156                                                <MaxTileCol>0</MaxTileCol>
     8157                                        </TileMatrixLimits>
     8158                                        <TileMatrixLimits>
     8159                                                <TileMatrix>1</TileMatrix>
     8160                                                <MinTileRow>0</MinTileRow>
     8161                                                <MaxTileRow>0</MaxTileRow>
     8162                                                <MinTileCol>0</MinTileCol>
     8163                                                <MaxTileCol>1</MaxTileCol>
     8164                                        </TileMatrixLimits>
     8165                                        <TileMatrixLimits>
     8166                                                <TileMatrix>10</TileMatrix>
     8167                                                <MinTileRow>366</MinTileRow>
     8168                                                <MaxTileRow>368</MaxTileRow>
     8169                                                <MinTileCol>511</MinTileCol>
     8170                                                <MaxTileCol>512</MaxTileCol>
     8171                                        </TileMatrixLimits>
     8172                                        <TileMatrixLimits>
     8173                                                <TileMatrix>11</TileMatrix>
     8174                                                <MinTileRow>733</MinTileRow>
     8175                                                <MaxTileRow>736</MaxTileRow>
     8176                                                <MinTileCol>1022</MinTileCol>
     8177                                                <MaxTileCol>1024</MaxTileCol>
     8178                                        </TileMatrixLimits>
     8179                                        <TileMatrixLimits>
     8180                                                <TileMatrix>12</TileMatrix>
     8181                                                <MinTileRow>1467</MinTileRow>
     8182                                                <MaxTileRow>1472</MaxTileRow>
     8183                                                <MinTileCol>2045</MinTileCol>
     8184                                                <MaxTileCol>2048</MaxTileCol>
     8185                                        </TileMatrixLimits>
     8186                                        <TileMatrixLimits>
     8187                                                <TileMatrix>13</TileMatrix>
     8188                                                <MinTileRow>2935</MinTileRow>
     8189                                                <MaxTileRow>2944</MaxTileRow>
     8190                                                <MinTileCol>4090</MinTileCol>
     8191                                                <MaxTileCol>4097</MaxTileCol>
     8192                                        </TileMatrixLimits>
     8193                                        <TileMatrixLimits>
     8194                                                <TileMatrix>14</TileMatrix>
     8195                                                <MinTileRow>5871</MinTileRow>
     8196                                                <MaxTileRow>5889</MaxTileRow>
     8197                                                <MinTileCol>8181</MinTileCol>
     8198                                                <MaxTileCol>8194</MaxTileCol>
     8199                                        </TileMatrixLimits>
     8200                                        <TileMatrixLimits>
     8201                                                <TileMatrix>15</TileMatrix>
     8202                                                <MinTileRow>11742</MinTileRow>
     8203                                                <MaxTileRow>11779</MaxTileRow>
     8204                                                <MinTileCol>16362</MinTileCol>
     8205                                                <MaxTileCol>16389</MaxTileCol>
     8206                                        </TileMatrixLimits>
     8207                                        <TileMatrixLimits>
     8208                                                <TileMatrix>16</TileMatrix>
     8209                                                <MinTileRow>23485</MinTileRow>
     8210                                                <MaxTileRow>23559</MaxTileRow>
     8211                                                <MinTileCol>32724</MinTileCol>
     8212                                                <MaxTileCol>32778</MaxTileCol>
     8213                                        </TileMatrixLimits>
     8214                                        <TileMatrixLimits>
     8215                                                <TileMatrix>17</TileMatrix>
     8216                                                <MinTileRow>46970</MinTileRow>
     8217                                                <MaxTileRow>47119</MaxTileRow>
     8218                                                <MinTileCol>65449</MinTileCol>
     8219                                                <MaxTileCol>65557</MaxTileCol>
     8220                                        </TileMatrixLimits>
     8221                                        <TileMatrixLimits>
     8222                                                <TileMatrix>18</TileMatrix>
     8223                                                <MinTileRow>93941</MinTileRow>
     8224                                                <MaxTileRow>94238</MaxTileRow>
     8225                                                <MinTileCol>130899</MinTileCol>
     8226                                                <MaxTileCol>131114</MaxTileCol>
     8227                                        </TileMatrixLimits>
     8228                                        <TileMatrixLimits>
     8229                                                <TileMatrix>2</TileMatrix>
     8230                                                <MinTileRow>1</MinTileRow>
     8231                                                <MaxTileRow>1</MaxTileRow>
     8232                                                <MinTileCol>1</MinTileCol>
     8233                                                <MaxTileCol>2</MaxTileCol>
     8234                                        </TileMatrixLimits>
     8235                                        <TileMatrixLimits>
     8236                                                <TileMatrix>3</TileMatrix>
     8237                                                <MinTileRow>2</MinTileRow>
     8238                                                <MaxTileRow>2</MaxTileRow>
     8239                                                <MinTileCol>3</MinTileCol>
     8240                                                <MaxTileCol>4</MaxTileCol>
     8241                                        </TileMatrixLimits>
     8242                                        <TileMatrixLimits>
     8243                                                <TileMatrix>4</TileMatrix>
     8244                                                <MinTileRow>5</MinTileRow>
     8245                                                <MaxTileRow>5</MaxTileRow>
     8246                                                <MinTileCol>7</MinTileCol>
     8247                                                <MaxTileCol>8</MaxTileCol>
     8248                                        </TileMatrixLimits>
     8249                                        <TileMatrixLimits>
     8250                                                <TileMatrix>5</TileMatrix>
     8251                                                <MinTileRow>11</MinTileRow>
     8252                                                <MaxTileRow>11</MaxTileRow>
     8253                                                <MinTileCol>15</MinTileCol>
     8254                                                <MaxTileCol>16</MaxTileCol>
     8255                                        </TileMatrixLimits>
     8256                                        <TileMatrixLimits>
     8257                                                <TileMatrix>6</TileMatrix>
     8258                                                <MinTileRow>22</MinTileRow>
     8259                                                <MaxTileRow>23</MaxTileRow>
     8260                                                <MinTileCol>31</MinTileCol>
     8261                                                <MaxTileCol>32</MaxTileCol>
     8262                                        </TileMatrixLimits>
     8263                                        <TileMatrixLimits>
     8264                                                <TileMatrix>7</TileMatrix>
     8265                                                <MinTileRow>45</MinTileRow>
     8266                                                <MaxTileRow>46</MaxTileRow>
     8267                                                <MinTileCol>63</MinTileCol>
     8268                                                <MaxTileCol>64</MaxTileCol>
     8269                                        </TileMatrixLimits>
     8270                                        <TileMatrixLimits>
     8271                                                <TileMatrix>8</TileMatrix>
     8272                                                <MinTileRow>91</MinTileRow>
     8273                                                <MaxTileRow>92</MaxTileRow>
     8274                                                <MinTileCol>127</MinTileCol>
     8275                                                <MaxTileCol>128</MaxTileCol>
     8276                                        </TileMatrixLimits>
     8277                                        <TileMatrixLimits>
     8278                                                <TileMatrix>9</TileMatrix>
     8279                                                <MinTileRow>183</MinTileRow>
     8280                                                <MaxTileRow>184</MaxTileRow>
     8281                                                <MinTileCol>255</MinTileCol>
     8282                                                <MaxTileCol>256</MaxTileCol>
     8283                                        </TileMatrixLimits>
     8284                                </TileMatrixSetLimits>
     8285                        </TileMatrixSetLink>
     8286                </Layer>
     8287                <Layer>
     8288                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8289                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8290                        <ows:Keywords>
     8291                                <ows:Keyword>Photographies</ows:Keyword>
     8292                        </ows:Keywords>
     8293                        <ows:WGS84BoundingBox>
     8294                                <ows:LowerCorner>-0.312644 45.7405</ows:LowerCorner>
     8295                                <ows:UpperCorner>-0.0362079 46.0717</ows:UpperCorner>
     8296                        </ows:WGS84BoundingBox>
     8297                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-25-40593324</ows:Identifier>
     8298                        <Style isDefault="true">
     8299                                <ows:Title>Données Brutes</ows:Title>
     8300                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8301                                <ows:Keywords>
     8302                                        <ows:Keyword>Défaut</ows:Keyword>
     8303                                </ows:Keywords>
     8304                                <ows:Identifier>normal</ows:Identifier>
     8305                                <LegendURL format="image/jpeg" height="200"
     8306                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8307                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8308                        </Style>
     8309                        <Format>image/jpeg</Format>
     8310                        <TileMatrixSetLink>
     8311                                <TileMatrixSet>PM</TileMatrixSet>
     8312                                <TileMatrixSetLimits>
     8313                                        <TileMatrixLimits>
     8314                                                <TileMatrix>0</TileMatrix>
     8315                                                <MinTileRow>0</MinTileRow>
     8316                                                <MaxTileRow>0</MaxTileRow>
     8317                                                <MinTileCol>0</MinTileCol>
     8318                                                <MaxTileCol>0</MaxTileCol>
     8319                                        </TileMatrixLimits>
     8320                                        <TileMatrixLimits>
     8321                                                <TileMatrix>1</TileMatrix>
     8322                                                <MinTileRow>0</MinTileRow>
     8323                                                <MaxTileRow>0</MaxTileRow>
     8324                                                <MinTileCol>0</MinTileCol>
     8325                                                <MaxTileCol>0</MaxTileCol>
     8326                                        </TileMatrixLimits>
     8327                                        <TileMatrixLimits>
     8328                                                <TileMatrix>10</TileMatrix>
     8329                                                <MinTileRow>364</MinTileRow>
     8330                                                <MaxTileRow>365</MaxTileRow>
     8331                                                <MinTileCol>511</MinTileCol>
     8332                                                <MaxTileCol>511</MaxTileCol>
     8333                                        </TileMatrixLimits>
     8334                                        <TileMatrixLimits>
     8335                                                <TileMatrix>11</TileMatrix>
     8336                                                <MinTileRow>728</MinTileRow>
     8337                                                <MaxTileRow>730</MaxTileRow>
     8338                                                <MinTileCol>1022</MinTileCol>
     8339                                                <MaxTileCol>1023</MaxTileCol>
     8340                                        </TileMatrixLimits>
     8341                                        <TileMatrixLimits>
     8342                                                <TileMatrix>12</TileMatrix>
     8343                                                <MinTileRow>1456</MinTileRow>
     8344                                                <MaxTileRow>1461</MaxTileRow>
     8345                                                <MinTileCol>2044</MinTileCol>
     8346                                                <MaxTileCol>2047</MaxTileCol>
     8347                                        </TileMatrixLimits>
     8348                                        <TileMatrixLimits>
     8349                                                <TileMatrix>13</TileMatrix>
     8350                                                <MinTileRow>2912</MinTileRow>
     8351                                                <MaxTileRow>2922</MaxTileRow>
     8352                                                <MinTileCol>4089</MinTileCol>
     8353                                                <MaxTileCol>4094</MaxTileCol>
     8354                                        </TileMatrixLimits>
     8355                                        <TileMatrixLimits>
     8356                                                <TileMatrix>14</TileMatrix>
     8357                                                <MinTileRow>5824</MinTileRow>
     8358                                                <MaxTileRow>5845</MaxTileRow>
     8359                                                <MinTileCol>8178</MinTileCol>
     8360                                                <MaxTileCol>8189</MaxTileCol>
     8361                                        </TileMatrixLimits>
     8362                                        <TileMatrixLimits>
     8363                                                <TileMatrix>15</TileMatrix>
     8364                                                <MinTileRow>11648</MinTileRow>
     8365                                                <MaxTileRow>11691</MaxTileRow>
     8366                                                <MinTileCol>16356</MinTileCol>
     8367                                                <MaxTileCol>16379</MaxTileCol>
     8368                                        </TileMatrixLimits>
     8369                                        <TileMatrixLimits>
     8370                                                <TileMatrix>16</TileMatrix>
     8371                                                <MinTileRow>23297</MinTileRow>
     8372                                                <MaxTileRow>23382</MaxTileRow>
     8373                                                <MinTileCol>32713</MinTileCol>
     8374                                                <MaxTileCol>32759</MaxTileCol>
     8375                                        </TileMatrixLimits>
     8376                                        <TileMatrixLimits>
     8377                                                <TileMatrix>17</TileMatrix>
     8378                                                <MinTileRow>46594</MinTileRow>
     8379                                                <MaxTileRow>46765</MaxTileRow>
     8380                                                <MinTileCol>65426</MinTileCol>
     8381                                                <MaxTileCol>65519</MaxTileCol>
     8382                                        </TileMatrixLimits>
     8383                                        <TileMatrixLimits>
     8384                                                <TileMatrix>18</TileMatrix>
     8385                                                <MinTileRow>93188</MinTileRow>
     8386                                                <MaxTileRow>93530</MaxTileRow>
     8387                                                <MinTileCol>130853</MinTileCol>
     8388                                                <MaxTileCol>131038</MaxTileCol>
     8389                                        </TileMatrixLimits>
     8390                                        <TileMatrixLimits>
     8391                                                <TileMatrix>2</TileMatrix>
     8392                                                <MinTileRow>1</MinTileRow>
     8393                                                <MaxTileRow>1</MaxTileRow>
     8394                                                <MinTileCol>1</MinTileCol>
     8395                                                <MaxTileCol>1</MaxTileCol>
     8396                                        </TileMatrixLimits>
     8397                                        <TileMatrixLimits>
     8398                                                <TileMatrix>3</TileMatrix>
     8399                                                <MinTileRow>2</MinTileRow>
     8400                                                <MaxTileRow>2</MaxTileRow>
     8401                                                <MinTileCol>3</MinTileCol>
     8402                                                <MaxTileCol>3</MaxTileCol>
     8403                                        </TileMatrixLimits>
     8404                                        <TileMatrixLimits>
     8405                                                <TileMatrix>4</TileMatrix>
     8406                                                <MinTileRow>5</MinTileRow>
     8407                                                <MaxTileRow>5</MaxTileRow>
     8408                                                <MinTileCol>7</MinTileCol>
     8409                                                <MaxTileCol>7</MaxTileCol>
     8410                                        </TileMatrixLimits>
     8411                                        <TileMatrixLimits>
     8412                                                <TileMatrix>5</TileMatrix>
     8413                                                <MinTileRow>11</MinTileRow>
     8414                                                <MaxTileRow>11</MaxTileRow>
     8415                                                <MinTileCol>15</MinTileCol>
     8416                                                <MaxTileCol>15</MaxTileCol>
     8417                                        </TileMatrixLimits>
     8418                                        <TileMatrixLimits>
     8419                                                <TileMatrix>6</TileMatrix>
     8420                                                <MinTileRow>22</MinTileRow>
     8421                                                <MaxTileRow>22</MaxTileRow>
     8422                                                <MinTileCol>31</MinTileCol>
     8423                                                <MaxTileCol>31</MaxTileCol>
     8424                                        </TileMatrixLimits>
     8425                                        <TileMatrixLimits>
     8426                                                <TileMatrix>7</TileMatrix>
     8427                                                <MinTileRow>45</MinTileRow>
     8428                                                <MaxTileRow>45</MaxTileRow>
     8429                                                <MinTileCol>63</MinTileCol>
     8430                                                <MaxTileCol>63</MaxTileCol>
     8431                                        </TileMatrixLimits>
     8432                                        <TileMatrixLimits>
     8433                                                <TileMatrix>8</TileMatrix>
     8434                                                <MinTileRow>91</MinTileRow>
     8435                                                <MaxTileRow>91</MaxTileRow>
     8436                                                <MinTileCol>127</MinTileCol>
     8437                                                <MaxTileCol>127</MaxTileCol>
     8438                                        </TileMatrixLimits>
     8439                                        <TileMatrixLimits>
     8440                                                <TileMatrix>9</TileMatrix>
     8441                                                <MinTileRow>182</MinTileRow>
     8442                                                <MaxTileRow>182</MaxTileRow>
     8443                                                <MinTileCol>255</MinTileCol>
     8444                                                <MaxTileCol>255</MaxTileCol>
     8445                                        </TileMatrixLimits>
     8446                                </TileMatrixSetLimits>
     8447                        </TileMatrixSetLink>
     8448                </Layer>
     8449                <Layer>
     8450                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8451                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8452                        <ows:Keywords>
     8453                                <ows:Keyword>Photographies</ows:Keyword>
     8454                        </ows:Keywords>
     8455                        <ows:WGS84BoundingBox>
     8456                                <ows:LowerCorner>-0.697679 45.9899</ows:LowerCorner>
     8457                                <ows:UpperCorner>-0.373399 46.2155</ows:UpperCorner>
     8458                        </ows:WGS84BoundingBox>
     8459                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40721948</ows:Identifier>
     8460                        <Style isDefault="true">
     8461                                <ows:Title>Données Brutes</ows:Title>
     8462                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8463                                <ows:Keywords>
     8464                                        <ows:Keyword>Défaut</ows:Keyword>
     8465                                </ows:Keywords>
     8466                                <ows:Identifier>normal</ows:Identifier>
     8467                                <LegendURL format="image/jpeg" height="200"
     8468                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8469                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8470                        </Style>
     8471                        <Format>image/jpeg</Format>
     8472                        <TileMatrixSetLink>
     8473                                <TileMatrixSet>PM</TileMatrixSet>
     8474                                <TileMatrixSetLimits>
     8475                                        <TileMatrixLimits>
     8476                                                <TileMatrix>0</TileMatrix>
     8477                                                <MinTileRow>0</MinTileRow>
     8478                                                <MaxTileRow>0</MaxTileRow>
     8479                                                <MinTileCol>0</MinTileCol>
     8480                                                <MaxTileCol>0</MaxTileCol>
     8481                                        </TileMatrixLimits>
     8482                                        <TileMatrixLimits>
     8483                                                <TileMatrix>1</TileMatrix>
     8484                                                <MinTileRow>0</MinTileRow>
     8485                                                <MaxTileRow>0</MaxTileRow>
     8486                                                <MinTileCol>0</MinTileCol>
     8487                                                <MaxTileCol>0</MaxTileCol>
     8488                                        </TileMatrixLimits>
     8489                                        <TileMatrixLimits>
     8490                                                <TileMatrix>10</TileMatrix>
     8491                                                <MinTileRow>363</MinTileRow>
     8492                                                <MaxTileRow>364</MaxTileRow>
     8493                                                <MinTileCol>510</MinTileCol>
     8494                                                <MaxTileCol>510</MaxTileCol>
     8495                                        </TileMatrixLimits>
     8496                                        <TileMatrixLimits>
     8497                                                <TileMatrix>11</TileMatrix>
     8498                                                <MinTileRow>726</MinTileRow>
     8499                                                <MaxTileRow>728</MaxTileRow>
     8500                                                <MinTileCol>1020</MinTileCol>
     8501                                                <MaxTileCol>1021</MaxTileCol>
     8502                                        </TileMatrixLimits>
     8503                                        <TileMatrixLimits>
     8504                                                <TileMatrix>12</TileMatrix>
     8505                                                <MinTileRow>1453</MinTileRow>
     8506                                                <MaxTileRow>1457</MaxTileRow>
     8507                                                <MinTileCol>2040</MinTileCol>
     8508                                                <MaxTileCol>2043</MaxTileCol>
     8509                                        </TileMatrixLimits>
     8510                                        <TileMatrixLimits>
     8511                                                <TileMatrix>13</TileMatrix>
     8512                                                <MinTileRow>2907</MinTileRow>
     8513                                                <MaxTileRow>2914</MaxTileRow>
     8514                                                <MinTileCol>4080</MinTileCol>
     8515                                                <MaxTileCol>4087</MaxTileCol>
     8516                                        </TileMatrixLimits>
     8517                                        <TileMatrixLimits>
     8518                                                <TileMatrix>14</TileMatrix>
     8519                                                <MinTileRow>5815</MinTileRow>
     8520                                                <MaxTileRow>5829</MaxTileRow>
     8521                                                <MinTileCol>8160</MinTileCol>
     8522                                                <MaxTileCol>8174</MaxTileCol>
     8523                                        </TileMatrixLimits>
     8524                                        <TileMatrixLimits>
     8525                                                <TileMatrix>15</TileMatrix>
     8526                                                <MinTileRow>11630</MinTileRow>
     8527                                                <MaxTileRow>11658</MaxTileRow>
     8528                                                <MinTileCol>16321</MinTileCol>
     8529                                                <MaxTileCol>16349</MaxTileCol>
     8530                                        </TileMatrixLimits>
     8531                                        <TileMatrixLimits>
     8532                                                <TileMatrix>16</TileMatrix>
     8533                                                <MinTileRow>23260</MinTileRow>
     8534                                                <MaxTileRow>23316</MaxTileRow>
     8535                                                <MinTileCol>32642</MinTileCol>
     8536                                                <MaxTileCol>32699</MaxTileCol>
     8537                                        </TileMatrixLimits>
     8538                                        <TileMatrixLimits>
     8539                                                <TileMatrix>17</TileMatrix>
     8540                                                <MinTileRow>46521</MinTileRow>
     8541                                                <MaxTileRow>46632</MaxTileRow>
     8542                                                <MinTileCol>65285</MinTileCol>
     8543                                                <MaxTileCol>65398</MaxTileCol>
     8544                                        </TileMatrixLimits>
     8545                                        <TileMatrixLimits>
     8546                                                <TileMatrix>18</TileMatrix>
     8547                                                <MinTileRow>93042</MinTileRow>
     8548                                                <MaxTileRow>93264</MaxTileRow>
     8549                                                <MinTileCol>130570</MinTileCol>
     8550                                                <MaxTileCol>130797</MaxTileCol>
     8551                                        </TileMatrixLimits>
     8552                                        <TileMatrixLimits>
     8553                                                <TileMatrix>2</TileMatrix>
     8554                                                <MinTileRow>1</MinTileRow>
     8555                                                <MaxTileRow>1</MaxTileRow>
     8556                                                <MinTileCol>1</MinTileCol>
     8557                                                <MaxTileCol>1</MaxTileCol>
     8558                                        </TileMatrixLimits>
     8559                                        <TileMatrixLimits>
     8560                                                <TileMatrix>3</TileMatrix>
     8561                                                <MinTileRow>2</MinTileRow>
     8562                                                <MaxTileRow>2</MaxTileRow>
     8563                                                <MinTileCol>3</MinTileCol>
     8564                                                <MaxTileCol>3</MaxTileCol>
     8565                                        </TileMatrixLimits>
     8566                                        <TileMatrixLimits>
     8567                                                <TileMatrix>4</TileMatrix>
     8568                                                <MinTileRow>5</MinTileRow>
     8569                                                <MaxTileRow>5</MaxTileRow>
     8570                                                <MinTileCol>7</MinTileCol>
     8571                                                <MaxTileCol>7</MaxTileCol>
     8572                                        </TileMatrixLimits>
     8573                                        <TileMatrixLimits>
     8574                                                <TileMatrix>5</TileMatrix>
     8575                                                <MinTileRow>11</MinTileRow>
     8576                                                <MaxTileRow>11</MaxTileRow>
     8577                                                <MinTileCol>15</MinTileCol>
     8578                                                <MaxTileCol>15</MaxTileCol>
     8579                                        </TileMatrixLimits>
     8580                                        <TileMatrixLimits>
     8581                                                <TileMatrix>6</TileMatrix>
     8582                                                <MinTileRow>22</MinTileRow>
     8583                                                <MaxTileRow>22</MaxTileRow>
     8584                                                <MinTileCol>31</MinTileCol>
     8585                                                <MaxTileCol>31</MaxTileCol>
     8586                                        </TileMatrixLimits>
     8587                                        <TileMatrixLimits>
     8588                                                <TileMatrix>7</TileMatrix>
     8589                                                <MinTileRow>45</MinTileRow>
     8590                                                <MaxTileRow>45</MaxTileRow>
     8591                                                <MinTileCol>63</MinTileCol>
     8592                                                <MaxTileCol>63</MaxTileCol>
     8593                                        </TileMatrixLimits>
     8594                                        <TileMatrixLimits>
     8595                                                <TileMatrix>8</TileMatrix>
     8596                                                <MinTileRow>90</MinTileRow>
     8597                                                <MaxTileRow>91</MaxTileRow>
     8598                                                <MinTileCol>127</MinTileCol>
     8599                                                <MaxTileCol>127</MaxTileCol>
     8600                                        </TileMatrixLimits>
     8601                                        <TileMatrixLimits>
     8602                                                <TileMatrix>9</TileMatrix>
     8603                                                <MinTileRow>181</MinTileRow>
     8604                                                <MaxTileRow>182</MaxTileRow>
     8605                                                <MinTileCol>255</MinTileCol>
     8606                                                <MaxTileCol>255</MaxTileCol>
     8607                                        </TileMatrixLimits>
     8608                                </TileMatrixSetLimits>
     8609                        </TileMatrixSetLink>
     8610                </Layer>
     8611                <Layer>
     8612                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8613                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8614                        <ows:Keywords>
     8615                                <ows:Keyword>Photographies</ows:Keyword>
     8616                        </ows:Keywords>
     8617                        <ows:WGS84BoundingBox>
     8618                                <ows:LowerCorner>-0.472278 45.9249</ows:LowerCorner>
     8619                                <ows:UpperCorner>-0.149795 46.1408</ows:UpperCorner>
     8620                        </ows:WGS84BoundingBox>
     8621                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40731198</ows:Identifier>
     8622                        <Style isDefault="true">
     8623                                <ows:Title>Données Brutes</ows:Title>
     8624                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8625                                <ows:Keywords>
     8626                                        <ows:Keyword>Défaut</ows:Keyword>
     8627                                </ows:Keywords>
     8628                                <ows:Identifier>normal</ows:Identifier>
     8629                                <LegendURL format="image/jpeg" height="200"
     8630                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8631                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8632                        </Style>
     8633                        <Format>image/jpeg</Format>
     8634                        <TileMatrixSetLink>
     8635                                <TileMatrixSet>PM</TileMatrixSet>
     8636                                <TileMatrixSetLimits>
     8637                                        <TileMatrixLimits>
     8638                                                <TileMatrix>0</TileMatrix>
     8639                                                <MinTileRow>0</MinTileRow>
     8640                                                <MaxTileRow>0</MaxTileRow>
     8641                                                <MinTileCol>0</MinTileCol>
     8642                                                <MaxTileCol>0</MaxTileCol>
     8643                                        </TileMatrixLimits>
     8644                                        <TileMatrixLimits>
     8645                                                <TileMatrix>1</TileMatrix>
     8646                                                <MinTileRow>0</MinTileRow>
     8647                                                <MaxTileRow>0</MaxTileRow>
     8648                                                <MinTileCol>0</MinTileCol>
     8649                                                <MaxTileCol>0</MaxTileCol>
     8650                                        </TileMatrixLimits>
     8651                                        <TileMatrixLimits>
     8652                                                <TileMatrix>10</TileMatrix>
     8653                                                <MinTileRow>363</MinTileRow>
     8654                                                <MaxTileRow>364</MaxTileRow>
     8655                                                <MinTileCol>510</MinTileCol>
     8656                                                <MaxTileCol>511</MaxTileCol>
     8657                                        </TileMatrixLimits>
     8658                                        <TileMatrixLimits>
     8659                                                <TileMatrix>11</TileMatrix>
     8660                                                <MinTileRow>727</MinTileRow>
     8661                                                <MaxTileRow>729</MaxTileRow>
     8662                                                <MinTileCol>1021</MinTileCol>
     8663                                                <MaxTileCol>1023</MaxTileCol>
     8664                                        </TileMatrixLimits>
     8665                                        <TileMatrixLimits>
     8666                                                <TileMatrix>12</TileMatrix>
     8667                                                <MinTileRow>1454</MinTileRow>
     8668                                                <MaxTileRow>1458</MaxTileRow>
     8669                                                <MinTileCol>2042</MinTileCol>
     8670                                                <MaxTileCol>2046</MaxTileCol>
     8671                                        </TileMatrixLimits>
     8672                                        <TileMatrixLimits>
     8673                                                <TileMatrix>13</TileMatrix>
     8674                                                <MinTileRow>2909</MinTileRow>
     8675                                                <MaxTileRow>2916</MaxTileRow>
     8676                                                <MinTileCol>4085</MinTileCol>
     8677                                                <MaxTileCol>4092</MaxTileCol>
     8678                                        </TileMatrixLimits>
     8679                                        <TileMatrixLimits>
     8680                                                <TileMatrix>14</TileMatrix>
     8681                                                <MinTileRow>5819</MinTileRow>
     8682                                                <MaxTileRow>5833</MaxTileRow>
     8683                                                <MinTileCol>8170</MinTileCol>
     8684                                                <MaxTileCol>8185</MaxTileCol>
     8685                                        </TileMatrixLimits>
     8686                                        <TileMatrixLimits>
     8687                                                <TileMatrix>15</TileMatrix>
     8688                                                <MinTileRow>11639</MinTileRow>
     8689                                                <MaxTileRow>11666</MaxTileRow>
     8690                                                <MinTileCol>16341</MinTileCol>
     8691                                                <MaxTileCol>16370</MaxTileCol>
     8692                                        </TileMatrixLimits>
     8693                                        <TileMatrixLimits>
     8694                                                <TileMatrix>16</TileMatrix>
     8695                                                <MinTileRow>23279</MinTileRow>
     8696                                                <MaxTileRow>23333</MaxTileRow>
     8697                                                <MinTileCol>32683</MinTileCol>
     8698                                                <MaxTileCol>32740</MaxTileCol>
     8699                                        </TileMatrixLimits>
     8700                                        <TileMatrixLimits>
     8701                                                <TileMatrix>17</TileMatrix>
     8702                                                <MinTileRow>46559</MinTileRow>
     8703                                                <MaxTileRow>46667</MaxTileRow>
     8704                                                <MinTileCol>65366</MinTileCol>
     8705                                                <MaxTileCol>65481</MaxTileCol>
     8706                                        </TileMatrixLimits>
     8707                                        <TileMatrixLimits>
     8708                                                <TileMatrix>18</TileMatrix>
     8709                                                <MinTileRow>93119</MinTileRow>
     8710                                                <MaxTileRow>93335</MaxTileRow>
     8711                                                <MinTileCol>130732</MinTileCol>
     8712                                                <MaxTileCol>130962</MaxTileCol>
     8713                                        </TileMatrixLimits>
     8714                                        <TileMatrixLimits>
     8715                                                <TileMatrix>2</TileMatrix>
     8716                                                <MinTileRow>1</MinTileRow>
     8717                                                <MaxTileRow>1</MaxTileRow>
     8718                                                <MinTileCol>1</MinTileCol>
     8719                                                <MaxTileCol>1</MaxTileCol>
     8720                                        </TileMatrixLimits>
     8721                                        <TileMatrixLimits>
     8722                                                <TileMatrix>3</TileMatrix>
     8723                                                <MinTileRow>2</MinTileRow>
     8724                                                <MaxTileRow>2</MaxTileRow>
     8725                                                <MinTileCol>3</MinTileCol>
     8726                                                <MaxTileCol>3</MaxTileCol>
     8727                                        </TileMatrixLimits>
     8728                                        <TileMatrixLimits>
     8729                                                <TileMatrix>4</TileMatrix>
     8730                                                <MinTileRow>5</MinTileRow>
     8731                                                <MaxTileRow>5</MaxTileRow>
     8732                                                <MinTileCol>7</MinTileCol>
     8733                                                <MaxTileCol>7</MaxTileCol>
     8734                                        </TileMatrixLimits>
     8735                                        <TileMatrixLimits>
     8736                                                <TileMatrix>5</TileMatrix>
     8737                                                <MinTileRow>11</MinTileRow>
     8738                                                <MaxTileRow>11</MaxTileRow>
     8739                                                <MinTileCol>15</MinTileCol>
     8740                                                <MaxTileCol>15</MaxTileCol>
     8741                                        </TileMatrixLimits>
     8742                                        <TileMatrixLimits>
     8743                                                <TileMatrix>6</TileMatrix>
     8744                                                <MinTileRow>22</MinTileRow>
     8745                                                <MaxTileRow>22</MaxTileRow>
     8746                                                <MinTileCol>31</MinTileCol>
     8747                                                <MaxTileCol>31</MaxTileCol>
     8748                                        </TileMatrixLimits>
     8749                                        <TileMatrixLimits>
     8750                                                <TileMatrix>7</TileMatrix>
     8751                                                <MinTileRow>45</MinTileRow>
     8752                                                <MaxTileRow>45</MaxTileRow>
     8753                                                <MinTileCol>63</MinTileCol>
     8754                                                <MaxTileCol>63</MaxTileCol>
     8755                                        </TileMatrixLimits>
     8756                                        <TileMatrixLimits>
     8757                                                <TileMatrix>8</TileMatrix>
     8758                                                <MinTileRow>90</MinTileRow>
     8759                                                <MaxTileRow>91</MaxTileRow>
     8760                                                <MinTileCol>127</MinTileCol>
     8761                                                <MaxTileCol>127</MaxTileCol>
     8762                                        </TileMatrixLimits>
     8763                                        <TileMatrixLimits>
     8764                                                <TileMatrix>9</TileMatrix>
     8765                                                <MinTileRow>181</MinTileRow>
     8766                                                <MaxTileRow>182</MaxTileRow>
     8767                                                <MinTileCol>255</MinTileCol>
     8768                                                <MaxTileCol>255</MaxTileCol>
     8769                                        </TileMatrixLimits>
     8770                                </TileMatrixSetLimits>
     8771                        </TileMatrixSetLink>
     8772                </Layer>
     8773                <Layer>
     8774                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8775                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8776                        <ows:Keywords>
     8777                                <ows:Keyword>Photographies</ows:Keyword>
     8778                        </ows:Keywords>
     8779                        <ows:WGS84BoundingBox>
     8780                                <ows:LowerCorner>-0.30026 45.8759</ows:LowerCorner>
     8781                                <ows:UpperCorner>-0.0436427 46.0807</ows:UpperCorner>
     8782                        </ows:WGS84BoundingBox>
     8783                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-07-31-40740447</ows:Identifier>
     8784                        <Style isDefault="true">
     8785                                <ows:Title>Données Brutes</ows:Title>
     8786                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8787                                <ows:Keywords>
     8788                                        <ows:Keyword>Défaut</ows:Keyword>
     8789                                </ows:Keywords>
     8790                                <ows:Identifier>normal</ows:Identifier>
     8791                                <LegendURL format="image/jpeg" height="200"
     8792                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8793                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8794                        </Style>
     8795                        <Format>image/jpeg</Format>
     8796                        <TileMatrixSetLink>
     8797                                <TileMatrixSet>PM</TileMatrixSet>
     8798                                <TileMatrixSetLimits>
     8799                                        <TileMatrixLimits>
     8800                                                <TileMatrix>0</TileMatrix>
     8801                                                <MinTileRow>0</MinTileRow>
     8802                                                <MaxTileRow>0</MaxTileRow>
     8803                                                <MinTileCol>0</MinTileCol>
     8804                                                <MaxTileCol>0</MaxTileCol>
     8805                                        </TileMatrixLimits>
     8806                                        <TileMatrixLimits>
     8807                                                <TileMatrix>1</TileMatrix>
     8808                                                <MinTileRow>0</MinTileRow>
     8809                                                <MaxTileRow>0</MaxTileRow>
     8810                                                <MinTileCol>0</MinTileCol>
     8811                                                <MaxTileCol>0</MaxTileCol>
     8812                                        </TileMatrixLimits>
     8813                                        <TileMatrixLimits>
     8814                                                <TileMatrix>10</TileMatrix>
     8815                                                <MinTileRow>363</MinTileRow>
     8816                                                <MaxTileRow>364</MaxTileRow>
     8817                                                <MinTileCol>511</MinTileCol>
     8818                                                <MaxTileCol>511</MaxTileCol>
     8819                                        </TileMatrixLimits>
     8820                                        <TileMatrixLimits>
     8821                                                <TileMatrix>11</TileMatrix>
     8822                                                <MinTileRow>727</MinTileRow>
     8823                                                <MaxTileRow>729</MaxTileRow>
     8824                                                <MinTileCol>1022</MinTileCol>
     8825                                                <MaxTileCol>1023</MaxTileCol>
     8826                                        </TileMatrixLimits>
     8827                                        <TileMatrixLimits>
     8828                                                <TileMatrix>12</TileMatrix>
     8829                                                <MinTileRow>1455</MinTileRow>
     8830                                                <MaxTileRow>1459</MaxTileRow>
     8831                                                <MinTileCol>2044</MinTileCol>
     8832                                                <MaxTileCol>2047</MaxTileCol>
     8833                                        </TileMatrixLimits>
     8834                                        <TileMatrixLimits>
     8835                                                <TileMatrix>13</TileMatrix>
     8836                                                <MinTileRow>2911</MinTileRow>
     8837                                                <MaxTileRow>2918</MaxTileRow>
     8838                                                <MinTileCol>4089</MinTileCol>
     8839                                                <MaxTileCol>4094</MaxTileCol>
     8840                                        </TileMatrixLimits>
     8841                                        <TileMatrixLimits>
     8842                                                <TileMatrix>14</TileMatrix>
     8843                                                <MinTileRow>5823</MinTileRow>
     8844                                                <MaxTileRow>5836</MaxTileRow>
     8845                                                <MinTileCol>8178</MinTileCol>
     8846                                                <MaxTileCol>8189</MaxTileCol>
     8847                                        </TileMatrixLimits>
     8848                                        <TileMatrixLimits>
     8849                                                <TileMatrix>15</TileMatrix>
     8850                                                <MinTileRow>11647</MinTileRow>
     8851                                                <MaxTileRow>11673</MaxTileRow>
     8852                                                <MinTileCol>16356</MinTileCol>
     8853                                                <MaxTileCol>16379</MaxTileCol>
     8854                                        </TileMatrixLimits>
     8855                                        <TileMatrixLimits>
     8856                                                <TileMatrix>16</TileMatrix>
     8857                                                <MinTileRow>23295</MinTileRow>
     8858                                                <MaxTileRow>23347</MaxTileRow>
     8859                                                <MinTileCol>32713</MinTileCol>
     8860                                                <MaxTileCol>32759</MaxTileCol>
     8861                                        </TileMatrixLimits>
     8862                                        <TileMatrixLimits>
     8863                                                <TileMatrix>17</TileMatrix>
     8864                                                <MinTileRow>46591</MinTileRow>
     8865                                                <MaxTileRow>46695</MaxTileRow>
     8866                                                <MinTileCol>65426</MinTileCol>
     8867                                                <MaxTileCol>65519</MaxTileCol>
     8868                                        </TileMatrixLimits>
     8869                                        <TileMatrixLimits>
     8870                                                <TileMatrix>18</TileMatrix>
     8871                                                <MinTileRow>93182</MinTileRow>
     8872                                                <MaxTileRow>93390</MaxTileRow>
     8873                                                <MinTileCol>130853</MinTileCol>
     8874                                                <MaxTileCol>131038</MaxTileCol>
     8875                                        </TileMatrixLimits>
     8876                                        <TileMatrixLimits>
     8877                                                <TileMatrix>2</TileMatrix>
     8878                                                <MinTileRow>1</MinTileRow>
     8879                                                <MaxTileRow>1</MaxTileRow>
     8880                                                <MinTileCol>1</MinTileCol>
     8881                                                <MaxTileCol>1</MaxTileCol>
     8882                                        </TileMatrixLimits>
     8883                                        <TileMatrixLimits>
     8884                                                <TileMatrix>3</TileMatrix>
     8885                                                <MinTileRow>2</MinTileRow>
     8886                                                <MaxTileRow>2</MaxTileRow>
     8887                                                <MinTileCol>3</MinTileCol>
     8888                                                <MaxTileCol>3</MaxTileCol>
     8889                                        </TileMatrixLimits>
     8890                                        <TileMatrixLimits>
     8891                                                <TileMatrix>4</TileMatrix>
     8892                                                <MinTileRow>5</MinTileRow>
     8893                                                <MaxTileRow>5</MaxTileRow>
     8894                                                <MinTileCol>7</MinTileCol>
     8895                                                <MaxTileCol>7</MaxTileCol>
     8896                                        </TileMatrixLimits>
     8897                                        <TileMatrixLimits>
     8898                                                <TileMatrix>5</TileMatrix>
     8899                                                <MinTileRow>11</MinTileRow>
     8900                                                <MaxTileRow>11</MaxTileRow>
     8901                                                <MinTileCol>15</MinTileCol>
     8902                                                <MaxTileCol>15</MaxTileCol>
     8903                                        </TileMatrixLimits>
     8904                                        <TileMatrixLimits>
     8905                                                <TileMatrix>6</TileMatrix>
     8906                                                <MinTileRow>22</MinTileRow>
     8907                                                <MaxTileRow>22</MaxTileRow>
     8908                                                <MinTileCol>31</MinTileCol>
     8909                                                <MaxTileCol>31</MaxTileCol>
     8910                                        </TileMatrixLimits>
     8911                                        <TileMatrixLimits>
     8912                                                <TileMatrix>7</TileMatrix>
     8913                                                <MinTileRow>45</MinTileRow>
     8914                                                <MaxTileRow>45</MaxTileRow>
     8915                                                <MinTileCol>63</MinTileCol>
     8916                                                <MaxTileCol>63</MaxTileCol>
     8917                                        </TileMatrixLimits>
     8918                                        <TileMatrixLimits>
     8919                                                <TileMatrix>8</TileMatrix>
     8920                                                <MinTileRow>90</MinTileRow>
     8921                                                <MaxTileRow>91</MaxTileRow>
     8922                                                <MinTileCol>127</MinTileCol>
     8923                                                <MaxTileCol>127</MaxTileCol>
     8924                                        </TileMatrixLimits>
     8925                                        <TileMatrixLimits>
     8926                                                <TileMatrix>9</TileMatrix>
     8927                                                <MinTileRow>181</MinTileRow>
     8928                                                <MaxTileRow>182</MaxTileRow>
     8929                                                <MinTileCol>255</MinTileCol>
     8930                                                <MaxTileCol>255</MaxTileCol>
     8931                                        </TileMatrixLimits>
     8932                                </TileMatrixSetLimits>
     8933                        </TileMatrixSetLink>
     8934                </Layer>
     8935                <Layer>
     8936                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     8937                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     8938                        <ows:Keywords>
     8939                                <ows:Keyword>Photographies</ows:Keyword>
     8940                        </ows:Keywords>
     8941                        <ows:WGS84BoundingBox>
     8942                                <ows:LowerCorner>-0.898358 45.3611</ows:LowerCorner>
     8943                                <ows:UpperCorner>-0.603782 45.5684</ows:UpperCorner>
     8944                        </ows:WGS84BoundingBox>
     8945                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-09-22-40328576</ows:Identifier>
     8946                        <Style isDefault="true">
     8947                                <ows:Title>Données Brutes</ows:Title>
     8948                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     8949                                <ows:Keywords>
     8950                                        <ows:Keyword>Défaut</ows:Keyword>
     8951                                </ows:Keywords>
     8952                                <ows:Identifier>normal</ows:Identifier>
     8953                                <LegendURL format="image/jpeg" height="200"
     8954                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     8955                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     8956                        </Style>
     8957                        <Format>image/jpeg</Format>
     8958                        <TileMatrixSetLink>
     8959                                <TileMatrixSet>PM</TileMatrixSet>
     8960                                <TileMatrixSetLimits>
     8961                                        <TileMatrixLimits>
     8962                                                <TileMatrix>0</TileMatrix>
     8963                                                <MinTileRow>0</MinTileRow>
     8964                                                <MaxTileRow>0</MaxTileRow>
     8965                                                <MinTileCol>0</MinTileCol>
     8966                                                <MaxTileCol>0</MaxTileCol>
     8967                                        </TileMatrixLimits>
     8968                                        <TileMatrixLimits>
     8969                                                <TileMatrix>1</TileMatrix>
     8970                                                <MinTileRow>0</MinTileRow>
     8971                                                <MaxTileRow>0</MaxTileRow>
     8972                                                <MinTileCol>0</MinTileCol>
     8973                                                <MaxTileCol>0</MaxTileCol>
     8974                                        </TileMatrixLimits>
     8975                                        <TileMatrixLimits>
     8976                                                <TileMatrix>10</TileMatrix>
     8977                                                <MinTileRow>366</MinTileRow>
     8978                                                <MaxTileRow>366</MaxTileRow>
     8979                                                <MinTileCol>509</MinTileCol>
     8980                                                <MaxTileCol>510</MaxTileCol>
     8981                                        </TileMatrixLimits>
     8982                                        <TileMatrixLimits>
     8983                                                <TileMatrix>11</TileMatrix>
     8984                                                <MinTileRow>732</MinTileRow>
     8985                                                <MaxTileRow>733</MaxTileRow>
     8986                                                <MinTileCol>1018</MinTileCol>
     8987                                                <MaxTileCol>1020</MaxTileCol>
     8988                                        </TileMatrixLimits>
     8989                                        <TileMatrixLimits>
     8990                                                <TileMatrix>12</TileMatrix>
     8991                                                <MinTileRow>1464</MinTileRow>
     8992                                                <MaxTileRow>1467</MaxTileRow>
     8993                                                <MinTileCol>2037</MinTileCol>
     8994                                                <MaxTileCol>2041</MaxTileCol>
     8995                                        </TileMatrixLimits>
     8996                                        <TileMatrixLimits>
     8997                                                <TileMatrix>13</TileMatrix>
     8998                                                <MinTileRow>2928</MinTileRow>
     8999                                                <MaxTileRow>2935</MaxTileRow>
     9000                                                <MinTileCol>4075</MinTileCol>
     9001                                                <MaxTileCol>4082</MaxTileCol>
     9002                                        </TileMatrixLimits>
     9003                                        <TileMatrixLimits>
     9004                                                <TileMatrix>14</TileMatrix>
     9005                                                <MinTileRow>5857</MinTileRow>
     9006                                                <MaxTileRow>5870</MaxTileRow>
     9007                                                <MinTileCol>8151</MinTileCol>
     9008                                                <MaxTileCol>8164</MaxTileCol>
     9009                                        </TileMatrixLimits>
     9010                                        <TileMatrixLimits>
     9011                                                <TileMatrix>15</TileMatrix>
     9012                                                <MinTileRow>11714</MinTileRow>
     9013                                                <MaxTileRow>11740</MaxTileRow>
     9014                                                <MinTileCol>16302</MinTileCol>
     9015                                                <MaxTileCol>16328</MaxTileCol>
     9016                                        </TileMatrixLimits>
     9017                                        <TileMatrixLimits>
     9018                                                <TileMatrix>16</TileMatrix>
     9019                                                <MinTileRow>23429</MinTileRow>
     9020                                                <MaxTileRow>23480</MaxTileRow>
     9021                                                <MinTileCol>32604</MinTileCol>
     9022                                                <MaxTileCol>32656</MaxTileCol>
     9023                                        </TileMatrixLimits>
     9024                                        <TileMatrixLimits>
     9025                                                <TileMatrix>17</TileMatrix>
     9026                                                <MinTileRow>46858</MinTileRow>
     9027                                                <MaxTileRow>46961</MaxTileRow>
     9028                                                <MinTileCol>65208</MinTileCol>
     9029                                                <MaxTileCol>65312</MaxTileCol>
     9030                                        </TileMatrixLimits>
     9031                                        <TileMatrixLimits>
     9032                                                <TileMatrix>18</TileMatrix>
     9033                                                <MinTileRow>93717</MinTileRow>
     9034                                                <MaxTileRow>93923</MaxTileRow>
     9035                                                <MinTileCol>130417</MinTileCol>
     9036                                                <MaxTileCol>130624</MaxTileCol>
     9037                                        </TileMatrixLimits>
     9038                                        <TileMatrixLimits>
     9039                                                <TileMatrix>2</TileMatrix>
     9040                                                <MinTileRow>1</MinTileRow>
     9041                                                <MaxTileRow>1</MaxTileRow>
     9042                                                <MinTileCol>1</MinTileCol>
     9043                                                <MaxTileCol>1</MaxTileCol>
     9044                                        </TileMatrixLimits>
     9045                                        <TileMatrixLimits>
     9046                                                <TileMatrix>3</TileMatrix>
     9047                                                <MinTileRow>2</MinTileRow>
     9048                                                <MaxTileRow>2</MaxTileRow>
     9049                                                <MinTileCol>3</MinTileCol>
     9050                                                <MaxTileCol>3</MaxTileCol>
     9051                                        </TileMatrixLimits>
     9052                                        <TileMatrixLimits>
     9053                                                <TileMatrix>4</TileMatrix>
     9054                                                <MinTileRow>5</MinTileRow>
     9055                                                <MaxTileRow>5</MaxTileRow>
     9056                                                <MinTileCol>7</MinTileCol>
     9057                                                <MaxTileCol>7</MaxTileCol>
     9058                                        </TileMatrixLimits>
     9059                                        <TileMatrixLimits>
     9060                                                <TileMatrix>5</TileMatrix>
     9061                                                <MinTileRow>11</MinTileRow>
     9062                                                <MaxTileRow>11</MaxTileRow>
     9063                                                <MinTileCol>15</MinTileCol>
     9064                                                <MaxTileCol>15</MaxTileCol>
     9065                                        </TileMatrixLimits>
     9066                                        <TileMatrixLimits>
     9067                                                <TileMatrix>6</TileMatrix>
     9068                                                <MinTileRow>22</MinTileRow>
     9069                                                <MaxTileRow>22</MaxTileRow>
     9070                                                <MinTileCol>31</MinTileCol>
     9071                                                <MaxTileCol>31</MaxTileCol>
     9072                                        </TileMatrixLimits>
     9073                                        <TileMatrixLimits>
     9074                                                <TileMatrix>7</TileMatrix>
     9075                                                <MinTileRow>45</MinTileRow>
     9076                                                <MaxTileRow>45</MaxTileRow>
     9077                                                <MinTileCol>63</MinTileCol>
     9078                                                <MaxTileCol>63</MaxTileCol>
     9079                                        </TileMatrixLimits>
     9080                                        <TileMatrixLimits>
     9081                                                <TileMatrix>8</TileMatrix>
     9082                                                <MinTileRow>91</MinTileRow>
     9083                                                <MaxTileRow>91</MaxTileRow>
     9084                                                <MinTileCol>127</MinTileCol>
     9085                                                <MaxTileCol>127</MaxTileCol>
     9086                                        </TileMatrixLimits>
     9087                                        <TileMatrixLimits>
     9088                                                <TileMatrix>9</TileMatrix>
     9089                                                <MinTileRow>183</MinTileRow>
     9090                                                <MaxTileRow>183</MaxTileRow>
     9091                                                <MinTileCol>254</MinTileCol>
     9092                                                <MaxTileCol>255</MaxTileCol>
     9093                                        </TileMatrixLimits>
     9094                                </TileMatrixSetLimits>
     9095                        </TileMatrixSetLink>
     9096                </Layer>
     9097                <Layer>
     9098                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     9099                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     9100                        <ows:Keywords>
     9101                                <ows:Keyword>Photographies</ows:Keyword>
     9102                        </ows:Keywords>
     9103                        <ows:WGS84BoundingBox>
     9104                                <ows:LowerCorner>-0.682134 45.1971</ows:LowerCorner>
     9105                                <ows:UpperCorner>-0.389156 45.4038</ows:UpperCorner>
     9106                        </ows:WGS84BoundingBox>
     9107                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-09-22-40337826</ows:Identifier>
     9108                        <Style isDefault="true">
     9109                                <ows:Title>Données Brutes</ows:Title>
     9110                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9111                                <ows:Keywords>
     9112                                        <ows:Keyword>Défaut</ows:Keyword>
     9113                                </ows:Keywords>
     9114                                <ows:Identifier>normal</ows:Identifier>
     9115                                <LegendURL format="image/jpeg" height="200"
     9116                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9117                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9118                        </Style>
     9119                        <Format>image/jpeg</Format>
     9120                        <TileMatrixSetLink>
     9121                                <TileMatrixSet>PM</TileMatrixSet>
     9122                                <TileMatrixSetLimits>
     9123                                        <TileMatrixLimits>
     9124                                                <TileMatrix>0</TileMatrix>
     9125                                                <MinTileRow>0</MinTileRow>
     9126                                                <MaxTileRow>0</MaxTileRow>
     9127                                                <MinTileCol>0</MinTileCol>
     9128                                                <MaxTileCol>0</MaxTileCol>
     9129                                        </TileMatrixLimits>
     9130                                        <TileMatrixLimits>
     9131                                                <TileMatrix>1</TileMatrix>
     9132                                                <MinTileRow>0</MinTileRow>
     9133                                                <MaxTileRow>0</MaxTileRow>
     9134                                                <MinTileCol>0</MinTileCol>
     9135                                                <MaxTileCol>0</MaxTileCol>
     9136                                        </TileMatrixLimits>
     9137                                        <TileMatrixLimits>
     9138                                                <TileMatrix>10</TileMatrix>
     9139                                                <MinTileRow>366</MinTileRow>
     9140                                                <MaxTileRow>367</MaxTileRow>
     9141                                                <MinTileCol>510</MinTileCol>
     9142                                                <MaxTileCol>510</MaxTileCol>
     9143                                        </TileMatrixLimits>
     9144                                        <TileMatrixLimits>
     9145                                                <TileMatrix>11</TileMatrix>
     9146                                                <MinTileRow>733</MinTileRow>
     9147                                                <MaxTileRow>735</MaxTileRow>
     9148                                                <MinTileCol>1020</MinTileCol>
     9149                                                <MaxTileCol>1021</MaxTileCol>
     9150                                        </TileMatrixLimits>
     9151                                        <TileMatrixLimits>
     9152                                                <TileMatrix>12</TileMatrix>
     9153                                                <MinTileRow>1467</MinTileRow>
     9154                                                <MaxTileRow>1470</MaxTileRow>
     9155                                                <MinTileCol>2040</MinTileCol>
     9156                                                <MaxTileCol>2043</MaxTileCol>
     9157                                        </TileMatrixLimits>
     9158                                        <TileMatrixLimits>
     9159                                                <TileMatrix>13</TileMatrix>
     9160                                                <MinTileRow>2934</MinTileRow>
     9161                                                <MaxTileRow>2940</MaxTileRow>
     9162                                                <MinTileCol>4080</MinTileCol>
     9163                                                <MaxTileCol>4087</MaxTileCol>
     9164                                        </TileMatrixLimits>
     9165                                        <TileMatrixLimits>
     9166                                                <TileMatrix>14</TileMatrix>
     9167                                                <MinTileRow>5868</MinTileRow>
     9168                                                <MaxTileRow>5880</MaxTileRow>
     9169                                                <MinTileCol>8161</MinTileCol>
     9170                                                <MaxTileCol>8174</MaxTileCol>
     9171                                        </TileMatrixLimits>
     9172                                        <TileMatrixLimits>
     9173                                                <TileMatrix>15</TileMatrix>
     9174                                                <MinTileRow>11736</MinTileRow>
     9175                                                <MaxTileRow>11761</MaxTileRow>
     9176                                                <MinTileCol>16322</MinTileCol>
     9177                                                <MaxTileCol>16348</MaxTileCol>
     9178                                        </TileMatrixLimits>
     9179                                        <TileMatrixLimits>
     9180                                                <TileMatrix>16</TileMatrix>
     9181                                                <MinTileRow>23472</MinTileRow>
     9182                                                <MaxTileRow>23522</MaxTileRow>
     9183                                                <MinTileCol>32644</MinTileCol>
     9184                                                <MaxTileCol>32697</MaxTileCol>
     9185                                        </TileMatrixLimits>
     9186                                        <TileMatrixLimits>
     9187                                                <TileMatrix>17</TileMatrix>
     9188                                                <MinTileRow>46945</MinTileRow>
     9189                                                <MaxTileRow>47044</MaxTileRow>
     9190                                                <MinTileCol>65289</MinTileCol>
     9191                                                <MaxTileCol>65394</MaxTileCol>
     9192                                        </TileMatrixLimits>
     9193                                        <TileMatrixLimits>
     9194                                                <TileMatrix>18</TileMatrix>
     9195                                                <MinTileRow>93890</MinTileRow>
     9196                                                <MaxTileRow>94089</MaxTileRow>
     9197                                                <MinTileCol>130579</MinTileCol>
     9198                                                <MaxTileCol>130788</MaxTileCol>
     9199                                        </TileMatrixLimits>
     9200                                        <TileMatrixLimits>
     9201                                                <TileMatrix>2</TileMatrix>
     9202                                                <MinTileRow>1</MinTileRow>
     9203                                                <MaxTileRow>1</MaxTileRow>
     9204                                                <MinTileCol>1</MinTileCol>
     9205                                                <MaxTileCol>1</MaxTileCol>
     9206                                        </TileMatrixLimits>
     9207                                        <TileMatrixLimits>
     9208                                                <TileMatrix>3</TileMatrix>
     9209                                                <MinTileRow>2</MinTileRow>
     9210                                                <MaxTileRow>2</MaxTileRow>
     9211                                                <MinTileCol>3</MinTileCol>
     9212                                                <MaxTileCol>3</MaxTileCol>
     9213                                        </TileMatrixLimits>
     9214                                        <TileMatrixLimits>
     9215                                                <TileMatrix>4</TileMatrix>
     9216                                                <MinTileRow>5</MinTileRow>
     9217                                                <MaxTileRow>5</MaxTileRow>
     9218                                                <MinTileCol>7</MinTileCol>
     9219                                                <MaxTileCol>7</MaxTileCol>
     9220                                        </TileMatrixLimits>
     9221                                        <TileMatrixLimits>
     9222                                                <TileMatrix>5</TileMatrix>
     9223                                                <MinTileRow>11</MinTileRow>
     9224                                                <MaxTileRow>11</MaxTileRow>
     9225                                                <MinTileCol>15</MinTileCol>
     9226                                                <MaxTileCol>15</MaxTileCol>
     9227                                        </TileMatrixLimits>
     9228                                        <TileMatrixLimits>
     9229                                                <TileMatrix>6</TileMatrix>
     9230                                                <MinTileRow>22</MinTileRow>
     9231                                                <MaxTileRow>22</MaxTileRow>
     9232                                                <MinTileCol>31</MinTileCol>
     9233                                                <MaxTileCol>31</MaxTileCol>
     9234                                        </TileMatrixLimits>
     9235                                        <TileMatrixLimits>
     9236                                                <TileMatrix>7</TileMatrix>
     9237                                                <MinTileRow>45</MinTileRow>
     9238                                                <MaxTileRow>45</MaxTileRow>
     9239                                                <MinTileCol>63</MinTileCol>
     9240                                                <MaxTileCol>63</MaxTileCol>
     9241                                        </TileMatrixLimits>
     9242                                        <TileMatrixLimits>
     9243                                                <TileMatrix>8</TileMatrix>
     9244                                                <MinTileRow>91</MinTileRow>
     9245                                                <MaxTileRow>91</MaxTileRow>
     9246                                                <MinTileCol>127</MinTileCol>
     9247                                                <MaxTileCol>127</MaxTileCol>
     9248                                        </TileMatrixLimits>
     9249                                        <TileMatrixLimits>
     9250                                                <TileMatrix>9</TileMatrix>
     9251                                                <MinTileRow>183</MinTileRow>
     9252                                                <MaxTileRow>183</MaxTileRow>
     9253                                                <MinTileCol>255</MinTileCol>
     9254                                                <MaxTileCol>255</MaxTileCol>
     9255                                        </TileMatrixLimits>
     9256                                </TileMatrixSetLimits>
     9257                        </TileMatrixSetLink>
     9258                </Layer>
     9259                <Layer>
     9260                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     9261                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     9262                        <ows:Keywords>
     9263                                <ows:Keyword>Photographies</ows:Keyword>
     9264                        </ows:Keywords>
     9265                        <ows:WGS84BoundingBox>
     9266                                <ows:LowerCorner>-0.692889 45.35</ows:LowerCorner>
     9267                                <ows:UpperCorner>-0.372951 45.5666</ows:UpperCorner>
     9268                        </ows:WGS84BoundingBox>
     9269                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-10-30-40795201</ows:Identifier>
     9270                        <Style isDefault="true">
     9271                                <ows:Title>Données Brutes</ows:Title>
     9272                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9273                                <ows:Keywords>
     9274                                        <ows:Keyword>Défaut</ows:Keyword>
     9275                                </ows:Keywords>
     9276                                <ows:Identifier>normal</ows:Identifier>
     9277                                <LegendURL format="image/jpeg" height="200"
     9278                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9279                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9280                        </Style>
     9281                        <Format>image/jpeg</Format>
     9282                        <TileMatrixSetLink>
     9283                                <TileMatrixSet>PM</TileMatrixSet>
     9284                                <TileMatrixSetLimits>
     9285                                        <TileMatrixLimits>
     9286                                                <TileMatrix>0</TileMatrix>
     9287                                                <MinTileRow>0</MinTileRow>
     9288                                                <MaxTileRow>0</MaxTileRow>
     9289                                                <MinTileCol>0</MinTileCol>
     9290                                                <MaxTileCol>0</MaxTileCol>
     9291                                        </TileMatrixLimits>
     9292                                        <TileMatrixLimits>
     9293                                                <TileMatrix>1</TileMatrix>
     9294                                                <MinTileRow>0</MinTileRow>
     9295                                                <MaxTileRow>0</MaxTileRow>
     9296                                                <MinTileCol>0</MinTileCol>
     9297                                                <MaxTileCol>0</MaxTileCol>
     9298                                        </TileMatrixLimits>
     9299                                        <TileMatrixLimits>
     9300                                                <TileMatrix>10</TileMatrix>
     9301                                                <MinTileRow>366</MinTileRow>
     9302                                                <MaxTileRow>366</MaxTileRow>
     9303                                                <MinTileCol>510</MinTileCol>
     9304                                                <MaxTileCol>510</MaxTileCol>
     9305                                        </TileMatrixLimits>
     9306                                        <TileMatrixLimits>
     9307                                                <TileMatrix>11</TileMatrix>
     9308                                                <MinTileRow>732</MinTileRow>
     9309                                                <MaxTileRow>733</MaxTileRow>
     9310                                                <MinTileCol>1020</MinTileCol>
     9311                                                <MaxTileCol>1021</MaxTileCol>
     9312                                        </TileMatrixLimits>
     9313                                        <TileMatrixLimits>
     9314                                                <TileMatrix>12</TileMatrix>
     9315                                                <MinTileRow>1464</MinTileRow>
     9316                                                <MaxTileRow>1467</MaxTileRow>
     9317                                                <MinTileCol>2040</MinTileCol>
     9318                                                <MaxTileCol>2043</MaxTileCol>
     9319                                        </TileMatrixLimits>
     9320                                        <TileMatrixLimits>
     9321                                                <TileMatrix>13</TileMatrix>
     9322                                                <MinTileRow>2928</MinTileRow>
     9323                                                <MaxTileRow>2935</MaxTileRow>
     9324                                                <MinTileCol>4080</MinTileCol>
     9325                                                <MaxTileCol>4087</MaxTileCol>
     9326                                        </TileMatrixLimits>
     9327                                        <TileMatrixLimits>
     9328                                                <TileMatrix>14</TileMatrix>
     9329                                                <MinTileRow>5857</MinTileRow>
     9330                                                <MaxTileRow>5870</MaxTileRow>
     9331                                                <MinTileCol>8160</MinTileCol>
     9332                                                <MaxTileCol>8174</MaxTileCol>
     9333                                        </TileMatrixLimits>
     9334                                        <TileMatrixLimits>
     9335                                                <TileMatrix>15</TileMatrix>
     9336                                                <MinTileRow>11715</MinTileRow>
     9337                                                <MaxTileRow>11741</MaxTileRow>
     9338                                                <MinTileCol>16321</MinTileCol>
     9339                                                <MaxTileCol>16349</MaxTileCol>
     9340                                        </TileMatrixLimits>
     9341                                        <TileMatrixLimits>
     9342                                                <TileMatrix>16</TileMatrix>
     9343                                                <MinTileRow>23430</MinTileRow>
     9344                                                <MaxTileRow>23482</MaxTileRow>
     9345                                                <MinTileCol>32642</MinTileCol>
     9346                                                <MaxTileCol>32699</MaxTileCol>
     9347                                        </TileMatrixLimits>
     9348                                        <TileMatrixLimits>
     9349                                                <TileMatrix>17</TileMatrix>
     9350                                                <MinTileRow>46860</MinTileRow>
     9351                                                <MaxTileRow>46965</MaxTileRow>
     9352                                                <MinTileCol>65284</MinTileCol>
     9353                                                <MaxTileCol>65399</MaxTileCol>
     9354                                        </TileMatrixLimits>
     9355                                        <TileMatrixLimits>
     9356                                                <TileMatrix>18</TileMatrix>
     9357                                                <MinTileRow>93720</MinTileRow>
     9358                                                <MaxTileRow>93930</MaxTileRow>
     9359                                                <MinTileCol>130569</MinTileCol>
     9360                                                <MaxTileCol>130799</MaxTileCol>
     9361                                        </TileMatrixLimits>
     9362                                        <TileMatrixLimits>
     9363                                                <TileMatrix>2</TileMatrix>
     9364                                                <MinTileRow>1</MinTileRow>
     9365                                                <MaxTileRow>1</MaxTileRow>
     9366                                                <MinTileCol>1</MinTileCol>
     9367                                                <MaxTileCol>1</MaxTileCol>
     9368                                        </TileMatrixLimits>
     9369                                        <TileMatrixLimits>
     9370                                                <TileMatrix>3</TileMatrix>
     9371                                                <MinTileRow>2</MinTileRow>
     9372                                                <MaxTileRow>2</MaxTileRow>
     9373                                                <MinTileCol>3</MinTileCol>
     9374                                                <MaxTileCol>3</MaxTileCol>
     9375                                        </TileMatrixLimits>
     9376                                        <TileMatrixLimits>
     9377                                                <TileMatrix>4</TileMatrix>
     9378                                                <MinTileRow>5</MinTileRow>
     9379                                                <MaxTileRow>5</MaxTileRow>
     9380                                                <MinTileCol>7</MinTileCol>
     9381                                                <MaxTileCol>7</MaxTileCol>
     9382                                        </TileMatrixLimits>
     9383                                        <TileMatrixLimits>
     9384                                                <TileMatrix>5</TileMatrix>
     9385                                                <MinTileRow>11</MinTileRow>
     9386                                                <MaxTileRow>11</MaxTileRow>
     9387                                                <MinTileCol>15</MinTileCol>
     9388                                                <MaxTileCol>15</MaxTileCol>
     9389                                        </TileMatrixLimits>
     9390                                        <TileMatrixLimits>
     9391                                                <TileMatrix>6</TileMatrix>
     9392                                                <MinTileRow>22</MinTileRow>
     9393                                                <MaxTileRow>22</MaxTileRow>
     9394                                                <MinTileCol>31</MinTileCol>
     9395                                                <MaxTileCol>31</MaxTileCol>
     9396                                        </TileMatrixLimits>
     9397                                        <TileMatrixLimits>
     9398                                                <TileMatrix>7</TileMatrix>
     9399                                                <MinTileRow>45</MinTileRow>
     9400                                                <MaxTileRow>45</MaxTileRow>
     9401                                                <MinTileCol>63</MinTileCol>
     9402                                                <MaxTileCol>63</MaxTileCol>
     9403                                        </TileMatrixLimits>
     9404                                        <TileMatrixLimits>
     9405                                                <TileMatrix>8</TileMatrix>
     9406                                                <MinTileRow>91</MinTileRow>
     9407                                                <MaxTileRow>91</MaxTileRow>
     9408                                                <MinTileCol>127</MinTileCol>
     9409                                                <MaxTileCol>127</MaxTileCol>
     9410                                        </TileMatrixLimits>
     9411                                        <TileMatrixLimits>
     9412                                                <TileMatrix>9</TileMatrix>
     9413                                                <MinTileRow>183</MinTileRow>
     9414                                                <MaxTileRow>183</MaxTileRow>
     9415                                                <MinTileCol>255</MinTileCol>
     9416                                                <MaxTileCol>255</MaxTileCol>
     9417                                        </TileMatrixLimits>
     9418                                </TileMatrixSetLimits>
     9419                        </TileMatrixSetLink>
     9420                </Layer>
     9421                <Layer>
     9422                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     9423                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     9424                        <ows:Keywords>
     9425                                <ows:Keyword>Photographies</ows:Keyword>
     9426                        </ows:Keywords>
     9427                        <ows:WGS84BoundingBox>
     9428                                <ows:LowerCorner>-0.48028 45.123</ows:LowerCorner>
     9429                                <ows:UpperCorner>-0.168198 45.6532</ows:UpperCorner>
     9430                        </ows:WGS84BoundingBox>
     9431                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-12-16-40098951</ows:Identifier>
     9432                        <Style isDefault="true">
     9433                                <ows:Title>Données Brutes</ows:Title>
     9434                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9435                                <ows:Keywords>
     9436                                        <ows:Keyword>Défaut</ows:Keyword>
     9437                                </ows:Keywords>
     9438                                <ows:Identifier>normal</ows:Identifier>
     9439                                <LegendURL format="image/jpeg" height="200"
     9440                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9441                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9442                        </Style>
     9443                        <Format>image/jpeg</Format>
     9444                        <TileMatrixSetLink>
     9445                                <TileMatrixSet>PM</TileMatrixSet>
     9446                                <TileMatrixSetLimits>
     9447                                        <TileMatrixLimits>
     9448                                                <TileMatrix>0</TileMatrix>
     9449                                                <MinTileRow>0</MinTileRow>
     9450                                                <MaxTileRow>0</MaxTileRow>
     9451                                                <MinTileCol>0</MinTileCol>
     9452                                                <MaxTileCol>0</MaxTileCol>
     9453                                        </TileMatrixLimits>
     9454                                        <TileMatrixLimits>
     9455                                                <TileMatrix>1</TileMatrix>
     9456                                                <MinTileRow>0</MinTileRow>
     9457                                                <MaxTileRow>0</MaxTileRow>
     9458                                                <MinTileCol>0</MinTileCol>
     9459                                                <MaxTileCol>0</MaxTileCol>
     9460                                        </TileMatrixLimits>
     9461                                        <TileMatrixLimits>
     9462                                                <TileMatrix>10</TileMatrix>
     9463                                                <MinTileRow>365</MinTileRow>
     9464                                                <MaxTileRow>367</MaxTileRow>
     9465                                                <MinTileCol>510</MinTileCol>
     9466                                                <MaxTileCol>511</MaxTileCol>
     9467                                        </TileMatrixLimits>
     9468                                        <TileMatrixLimits>
     9469                                                <TileMatrix>11</TileMatrix>
     9470                                                <MinTileRow>731</MinTileRow>
     9471                                                <MaxTileRow>735</MaxTileRow>
     9472                                                <MinTileCol>1021</MinTileCol>
     9473                                                <MaxTileCol>1023</MaxTileCol>
     9474                                        </TileMatrixLimits>
     9475                                        <TileMatrixLimits>
     9476                                                <TileMatrix>12</TileMatrix>
     9477                                                <MinTileRow>1462</MinTileRow>
     9478                                                <MaxTileRow>1471</MaxTileRow>
     9479                                                <MinTileCol>2042</MinTileCol>
     9480                                                <MaxTileCol>2046</MaxTileCol>
     9481                                        </TileMatrixLimits>
     9482                                        <TileMatrixLimits>
     9483                                                <TileMatrix>13</TileMatrix>
     9484                                                <MinTileRow>2925</MinTileRow>
     9485                                                <MaxTileRow>2942</MaxTileRow>
     9486                                                <MinTileCol>4085</MinTileCol>
     9487                                                <MaxTileCol>4092</MaxTileCol>
     9488                                        </TileMatrixLimits>
     9489                                        <TileMatrixLimits>
     9490                                                <TileMatrix>14</TileMatrix>
     9491                                                <MinTileRow>5851</MinTileRow>
     9492                                                <MaxTileRow>5885</MaxTileRow>
     9493                                                <MinTileCol>8171</MinTileCol>
     9494                                                <MaxTileCol>8184</MaxTileCol>
     9495                                        </TileMatrixLimits>
     9496                                        <TileMatrixLimits>
     9497                                                <TileMatrix>15</TileMatrix>
     9498                                                <MinTileRow>11703</MinTileRow>
     9499                                                <MaxTileRow>11770</MaxTileRow>
     9500                                                <MinTileCol>16342</MinTileCol>
     9501                                                <MaxTileCol>16368</MaxTileCol>
     9502                                        </TileMatrixLimits>
     9503                                        <TileMatrixLimits>
     9504                                                <TileMatrix>16</TileMatrix>
     9505                                                <MinTileRow>23406</MinTileRow>
     9506                                                <MaxTileRow>23541</MaxTileRow>
     9507                                                <MinTileCol>32685</MinTileCol>
     9508                                                <MaxTileCol>32737</MaxTileCol>
     9509                                        </TileMatrixLimits>
     9510                                        <TileMatrixLimits>
     9511                                                <TileMatrix>17</TileMatrix>
     9512                                                <MinTileRow>46813</MinTileRow>
     9513                                                <MaxTileRow>47083</MaxTileRow>
     9514                                                <MinTileCol>65371</MinTileCol>
     9515                                                <MaxTileCol>65474</MaxTileCol>
     9516                                        </TileMatrixLimits>
     9517                                        <TileMatrixLimits>
     9518                                                <TileMatrix>18</TileMatrix>
     9519                                                <MinTileRow>93627</MinTileRow>
     9520                                                <MaxTileRow>94166</MaxTileRow>
     9521                                                <MinTileCol>130742</MinTileCol>
     9522                                                <MaxTileCol>130949</MaxTileCol>
     9523                                        </TileMatrixLimits>
     9524                                        <TileMatrixLimits>
     9525                                                <TileMatrix>2</TileMatrix>
     9526                                                <MinTileRow>1</MinTileRow>
     9527                                                <MaxTileRow>1</MaxTileRow>
     9528                                                <MinTileCol>1</MinTileCol>
     9529                                                <MaxTileCol>1</MaxTileCol>
     9530                                        </TileMatrixLimits>
     9531                                        <TileMatrixLimits>
     9532                                                <TileMatrix>3</TileMatrix>
     9533                                                <MinTileRow>2</MinTileRow>
     9534                                                <MaxTileRow>2</MaxTileRow>
     9535                                                <MinTileCol>3</MinTileCol>
     9536                                                <MaxTileCol>3</MaxTileCol>
     9537                                        </TileMatrixLimits>
     9538                                        <TileMatrixLimits>
     9539                                                <TileMatrix>4</TileMatrix>
     9540                                                <MinTileRow>5</MinTileRow>
     9541                                                <MaxTileRow>5</MaxTileRow>
     9542                                                <MinTileCol>7</MinTileCol>
     9543                                                <MaxTileCol>7</MaxTileCol>
     9544                                        </TileMatrixLimits>
     9545                                        <TileMatrixLimits>
     9546                                                <TileMatrix>5</TileMatrix>
     9547                                                <MinTileRow>11</MinTileRow>
     9548                                                <MaxTileRow>11</MaxTileRow>
     9549                                                <MinTileCol>15</MinTileCol>
     9550                                                <MaxTileCol>15</MaxTileCol>
     9551                                        </TileMatrixLimits>
     9552                                        <TileMatrixLimits>
     9553                                                <TileMatrix>6</TileMatrix>
     9554                                                <MinTileRow>22</MinTileRow>
     9555                                                <MaxTileRow>22</MaxTileRow>
     9556                                                <MinTileCol>31</MinTileCol>
     9557                                                <MaxTileCol>31</MaxTileCol>
     9558                                        </TileMatrixLimits>
     9559                                        <TileMatrixLimits>
     9560                                                <TileMatrix>7</TileMatrix>
     9561                                                <MinTileRow>45</MinTileRow>
     9562                                                <MaxTileRow>45</MaxTileRow>
     9563                                                <MinTileCol>63</MinTileCol>
     9564                                                <MaxTileCol>63</MaxTileCol>
     9565                                        </TileMatrixLimits>
     9566                                        <TileMatrixLimits>
     9567                                                <TileMatrix>8</TileMatrix>
     9568                                                <MinTileRow>91</MinTileRow>
     9569                                                <MaxTileRow>91</MaxTileRow>
     9570                                                <MinTileCol>127</MinTileCol>
     9571                                                <MaxTileCol>127</MaxTileCol>
     9572                                        </TileMatrixLimits>
     9573                                        <TileMatrixLimits>
     9574                                                <TileMatrix>9</TileMatrix>
     9575                                                <MinTileRow>182</MinTileRow>
     9576                                                <MaxTileRow>183</MaxTileRow>
     9577                                                <MinTileCol>255</MinTileCol>
     9578                                                <MaxTileCol>255</MaxTileCol>
     9579                                        </TileMatrixLimits>
     9580                                </TileMatrixSetLimits>
     9581                        </TileMatrixSetLink>
     9582                </Layer>
     9583                <Layer>
     9584                        <ows:Title>Orthophotographies Geosud de BDO-Departement-17 2013</ows:Title>
     9585                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-17 issues du projet Geosud.</ows:Abstract>
     9586                        <ows:Keywords>
     9587                                <ows:Keyword>Photographies</ows:Keyword>
     9588                        </ows:Keywords>
     9589                        <ows:WGS84BoundingBox>
     9590                                <ows:LowerCorner>-0.231004 45.1479</ows:LowerCorner>
     9591                                <ows:UpperCorner>0.0596615 45.3445</ows:UpperCorner>
     9592                        </ows:WGS84BoundingBox>
     9593                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-17-2013-12-16-40125950</ows:Identifier>
     9594                        <Style isDefault="true">
     9595                                <ows:Title>Données Brutes</ows:Title>
     9596                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9597                                <ows:Keywords>
     9598                                        <ows:Keyword>Défaut</ows:Keyword>
     9599                                </ows:Keywords>
     9600                                <ows:Identifier>normal</ows:Identifier>
     9601                                <LegendURL format="image/jpeg" height="200"
     9602                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9603                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9604                        </Style>
     9605                        <Format>image/jpeg</Format>
     9606                        <TileMatrixSetLink>
     9607                                <TileMatrixSet>PM</TileMatrixSet>
     9608                                <TileMatrixSetLimits>
     9609                                        <TileMatrixLimits>
     9610                                                <TileMatrix>0</TileMatrix>
     9611                                                <MinTileRow>0</MinTileRow>
     9612                                                <MaxTileRow>0</MaxTileRow>
     9613                                                <MinTileCol>0</MinTileCol>
     9614                                                <MaxTileCol>0</MaxTileCol>
     9615                                        </TileMatrixLimits>
     9616                                        <TileMatrixLimits>
     9617                                                <TileMatrix>1</TileMatrix>
     9618                                                <MinTileRow>0</MinTileRow>
     9619                                                <MaxTileRow>0</MaxTileRow>
     9620                                                <MinTileCol>0</MinTileCol>
     9621                                                <MaxTileCol>1</MaxTileCol>
     9622                                        </TileMatrixLimits>
     9623                                        <TileMatrixLimits>
     9624                                                <TileMatrix>10</TileMatrix>
     9625                                                <MinTileRow>366</MinTileRow>
     9626                                                <MaxTileRow>367</MaxTileRow>
     9627                                                <MinTileCol>511</MinTileCol>
     9628                                                <MaxTileCol>512</MaxTileCol>
     9629                                        </TileMatrixLimits>
     9630                                        <TileMatrixLimits>
     9631                                                <TileMatrix>11</TileMatrix>
     9632                                                <MinTileRow>733</MinTileRow>
     9633                                                <MaxTileRow>735</MaxTileRow>
     9634                                                <MinTileCol>1022</MinTileCol>
     9635                                                <MaxTileCol>1024</MaxTileCol>
     9636                                        </TileMatrixLimits>
     9637                                        <TileMatrixLimits>
     9638                                                <TileMatrix>12</TileMatrix>
     9639                                                <MinTileRow>1467</MinTileRow>
     9640                                                <MaxTileRow>1471</MaxTileRow>
     9641                                                <MinTileCol>2045</MinTileCol>
     9642                                                <MaxTileCol>2048</MaxTileCol>
     9643                                        </TileMatrixLimits>
     9644                                        <TileMatrixLimits>
     9645                                                <TileMatrix>13</TileMatrix>
     9646                                                <MinTileRow>2935</MinTileRow>
     9647                                                <MaxTileRow>2942</MaxTileRow>
     9648                                                <MinTileCol>4090</MinTileCol>
     9649                                                <MaxTileCol>4097</MaxTileCol>
     9650                                        </TileMatrixLimits>
     9651                                        <TileMatrixLimits>
     9652                                                <TileMatrix>14</TileMatrix>
     9653                                                <MinTileRow>5871</MinTileRow>
     9654                                                <MaxTileRow>5884</MaxTileRow>
     9655                                                <MinTileCol>8181</MinTileCol>
     9656                                                <MaxTileCol>8194</MaxTileCol>
     9657                                        </TileMatrixLimits>
     9658                                        <TileMatrixLimits>
     9659                                                <TileMatrix>15</TileMatrix>
     9660                                                <MinTileRow>11743</MinTileRow>
     9661                                                <MaxTileRow>11768</MaxTileRow>
     9662                                                <MinTileCol>16363</MinTileCol>
     9663                                                <MaxTileCol>16389</MaxTileCol>
     9664                                        </TileMatrixLimits>
     9665                                        <TileMatrixLimits>
     9666                                                <TileMatrix>16</TileMatrix>
     9667                                                <MinTileRow>23487</MinTileRow>
     9668                                                <MaxTileRow>23536</MaxTileRow>
     9669                                                <MinTileCol>32726</MinTileCol>
     9670                                                <MaxTileCol>32778</MaxTileCol>
     9671                                        </TileMatrixLimits>
     9672                                        <TileMatrixLimits>
     9673                                                <TileMatrix>17</TileMatrix>
     9674                                                <MinTileRow>46974</MinTileRow>
     9675                                                <MaxTileRow>47073</MaxTileRow>
     9676                                                <MinTileCol>65452</MinTileCol>
     9677                                                <MaxTileCol>65556</MaxTileCol>
     9678                                        </TileMatrixLimits>
     9679                                        <TileMatrixLimits>
     9680                                                <TileMatrix>18</TileMatrix>
     9681                                                <MinTileRow>93949</MinTileRow>
     9682                                                <MaxTileRow>94147</MaxTileRow>
     9683                                                <MinTileCol>130905</MinTileCol>
     9684                                                <MaxTileCol>131113</MaxTileCol>
     9685                                        </TileMatrixLimits>
     9686                                        <TileMatrixLimits>
     9687                                                <TileMatrix>2</TileMatrix>
     9688                                                <MinTileRow>1</MinTileRow>
     9689                                                <MaxTileRow>1</MaxTileRow>
     9690                                                <MinTileCol>1</MinTileCol>
     9691                                                <MaxTileCol>2</MaxTileCol>
     9692                                        </TileMatrixLimits>
     9693                                        <TileMatrixLimits>
     9694                                                <TileMatrix>3</TileMatrix>
     9695                                                <MinTileRow>2</MinTileRow>
     9696                                                <MaxTileRow>2</MaxTileRow>
     9697                                                <MinTileCol>3</MinTileCol>
     9698                                                <MaxTileCol>4</MaxTileCol>
     9699                                        </TileMatrixLimits>
     9700                                        <TileMatrixLimits>
     9701                                                <TileMatrix>4</TileMatrix>
     9702                                                <MinTileRow>5</MinTileRow>
     9703                                                <MaxTileRow>5</MaxTileRow>
     9704                                                <MinTileCol>7</MinTileCol>
     9705                                                <MaxTileCol>8</MaxTileCol>
     9706                                        </TileMatrixLimits>
     9707                                        <TileMatrixLimits>
     9708                                                <TileMatrix>5</TileMatrix>
     9709                                                <MinTileRow>11</MinTileRow>
     9710                                                <MaxTileRow>11</MaxTileRow>
     9711                                                <MinTileCol>15</MinTileCol>
     9712                                                <MaxTileCol>16</MaxTileCol>
     9713                                        </TileMatrixLimits>
     9714                                        <TileMatrixLimits>
     9715                                                <TileMatrix>6</TileMatrix>
     9716                                                <MinTileRow>22</MinTileRow>
     9717                                                <MaxTileRow>22</MaxTileRow>
     9718                                                <MinTileCol>31</MinTileCol>
     9719                                                <MaxTileCol>32</MaxTileCol>
     9720                                        </TileMatrixLimits>
     9721                                        <TileMatrixLimits>
     9722                                                <TileMatrix>7</TileMatrix>
     9723                                                <MinTileRow>45</MinTileRow>
     9724                                                <MaxTileRow>45</MaxTileRow>
     9725                                                <MinTileCol>63</MinTileCol>
     9726                                                <MaxTileCol>64</MaxTileCol>
     9727                                        </TileMatrixLimits>
     9728                                        <TileMatrixLimits>
     9729                                                <TileMatrix>8</TileMatrix>
     9730                                                <MinTileRow>91</MinTileRow>
     9731                                                <MaxTileRow>91</MaxTileRow>
     9732                                                <MinTileCol>127</MinTileCol>
     9733                                                <MaxTileCol>128</MaxTileCol>
     9734                                        </TileMatrixLimits>
     9735                                        <TileMatrixLimits>
     9736                                                <TileMatrix>9</TileMatrix>
     9737                                                <MinTileRow>183</MinTileRow>
     9738                                                <MaxTileRow>183</MaxTileRow>
     9739                                                <MinTileCol>255</MinTileCol>
     9740                                                <MaxTileCol>256</MaxTileCol>
     9741                                        </TileMatrixLimits>
     9742                                </TileMatrixSetLimits>
     9743                        </TileMatrixSetLink>
     9744                </Layer>
     9745                <Layer>
     9746                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     9747                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     9748                        <ows:Keywords>
     9749                                <ows:Keyword>Photographies</ows:Keyword>
     9750                        </ows:Keywords>
     9751                        <ows:WGS84BoundingBox>
     9752                                <ows:LowerCorner>6.94112 47.4114</ows:LowerCorner>
     9753                                <ows:UpperCorner>7.31445 47.7832</ows:UpperCorner>
     9754                        </ows:WGS84BoundingBox>
     9755                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-05-08-37490323</ows:Identifier>
     9756                        <Style isDefault="true">
     9757                                <ows:Title>Données Brutes</ows:Title>
     9758                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9759                                <ows:Keywords>
     9760                                        <ows:Keyword>Défaut</ows:Keyword>
     9761                                </ows:Keywords>
     9762                                <ows:Identifier>normal</ows:Identifier>
     9763                                <LegendURL format="image/jpeg" height="200"
     9764                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9765                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9766                        </Style>
     9767                        <Format>image/jpeg</Format>
     9768                        <TileMatrixSetLink>
     9769                                <TileMatrixSet>PM</TileMatrixSet>
     9770                                <TileMatrixSetLimits>
     9771                                        <TileMatrixLimits>
     9772                                                <TileMatrix>0</TileMatrix>
     9773                                                <MinTileRow>0</MinTileRow>
     9774                                                <MaxTileRow>0</MaxTileRow>
     9775                                                <MinTileCol>0</MinTileCol>
     9776                                                <MaxTileCol>0</MaxTileCol>
     9777                                        </TileMatrixLimits>
     9778                                        <TileMatrixLimits>
     9779                                                <TileMatrix>1</TileMatrix>
     9780                                                <MinTileRow>0</MinTileRow>
     9781                                                <MaxTileRow>0</MaxTileRow>
     9782                                                <MinTileCol>1</MinTileCol>
     9783                                                <MaxTileCol>1</MaxTileCol>
     9784                                        </TileMatrixLimits>
     9785                                        <TileMatrixLimits>
     9786                                                <TileMatrix>10</TileMatrix>
     9787                                                <MinTileRow>356</MinTileRow>
     9788                                                <MaxTileRow>358</MaxTileRow>
     9789                                                <MinTileCol>531</MinTileCol>
     9790                                                <MaxTileCol>532</MaxTileCol>
     9791                                        </TileMatrixLimits>
     9792                                        <TileMatrixLimits>
     9793                                                <TileMatrix>11</TileMatrix>
     9794                                                <MinTileRow>713</MinTileRow>
     9795                                                <MaxTileRow>716</MaxTileRow>
     9796                                                <MinTileCol>1063</MinTileCol>
     9797                                                <MaxTileCol>1065</MaxTileCol>
     9798                                        </TileMatrixLimits>
     9799                                        <TileMatrixLimits>
     9800                                                <TileMatrix>12</TileMatrix>
     9801                                                <MinTileRow>1427</MinTileRow>
     9802                                                <MaxTileRow>1433</MaxTileRow>
     9803                                                <MinTileCol>2127</MinTileCol>
     9804                                                <MaxTileCol>2130</MaxTileCol>
     9805                                        </TileMatrixLimits>
     9806                                        <TileMatrixLimits>
     9807                                                <TileMatrix>13</TileMatrix>
     9808                                                <MinTileRow>2855</MinTileRow>
     9809                                                <MaxTileRow>2867</MaxTileRow>
     9810                                                <MinTileCol>4254</MinTileCol>
     9811                                                <MaxTileCol>4261</MaxTileCol>
     9812                                        </TileMatrixLimits>
     9813                                        <TileMatrixLimits>
     9814                                                <TileMatrix>14</TileMatrix>
     9815                                                <MinTileRow>5710</MinTileRow>
     9816                                                <MaxTileRow>5735</MaxTileRow>
     9817                                                <MinTileCol>8508</MinTileCol>
     9818                                                <MaxTileCol>8523</MaxTileCol>
     9819                                        </TileMatrixLimits>
     9820                                        <TileMatrixLimits>
     9821                                                <TileMatrix>15</TileMatrix>
     9822                                                <MinTileRow>11420</MinTileRow>
     9823                                                <MaxTileRow>11470</MaxTileRow>
     9824                                                <MinTileCol>17017</MinTileCol>
     9825                                                <MaxTileCol>17047</MaxTileCol>
     9826                                        </TileMatrixLimits>
     9827                                        <TileMatrixLimits>
     9828                                                <TileMatrix>16</TileMatrix>
     9829                                                <MinTileRow>22840</MinTileRow>
     9830                                                <MaxTileRow>22940</MaxTileRow>
     9831                                                <MinTileCol>34035</MinTileCol>
     9832                                                <MaxTileCol>34094</MaxTileCol>
     9833                                        </TileMatrixLimits>
     9834                                        <TileMatrixLimits>
     9835                                                <TileMatrix>17</TileMatrix>
     9836                                                <MinTileRow>45680</MinTileRow>
     9837                                                <MaxTileRow>45880</MaxTileRow>
     9838                                                <MinTileCol>68071</MinTileCol>
     9839                                                <MaxTileCol>68189</MaxTileCol>
     9840                                        </TileMatrixLimits>
     9841                                        <TileMatrixLimits>
     9842                                                <TileMatrix>18</TileMatrix>
     9843                                                <MinTileRow>91360</MinTileRow>
     9844                                                <MaxTileRow>91761</MaxTileRow>
     9845                                                <MinTileCol>136142</MinTileCol>
     9846                                                <MaxTileCol>136379</MaxTileCol>
     9847                                        </TileMatrixLimits>
     9848                                        <TileMatrixLimits>
     9849                                                <TileMatrix>2</TileMatrix>
     9850                                                <MinTileRow>1</MinTileRow>
     9851                                                <MaxTileRow>1</MaxTileRow>
     9852                                                <MinTileCol>2</MinTileCol>
     9853                                                <MaxTileCol>2</MaxTileCol>
     9854                                        </TileMatrixLimits>
     9855                                        <TileMatrixLimits>
     9856                                                <TileMatrix>3</TileMatrix>
     9857                                                <MinTileRow>2</MinTileRow>
     9858                                                <MaxTileRow>2</MaxTileRow>
     9859                                                <MinTileCol>4</MinTileCol>
     9860                                                <MaxTileCol>4</MaxTileCol>
     9861                                        </TileMatrixLimits>
     9862                                        <TileMatrixLimits>
     9863                                                <TileMatrix>4</TileMatrix>
     9864                                                <MinTileRow>5</MinTileRow>
     9865                                                <MaxTileRow>5</MaxTileRow>
     9866                                                <MinTileCol>8</MinTileCol>
     9867                                                <MaxTileCol>8</MaxTileCol>
     9868                                        </TileMatrixLimits>
     9869                                        <TileMatrixLimits>
     9870                                                <TileMatrix>5</TileMatrix>
     9871                                                <MinTileRow>11</MinTileRow>
     9872                                                <MaxTileRow>11</MaxTileRow>
     9873                                                <MinTileCol>16</MinTileCol>
     9874                                                <MaxTileCol>16</MaxTileCol>
     9875                                        </TileMatrixLimits>
     9876                                        <TileMatrixLimits>
     9877                                                <TileMatrix>6</TileMatrix>
     9878                                                <MinTileRow>22</MinTileRow>
     9879                                                <MaxTileRow>22</MaxTileRow>
     9880                                                <MinTileCol>33</MinTileCol>
     9881                                                <MaxTileCol>33</MaxTileCol>
     9882                                        </TileMatrixLimits>
     9883                                        <TileMatrixLimits>
     9884                                                <TileMatrix>7</TileMatrix>
     9885                                                <MinTileRow>44</MinTileRow>
     9886                                                <MaxTileRow>44</MaxTileRow>
     9887                                                <MinTileCol>66</MinTileCol>
     9888                                                <MaxTileCol>66</MaxTileCol>
     9889                                        </TileMatrixLimits>
     9890                                        <TileMatrixLimits>
     9891                                                <TileMatrix>8</TileMatrix>
     9892                                                <MinTileRow>89</MinTileRow>
     9893                                                <MaxTileRow>89</MaxTileRow>
     9894                                                <MinTileCol>132</MinTileCol>
     9895                                                <MaxTileCol>133</MaxTileCol>
     9896                                        </TileMatrixLimits>
     9897                                        <TileMatrixLimits>
     9898                                                <TileMatrix>9</TileMatrix>
     9899                                                <MinTileRow>178</MinTileRow>
     9900                                                <MaxTileRow>179</MaxTileRow>
     9901                                                <MinTileCol>265</MinTileCol>
     9902                                                <MaxTileCol>266</MaxTileCol>
     9903                                        </TileMatrixLimits>
     9904                                </TileMatrixSetLimits>
     9905                        </TileMatrixSetLink>
     9906                </Layer>
     9907                <Layer>
     9908                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     9909                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     9910                        <ows:Keywords>
     9911                                <ows:Keyword>Photographies</ows:Keyword>
     9912                        </ows:Keywords>
     9913                        <ows:WGS84BoundingBox>
     9914                                <ows:LowerCorner>7.35461 47.4352</ows:LowerCorner>
     9915                                <ows:UpperCorner>7.67539 48.2357</ows:UpperCorner>
     9916                        </ows:WGS84BoundingBox>
     9917                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-05-18-38818864</ows:Identifier>
     9918                        <Style isDefault="true">
     9919                                <ows:Title>Données Brutes</ows:Title>
     9920                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     9921                                <ows:Keywords>
     9922                                        <ows:Keyword>Défaut</ows:Keyword>
     9923                                </ows:Keywords>
     9924                                <ows:Identifier>normal</ows:Identifier>
     9925                                <LegendURL format="image/jpeg" height="200"
     9926                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     9927                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     9928                        </Style>
     9929                        <Format>image/jpeg</Format>
     9930                        <TileMatrixSetLink>
     9931                                <TileMatrixSet>PM</TileMatrixSet>
     9932                                <TileMatrixSetLimits>
     9933                                        <TileMatrixLimits>
     9934                                                <TileMatrix>0</TileMatrix>
     9935                                                <MinTileRow>0</MinTileRow>
     9936                                                <MaxTileRow>0</MaxTileRow>
     9937                                                <MinTileCol>0</MinTileCol>
     9938                                                <MaxTileCol>0</MaxTileCol>
     9939                                        </TileMatrixLimits>
     9940                                        <TileMatrixLimits>
     9941                                                <TileMatrix>1</TileMatrix>
     9942                                                <MinTileRow>0</MinTileRow>
     9943                                                <MaxTileRow>0</MaxTileRow>
     9944                                                <MinTileCol>1</MinTileCol>
     9945                                                <MaxTileCol>1</MaxTileCol>
     9946                                        </TileMatrixLimits>
     9947                                        <TileMatrixLimits>
     9948                                                <TileMatrix>10</TileMatrix>
     9949                                                <MinTileRow>354</MinTileRow>
     9950                                                <MaxTileRow>358</MaxTileRow>
     9951                                                <MinTileCol>533</MinTileCol>
     9952                                                <MaxTileCol>533</MaxTileCol>
     9953                                        </TileMatrixLimits>
     9954                                        <TileMatrixLimits>
     9955                                                <TileMatrix>11</TileMatrix>
     9956                                                <MinTileRow>709</MinTileRow>
     9957                                                <MaxTileRow>716</MaxTileRow>
     9958                                                <MinTileCol>1066</MinTileCol>
     9959                                                <MaxTileCol>1067</MaxTileCol>
     9960                                        </TileMatrixLimits>
     9961                                        <TileMatrixLimits>
     9962                                                <TileMatrix>12</TileMatrix>
     9963                                                <MinTileRow>1419</MinTileRow>
     9964                                                <MaxTileRow>1433</MaxTileRow>
     9965                                                <MinTileCol>2132</MinTileCol>
     9966                                                <MaxTileCol>2135</MaxTileCol>
     9967                                        </TileMatrixLimits>
     9968                                        <TileMatrixLimits>
     9969                                                <TileMatrix>13</TileMatrix>
     9970                                                <MinTileRow>2839</MinTileRow>
     9971                                                <MaxTileRow>2866</MaxTileRow>
     9972                                                <MinTileCol>4264</MinTileCol>
     9973                                                <MaxTileCol>4270</MaxTileCol>
     9974                                        </TileMatrixLimits>
     9975                                        <TileMatrixLimits>
     9976                                                <TileMatrix>14</TileMatrix>
     9977                                                <MinTileRow>5679</MinTileRow>
     9978                                                <MaxTileRow>5733</MaxTileRow>
     9979                                                <MinTileCol>8529</MinTileCol>
     9980                                                <MaxTileCol>8540</MaxTileCol>
     9981                                        </TileMatrixLimits>
     9982                                        <TileMatrixLimits>
     9983                                                <TileMatrix>15</TileMatrix>
     9984                                                <MinTileRow>11358</MinTileRow>
     9985                                                <MaxTileRow>11466</MaxTileRow>
     9986                                                <MinTileCol>17058</MinTileCol>
     9987                                                <MaxTileCol>17080</MaxTileCol>
     9988                                        </TileMatrixLimits>
     9989                                        <TileMatrixLimits>
     9990                                                <TileMatrix>16</TileMatrix>
     9991                                                <MinTileRow>22716</MinTileRow>
     9992                                                <MaxTileRow>22932</MaxTileRow>
     9993                                                <MinTileCol>34117</MinTileCol>
     9994                                                <MaxTileCol>34161</MaxTileCol>
     9995                                        </TileMatrixLimits>
     9996                                        <TileMatrixLimits>
     9997                                                <TileMatrix>17</TileMatrix>
     9998                                                <MinTileRow>45433</MinTileRow>
     9999                                                <MaxTileRow>45864</MaxTileRow>
     10000                                                <MinTileCol>68234</MinTileCol>
     10001                                                <MaxTileCol>68322</MaxTileCol>
     10002                                        </TileMatrixLimits>
     10003                                        <TileMatrixLimits>
     10004                                                <TileMatrix>18</TileMatrix>
     10005                                                <MinTileRow>90867</MinTileRow>
     10006                                                <MaxTileRow>91729</MaxTileRow>
     10007                                                <MinTileCol>136469</MinTileCol>
     10008                                                <MaxTileCol>136645</MaxTileCol>
     10009                                        </TileMatrixLimits>
     10010                                        <TileMatrixLimits>
     10011                                                <TileMatrix>2</TileMatrix>
     10012                                                <MinTileRow>1</MinTileRow>
     10013                                                <MaxTileRow>1</MaxTileRow>
     10014                                                <MinTileCol>2</MinTileCol>
     10015                                                <MaxTileCol>2</MaxTileCol>
     10016                                        </TileMatrixLimits>
     10017                                        <TileMatrixLimits>
     10018                                                <TileMatrix>3</TileMatrix>
     10019                                                <MinTileRow>2</MinTileRow>
     10020                                                <MaxTileRow>2</MaxTileRow>
     10021                                                <MinTileCol>4</MinTileCol>
     10022                                                <MaxTileCol>4</MaxTileCol>
     10023                                        </TileMatrixLimits>
     10024                                        <TileMatrixLimits>
     10025                                                <TileMatrix>4</TileMatrix>
     10026                                                <MinTileRow>5</MinTileRow>
     10027                                                <MaxTileRow>5</MaxTileRow>
     10028                                                <MinTileCol>8</MinTileCol>
     10029                                                <MaxTileCol>8</MaxTileCol>
     10030                                        </TileMatrixLimits>
     10031                                        <TileMatrixLimits>
     10032                                                <TileMatrix>5</TileMatrix>
     10033                                                <MinTileRow>11</MinTileRow>
     10034                                                <MaxTileRow>11</MaxTileRow>
     10035                                                <MinTileCol>16</MinTileCol>
     10036                                                <MaxTileCol>16</MaxTileCol>
     10037                                        </TileMatrixLimits>
     10038                                        <TileMatrixLimits>
     10039                                                <TileMatrix>6</TileMatrix>
     10040                                                <MinTileRow>22</MinTileRow>
     10041                                                <MaxTileRow>22</MaxTileRow>
     10042                                                <MinTileCol>33</MinTileCol>
     10043                                                <MaxTileCol>33</MaxTileCol>
     10044                                        </TileMatrixLimits>
     10045                                        <TileMatrixLimits>
     10046                                                <TileMatrix>7</TileMatrix>
     10047                                                <MinTileRow>44</MinTileRow>
     10048                                                <MaxTileRow>44</MaxTileRow>
     10049                                                <MinTileCol>66</MinTileCol>
     10050                                                <MaxTileCol>66</MaxTileCol>
     10051                                        </TileMatrixLimits>
     10052                                        <TileMatrixLimits>
     10053                                                <TileMatrix>8</TileMatrix>
     10054                                                <MinTileRow>88</MinTileRow>
     10055                                                <MaxTileRow>89</MaxTileRow>
     10056                                                <MinTileCol>133</MinTileCol>
     10057                                                <MaxTileCol>133</MaxTileCol>
     10058                                        </TileMatrixLimits>
     10059                                        <TileMatrixLimits>
     10060                                                <TileMatrix>9</TileMatrix>
     10061                                                <MinTileRow>177</MinTileRow>
     10062                                                <MaxTileRow>179</MaxTileRow>
     10063                                                <MinTileCol>266</MinTileCol>
     10064                                                <MaxTileCol>266</MaxTileCol>
     10065                                        </TileMatrixLimits>
     10066                                </TileMatrixSetLimits>
     10067                        </TileMatrixSetLink>
     10068                </Layer>
     10069                <Layer>
     10070                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10071                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10072                        <ows:Keywords>
     10073                                <ows:Keyword>Photographies</ows:Keyword>
     10074                        </ows:Keywords>
     10075                        <ows:WGS84BoundingBox>
     10076                                <ows:LowerCorner>6.94911 47.8803</ows:LowerCorner>
     10077                                <ows:UpperCorner>7.31383 48.2695</ows:UpperCorner>
     10078                        </ows:WGS84BoundingBox>
     10079                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37553824</ows:Identifier>
     10080                        <Style isDefault="true">
     10081                                <ows:Title>Données Brutes</ows:Title>
     10082                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10083                                <ows:Keywords>
     10084                                        <ows:Keyword>Défaut</ows:Keyword>
     10085                                </ows:Keywords>
     10086                                <ows:Identifier>normal</ows:Identifier>
     10087                                <LegendURL format="image/jpeg" height="200"
     10088                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10089                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10090                        </Style>
     10091                        <Format>image/jpeg</Format>
     10092                        <TileMatrixSetLink>
     10093                                <TileMatrixSet>PM</TileMatrixSet>
     10094                                <TileMatrixSetLimits>
     10095                                        <TileMatrixLimits>
     10096                                                <TileMatrix>0</TileMatrix>
     10097                                                <MinTileRow>0</MinTileRow>
     10098                                                <MaxTileRow>0</MaxTileRow>
     10099                                                <MinTileCol>0</MinTileCol>
     10100                                                <MaxTileCol>0</MaxTileCol>
     10101                                        </TileMatrixLimits>
     10102                                        <TileMatrixLimits>
     10103                                                <TileMatrix>1</TileMatrix>
     10104                                                <MinTileRow>0</MinTileRow>
     10105                                                <MaxTileRow>0</MaxTileRow>
     10106                                                <MinTileCol>1</MinTileCol>
     10107                                                <MaxTileCol>1</MaxTileCol>
     10108                                        </TileMatrixLimits>
     10109                                        <TileMatrixLimits>
     10110                                                <TileMatrix>10</TileMatrix>
     10111                                                <MinTileRow>354</MinTileRow>
     10112                                                <MaxTileRow>356</MaxTileRow>
     10113                                                <MinTileCol>531</MinTileCol>
     10114                                                <MaxTileCol>532</MaxTileCol>
     10115                                        </TileMatrixLimits>
     10116                                        <TileMatrixLimits>
     10117                                                <TileMatrix>11</TileMatrix>
     10118                                                <MinTileRow>709</MinTileRow>
     10119                                                <MaxTileRow>712</MaxTileRow>
     10120                                                <MinTileCol>1063</MinTileCol>
     10121                                                <MaxTileCol>1065</MaxTileCol>
     10122                                        </TileMatrixLimits>
     10123                                        <TileMatrixLimits>
     10124                                                <TileMatrix>12</TileMatrix>
     10125                                                <MinTileRow>1419</MinTileRow>
     10126                                                <MaxTileRow>1425</MaxTileRow>
     10127                                                <MinTileCol>2127</MinTileCol>
     10128                                                <MaxTileCol>2130</MaxTileCol>
     10129                                        </TileMatrixLimits>
     10130                                        <TileMatrixLimits>
     10131                                                <TileMatrix>13</TileMatrix>
     10132                                                <MinTileRow>2838</MinTileRow>
     10133                                                <MaxTileRow>2851</MaxTileRow>
     10134                                                <MinTileCol>4254</MinTileCol>
     10135                                                <MaxTileCol>4261</MaxTileCol>
     10136                                        </TileMatrixLimits>
     10137                                        <TileMatrixLimits>
     10138                                                <TileMatrix>14</TileMatrix>
     10139                                                <MinTileRow>5677</MinTileRow>
     10140                                                <MaxTileRow>5702</MaxTileRow>
     10141                                                <MinTileCol>8508</MinTileCol>
     10142                                                <MaxTileCol>8523</MaxTileCol>
     10143                                        </TileMatrixLimits>
     10144                                        <TileMatrixLimits>
     10145                                                <TileMatrix>15</TileMatrix>
     10146                                                <MinTileRow>11354</MinTileRow>
     10147                                                <MaxTileRow>11405</MaxTileRow>
     10148                                                <MinTileCol>17016</MinTileCol>
     10149                                                <MaxTileCol>17047</MaxTileCol>
     10150                                        </TileMatrixLimits>
     10151                                        <TileMatrixLimits>
     10152                                                <TileMatrix>16</TileMatrix>
     10153                                                <MinTileRow>22709</MinTileRow>
     10154                                                <MaxTileRow>22810</MaxTileRow>
     10155                                                <MinTileCol>34032</MinTileCol>
     10156                                                <MaxTileCol>34094</MaxTileCol>
     10157                                        </TileMatrixLimits>
     10158                                        <TileMatrixLimits>
     10159                                                <TileMatrix>17</TileMatrix>
     10160                                                <MinTileRow>45418</MinTileRow>
     10161                                                <MaxTileRow>45621</MaxTileRow>
     10162                                                <MinTileCol>68065</MinTileCol>
     10163                                                <MaxTileCol>68189</MaxTileCol>
     10164                                        </TileMatrixLimits>
     10165                                        <TileMatrixLimits>
     10166                                                <TileMatrix>18</TileMatrix>
     10167                                                <MinTileRow>90836</MinTileRow>
     10168                                                <MaxTileRow>91243</MaxTileRow>
     10169                                                <MinTileCol>136131</MinTileCol>
     10170                                                <MaxTileCol>136378</MaxTileCol>
     10171                                        </TileMatrixLimits>
     10172                                        <TileMatrixLimits>
     10173                                                <TileMatrix>2</TileMatrix>
     10174                                                <MinTileRow>1</MinTileRow>
     10175                                                <MaxTileRow>1</MaxTileRow>
     10176                                                <MinTileCol>2</MinTileCol>
     10177                                                <MaxTileCol>2</MaxTileCol>
     10178                                        </TileMatrixLimits>
     10179                                        <TileMatrixLimits>
     10180                                                <TileMatrix>3</TileMatrix>
     10181                                                <MinTileRow>2</MinTileRow>
     10182                                                <MaxTileRow>2</MaxTileRow>
     10183                                                <MinTileCol>4</MinTileCol>
     10184                                                <MaxTileCol>4</MaxTileCol>
     10185                                        </TileMatrixLimits>
     10186                                        <TileMatrixLimits>
     10187                                                <TileMatrix>4</TileMatrix>
     10188                                                <MinTileRow>5</MinTileRow>
     10189                                                <MaxTileRow>5</MaxTileRow>
     10190                                                <MinTileCol>8</MinTileCol>
     10191                                                <MaxTileCol>8</MaxTileCol>
     10192                                        </TileMatrixLimits>
     10193                                        <TileMatrixLimits>
     10194                                                <TileMatrix>5</TileMatrix>
     10195                                                <MinTileRow>11</MinTileRow>
     10196                                                <MaxTileRow>11</MaxTileRow>
     10197                                                <MinTileCol>16</MinTileCol>
     10198                                                <MaxTileCol>16</MaxTileCol>
     10199                                        </TileMatrixLimits>
     10200                                        <TileMatrixLimits>
     10201                                                <TileMatrix>6</TileMatrix>
     10202                                                <MinTileRow>22</MinTileRow>
     10203                                                <MaxTileRow>22</MaxTileRow>
     10204                                                <MinTileCol>33</MinTileCol>
     10205                                                <MaxTileCol>33</MaxTileCol>
     10206                                        </TileMatrixLimits>
     10207                                        <TileMatrixLimits>
     10208                                                <TileMatrix>7</TileMatrix>
     10209                                                <MinTileRow>44</MinTileRow>
     10210                                                <MaxTileRow>44</MaxTileRow>
     10211                                                <MinTileCol>66</MinTileCol>
     10212                                                <MaxTileCol>66</MaxTileCol>
     10213                                        </TileMatrixLimits>
     10214                                        <TileMatrixLimits>
     10215                                                <TileMatrix>8</TileMatrix>
     10216                                                <MinTileRow>88</MinTileRow>
     10217                                                <MaxTileRow>89</MaxTileRow>
     10218                                                <MinTileCol>132</MinTileCol>
     10219                                                <MaxTileCol>133</MaxTileCol>
     10220                                        </TileMatrixLimits>
     10221                                        <TileMatrixLimits>
     10222                                                <TileMatrix>9</TileMatrix>
     10223                                                <MinTileRow>177</MinTileRow>
     10224                                                <MaxTileRow>178</MaxTileRow>
     10225                                                <MinTileCol>265</MinTileCol>
     10226                                                <MaxTileCol>266</MaxTileCol>
     10227                                        </TileMatrixLimits>
     10228                                </TileMatrixSetLimits>
     10229                        </TileMatrixSetLink>
     10230                </Layer>
     10231                <Layer>
     10232                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10233                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10234                        <ows:Keywords>
     10235                                <ows:Keyword>Photographies</ows:Keyword>
     10236                        </ows:Keywords>
     10237                        <ows:WGS84BoundingBox>
     10238                                <ows:LowerCorner>6.96828 47.4204</ows:LowerCorner>
     10239                                <ows:UpperCorner>7.30209 47.6295</ows:UpperCorner>
     10240                        </ows:WGS84BoundingBox>
     10241                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37563451</ows:Identifier>
     10242                        <Style isDefault="true">
     10243                                <ows:Title>Données Brutes</ows:Title>
     10244                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10245                                <ows:Keywords>
     10246                                        <ows:Keyword>Défaut</ows:Keyword>
     10247                                </ows:Keywords>
     10248                                <ows:Identifier>normal</ows:Identifier>
     10249                                <LegendURL format="image/jpeg" height="200"
     10250                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10251                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10252                        </Style>
     10253                        <Format>image/jpeg</Format>
     10254                        <TileMatrixSetLink>
     10255                                <TileMatrixSet>PM</TileMatrixSet>
     10256                                <TileMatrixSetLimits>
     10257                                        <TileMatrixLimits>
     10258                                                <TileMatrix>0</TileMatrix>
     10259                                                <MinTileRow>0</MinTileRow>
     10260                                                <MaxTileRow>0</MaxTileRow>
     10261                                                <MinTileCol>0</MinTileCol>
     10262                                                <MaxTileCol>0</MaxTileCol>
     10263                                        </TileMatrixLimits>
     10264                                        <TileMatrixLimits>
     10265                                                <TileMatrix>1</TileMatrix>
     10266                                                <MinTileRow>0</MinTileRow>
     10267                                                <MaxTileRow>0</MaxTileRow>
     10268                                                <MinTileCol>1</MinTileCol>
     10269                                                <MaxTileCol>1</MaxTileCol>
     10270                                        </TileMatrixLimits>
     10271                                        <TileMatrixLimits>
     10272                                                <TileMatrix>10</TileMatrix>
     10273                                                <MinTileRow>357</MinTileRow>
     10274                                                <MaxTileRow>358</MaxTileRow>
     10275                                                <MinTileCol>531</MinTileCol>
     10276                                                <MaxTileCol>532</MaxTileCol>
     10277                                        </TileMatrixLimits>
     10278                                        <TileMatrixLimits>
     10279                                                <TileMatrix>11</TileMatrix>
     10280                                                <MinTileRow>715</MinTileRow>
     10281                                                <MaxTileRow>716</MaxTileRow>
     10282                                                <MinTileCol>1063</MinTileCol>
     10283                                                <MaxTileCol>1065</MaxTileCol>
     10284                                        </TileMatrixLimits>
     10285                                        <TileMatrixLimits>
     10286                                                <TileMatrix>12</TileMatrix>
     10287                                                <MinTileRow>1430</MinTileRow>
     10288                                                <MaxTileRow>1433</MaxTileRow>
     10289                                                <MinTileCol>2127</MinTileCol>
     10290                                                <MaxTileCol>2130</MaxTileCol>
     10291                                        </TileMatrixLimits>
     10292                                        <TileMatrixLimits>
     10293                                                <TileMatrix>13</TileMatrix>
     10294                                                <MinTileRow>2860</MinTileRow>
     10295                                                <MaxTileRow>2867</MaxTileRow>
     10296                                                <MinTileCol>4254</MinTileCol>
     10297                                                <MaxTileCol>4261</MaxTileCol>
     10298                                        </TileMatrixLimits>
     10299                                        <TileMatrixLimits>
     10300                                                <TileMatrix>14</TileMatrix>
     10301                                                <MinTileRow>5721</MinTileRow>
     10302                                                <MaxTileRow>5734</MaxTileRow>
     10303                                                <MinTileCol>8509</MinTileCol>
     10304                                                <MaxTileCol>8523</MaxTileCol>
     10305                                        </TileMatrixLimits>
     10306                                        <TileMatrixLimits>
     10307                                                <TileMatrix>15</TileMatrix>
     10308                                                <MinTileRow>11442</MinTileRow>
     10309                                                <MaxTileRow>11469</MaxTileRow>
     10310                                                <MinTileCol>17019</MinTileCol>
     10311                                                <MaxTileCol>17047</MaxTileCol>
     10312                                        </TileMatrixLimits>
     10313                                        <TileMatrixLimits>
     10314                                                <TileMatrix>16</TileMatrix>
     10315                                                <MinTileRow>22884</MinTileRow>
     10316                                                <MaxTileRow>22938</MaxTileRow>
     10317                                                <MinTileCol>34038</MinTileCol>
     10318                                                <MaxTileCol>34095</MaxTileCol>
     10319                                        </TileMatrixLimits>
     10320                                        <TileMatrixLimits>
     10321                                                <TileMatrix>17</TileMatrix>
     10322                                                <MinTileRow>45768</MinTileRow>
     10323                                                <MaxTileRow>45876</MaxTileRow>
     10324                                                <MinTileCol>68077</MinTileCol>
     10325                                                <MaxTileCol>68190</MaxTileCol>
     10326                                        </TileMatrixLimits>
     10327                                        <TileMatrixLimits>
     10328                                                <TileMatrix>18</TileMatrix>
     10329                                                <MinTileRow>91537</MinTileRow>
     10330                                                <MaxTileRow>91752</MaxTileRow>
     10331                                                <MinTileCol>136154</MinTileCol>
     10332                                                <MaxTileCol>136380</MaxTileCol>
     10333                                        </TileMatrixLimits>
     10334                                        <TileMatrixLimits>
     10335                                                <TileMatrix>2</TileMatrix>
     10336                                                <MinTileRow>1</MinTileRow>
     10337                                                <MaxTileRow>1</MaxTileRow>
     10338                                                <MinTileCol>2</MinTileCol>
     10339                                                <MaxTileCol>2</MaxTileCol>
     10340                                        </TileMatrixLimits>
     10341                                        <TileMatrixLimits>
     10342                                                <TileMatrix>3</TileMatrix>
     10343                                                <MinTileRow>2</MinTileRow>
     10344                                                <MaxTileRow>2</MaxTileRow>
     10345                                                <MinTileCol>4</MinTileCol>
     10346                                                <MaxTileCol>4</MaxTileCol>
     10347                                        </TileMatrixLimits>
     10348                                        <TileMatrixLimits>
     10349                                                <TileMatrix>4</TileMatrix>
     10350                                                <MinTileRow>5</MinTileRow>
     10351                                                <MaxTileRow>5</MaxTileRow>
     10352                                                <MinTileCol>8</MinTileCol>
     10353                                                <MaxTileCol>8</MaxTileCol>
     10354                                        </TileMatrixLimits>
     10355                                        <TileMatrixLimits>
     10356                                                <TileMatrix>5</TileMatrix>
     10357                                                <MinTileRow>11</MinTileRow>
     10358                                                <MaxTileRow>11</MaxTileRow>
     10359                                                <MinTileCol>16</MinTileCol>
     10360                                                <MaxTileCol>16</MaxTileCol>
     10361                                        </TileMatrixLimits>
     10362                                        <TileMatrixLimits>
     10363                                                <TileMatrix>6</TileMatrix>
     10364                                                <MinTileRow>22</MinTileRow>
     10365                                                <MaxTileRow>22</MaxTileRow>
     10366                                                <MinTileCol>33</MinTileCol>
     10367                                                <MaxTileCol>33</MaxTileCol>
     10368                                        </TileMatrixLimits>
     10369                                        <TileMatrixLimits>
     10370                                                <TileMatrix>7</TileMatrix>
     10371                                                <MinTileRow>44</MinTileRow>
     10372                                                <MaxTileRow>44</MaxTileRow>
     10373                                                <MinTileCol>66</MinTileCol>
     10374                                                <MaxTileCol>66</MaxTileCol>
     10375                                        </TileMatrixLimits>
     10376                                        <TileMatrixLimits>
     10377                                                <TileMatrix>8</TileMatrix>
     10378                                                <MinTileRow>89</MinTileRow>
     10379                                                <MaxTileRow>89</MaxTileRow>
     10380                                                <MinTileCol>132</MinTileCol>
     10381                                                <MaxTileCol>133</MaxTileCol>
     10382                                        </TileMatrixLimits>
     10383                                        <TileMatrixLimits>
     10384                                                <TileMatrix>9</TileMatrix>
     10385                                                <MinTileRow>178</MinTileRow>
     10386                                                <MaxTileRow>179</MaxTileRow>
     10387                                                <MinTileCol>265</MinTileCol>
     10388                                                <MaxTileCol>266</MaxTileCol>
     10389                                        </TileMatrixLimits>
     10390                                </TileMatrixSetLimits>
     10391                        </TileMatrixSetLink>
     10392                </Layer>
     10393                <Layer>
     10394                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10395                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10396                        <ows:Keywords>
     10397                                <ows:Keyword>Photographies</ows:Keyword>
     10398                        </ows:Keywords>
     10399                        <ows:WGS84BoundingBox>
     10400                                <ows:LowerCorner>7.13912 47.3944</ows:LowerCorner>
     10401                                <ows:UpperCorner>7.56551 48.2166</ows:UpperCorner>
     10402                        </ows:WGS84BoundingBox>
     10403                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-12-37594949</ows:Identifier>
     10404                        <Style isDefault="true">
     10405                                <ows:Title>Données Brutes</ows:Title>
     10406                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10407                                <ows:Keywords>
     10408                                        <ows:Keyword>Défaut</ows:Keyword>
     10409                                </ows:Keywords>
     10410                                <ows:Identifier>normal</ows:Identifier>
     10411                                <LegendURL format="image/jpeg" height="200"
     10412                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10413                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10414                        </Style>
     10415                        <Format>image/jpeg</Format>
     10416                        <TileMatrixSetLink>
     10417                                <TileMatrixSet>PM</TileMatrixSet>
     10418                                <TileMatrixSetLimits>
     10419                                        <TileMatrixLimits>
     10420                                                <TileMatrix>0</TileMatrix>
     10421                                                <MinTileRow>0</MinTileRow>
     10422                                                <MaxTileRow>0</MaxTileRow>
     10423                                                <MinTileCol>0</MinTileCol>
     10424                                                <MaxTileCol>0</MaxTileCol>
     10425                                        </TileMatrixLimits>
     10426                                        <TileMatrixLimits>
     10427                                                <TileMatrix>1</TileMatrix>
     10428                                                <MinTileRow>0</MinTileRow>
     10429                                                <MaxTileRow>0</MaxTileRow>
     10430                                                <MinTileCol>1</MinTileCol>
     10431                                                <MaxTileCol>1</MaxTileCol>
     10432                                        </TileMatrixLimits>
     10433                                        <TileMatrixLimits>
     10434                                                <TileMatrix>10</TileMatrix>
     10435                                                <MinTileRow>355</MinTileRow>
     10436                                                <MaxTileRow>358</MaxTileRow>
     10437                                                <MinTileCol>532</MinTileCol>
     10438                                                <MaxTileCol>533</MaxTileCol>
     10439                                        </TileMatrixLimits>
     10440                                        <TileMatrixLimits>
     10441                                                <TileMatrix>11</TileMatrix>
     10442                                                <MinTileRow>710</MinTileRow>
     10443                                                <MaxTileRow>716</MaxTileRow>
     10444                                                <MinTileCol>1064</MinTileCol>
     10445                                                <MaxTileCol>1066</MaxTileCol>
     10446                                        </TileMatrixLimits>
     10447                                        <TileMatrixLimits>
     10448                                                <TileMatrix>12</TileMatrix>
     10449                                                <MinTileRow>1420</MinTileRow>
     10450                                                <MaxTileRow>1433</MaxTileRow>
     10451                                                <MinTileCol>2129</MinTileCol>
     10452                                                <MaxTileCol>2133</MaxTileCol>
     10453                                        </TileMatrixLimits>
     10454                                        <TileMatrixLimits>
     10455                                                <TileMatrix>13</TileMatrix>
     10456                                                <MinTileRow>2840</MinTileRow>
     10457                                                <MaxTileRow>2867</MaxTileRow>
     10458                                                <MinTileCol>4259</MinTileCol>
     10459                                                <MaxTileCol>4267</MaxTileCol>
     10460                                        </TileMatrixLimits>
     10461                                        <TileMatrixLimits>
     10462                                                <TileMatrix>14</TileMatrix>
     10463                                                <MinTileRow>5680</MinTileRow>
     10464                                                <MaxTileRow>5735</MaxTileRow>
     10465                                                <MinTileCol>8518</MinTileCol>
     10466                                                <MaxTileCol>8534</MaxTileCol>
     10467                                        </TileMatrixLimits>
     10468                                        <TileMatrixLimits>
     10469                                                <TileMatrix>15</TileMatrix>
     10470                                                <MinTileRow>11361</MinTileRow>
     10471                                                <MaxTileRow>11471</MaxTileRow>
     10472                                                <MinTileCol>17037</MinTileCol>
     10473                                                <MaxTileCol>17068</MaxTileCol>
     10474                                        </TileMatrixLimits>
     10475                                        <TileMatrixLimits>
     10476                                                <TileMatrix>16</TileMatrix>
     10477                                                <MinTileRow>22722</MinTileRow>
     10478                                                <MaxTileRow>22942</MaxTileRow>
     10479                                                <MinTileCol>34075</MinTileCol>
     10480                                                <MaxTileCol>34136</MaxTileCol>
     10481                                        </TileMatrixLimits>
     10482                                        <TileMatrixLimits>
     10483                                                <TileMatrix>17</TileMatrix>
     10484                                                <MinTileRow>45444</MinTileRow>
     10485                                                <MaxTileRow>45885</MaxTileRow>
     10486                                                <MinTileCol>68151</MinTileCol>
     10487                                                <MaxTileCol>68273</MaxTileCol>
     10488                                        </TileMatrixLimits>
     10489                                        <TileMatrixLimits>
     10490                                                <TileMatrix>18</TileMatrix>
     10491                                                <MinTileRow>90888</MinTileRow>
     10492                                                <MaxTileRow>91771</MaxTileRow>
     10493                                                <MinTileCol>136302</MinTileCol>
     10494                                                <MaxTileCol>136547</MaxTileCol>
     10495                                        </TileMatrixLimits>
     10496                                        <TileMatrixLimits>
     10497                                                <TileMatrix>2</TileMatrix>
     10498                                                <MinTileRow>1</MinTileRow>
     10499                                                <MaxTileRow>1</MaxTileRow>
     10500                                                <MinTileCol>2</MinTileCol>
     10501                                                <MaxTileCol>2</MaxTileCol>
     10502                                        </TileMatrixLimits>
     10503                                        <TileMatrixLimits>
     10504                                                <TileMatrix>3</TileMatrix>
     10505                                                <MinTileRow>2</MinTileRow>
     10506                                                <MaxTileRow>2</MaxTileRow>
     10507                                                <MinTileCol>4</MinTileCol>
     10508                                                <MaxTileCol>4</MaxTileCol>
     10509                                        </TileMatrixLimits>
     10510                                        <TileMatrixLimits>
     10511                                                <TileMatrix>4</TileMatrix>
     10512                                                <MinTileRow>5</MinTileRow>
     10513                                                <MaxTileRow>5</MaxTileRow>
     10514                                                <MinTileCol>8</MinTileCol>
     10515                                                <MaxTileCol>8</MaxTileCol>
     10516                                        </TileMatrixLimits>
     10517                                        <TileMatrixLimits>
     10518                                                <TileMatrix>5</TileMatrix>
     10519                                                <MinTileRow>11</MinTileRow>
     10520                                                <MaxTileRow>11</MaxTileRow>
     10521                                                <MinTileCol>16</MinTileCol>
     10522                                                <MaxTileCol>16</MaxTileCol>
     10523                                        </TileMatrixLimits>
     10524                                        <TileMatrixLimits>
     10525                                                <TileMatrix>6</TileMatrix>
     10526                                                <MinTileRow>22</MinTileRow>
     10527                                                <MaxTileRow>22</MaxTileRow>
     10528                                                <MinTileCol>33</MinTileCol>
     10529                                                <MaxTileCol>33</MaxTileCol>
     10530                                        </TileMatrixLimits>
     10531                                        <TileMatrixLimits>
     10532                                                <TileMatrix>7</TileMatrix>
     10533                                                <MinTileRow>44</MinTileRow>
     10534                                                <MaxTileRow>44</MaxTileRow>
     10535                                                <MinTileCol>66</MinTileCol>
     10536                                                <MaxTileCol>66</MaxTileCol>
     10537                                        </TileMatrixLimits>
     10538                                        <TileMatrixLimits>
     10539                                                <TileMatrix>8</TileMatrix>
     10540                                                <MinTileRow>88</MinTileRow>
     10541                                                <MaxTileRow>89</MaxTileRow>
     10542                                                <MinTileCol>133</MinTileCol>
     10543                                                <MaxTileCol>133</MaxTileCol>
     10544                                        </TileMatrixLimits>
     10545                                        <TileMatrixLimits>
     10546                                                <TileMatrix>9</TileMatrix>
     10547                                                <MinTileRow>177</MinTileRow>
     10548                                                <MaxTileRow>179</MaxTileRow>
     10549                                                <MinTileCol>266</MinTileCol>
     10550                                                <MaxTileCol>266</MaxTileCol>
     10551                                        </TileMatrixLimits>
     10552                                </TileMatrixSetLimits>
     10553                        </TileMatrixSetLink>
     10554                </Layer>
     10555                <Layer>
     10556                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10557                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10558                        <ows:Keywords>
     10559                                <ows:Keyword>Photographies</ows:Keyword>
     10560                        </ows:Keywords>
     10561                        <ows:WGS84BoundingBox>
     10562                                <ows:LowerCorner>6.90093 47.957</ows:LowerCorner>
     10563                                <ows:UpperCorner>7.18142 48.2982</ows:UpperCorner>
     10564                        </ows:WGS84BoundingBox>
     10565                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-07-16-38576487</ows:Identifier>
     10566                        <Style isDefault="true">
     10567                                <ows:Title>Données Brutes</ows:Title>
     10568                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10569                                <ows:Keywords>
     10570                                        <ows:Keyword>Défaut</ows:Keyword>
     10571                                </ows:Keywords>
     10572                                <ows:Identifier>normal</ows:Identifier>
     10573                                <LegendURL format="image/jpeg" height="200"
     10574                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10575                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10576                        </Style>
     10577                        <Format>image/jpeg</Format>
     10578                        <TileMatrixSetLink>
     10579                                <TileMatrixSet>PM</TileMatrixSet>
     10580                                <TileMatrixSetLimits>
     10581                                        <TileMatrixLimits>
     10582                                                <TileMatrix>0</TileMatrix>
     10583                                                <MinTileRow>0</MinTileRow>
     10584                                                <MaxTileRow>0</MaxTileRow>
     10585                                                <MinTileCol>0</MinTileCol>
     10586                                                <MaxTileCol>0</MaxTileCol>
     10587                                        </TileMatrixLimits>
     10588                                        <TileMatrixLimits>
     10589                                                <TileMatrix>1</TileMatrix>
     10590                                                <MinTileRow>0</MinTileRow>
     10591                                                <MaxTileRow>0</MaxTileRow>
     10592                                                <MinTileCol>1</MinTileCol>
     10593                                                <MaxTileCol>1</MaxTileCol>
     10594                                        </TileMatrixLimits>
     10595                                        <TileMatrixLimits>
     10596                                                <TileMatrix>10</TileMatrix>
     10597                                                <MinTileRow>354</MinTileRow>
     10598                                                <MaxTileRow>356</MaxTileRow>
     10599                                                <MinTileCol>531</MinTileCol>
     10600                                                <MaxTileCol>532</MaxTileCol>
     10601                                        </TileMatrixLimits>
     10602                                        <TileMatrixLimits>
     10603                                                <TileMatrix>11</TileMatrix>
     10604                                                <MinTileRow>709</MinTileRow>
     10605                                                <MaxTileRow>712</MaxTileRow>
     10606                                                <MinTileCol>1063</MinTileCol>
     10607                                                <MaxTileCol>1064</MaxTileCol>
     10608                                        </TileMatrixLimits>
     10609                                        <TileMatrixLimits>
     10610                                                <TileMatrix>12</TileMatrix>
     10611                                                <MinTileRow>1418</MinTileRow>
     10612                                                <MaxTileRow>1424</MaxTileRow>
     10613                                                <MinTileCol>2126</MinTileCol>
     10614                                                <MaxTileCol>2129</MaxTileCol>
     10615                                        </TileMatrixLimits>
     10616                                        <TileMatrixLimits>
     10617                                                <TileMatrix>13</TileMatrix>
     10618                                                <MinTileRow>2837</MinTileRow>
     10619                                                <MaxTileRow>2849</MaxTileRow>
     10620                                                <MinTileCol>4253</MinTileCol>
     10621                                                <MaxTileCol>4258</MaxTileCol>
     10622                                        </TileMatrixLimits>
     10623                                        <TileMatrixLimits>
     10624                                                <TileMatrix>14</TileMatrix>
     10625                                                <MinTileRow>5675</MinTileRow>
     10626                                                <MaxTileRow>5698</MaxTileRow>
     10627                                                <MinTileCol>8506</MinTileCol>
     10628                                                <MaxTileCol>8517</MaxTileCol>
     10629                                        </TileMatrixLimits>
     10630                                        <TileMatrixLimits>
     10631                                                <TileMatrix>15</TileMatrix>
     10632                                                <MinTileRow>11350</MinTileRow>
     10633                                                <MaxTileRow>11396</MaxTileRow>
     10634                                                <MinTileCol>17012</MinTileCol>
     10635                                                <MaxTileCol>17035</MaxTileCol>
     10636                                        </TileMatrixLimits>
     10637                                        <TileMatrixLimits>
     10638                                                <TileMatrix>16</TileMatrix>
     10639                                                <MinTileRow>22701</MinTileRow>
     10640                                                <MaxTileRow>22792</MaxTileRow>
     10641                                                <MinTileCol>34024</MinTileCol>
     10642                                                <MaxTileCol>34071</MaxTileCol>
     10643                                        </TileMatrixLimits>
     10644                                        <TileMatrixLimits>
     10645                                                <TileMatrix>17</TileMatrix>
     10646                                                <MinTileRow>45403</MinTileRow>
     10647                                                <MaxTileRow>45584</MaxTileRow>
     10648                                                <MinTileCol>68048</MinTileCol>
     10649                                                <MaxTileCol>68143</MaxTileCol>
     10650                                        </TileMatrixLimits>
     10651                                        <TileMatrixLimits>
     10652                                                <TileMatrix>18</TileMatrix>
     10653                                                <MinTileRow>90807</MinTileRow>
     10654                                                <MaxTileRow>91168</MaxTileRow>
     10655                                                <MinTileCol>136096</MinTileCol>
     10656                                                <MaxTileCol>136286</MaxTileCol>
     10657                                        </TileMatrixLimits>
     10658                                        <TileMatrixLimits>
     10659                                                <TileMatrix>2</TileMatrix>
     10660                                                <MinTileRow>1</MinTileRow>
     10661                                                <MaxTileRow>1</MaxTileRow>
     10662                                                <MinTileCol>2</MinTileCol>
     10663                                                <MaxTileCol>2</MaxTileCol>
     10664                                        </TileMatrixLimits>
     10665                                        <TileMatrixLimits>
     10666                                                <TileMatrix>3</TileMatrix>
     10667                                                <MinTileRow>2</MinTileRow>
     10668                                                <MaxTileRow>2</MaxTileRow>
     10669                                                <MinTileCol>4</MinTileCol>
     10670                                                <MaxTileCol>4</MaxTileCol>
     10671                                        </TileMatrixLimits>
     10672                                        <TileMatrixLimits>
     10673                                                <TileMatrix>4</TileMatrix>
     10674                                                <MinTileRow>5</MinTileRow>
     10675                                                <MaxTileRow>5</MaxTileRow>
     10676                                                <MinTileCol>8</MinTileCol>
     10677                                                <MaxTileCol>8</MaxTileCol>
     10678                                        </TileMatrixLimits>
     10679                                        <TileMatrixLimits>
     10680                                                <TileMatrix>5</TileMatrix>
     10681                                                <MinTileRow>11</MinTileRow>
     10682                                                <MaxTileRow>11</MaxTileRow>
     10683                                                <MinTileCol>16</MinTileCol>
     10684                                                <MaxTileCol>16</MaxTileCol>
     10685                                        </TileMatrixLimits>
     10686                                        <TileMatrixLimits>
     10687                                                <TileMatrix>6</TileMatrix>
     10688                                                <MinTileRow>22</MinTileRow>
     10689                                                <MaxTileRow>22</MaxTileRow>
     10690                                                <MinTileCol>33</MinTileCol>
     10691                                                <MaxTileCol>33</MaxTileCol>
     10692                                        </TileMatrixLimits>
     10693                                        <TileMatrixLimits>
     10694                                                <TileMatrix>7</TileMatrix>
     10695                                                <MinTileRow>44</MinTileRow>
     10696                                                <MaxTileRow>44</MaxTileRow>
     10697                                                <MinTileCol>66</MinTileCol>
     10698                                                <MaxTileCol>66</MaxTileCol>
     10699                                        </TileMatrixLimits>
     10700                                        <TileMatrixLimits>
     10701                                                <TileMatrix>8</TileMatrix>
     10702                                                <MinTileRow>88</MinTileRow>
     10703                                                <MaxTileRow>89</MaxTileRow>
     10704                                                <MinTileCol>132</MinTileCol>
     10705                                                <MaxTileCol>133</MaxTileCol>
     10706                                        </TileMatrixLimits>
     10707                                        <TileMatrixLimits>
     10708                                                <TileMatrix>9</TileMatrix>
     10709                                                <MinTileRow>177</MinTileRow>
     10710                                                <MaxTileRow>178</MaxTileRow>
     10711                                                <MinTileCol>265</MinTileCol>
     10712                                                <MaxTileCol>266</MaxTileCol>
     10713                                        </TileMatrixLimits>
     10714                                </TileMatrixSetLimits>
     10715                        </TileMatrixSetLink>
     10716                </Layer>
     10717                <Layer>
     10718                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10719                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10720                        <ows:Keywords>
     10721                                <ows:Keyword>Photographies</ows:Keyword>
     10722                        </ows:Keywords>
     10723                        <ows:WGS84BoundingBox>
     10724                                <ows:LowerCorner>7.09504 48.2137</ows:LowerCorner>
     10725                                <ows:UpperCorner>7.29278 48.3372</ows:UpperCorner>
     10726                        </ows:WGS84BoundingBox>
     10727                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-09-02-37582962</ows:Identifier>
     10728                        <Style isDefault="true">
     10729                                <ows:Title>Données Brutes</ows:Title>
     10730                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10731                                <ows:Keywords>
     10732                                        <ows:Keyword>Défaut</ows:Keyword>
     10733                                </ows:Keywords>
     10734                                <ows:Identifier>normal</ows:Identifier>
     10735                                <LegendURL format="image/jpeg" height="200"
     10736                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10737                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10738                        </Style>
     10739                        <Format>image/jpeg</Format>
     10740                        <TileMatrixSetLink>
     10741                                <TileMatrixSet>PM</TileMatrixSet>
     10742                                <TileMatrixSetLimits>
     10743                                        <TileMatrixLimits>
     10744                                                <TileMatrix>0</TileMatrix>
     10745                                                <MinTileRow>0</MinTileRow>
     10746                                                <MaxTileRow>0</MaxTileRow>
     10747                                                <MinTileCol>0</MinTileCol>
     10748                                                <MaxTileCol>0</MaxTileCol>
     10749                                        </TileMatrixLimits>
     10750                                        <TileMatrixLimits>
     10751                                                <TileMatrix>1</TileMatrix>
     10752                                                <MinTileRow>0</MinTileRow>
     10753                                                <MaxTileRow>0</MaxTileRow>
     10754                                                <MinTileCol>1</MinTileCol>
     10755                                                <MaxTileCol>1</MaxTileCol>
     10756                                        </TileMatrixLimits>
     10757                                        <TileMatrixLimits>
     10758                                                <TileMatrix>10</TileMatrix>
     10759                                                <MinTileRow>354</MinTileRow>
     10760                                                <MaxTileRow>355</MaxTileRow>
     10761                                                <MinTileCol>532</MinTileCol>
     10762                                                <MaxTileCol>532</MaxTileCol>
     10763                                        </TileMatrixLimits>
     10764                                        <TileMatrixLimits>
     10765                                                <TileMatrix>11</TileMatrix>
     10766                                                <MinTileRow>709</MinTileRow>
     10767                                                <MaxTileRow>710</MaxTileRow>
     10768                                                <MinTileCol>1064</MinTileCol>
     10769                                                <MaxTileCol>1065</MaxTileCol>
     10770                                        </TileMatrixLimits>
     10771                                        <TileMatrixLimits>
     10772                                                <TileMatrix>12</TileMatrix>
     10773                                                <MinTileRow>1418</MinTileRow>
     10774                                                <MaxTileRow>1420</MaxTileRow>
     10775                                                <MinTileCol>2128</MinTileCol>
     10776                                                <MaxTileCol>2130</MaxTileCol>
     10777                                        </TileMatrixLimits>
     10778                                        <TileMatrixLimits>
     10779                                                <TileMatrix>13</TileMatrix>
     10780                                                <MinTileRow>2836</MinTileRow>
     10781                                                <MaxTileRow>2840</MaxTileRow>
     10782                                                <MinTileCol>4257</MinTileCol>
     10783                                                <MaxTileCol>4261</MaxTileCol>
     10784                                        </TileMatrixLimits>
     10785                                        <TileMatrixLimits>
     10786                                                <TileMatrix>14</TileMatrix>
     10787                                                <MinTileRow>5672</MinTileRow>
     10788                                                <MaxTileRow>5680</MaxTileRow>
     10789                                                <MinTileCol>8514</MinTileCol>
     10790                                                <MaxTileCol>8523</MaxTileCol>
     10791                                        </TileMatrixLimits>
     10792                                        <TileMatrixLimits>
     10793                                                <TileMatrix>15</TileMatrix>
     10794                                                <MinTileRow>11345</MinTileRow>
     10795                                                <MaxTileRow>11361</MaxTileRow>
     10796                                                <MinTileCol>17029</MinTileCol>
     10797                                                <MaxTileCol>17047</MaxTileCol>
     10798                                        </TileMatrixLimits>
     10799                                        <TileMatrixLimits>
     10800                                                <TileMatrix>16</TileMatrix>
     10801                                                <MinTileRow>22690</MinTileRow>
     10802                                                <MaxTileRow>22722</MaxTileRow>
     10803                                                <MinTileCol>34059</MinTileCol>
     10804                                                <MaxTileCol>34095</MaxTileCol>
     10805                                        </TileMatrixLimits>
     10806                                        <TileMatrixLimits>
     10807                                                <TileMatrix>17</TileMatrix>
     10808                                                <MinTileRow>45380</MinTileRow>
     10809                                                <MaxTileRow>45445</MaxTileRow>
     10810                                                <MinTileCol>68119</MinTileCol>
     10811                                                <MaxTileCol>68191</MaxTileCol>
     10812                                        </TileMatrixLimits>
     10813                                        <TileMatrixLimits>
     10814                                                <TileMatrix>18</TileMatrix>
     10815                                                <MinTileRow>90761</MinTileRow>
     10816                                                <MaxTileRow>90891</MaxTileRow>
     10817                                                <MinTileCol>136238</MinTileCol>
     10818                                                <MaxTileCol>136382</MaxTileCol>
     10819                                        </TileMatrixLimits>
     10820                                        <TileMatrixLimits>
     10821                                                <TileMatrix>2</TileMatrix>
     10822                                                <MinTileRow>1</MinTileRow>
     10823                                                <MaxTileRow>1</MaxTileRow>
     10824                                                <MinTileCol>2</MinTileCol>
     10825                                                <MaxTileCol>2</MaxTileCol>
     10826                                        </TileMatrixLimits>
     10827                                        <TileMatrixLimits>
     10828                                                <TileMatrix>3</TileMatrix>
     10829                                                <MinTileRow>2</MinTileRow>
     10830                                                <MaxTileRow>2</MaxTileRow>
     10831                                                <MinTileCol>4</MinTileCol>
     10832                                                <MaxTileCol>4</MaxTileCol>
     10833                                        </TileMatrixLimits>
     10834                                        <TileMatrixLimits>
     10835                                                <TileMatrix>4</TileMatrix>
     10836                                                <MinTileRow>5</MinTileRow>
     10837                                                <MaxTileRow>5</MaxTileRow>
     10838                                                <MinTileCol>8</MinTileCol>
     10839                                                <MaxTileCol>8</MaxTileCol>
     10840                                        </TileMatrixLimits>
     10841                                        <TileMatrixLimits>
     10842                                                <TileMatrix>5</TileMatrix>
     10843                                                <MinTileRow>11</MinTileRow>
     10844                                                <MaxTileRow>11</MaxTileRow>
     10845                                                <MinTileCol>16</MinTileCol>
     10846                                                <MaxTileCol>16</MaxTileCol>
     10847                                        </TileMatrixLimits>
     10848                                        <TileMatrixLimits>
     10849                                                <TileMatrix>6</TileMatrix>
     10850                                                <MinTileRow>22</MinTileRow>
     10851                                                <MaxTileRow>22</MaxTileRow>
     10852                                                <MinTileCol>33</MinTileCol>
     10853                                                <MaxTileCol>33</MaxTileCol>
     10854                                        </TileMatrixLimits>
     10855                                        <TileMatrixLimits>
     10856                                                <TileMatrix>7</TileMatrix>
     10857                                                <MinTileRow>44</MinTileRow>
     10858                                                <MaxTileRow>44</MaxTileRow>
     10859                                                <MinTileCol>66</MinTileCol>
     10860                                                <MaxTileCol>66</MaxTileCol>
     10861                                        </TileMatrixLimits>
     10862                                        <TileMatrixLimits>
     10863                                                <TileMatrix>8</TileMatrix>
     10864                                                <MinTileRow>88</MinTileRow>
     10865                                                <MaxTileRow>88</MaxTileRow>
     10866                                                <MinTileCol>133</MinTileCol>
     10867                                                <MaxTileCol>133</MaxTileCol>
     10868                                        </TileMatrixLimits>
     10869                                        <TileMatrixLimits>
     10870                                                <TileMatrix>9</TileMatrix>
     10871                                                <MinTileRow>177</MinTileRow>
     10872                                                <MaxTileRow>177</MaxTileRow>
     10873                                                <MinTileCol>266</MinTileCol>
     10874                                                <MaxTileCol>266</MaxTileCol>
     10875                                        </TileMatrixLimits>
     10876                                </TileMatrixSetLimits>
     10877                        </TileMatrixSetLink>
     10878                </Layer>
     10879                <Layer>
     10880                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     10881                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     10882                        <ows:Keywords>
     10883                                <ows:Keyword>Photographies</ows:Keyword>
     10884                        </ows:Keywords>
     10885                        <ows:WGS84BoundingBox>
     10886                                <ows:LowerCorner>7.18559 48.1608</ows:LowerCorner>
     10887                                <ows:UpperCorner>7.50831 48.3339</ows:UpperCorner>
     10888                        </ows:WGS84BoundingBox>
     10889                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-09-02-37591667</ows:Identifier>
     10890                        <Style isDefault="true">
     10891                                <ows:Title>Données Brutes</ows:Title>
     10892                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     10893                                <ows:Keywords>
     10894                                        <ows:Keyword>Défaut</ows:Keyword>
     10895                                </ows:Keywords>
     10896                                <ows:Identifier>normal</ows:Identifier>
     10897                                <LegendURL format="image/jpeg" height="200"
     10898                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     10899                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     10900                        </Style>
     10901                        <Format>image/jpeg</Format>
     10902                        <TileMatrixSetLink>
     10903                                <TileMatrixSet>PM</TileMatrixSet>
     10904                                <TileMatrixSetLimits>
     10905                                        <TileMatrixLimits>
     10906                                                <TileMatrix>0</TileMatrix>
     10907                                                <MinTileRow>0</MinTileRow>
     10908                                                <MaxTileRow>0</MaxTileRow>
     10909                                                <MinTileCol>0</MinTileCol>
     10910                                                <MaxTileCol>0</MaxTileCol>
     10911                                        </TileMatrixLimits>
     10912                                        <TileMatrixLimits>
     10913                                                <TileMatrix>1</TileMatrix>
     10914                                                <MinTileRow>0</MinTileRow>
     10915                                                <MaxTileRow>0</MaxTileRow>
     10916                                                <MinTileCol>1</MinTileCol>
     10917                                                <MaxTileCol>1</MaxTileCol>
     10918                                        </TileMatrixLimits>
     10919                                        <TileMatrixLimits>
     10920                                                <TileMatrix>10</TileMatrix>
     10921                                                <MinTileRow>354</MinTileRow>
     10922                                                <MaxTileRow>355</MaxTileRow>
     10923                                                <MinTileCol>532</MinTileCol>
     10924                                                <MaxTileCol>533</MaxTileCol>
     10925                                        </TileMatrixLimits>
     10926                                        <TileMatrixLimits>
     10927                                                <TileMatrix>11</TileMatrix>
     10928                                                <MinTileRow>709</MinTileRow>
     10929                                                <MaxTileRow>710</MaxTileRow>
     10930                                                <MinTileCol>1064</MinTileCol>
     10931                                                <MaxTileCol>1066</MaxTileCol>
     10932                                        </TileMatrixLimits>
     10933                                        <TileMatrixLimits>
     10934                                                <TileMatrix>12</TileMatrix>
     10935                                                <MinTileRow>1418</MinTileRow>
     10936                                                <MaxTileRow>1421</MaxTileRow>
     10937                                                <MinTileCol>2129</MinTileCol>
     10938                                                <MaxTileCol>2133</MaxTileCol>
     10939                                        </TileMatrixLimits>
     10940                                        <TileMatrixLimits>
     10941                                                <TileMatrix>13</TileMatrix>
     10942                                                <MinTileRow>2836</MinTileRow>
     10943                                                <MaxTileRow>2842</MaxTileRow>
     10944                                                <MinTileCol>4259</MinTileCol>
     10945                                                <MaxTileCol>4266</MaxTileCol>
     10946                                        </TileMatrixLimits>
     10947                                        <TileMatrixLimits>
     10948                                                <TileMatrix>14</TileMatrix>
     10949                                                <MinTileRow>5672</MinTileRow>
     10950                                                <MaxTileRow>5684</MaxTileRow>
     10951                                                <MinTileCol>8519</MinTileCol>
     10952                                                <MaxTileCol>8533</MaxTileCol>
     10953                                        </TileMatrixLimits>
     10954                                        <TileMatrixLimits>
     10955                                                <TileMatrix>15</TileMatrix>
     10956                                                <MinTileRow>11345</MinTileRow>
     10957                                                <MaxTileRow>11368</MaxTileRow>
     10958                                                <MinTileCol>17038</MinTileCol>
     10959                                                <MaxTileCol>17066</MaxTileCol>
     10960                                        </TileMatrixLimits>
     10961                                        <TileMatrixLimits>
     10962                                                <TileMatrix>16</TileMatrix>
     10963                                                <MinTileRow>22690</MinTileRow>
     10964                                                <MaxTileRow>22737</MaxTileRow>
     10965                                                <MinTileCol>34076</MinTileCol>
     10966                                                <MaxTileCol>34133</MaxTileCol>
     10967                                        </TileMatrixLimits>
     10968                                        <TileMatrixLimits>
     10969                                                <TileMatrix>17</TileMatrix>
     10970                                                <MinTileRow>45380</MinTileRow>
     10971                                                <MaxTileRow>45474</MaxTileRow>
     10972                                                <MinTileCol>68152</MinTileCol>
     10973                                                <MaxTileCol>68266</MaxTileCol>
     10974                                        </TileMatrixLimits>
     10975                                        <TileMatrixLimits>
     10976                                                <TileMatrix>18</TileMatrix>
     10977                                                <MinTileRow>90761</MinTileRow>
     10978                                                <MaxTileRow>90949</MaxTileRow>
     10979                                                <MinTileCol>136304</MinTileCol>
     10980                                                <MaxTileCol>136533</MaxTileCol>
     10981                                        </TileMatrixLimits>
     10982                                        <TileMatrixLimits>
     10983                                                <TileMatrix>2</TileMatrix>
     10984                                                <MinTileRow>1</MinTileRow>
     10985                                                <MaxTileRow>1</MaxTileRow>
     10986                                                <MinTileCol>2</MinTileCol>
     10987                                                <MaxTileCol>2</MaxTileCol>
     10988                                        </TileMatrixLimits>
     10989                                        <TileMatrixLimits>
     10990                                                <TileMatrix>3</TileMatrix>
     10991                                                <MinTileRow>2</MinTileRow>
     10992                                                <MaxTileRow>2</MaxTileRow>
     10993                                                <MinTileCol>4</MinTileCol>
     10994                                                <MaxTileCol>4</MaxTileCol>
     10995                                        </TileMatrixLimits>
     10996                                        <TileMatrixLimits>
     10997                                                <TileMatrix>4</TileMatrix>
     10998                                                <MinTileRow>5</MinTileRow>
     10999                                                <MaxTileRow>5</MaxTileRow>
     11000                                                <MinTileCol>8</MinTileCol>
     11001                                                <MaxTileCol>8</MaxTileCol>
     11002                                        </TileMatrixLimits>
     11003                                        <TileMatrixLimits>
     11004                                                <TileMatrix>5</TileMatrix>
     11005                                                <MinTileRow>11</MinTileRow>
     11006                                                <MaxTileRow>11</MaxTileRow>
     11007                                                <MinTileCol>16</MinTileCol>
     11008                                                <MaxTileCol>16</MaxTileCol>
     11009                                        </TileMatrixLimits>
     11010                                        <TileMatrixLimits>
     11011                                                <TileMatrix>6</TileMatrix>
     11012                                                <MinTileRow>22</MinTileRow>
     11013                                                <MaxTileRow>22</MaxTileRow>
     11014                                                <MinTileCol>33</MinTileCol>
     11015                                                <MaxTileCol>33</MaxTileCol>
     11016                                        </TileMatrixLimits>
     11017                                        <TileMatrixLimits>
     11018                                                <TileMatrix>7</TileMatrix>
     11019                                                <MinTileRow>44</MinTileRow>
     11020                                                <MaxTileRow>44</MaxTileRow>
     11021                                                <MinTileCol>66</MinTileCol>
     11022                                                <MaxTileCol>66</MaxTileCol>
     11023                                        </TileMatrixLimits>
     11024                                        <TileMatrixLimits>
     11025                                                <TileMatrix>8</TileMatrix>
     11026                                                <MinTileRow>88</MinTileRow>
     11027                                                <MaxTileRow>88</MaxTileRow>
     11028                                                <MinTileCol>133</MinTileCol>
     11029                                                <MaxTileCol>133</MaxTileCol>
     11030                                        </TileMatrixLimits>
     11031                                        <TileMatrixLimits>
     11032                                                <TileMatrix>9</TileMatrix>
     11033                                                <MinTileRow>177</MinTileRow>
     11034                                                <MaxTileRow>177</MaxTileRow>
     11035                                                <MinTileCol>266</MinTileCol>
     11036                                                <MaxTileCol>266</MaxTileCol>
     11037                                        </TileMatrixLimits>
     11038                                </TileMatrixSetLimits>
     11039                        </TileMatrixSetLink>
     11040                </Layer>
     11041                <Layer>
     11042                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     11043                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     11044                        <ows:Keywords>
     11045                                <ows:Keyword>Photographies</ows:Keyword>
     11046                        </ows:Keywords>
     11047                        <ows:WGS84BoundingBox>
     11048                                <ows:LowerCorner>6.81653 47.7189</ows:LowerCorner>
     11049                                <ows:UpperCorner>7.02616 48.0308</ows:UpperCorner>
     11050                        </ows:WGS84BoundingBox>
     11051                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-22-38502449</ows:Identifier>
     11052                        <Style isDefault="true">
     11053                                <ows:Title>Données Brutes</ows:Title>
     11054                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11055                                <ows:Keywords>
     11056                                        <ows:Keyword>Défaut</ows:Keyword>
     11057                                </ows:Keywords>
     11058                                <ows:Identifier>normal</ows:Identifier>
     11059                                <LegendURL format="image/jpeg" height="200"
     11060                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11061                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11062                        </Style>
     11063                        <Format>image/jpeg</Format>
     11064                        <TileMatrixSetLink>
     11065                                <TileMatrixSet>PM</TileMatrixSet>
     11066                                <TileMatrixSetLimits>
     11067                                        <TileMatrixLimits>
     11068                                                <TileMatrix>0</TileMatrix>
     11069                                                <MinTileRow>0</MinTileRow>
     11070                                                <MaxTileRow>0</MaxTileRow>
     11071                                                <MinTileCol>0</MinTileCol>
     11072                                                <MaxTileCol>0</MaxTileCol>
     11073                                        </TileMatrixLimits>
     11074                                        <TileMatrixLimits>
     11075                                                <TileMatrix>1</TileMatrix>
     11076                                                <MinTileRow>0</MinTileRow>
     11077                                                <MaxTileRow>0</MaxTileRow>
     11078                                                <MinTileCol>1</MinTileCol>
     11079                                                <MaxTileCol>1</MaxTileCol>
     11080                                        </TileMatrixLimits>
     11081                                        <TileMatrixLimits>
     11082                                                <TileMatrix>10</TileMatrix>
     11083                                                <MinTileRow>355</MinTileRow>
     11084                                                <MaxTileRow>357</MaxTileRow>
     11085                                                <MinTileCol>531</MinTileCol>
     11086                                                <MaxTileCol>531</MaxTileCol>
     11087                                        </TileMatrixLimits>
     11088                                        <TileMatrixLimits>
     11089                                                <TileMatrix>11</TileMatrix>
     11090                                                <MinTileRow>711</MinTileRow>
     11091                                                <MaxTileRow>714</MaxTileRow>
     11092                                                <MinTileCol>1062</MinTileCol>
     11093                                                <MaxTileCol>1063</MaxTileCol>
     11094                                        </TileMatrixLimits>
     11095                                        <TileMatrixLimits>
     11096                                                <TileMatrix>12</TileMatrix>
     11097                                                <MinTileRow>1423</MinTileRow>
     11098                                                <MaxTileRow>1428</MaxTileRow>
     11099                                                <MinTileCol>2125</MinTileCol>
     11100                                                <MaxTileCol>2127</MaxTileCol>
     11101                                        </TileMatrixLimits>
     11102                                        <TileMatrixLimits>
     11103                                                <TileMatrix>13</TileMatrix>
     11104                                                <MinTileRow>2846</MinTileRow>
     11105                                                <MaxTileRow>2857</MaxTileRow>
     11106                                                <MinTileCol>4251</MinTileCol>
     11107                                                <MaxTileCol>4255</MaxTileCol>
     11108                                        </TileMatrixLimits>
     11109                                        <TileMatrixLimits>
     11110                                                <TileMatrix>14</TileMatrix>
     11111                                                <MinTileRow>5693</MinTileRow>
     11112                                                <MaxTileRow>5714</MaxTileRow>
     11113                                                <MinTileCol>8502</MinTileCol>
     11114                                                <MaxTileCol>8511</MaxTileCol>
     11115                                        </TileMatrixLimits>
     11116                                        <TileMatrixLimits>
     11117                                                <TileMatrix>15</TileMatrix>
     11118                                                <MinTileRow>11386</MinTileRow>
     11119                                                <MaxTileRow>11428</MaxTileRow>
     11120                                                <MinTileCol>17004</MinTileCol>
     11121                                                <MaxTileCol>17022</MaxTileCol>
     11122                                        </TileMatrixLimits>
     11123                                        <TileMatrixLimits>
     11124                                                <TileMatrix>16</TileMatrix>
     11125                                                <MinTileRow>22773</MinTileRow>
     11126                                                <MaxTileRow>22857</MaxTileRow>
     11127                                                <MinTileCol>34009</MinTileCol>
     11128                                                <MaxTileCol>34045</MaxTileCol>
     11129                                        </TileMatrixLimits>
     11130                                        <TileMatrixLimits>
     11131                                                <TileMatrix>17</TileMatrix>
     11132                                                <MinTileRow>45547</MinTileRow>
     11133                                                <MaxTileRow>45715</MaxTileRow>
     11134                                                <MinTileCol>68019</MinTileCol>
     11135                                                <MaxTileCol>68090</MaxTileCol>
     11136                                        </TileMatrixLimits>
     11137                                        <TileMatrixLimits>
     11138                                                <TileMatrix>18</TileMatrix>
     11139                                                <MinTileRow>91095</MinTileRow>
     11140                                                <MaxTileRow>91430</MaxTileRow>
     11141                                                <MinTileCol>136039</MinTileCol>
     11142                                                <MaxTileCol>136180</MaxTileCol>
     11143                                        </TileMatrixLimits>
     11144                                        <TileMatrixLimits>
     11145                                                <TileMatrix>2</TileMatrix>
     11146                                                <MinTileRow>1</MinTileRow>
     11147                                                <MaxTileRow>1</MaxTileRow>
     11148                                                <MinTileCol>2</MinTileCol>
     11149                                                <MaxTileCol>2</MaxTileCol>
     11150                                        </TileMatrixLimits>
     11151                                        <TileMatrixLimits>
     11152                                                <TileMatrix>3</TileMatrix>
     11153                                                <MinTileRow>2</MinTileRow>
     11154                                                <MaxTileRow>2</MaxTileRow>
     11155                                                <MinTileCol>4</MinTileCol>
     11156                                                <MaxTileCol>4</MaxTileCol>
     11157                                        </TileMatrixLimits>
     11158                                        <TileMatrixLimits>
     11159                                                <TileMatrix>4</TileMatrix>
     11160                                                <MinTileRow>5</MinTileRow>
     11161                                                <MaxTileRow>5</MaxTileRow>
     11162                                                <MinTileCol>8</MinTileCol>
     11163                                                <MaxTileCol>8</MaxTileCol>
     11164                                        </TileMatrixLimits>
     11165                                        <TileMatrixLimits>
     11166                                                <TileMatrix>5</TileMatrix>
     11167                                                <MinTileRow>11</MinTileRow>
     11168                                                <MaxTileRow>11</MaxTileRow>
     11169                                                <MinTileCol>16</MinTileCol>
     11170                                                <MaxTileCol>16</MaxTileCol>
     11171                                        </TileMatrixLimits>
     11172                                        <TileMatrixLimits>
     11173                                                <TileMatrix>6</TileMatrix>
     11174                                                <MinTileRow>22</MinTileRow>
     11175                                                <MaxTileRow>22</MaxTileRow>
     11176                                                <MinTileCol>33</MinTileCol>
     11177                                                <MaxTileCol>33</MaxTileCol>
     11178                                        </TileMatrixLimits>
     11179                                        <TileMatrixLimits>
     11180                                                <TileMatrix>7</TileMatrix>
     11181                                                <MinTileRow>44</MinTileRow>
     11182                                                <MaxTileRow>44</MaxTileRow>
     11183                                                <MinTileCol>66</MinTileCol>
     11184                                                <MaxTileCol>66</MaxTileCol>
     11185                                        </TileMatrixLimits>
     11186                                        <TileMatrixLimits>
     11187                                                <TileMatrix>8</TileMatrix>
     11188                                                <MinTileRow>88</MinTileRow>
     11189                                                <MaxTileRow>89</MaxTileRow>
     11190                                                <MinTileCol>132</MinTileCol>
     11191                                                <MaxTileCol>132</MaxTileCol>
     11192                                        </TileMatrixLimits>
     11193                                        <TileMatrixLimits>
     11194                                                <TileMatrix>9</TileMatrix>
     11195                                                <MinTileRow>177</MinTileRow>
     11196                                                <MaxTileRow>178</MaxTileRow>
     11197                                                <MinTileCol>265</MinTileCol>
     11198                                                <MaxTileCol>265</MaxTileCol>
     11199                                        </TileMatrixLimits>
     11200                                </TileMatrixSetLimits>
     11201                        </TileMatrixSetLink>
     11202                </Layer>
     11203                <Layer>
     11204                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     11205                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     11206                        <ows:Keywords>
     11207                                <ows:Keyword>Photographies</ows:Keyword>
     11208                        </ows:Keywords>
     11209                        <ows:WGS84BoundingBox>
     11210                                <ows:LowerCorner>6.92245 47.702</ows:LowerCorner>
     11211                                <ows:UpperCorner>7.25388 48.0273</ows:UpperCorner>
     11212                        </ows:WGS84BoundingBox>
     11213                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-28-38649324</ows:Identifier>
     11214                        <Style isDefault="true">
     11215                                <ows:Title>Données Brutes</ows:Title>
     11216                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11217                                <ows:Keywords>
     11218                                        <ows:Keyword>Défaut</ows:Keyword>
     11219                                </ows:Keywords>
     11220                                <ows:Identifier>normal</ows:Identifier>
     11221                                <LegendURL format="image/jpeg" height="200"
     11222                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11223                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11224                        </Style>
     11225                        <Format>image/jpeg</Format>
     11226                        <TileMatrixSetLink>
     11227                                <TileMatrixSet>PM</TileMatrixSet>
     11228                                <TileMatrixSetLimits>
     11229                                        <TileMatrixLimits>
     11230                                                <TileMatrix>0</TileMatrix>
     11231                                                <MinTileRow>0</MinTileRow>
     11232                                                <MaxTileRow>0</MaxTileRow>
     11233                                                <MinTileCol>0</MinTileCol>
     11234                                                <MaxTileCol>0</MaxTileCol>
     11235                                        </TileMatrixLimits>
     11236                                        <TileMatrixLimits>
     11237                                                <TileMatrix>1</TileMatrix>
     11238                                                <MinTileRow>0</MinTileRow>
     11239                                                <MaxTileRow>0</MaxTileRow>
     11240                                                <MinTileCol>1</MinTileCol>
     11241                                                <MaxTileCol>1</MaxTileCol>
     11242                                        </TileMatrixLimits>
     11243                                        <TileMatrixLimits>
     11244                                                <TileMatrix>10</TileMatrix>
     11245                                                <MinTileRow>355</MinTileRow>
     11246                                                <MaxTileRow>357</MaxTileRow>
     11247                                                <MinTileCol>531</MinTileCol>
     11248                                                <MaxTileCol>532</MaxTileCol>
     11249                                        </TileMatrixLimits>
     11250                                        <TileMatrixLimits>
     11251                                                <TileMatrix>11</TileMatrix>
     11252                                                <MinTileRow>711</MinTileRow>
     11253                                                <MaxTileRow>714</MaxTileRow>
     11254                                                <MinTileCol>1063</MinTileCol>
     11255                                                <MaxTileCol>1065</MaxTileCol>
     11256                                        </TileMatrixLimits>
     11257                                        <TileMatrixLimits>
     11258                                                <TileMatrix>12</TileMatrix>
     11259                                                <MinTileRow>1423</MinTileRow>
     11260                                                <MaxTileRow>1428</MaxTileRow>
     11261                                                <MinTileCol>2126</MinTileCol>
     11262                                                <MaxTileCol>2130</MaxTileCol>
     11263                                        </TileMatrixLimits>
     11264                                        <TileMatrixLimits>
     11265                                                <TileMatrix>13</TileMatrix>
     11266                                                <MinTileRow>2846</MinTileRow>
     11267                                                <MaxTileRow>2857</MaxTileRow>
     11268                                                <MinTileCol>4253</MinTileCol>
     11269                                                <MaxTileCol>4260</MaxTileCol>
     11270                                        </TileMatrixLimits>
     11271                                        <TileMatrixLimits>
     11272                                                <TileMatrix>14</TileMatrix>
     11273                                                <MinTileRow>5693</MinTileRow>
     11274                                                <MaxTileRow>5715</MaxTileRow>
     11275                                                <MinTileCol>8507</MinTileCol>
     11276                                                <MaxTileCol>8521</MaxTileCol>
     11277                                        </TileMatrixLimits>
     11278                                        <TileMatrixLimits>
     11279                                                <TileMatrix>15</TileMatrix>
     11280                                                <MinTileRow>11386</MinTileRow>
     11281                                                <MaxTileRow>11430</MaxTileRow>
     11282                                                <MinTileCol>17015</MinTileCol>
     11283                                                <MaxTileCol>17043</MaxTileCol>
     11284                                        </TileMatrixLimits>
     11285                                        <TileMatrixLimits>
     11286                                                <TileMatrix>16</TileMatrix>
     11287                                                <MinTileRow>22773</MinTileRow>
     11288                                                <MaxTileRow>22861</MaxTileRow>
     11289                                                <MinTileCol>34031</MinTileCol>
     11290                                                <MaxTileCol>34086</MaxTileCol>
     11291                                        </TileMatrixLimits>
     11292                                        <TileMatrixLimits>
     11293                                                <TileMatrix>17</TileMatrix>
     11294                                                <MinTileRow>45547</MinTileRow>
     11295                                                <MaxTileRow>45722</MaxTileRow>
     11296                                                <MinTileCol>68063</MinTileCol>
     11297                                                <MaxTileCol>68172</MaxTileCol>
     11298                                        </TileMatrixLimits>
     11299                                        <TileMatrixLimits>
     11300                                                <TileMatrix>18</TileMatrix>
     11301                                                <MinTileRow>91095</MinTileRow>
     11302                                                <MaxTileRow>91444</MaxTileRow>
     11303                                                <MinTileCol>136126</MinTileCol>
     11304                                                <MaxTileCol>136345</MaxTileCol>
     11305                                        </TileMatrixLimits>
     11306                                        <TileMatrixLimits>
     11307                                                <TileMatrix>2</TileMatrix>
     11308                                                <MinTileRow>1</MinTileRow>
     11309                                                <MaxTileRow>1</MaxTileRow>
     11310                                                <MinTileCol>2</MinTileCol>
     11311                                                <MaxTileCol>2</MaxTileCol>
     11312                                        </TileMatrixLimits>
     11313                                        <TileMatrixLimits>
     11314                                                <TileMatrix>3</TileMatrix>
     11315                                                <MinTileRow>2</MinTileRow>
     11316                                                <MaxTileRow>2</MaxTileRow>
     11317                                                <MinTileCol>4</MinTileCol>
     11318                                                <MaxTileCol>4</MaxTileCol>
     11319                                        </TileMatrixLimits>
     11320                                        <TileMatrixLimits>
     11321                                                <TileMatrix>4</TileMatrix>
     11322                                                <MinTileRow>5</MinTileRow>
     11323                                                <MaxTileRow>5</MaxTileRow>
     11324                                                <MinTileCol>8</MinTileCol>
     11325                                                <MaxTileCol>8</MaxTileCol>
     11326                                        </TileMatrixLimits>
     11327                                        <TileMatrixLimits>
     11328                                                <TileMatrix>5</TileMatrix>
     11329                                                <MinTileRow>11</MinTileRow>
     11330                                                <MaxTileRow>11</MaxTileRow>
     11331                                                <MinTileCol>16</MinTileCol>
     11332                                                <MaxTileCol>16</MaxTileCol>
     11333                                        </TileMatrixLimits>
     11334                                        <TileMatrixLimits>
     11335                                                <TileMatrix>6</TileMatrix>
     11336                                                <MinTileRow>22</MinTileRow>
     11337                                                <MaxTileRow>22</MaxTileRow>
     11338                                                <MinTileCol>33</MinTileCol>
     11339                                                <MaxTileCol>33</MaxTileCol>
     11340                                        </TileMatrixLimits>
     11341                                        <TileMatrixLimits>
     11342                                                <TileMatrix>7</TileMatrix>
     11343                                                <MinTileRow>44</MinTileRow>
     11344                                                <MaxTileRow>44</MaxTileRow>
     11345                                                <MinTileCol>66</MinTileCol>
     11346                                                <MaxTileCol>66</MaxTileCol>
     11347                                        </TileMatrixLimits>
     11348                                        <TileMatrixLimits>
     11349                                                <TileMatrix>8</TileMatrix>
     11350                                                <MinTileRow>88</MinTileRow>
     11351                                                <MaxTileRow>89</MaxTileRow>
     11352                                                <MinTileCol>132</MinTileCol>
     11353                                                <MaxTileCol>133</MaxTileCol>
     11354                                        </TileMatrixLimits>
     11355                                        <TileMatrixLimits>
     11356                                                <TileMatrix>9</TileMatrix>
     11357                                                <MinTileRow>177</MinTileRow>
     11358                                                <MaxTileRow>178</MaxTileRow>
     11359                                                <MinTileCol>265</MinTileCol>
     11360                                                <MaxTileCol>266</MaxTileCol>
     11361                                        </TileMatrixLimits>
     11362                                </TileMatrixSetLimits>
     11363                        </TileMatrixSetLink>
     11364                </Layer>
     11365                <Layer>
     11366                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     11367                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     11368                        <ows:Keywords>
     11369                                <ows:Keyword>Photographies</ows:Keyword>
     11370                        </ows:Keywords>
     11371                        <ows:WGS84BoundingBox>
     11372                                <ows:LowerCorner>6.81718 47.7279</ows:LowerCorner>
     11373                                <ows:UpperCorner>7.02547 48.0218</ows:UpperCorner>
     11374                        </ows:WGS84BoundingBox>
     11375                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-10-28-38661948</ows:Identifier>
     11376                        <Style isDefault="true">
     11377                                <ows:Title>Données Brutes</ows:Title>
     11378                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11379                                <ows:Keywords>
     11380                                        <ows:Keyword>Défaut</ows:Keyword>
     11381                                </ows:Keywords>
     11382                                <ows:Identifier>normal</ows:Identifier>
     11383                                <LegendURL format="image/jpeg" height="200"
     11384                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11385                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11386                        </Style>
     11387                        <Format>image/jpeg</Format>
     11388                        <TileMatrixSetLink>
     11389                                <TileMatrixSet>PM</TileMatrixSet>
     11390                                <TileMatrixSetLimits>
     11391                                        <TileMatrixLimits>
     11392                                                <TileMatrix>0</TileMatrix>
     11393                                                <MinTileRow>0</MinTileRow>
     11394                                                <MaxTileRow>0</MaxTileRow>
     11395                                                <MinTileCol>0</MinTileCol>
     11396                                                <MaxTileCol>0</MaxTileCol>
     11397                                        </TileMatrixLimits>
     11398                                        <TileMatrixLimits>
     11399                                                <TileMatrix>1</TileMatrix>
     11400                                                <MinTileRow>0</MinTileRow>
     11401                                                <MaxTileRow>0</MaxTileRow>
     11402                                                <MinTileCol>1</MinTileCol>
     11403                                                <MaxTileCol>1</MaxTileCol>
     11404                                        </TileMatrixLimits>
     11405                                        <TileMatrixLimits>
     11406                                                <TileMatrix>10</TileMatrix>
     11407                                                <MinTileRow>355</MinTileRow>
     11408                                                <MaxTileRow>357</MaxTileRow>
     11409                                                <MinTileCol>531</MinTileCol>
     11410                                                <MaxTileCol>531</MaxTileCol>
     11411                                        </TileMatrixLimits>
     11412                                        <TileMatrixLimits>
     11413                                                <TileMatrix>11</TileMatrix>
     11414                                                <MinTileRow>711</MinTileRow>
     11415                                                <MaxTileRow>714</MaxTileRow>
     11416                                                <MinTileCol>1062</MinTileCol>
     11417                                                <MaxTileCol>1063</MaxTileCol>
     11418                                        </TileMatrixLimits>
     11419                                        <TileMatrixLimits>
     11420                                                <TileMatrix>12</TileMatrix>
     11421                                                <MinTileRow>1423</MinTileRow>
     11422                                                <MaxTileRow>1428</MaxTileRow>
     11423                                                <MinTileCol>2125</MinTileCol>
     11424                                                <MaxTileCol>2127</MaxTileCol>
     11425                                        </TileMatrixLimits>
     11426                                        <TileMatrixLimits>
     11427                                                <TileMatrix>13</TileMatrix>
     11428                                                <MinTileRow>2847</MinTileRow>
     11429                                                <MaxTileRow>2856</MaxTileRow>
     11430                                                <MinTileCol>4251</MinTileCol>
     11431                                                <MaxTileCol>4255</MaxTileCol>
     11432                                        </TileMatrixLimits>
     11433                                        <TileMatrixLimits>
     11434                                                <TileMatrix>14</TileMatrix>
     11435                                                <MinTileRow>5694</MinTileRow>
     11436                                                <MaxTileRow>5713</MaxTileRow>
     11437                                                <MinTileCol>8502</MinTileCol>
     11438                                                <MaxTileCol>8511</MaxTileCol>
     11439                                        </TileMatrixLimits>
     11440                                        <TileMatrixLimits>
     11441                                                <TileMatrix>15</TileMatrix>
     11442                                                <MinTileRow>11388</MinTileRow>
     11443                                                <MaxTileRow>11427</MaxTileRow>
     11444                                                <MinTileCol>17004</MinTileCol>
     11445                                                <MaxTileCol>17022</MaxTileCol>
     11446                                        </TileMatrixLimits>
     11447                                        <TileMatrixLimits>
     11448                                                <TileMatrix>16</TileMatrix>
     11449                                                <MinTileRow>22776</MinTileRow>
     11450                                                <MaxTileRow>22855</MaxTileRow>
     11451                                                <MinTileCol>34009</MinTileCol>
     11452                                                <MaxTileCol>34045</MaxTileCol>
     11453                                        </TileMatrixLimits>
     11454                                        <TileMatrixLimits>
     11455                                                <TileMatrix>17</TileMatrix>
     11456                                                <MinTileRow>45552</MinTileRow>
     11457                                                <MaxTileRow>45710</MaxTileRow>
     11458                                                <MinTileCol>68019</MinTileCol>
     11459                                                <MaxTileCol>68090</MaxTileCol>
     11460                                        </TileMatrixLimits>
     11461                                        <TileMatrixLimits>
     11462                                                <TileMatrix>18</TileMatrix>
     11463                                                <MinTileRow>91104</MinTileRow>
     11464                                                <MaxTileRow>91420</MaxTileRow>
     11465                                                <MinTileCol>136039</MinTileCol>
     11466                                                <MaxTileCol>136180</MaxTileCol>
     11467                                        </TileMatrixLimits>
     11468                                        <TileMatrixLimits>
     11469                                                <TileMatrix>2</TileMatrix>
     11470                                                <MinTileRow>1</MinTileRow>
     11471                                                <MaxTileRow>1</MaxTileRow>
     11472                                                <MinTileCol>2</MinTileCol>
     11473                                                <MaxTileCol>2</MaxTileCol>
     11474                                        </TileMatrixLimits>
     11475                                        <TileMatrixLimits>
     11476                                                <TileMatrix>3</TileMatrix>
     11477                                                <MinTileRow>2</MinTileRow>
     11478                                                <MaxTileRow>2</MaxTileRow>
     11479                                                <MinTileCol>4</MinTileCol>
     11480                                                <MaxTileCol>4</MaxTileCol>
     11481                                        </TileMatrixLimits>
     11482                                        <TileMatrixLimits>
     11483                                                <TileMatrix>4</TileMatrix>
     11484                                                <MinTileRow>5</MinTileRow>
     11485                                                <MaxTileRow>5</MaxTileRow>
     11486                                                <MinTileCol>8</MinTileCol>
     11487                                                <MaxTileCol>8</MaxTileCol>
     11488                                        </TileMatrixLimits>
     11489                                        <TileMatrixLimits>
     11490                                                <TileMatrix>5</TileMatrix>
     11491                                                <MinTileRow>11</MinTileRow>
     11492                                                <MaxTileRow>11</MaxTileRow>
     11493                                                <MinTileCol>16</MinTileCol>
     11494                                                <MaxTileCol>16</MaxTileCol>
     11495                                        </TileMatrixLimits>
     11496                                        <TileMatrixLimits>
     11497                                                <TileMatrix>6</TileMatrix>
     11498                                                <MinTileRow>22</MinTileRow>
     11499                                                <MaxTileRow>22</MaxTileRow>
     11500                                                <MinTileCol>33</MinTileCol>
     11501                                                <MaxTileCol>33</MaxTileCol>
     11502                                        </TileMatrixLimits>
     11503                                        <TileMatrixLimits>
     11504                                                <TileMatrix>7</TileMatrix>
     11505                                                <MinTileRow>44</MinTileRow>
     11506                                                <MaxTileRow>44</MaxTileRow>
     11507                                                <MinTileCol>66</MinTileCol>
     11508                                                <MaxTileCol>66</MaxTileCol>
     11509                                        </TileMatrixLimits>
     11510                                        <TileMatrixLimits>
     11511                                                <TileMatrix>8</TileMatrix>
     11512                                                <MinTileRow>88</MinTileRow>
     11513                                                <MaxTileRow>89</MaxTileRow>
     11514                                                <MinTileCol>132</MinTileCol>
     11515                                                <MaxTileCol>132</MaxTileCol>
     11516                                        </TileMatrixLimits>
     11517                                        <TileMatrixLimits>
     11518                                                <TileMatrix>9</TileMatrix>
     11519                                                <MinTileRow>177</MinTileRow>
     11520                                                <MaxTileRow>178</MaxTileRow>
     11521                                                <MinTileCol>265</MinTileCol>
     11522                                                <MaxTileCol>265</MaxTileCol>
     11523                                        </TileMatrixLimits>
     11524                                </TileMatrixSetLimits>
     11525                        </TileMatrixSetLink>
     11526                </Layer>
     11527                <Layer>
     11528                        <ows:Title>Orthophotographies Geosud de BDO-Departement-68 2013</ows:Title>
     11529                        <ows:Abstract>Orthophotographies satellites de BDO-Departement-68 issues du projet Geosud.</ows:Abstract>
     11530                        <ows:Keywords>
     11531                                <ows:Keyword>Photographies</ows:Keyword>
     11532                        </ows:Keywords>
     11533                        <ows:WGS84BoundingBox>
     11534                                <ows:LowerCorner>6.87244 47.7493</ows:LowerCorner>
     11535                                <ows:UpperCorner>7.18123 47.9571</ows:UpperCorner>
     11536                        </ows:WGS84BoundingBox>
     11537                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-Departement-68-2013-12-13-38464699</ows:Identifier>
     11538                        <Style isDefault="true">
     11539                                <ows:Title>Données Brutes</ows:Title>
     11540                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11541                                <ows:Keywords>
     11542                                        <ows:Keyword>Défaut</ows:Keyword>
     11543                                </ows:Keywords>
     11544                                <ows:Identifier>normal</ows:Identifier>
     11545                                <LegendURL format="image/jpeg" height="200"
     11546                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11547                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11548                        </Style>
     11549                        <Format>image/jpeg</Format>
     11550                        <TileMatrixSetLink>
     11551                                <TileMatrixSet>PM</TileMatrixSet>
     11552                                <TileMatrixSetLimits>
     11553                                        <TileMatrixLimits>
     11554                                                <TileMatrix>0</TileMatrix>
     11555                                                <MinTileRow>0</MinTileRow>
     11556                                                <MaxTileRow>0</MaxTileRow>
     11557                                                <MinTileCol>0</MinTileCol>
     11558                                                <MaxTileCol>0</MaxTileCol>
     11559                                        </TileMatrixLimits>
     11560                                        <TileMatrixLimits>
     11561                                                <TileMatrix>1</TileMatrix>
     11562                                                <MinTileRow>0</MinTileRow>
     11563                                                <MaxTileRow>0</MaxTileRow>
     11564                                                <MinTileCol>1</MinTileCol>
     11565                                                <MaxTileCol>1</MaxTileCol>
     11566                                        </TileMatrixLimits>
     11567                                        <TileMatrixLimits>
     11568                                                <TileMatrix>10</TileMatrix>
     11569                                                <MinTileRow>356</MinTileRow>
     11570                                                <MaxTileRow>356</MaxTileRow>
     11571                                                <MinTileCol>531</MinTileCol>
     11572                                                <MaxTileCol>532</MaxTileCol>
     11573                                        </TileMatrixLimits>
     11574                                        <TileMatrixLimits>
     11575                                                <TileMatrix>11</TileMatrix>
     11576                                                <MinTileRow>712</MinTileRow>
     11577                                                <MaxTileRow>713</MaxTileRow>
     11578                                                <MinTileCol>1063</MinTileCol>
     11579                                                <MaxTileCol>1064</MaxTileCol>
     11580                                        </TileMatrixLimits>
     11581                                        <TileMatrixLimits>
     11582                                                <TileMatrix>12</TileMatrix>
     11583                                                <MinTileRow>1424</MinTileRow>
     11584                                                <MaxTileRow>1427</MaxTileRow>
     11585                                                <MinTileCol>2126</MinTileCol>
     11586                                                <MaxTileCol>2129</MaxTileCol>
     11587                                        </TileMatrixLimits>
     11588                                        <TileMatrixLimits>
     11589                                                <TileMatrix>13</TileMatrix>
     11590                                                <MinTileRow>2849</MinTileRow>
     11591                                                <MaxTileRow>2855</MaxTileRow>
     11592                                                <MinTileCol>4252</MinTileCol>
     11593                                                <MaxTileCol>4259</MaxTileCol>
     11594                                        </TileMatrixLimits>
     11595                                        <TileMatrixLimits>
     11596                                                <TileMatrix>14</TileMatrix>
     11597                                                <MinTileRow>5698</MinTileRow>
     11598                                                <MaxTileRow>5711</MaxTileRow>
     11599                                                <MinTileCol>8504</MinTileCol>
     11600                                                <MaxTileCol>8518</MaxTileCol>
     11601                                        </TileMatrixLimits>
     11602                                        <TileMatrixLimits>
     11603                                                <TileMatrix>15</TileMatrix>
     11604                                                <MinTileRow>11397</MinTileRow>
     11605                                                <MaxTileRow>11423</MaxTileRow>
     11606                                                <MinTileCol>17009</MinTileCol>
     11607                                                <MaxTileCol>17036</MaxTileCol>
     11608                                        </TileMatrixLimits>
     11609                                        <TileMatrixLimits>
     11610                                                <TileMatrix>16</TileMatrix>
     11611                                                <MinTileRow>22794</MinTileRow>
     11612                                                <MaxTileRow>22847</MaxTileRow>
     11613                                                <MinTileCol>34019</MinTileCol>
     11614                                                <MaxTileCol>34073</MaxTileCol>
     11615                                        </TileMatrixLimits>
     11616                                        <TileMatrixLimits>
     11617                                                <TileMatrix>17</TileMatrix>
     11618                                                <MinTileRow>45589</MinTileRow>
     11619                                                <MaxTileRow>45694</MaxTileRow>
     11620                                                <MinTileCol>68038</MinTileCol>
     11621                                                <MaxTileCol>68147</MaxTileCol>
     11622                                        </TileMatrixLimits>
     11623                                        <TileMatrixLimits>
     11624                                                <TileMatrix>18</TileMatrix>
     11625                                                <MinTileRow>91178</MinTileRow>
     11626                                                <MaxTileRow>91388</MaxTileRow>
     11627                                                <MinTileCol>136077</MinTileCol>
     11628                                                <MaxTileCol>136295</MaxTileCol>
     11629                                        </TileMatrixLimits>
     11630                                        <TileMatrixLimits>
     11631                                                <TileMatrix>2</TileMatrix>
     11632                                                <MinTileRow>1</MinTileRow>
     11633                                                <MaxTileRow>1</MaxTileRow>
     11634                                                <MinTileCol>2</MinTileCol>
     11635                                                <MaxTileCol>2</MaxTileCol>
     11636                                        </TileMatrixLimits>
     11637                                        <TileMatrixLimits>
     11638                                                <TileMatrix>3</TileMatrix>
     11639                                                <MinTileRow>2</MinTileRow>
     11640                                                <MaxTileRow>2</MaxTileRow>
     11641                                                <MinTileCol>4</MinTileCol>
     11642                                                <MaxTileCol>4</MaxTileCol>
     11643                                        </TileMatrixLimits>
     11644                                        <TileMatrixLimits>
     11645                                                <TileMatrix>4</TileMatrix>
     11646                                                <MinTileRow>5</MinTileRow>
     11647                                                <MaxTileRow>5</MaxTileRow>
     11648                                                <MinTileCol>8</MinTileCol>
     11649                                                <MaxTileCol>8</MaxTileCol>
     11650                                        </TileMatrixLimits>
     11651                                        <TileMatrixLimits>
     11652                                                <TileMatrix>5</TileMatrix>
     11653                                                <MinTileRow>11</MinTileRow>
     11654                                                <MaxTileRow>11</MaxTileRow>
     11655                                                <MinTileCol>16</MinTileCol>
     11656                                                <MaxTileCol>16</MaxTileCol>
     11657                                        </TileMatrixLimits>
     11658                                        <TileMatrixLimits>
     11659                                                <TileMatrix>6</TileMatrix>
     11660                                                <MinTileRow>22</MinTileRow>
     11661                                                <MaxTileRow>22</MaxTileRow>
     11662                                                <MinTileCol>33</MinTileCol>
     11663                                                <MaxTileCol>33</MaxTileCol>
     11664                                        </TileMatrixLimits>
     11665                                        <TileMatrixLimits>
     11666                                                <TileMatrix>7</TileMatrix>
     11667                                                <MinTileRow>44</MinTileRow>
     11668                                                <MaxTileRow>44</MaxTileRow>
     11669                                                <MinTileCol>66</MinTileCol>
     11670                                                <MaxTileCol>66</MaxTileCol>
     11671                                        </TileMatrixLimits>
     11672                                        <TileMatrixLimits>
     11673                                                <TileMatrix>8</TileMatrix>
     11674                                                <MinTileRow>89</MinTileRow>
     11675                                                <MaxTileRow>89</MaxTileRow>
     11676                                                <MinTileCol>132</MinTileCol>
     11677                                                <MaxTileCol>133</MaxTileCol>
     11678                                        </TileMatrixLimits>
     11679                                        <TileMatrixLimits>
     11680                                                <TileMatrix>9</TileMatrix>
     11681                                                <MinTileRow>178</MinTileRow>
     11682                                                <MaxTileRow>178</MaxTileRow>
     11683                                                <MinTileCol>265</MinTileCol>
     11684                                                <MaxTileCol>266</MaxTileCol>
     11685                                        </TileMatrixLimits>
     11686                                </TileMatrixSetLimits>
     11687                        </TileMatrixSetLink>
     11688                </Layer>
     11689                <Layer>
     11690                        <ows:Title>Orthophotographies Geosud de BDO-GUADELOUPE 2014</ows:Title>
     11691                        <ows:Abstract>Orthophotographies Geosud de BDO-GUADELOUPE 2014</ows:Abstract>
     11692                        <ows:Keywords>
     11693                                <ows:Keyword>Photographies</ows:Keyword>
     11694                        </ows:Keywords>
     11695                        <ows:WGS84BoundingBox>
     11696                                <ows:LowerCorner>-61.8234 15.8196</ows:LowerCorner>
     11697                                <ows:UpperCorner>-60.995 16.5216</ows:UpperCorner>
     11698                        </ows:WGS84BoundingBox>
     11699                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-GUADELOUPE-2013-2014-2013</ows:Identifier>
     11700                        <Style isDefault="true">
     11701                                <ows:Title>Données Brutes</ows:Title>
     11702                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11703                                <ows:Keywords>
     11704                                        <ows:Keyword>Défaut</ows:Keyword>
     11705                                </ows:Keywords>
     11706                                <ows:Identifier>normal</ows:Identifier>
     11707                                <LegendURL format="image/jpeg" height="200"
     11708                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11709                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11710                        </Style>
     11711                        <Format>image/jpeg</Format>
     11712                        <TileMatrixSetLink>
     11713                                <TileMatrixSet>PM</TileMatrixSet>
     11714                                <TileMatrixSetLimits>
     11715                                        <TileMatrixLimits>
     11716                                                <TileMatrix>0</TileMatrix>
     11717                                                <MinTileRow>0</MinTileRow>
     11718                                                <MaxTileRow>0</MaxTileRow>
     11719                                                <MinTileCol>0</MinTileCol>
     11720                                                <MaxTileCol>0</MaxTileCol>
     11721                                        </TileMatrixLimits>
     11722                                        <TileMatrixLimits>
     11723                                                <TileMatrix>1</TileMatrix>
     11724                                                <MinTileRow>0</MinTileRow>
     11725                                                <MaxTileRow>0</MaxTileRow>
     11726                                                <MinTileCol>0</MinTileCol>
     11727                                                <MaxTileCol>0</MaxTileCol>
     11728                                        </TileMatrixLimits>
     11729                                        <TileMatrixLimits>
     11730                                                <TileMatrix>10</TileMatrix>
     11731                                                <MinTileRow>464</MinTileRow>
     11732                                                <MaxTileRow>466</MaxTileRow>
     11733                                                <MinTileCol>336</MinTileCol>
     11734                                                <MaxTileCol>338</MaxTileCol>
     11735                                        </TileMatrixLimits>
     11736                                        <TileMatrixLimits>
     11737                                                <TileMatrix>11</TileMatrix>
     11738                                                <MinTileRow>928</MinTileRow>
     11739                                                <MaxTileRow>932</MaxTileRow>
     11740                                                <MinTileCol>672</MinTileCol>
     11741                                                <MaxTileCol>676</MaxTileCol>
     11742                                        </TileMatrixLimits>
     11743                                        <TileMatrixLimits>
     11744                                                <TileMatrix>12</TileMatrix>
     11745                                                <MinTileRow>1857</MinTileRow>
     11746                                                <MaxTileRow>1865</MaxTileRow>
     11747                                                <MinTileCol>1344</MinTileCol>
     11748                                                <MaxTileCol>1353</MaxTileCol>
     11749                                        </TileMatrixLimits>
     11750                                        <TileMatrixLimits>
     11751                                                <TileMatrix>13</TileMatrix>
     11752                                                <MinTileRow>3714</MinTileRow>
     11753                                                <MaxTileRow>3731</MaxTileRow>
     11754                                                <MinTileCol>2689</MinTileCol>
     11755                                                <MaxTileCol>2707</MaxTileCol>
     11756                                        </TileMatrixLimits>
     11757                                        <TileMatrixLimits>
     11758                                                <TileMatrix>14</TileMatrix>
     11759                                                <MinTileRow>7429</MinTileRow>
     11760                                                <MaxTileRow>7462</MaxTileRow>
     11761                                                <MinTileCol>5378</MinTileCol>
     11762                                                <MaxTileCol>5415</MaxTileCol>
     11763                                        </TileMatrixLimits>
     11764                                        <TileMatrixLimits>
     11765                                                <TileMatrix>15</TileMatrix>
     11766                                                <MinTileRow>14859</MinTileRow>
     11767                                                <MaxTileRow>14924</MaxTileRow>
     11768                                                <MinTileCol>10756</MinTileCol>
     11769                                                <MaxTileCol>10831</MaxTileCol>
     11770                                        </TileMatrixLimits>
     11771                                        <TileMatrixLimits>
     11772                                                <TileMatrix>16</TileMatrix>
     11773                                                <MinTileRow>29718</MinTileRow>
     11774                                                <MaxTileRow>29849</MaxTileRow>
     11775                                                <MinTileCol>21513</MinTileCol>
     11776                                                <MaxTileCol>21663</MaxTileCol>
     11777                                        </TileMatrixLimits>
     11778                                        <TileMatrixLimits>
     11779                                                <TileMatrix>17</TileMatrix>
     11780                                                <MinTileRow>59436</MinTileRow>
     11781                                                <MaxTileRow>59699</MaxTileRow>
     11782                                                <MinTileCol>43027</MinTileCol>
     11783                                                <MaxTileCol>43327</MaxTileCol>
     11784                                        </TileMatrixLimits>
     11785                                        <TileMatrixLimits>
     11786                                                <TileMatrix>18</TileMatrix>
     11787                                                <MinTileRow>118872</MinTileRow>
     11788                                                <MaxTileRow>119399</MaxTileRow>
     11789                                                <MinTileCol>86055</MinTileCol>
     11790                                                <MaxTileCol>86655</MaxTileCol>
     11791                                        </TileMatrixLimits>
     11792                                        <TileMatrixLimits>
     11793                                                <TileMatrix>2</TileMatrix>
     11794                                                <MinTileRow>1</MinTileRow>
     11795                                                <MaxTileRow>1</MaxTileRow>
     11796                                                <MinTileCol>1</MinTileCol>
     11797                                                <MaxTileCol>1</MaxTileCol>
     11798                                        </TileMatrixLimits>
     11799                                        <TileMatrixLimits>
     11800                                                <TileMatrix>3</TileMatrix>
     11801                                                <MinTileRow>3</MinTileRow>
     11802                                                <MaxTileRow>3</MaxTileRow>
     11803                                                <MinTileCol>2</MinTileCol>
     11804                                                <MaxTileCol>2</MaxTileCol>
     11805                                        </TileMatrixLimits>
     11806                                        <TileMatrixLimits>
     11807                                                <TileMatrix>4</TileMatrix>
     11808                                                <MinTileRow>7</MinTileRow>
     11809                                                <MaxTileRow>7</MaxTileRow>
     11810                                                <MinTileCol>5</MinTileCol>
     11811                                                <MaxTileCol>5</MaxTileCol>
     11812                                        </TileMatrixLimits>
     11813                                        <TileMatrixLimits>
     11814                                                <TileMatrix>5</TileMatrix>
     11815                                                <MinTileRow>14</MinTileRow>
     11816                                                <MaxTileRow>14</MaxTileRow>
     11817                                                <MinTileCol>10</MinTileCol>
     11818                                                <MaxTileCol>10</MaxTileCol>
     11819                                        </TileMatrixLimits>
     11820                                        <TileMatrixLimits>
     11821                                                <TileMatrix>6</TileMatrix>
     11822                                                <MinTileRow>29</MinTileRow>
     11823                                                <MaxTileRow>29</MaxTileRow>
     11824                                                <MinTileCol>21</MinTileCol>
     11825                                                <MaxTileCol>21</MaxTileCol>
     11826                                        </TileMatrixLimits>
     11827                                        <TileMatrixLimits>
     11828                                                <TileMatrix>7</TileMatrix>
     11829                                                <MinTileRow>58</MinTileRow>
     11830                                                <MaxTileRow>58</MaxTileRow>
     11831                                                <MinTileCol>42</MinTileCol>
     11832                                                <MaxTileCol>42</MaxTileCol>
     11833                                        </TileMatrixLimits>
     11834                                        <TileMatrixLimits>
     11835                                                <TileMatrix>8</TileMatrix>
     11836                                                <MinTileRow>116</MinTileRow>
     11837                                                <MaxTileRow>116</MaxTileRow>
     11838                                                <MinTileCol>84</MinTileCol>
     11839                                                <MaxTileCol>84</MaxTileCol>
     11840                                        </TileMatrixLimits>
     11841                                        <TileMatrixLimits>
     11842                                                <TileMatrix>9</TileMatrix>
     11843                                                <MinTileRow>232</MinTileRow>
     11844                                                <MaxTileRow>233</MaxTileRow>
     11845                                                <MinTileCol>168</MinTileCol>
     11846                                                <MaxTileCol>169</MaxTileCol>
     11847                                        </TileMatrixLimits>
     11848                                </TileMatrixSetLimits>
     11849                        </TileMatrixSetLink>
     11850                </Layer>
     11851                <Layer>
     11852                        <ows:Title>Orthophotographies Geosud de BDO-MARTINIQUE 2014</ows:Title>
     11853                        <ows:Abstract>Orthophotographies satellites de BDO-MARTINIQUE issues du projet Geosud.</ows:Abstract>
     11854                        <ows:Keywords>
     11855                                <ows:Keyword>Photographies</ows:Keyword>
     11856                        </ows:Keywords>
     11857                        <ows:WGS84BoundingBox>
     11858                                <ows:LowerCorner>-61.2472 14.3719</ows:LowerCorner>
     11859                                <ows:UpperCorner>-60.7785 14.8999</ows:UpperCorner>
     11860                        </ows:WGS84BoundingBox>
     11861                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BDO-MARTINIQUE-2013-2014_2013</ows:Identifier>
     11862                        <Style isDefault="true">
     11863                                <ows:Title>Données Brutes</ows:Title>
     11864                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     11865                                <ows:Keywords>
     11866                                        <ows:Keyword>Défaut</ows:Keyword>
     11867                                </ows:Keywords>
     11868                                <ows:Identifier>normal</ows:Identifier>
     11869                                <LegendURL format="image/jpeg" height="200"
     11870                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     11871                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     11872                        </Style>
     11873                        <Format>image/jpeg</Format>
     11874                        <TileMatrixSetLink>
     11875                                <TileMatrixSet>PM</TileMatrixSet>
     11876                                <TileMatrixSetLimits>
     11877                                        <TileMatrixLimits>
     11878                                                <TileMatrix>0</TileMatrix>
     11879                                                <MinTileRow>0</MinTileRow>
     11880                                                <MaxTileRow>0</MaxTileRow>
     11881                                                <MinTileCol>0</MinTileCol>
     11882                                                <MaxTileCol>0</MaxTileCol>
     11883                                        </TileMatrixLimits>
     11884                                        <TileMatrixLimits>
     11885                                                <TileMatrix>1</TileMatrix>
     11886                                                <MinTileRow>0</MinTileRow>
     11887                                                <MaxTileRow>0</MaxTileRow>
     11888                                                <MinTileCol>0</MinTileCol>
     11889                                                <MaxTileCol>0</MaxTileCol>
     11890                                        </TileMatrixLimits>
     11891                                        <TileMatrixLimits>
     11892                                                <TileMatrix>10</TileMatrix>
     11893                                                <MinTileRow>469</MinTileRow>
     11894                                                <MaxTileRow>470</MaxTileRow>
     11895                                                <MinTileCol>337</MinTileCol>
     11896                                                <MaxTileCol>339</MaxTileCol>
     11897                                        </TileMatrixLimits>
     11898                                        <TileMatrixLimits>
     11899                                                <TileMatrix>11</TileMatrix>
     11900                                                <MinTileRow>938</MinTileRow>
     11901                                                <MaxTileRow>941</MaxTileRow>
     11902                                                <MinTileCol>675</MinTileCol>
     11903                                                <MaxTileCol>678</MaxTileCol>
     11904                                        </TileMatrixLimits>
     11905                                        <TileMatrixLimits>
     11906                                                <TileMatrix>12</TileMatrix>
     11907                                                <MinTileRow>1876</MinTileRow>
     11908                                                <MaxTileRow>1882</MaxTileRow>
     11909                                                <MinTileCol>1351</MinTileCol>
     11910                                                <MaxTileCol>1356</MaxTileCol>
     11911                                        </TileMatrixLimits>
     11912                                        <TileMatrixLimits>
     11913                                                <TileMatrix>13</TileMatrix>
     11914                                                <MinTileRow>3753</MinTileRow>
     11915                                                <MaxTileRow>3765</MaxTileRow>
     11916                                                <MinTileCol>2702</MinTileCol>
     11917                                                <MaxTileCol>2712</MaxTileCol>
     11918                                        </TileMatrixLimits>
     11919                                        <TileMatrixLimits>
     11920                                                <TileMatrix>14</TileMatrix>
     11921                                                <MinTileRow>7506</MinTileRow>
     11922                                                <MaxTileRow>7530</MaxTileRow>
     11923                                                <MinTileCol>5404</MinTileCol>
     11924                                                <MaxTileCol>5425</MaxTileCol>
     11925                                        </TileMatrixLimits>
     11926                                        <TileMatrixLimits>
     11927                                                <TileMatrix>15</TileMatrix>
     11928                                                <MinTileRow>15012</MinTileRow>
     11929                                                <MaxTileRow>15061</MaxTileRow>
     11930                                                <MinTileCol>10809</MinTileCol>
     11931                                                <MaxTileCol>10851</MaxTileCol>
     11932                                        </TileMatrixLimits>
     11933                                        <TileMatrixLimits>
     11934                                                <TileMatrix>16</TileMatrix>
     11935                                                <MinTileRow>30024</MinTileRow>
     11936                                                <MaxTileRow>30123</MaxTileRow>
     11937                                                <MinTileCol>21618</MinTileCol>
     11938                                                <MaxTileCol>21703</MaxTileCol>
     11939                                        </TileMatrixLimits>
     11940                                        <TileMatrixLimits>
     11941                                                <TileMatrix>17</TileMatrix>
     11942                                                <MinTileRow>60049</MinTileRow>
     11943                                                <MaxTileRow>60247</MaxTileRow>
     11944                                                <MinTileCol>43237</MinTileCol>
     11945                                                <MaxTileCol>43406</MaxTileCol>
     11946                                        </TileMatrixLimits>
     11947                                        <TileMatrixLimits>
     11948                                                <TileMatrix>18</TileMatrix>
     11949                                                <MinTileRow>120098</MinTileRow>
     11950                                                <MaxTileRow>120494</MaxTileRow>
     11951                                                <MinTileCol>86475</MinTileCol>
     11952                                                <MaxTileCol>86812</MaxTileCol>
     11953                                        </TileMatrixLimits>
     11954                                        <TileMatrixLimits>
     11955                                                <TileMatrix>2</TileMatrix>
     11956                                                <MinTileRow>1</MinTileRow>
     11957                                                <MaxTileRow>1</MaxTileRow>
     11958                                                <MinTileCol>1</MinTileCol>
     11959                                                <MaxTileCol>1</MaxTileCol>
     11960                                        </TileMatrixLimits>
     11961                                        <TileMatrixLimits>
     11962                                                <TileMatrix>3</TileMatrix>
     11963                                                <MinTileRow>3</MinTileRow>
     11964                                                <MaxTileRow>3</MaxTileRow>
     11965                                                <MinTileCol>2</MinTileCol>
     11966                                                <MaxTileCol>2</MaxTileCol>
     11967                                        </TileMatrixLimits>
     11968                                        <TileMatrixLimits>
     11969                                                <TileMatrix>4</TileMatrix>
     11970                                                <MinTileRow>7</MinTileRow>
     11971                                                <MaxTileRow>7</MaxTileRow>
     11972                                                <MinTileCol>5</MinTileCol>
     11973                                                <MaxTileCol>5</MaxTileCol>
     11974                                        </TileMatrixLimits>
     11975                                        <TileMatrixLimits>
     11976                                                <TileMatrix>5</TileMatrix>
     11977                                                <MinTileRow>14</MinTileRow>
     11978                                                <MaxTileRow>14</MaxTileRow>
     11979                                                <MinTileCol>10</MinTileCol>
     11980                                                <MaxTileCol>10</MaxTileCol>
     11981                                        </TileMatrixLimits>
     11982                                        <TileMatrixLimits>
     11983                                                <TileMatrix>6</TileMatrix>
     11984                                                <MinTileRow>29</MinTileRow>
     11985                                                <MaxTileRow>29</MaxTileRow>
     11986                                                <MinTileCol>21</MinTileCol>
     11987                                                <MaxTileCol>21</MaxTileCol>
     11988                                        </TileMatrixLimits>
     11989                                        <TileMatrixLimits>
     11990                                                <TileMatrix>7</TileMatrix>
     11991                                                <MinTileRow>58</MinTileRow>
     11992                                                <MaxTileRow>58</MaxTileRow>
     11993                                                <MinTileCol>42</MinTileCol>
     11994                                                <MaxTileCol>42</MaxTileCol>
     11995                                        </TileMatrixLimits>
     11996                                        <TileMatrixLimits>
     11997                                                <TileMatrix>8</TileMatrix>
     11998                                                <MinTileRow>117</MinTileRow>
     11999                                                <MaxTileRow>117</MaxTileRow>
     12000                                                <MinTileCol>84</MinTileCol>
     12001                                                <MaxTileCol>84</MaxTileCol>
     12002                                        </TileMatrixLimits>
     12003                                        <TileMatrixLimits>
     12004                                                <TileMatrix>9</TileMatrix>
     12005                                                <MinTileRow>234</MinTileRow>
     12006                                                <MaxTileRow>235</MaxTileRow>
     12007                                                <MinTileCol>168</MinTileCol>
     12008                                                <MaxTileCol>169</MaxTileCol>
     12009                                        </TileMatrixLimits>
     12010                                </TileMatrixSetLimits>
     12011                        </TileMatrixSetLink>
     12012                </Layer>
     12013                <Layer>
     12014                        <ows:Title>Orthophotographies Geosud de BERGERAC</ows:Title>
     12015                        <ows:Abstract>Orthophotographies satellites de BERGERAC issues du projet Geosud.</ows:Abstract>
     12016                        <ows:Keywords>
     12017                                <ows:Keyword>Photographies</ows:Keyword>
     12018                        </ows:Keywords>
     12019                        <ows:WGS84BoundingBox>
     12020                                <ows:LowerCorner>0.362816 44.767</ows:LowerCorner>
     12021                                <ows:UpperCorner>0.648745 44.9442</ows:UpperCorner>
     12022                        </ows:WGS84BoundingBox>
     12023                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BERGERAC-2013-09-03-40128824</ows:Identifier>
     12024                        <Style isDefault="true">
     12025                                <ows:Title>Données Brutes</ows:Title>
     12026                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12027                                <ows:Keywords>
     12028                                        <ows:Keyword>Défaut</ows:Keyword>
     12029                                </ows:Keywords>
     12030                                <ows:Identifier>normal</ows:Identifier>
     12031                                <LegendURL format="image/jpeg" height="200"
     12032                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12033                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12034                        </Style>
     12035                        <Format>image/jpeg</Format>
     12036                        <TileMatrixSetLink>
     12037                                <TileMatrixSet>PM</TileMatrixSet>
     12038                                <TileMatrixSetLimits>
     12039                                        <TileMatrixLimits>
     12040                                                <TileMatrix>0</TileMatrix>
     12041                                                <MinTileRow>0</MinTileRow>
     12042                                                <MaxTileRow>0</MaxTileRow>
     12043                                                <MinTileCol>0</MinTileCol>
     12044                                                <MaxTileCol>0</MaxTileCol>
     12045                                        </TileMatrixLimits>
     12046                                        <TileMatrixLimits>
     12047                                                <TileMatrix>1</TileMatrix>
     12048                                                <MinTileRow>0</MinTileRow>
     12049                                                <MaxTileRow>0</MaxTileRow>
     12050                                                <MinTileCol>1</MinTileCol>
     12051                                                <MaxTileCol>1</MaxTileCol>
     12052                                        </TileMatrixLimits>
     12053                                        <TileMatrixLimits>
     12054                                                <TileMatrix>10</TileMatrix>
     12055                                                <MinTileRow>368</MinTileRow>
     12056                                                <MaxTileRow>369</MaxTileRow>
     12057                                                <MinTileCol>513</MinTileCol>
     12058                                                <MaxTileCol>513</MaxTileCol>
     12059                                        </TileMatrixLimits>
     12060                                        <TileMatrixLimits>
     12061                                                <TileMatrix>11</TileMatrix>
     12062                                                <MinTileRow>737</MinTileRow>
     12063                                                <MaxTileRow>738</MaxTileRow>
     12064                                                <MinTileCol>1026</MinTileCol>
     12065                                                <MaxTileCol>1027</MaxTileCol>
     12066                                        </TileMatrixLimits>
     12067                                        <TileMatrixLimits>
     12068                                                <TileMatrix>12</TileMatrix>
     12069                                                <MinTileRow>1474</MinTileRow>
     12070                                                <MaxTileRow>1477</MaxTileRow>
     12071                                                <MinTileCol>2052</MinTileCol>
     12072                                                <MaxTileCol>2055</MaxTileCol>
     12073                                        </TileMatrixLimits>
     12074                                        <TileMatrixLimits>
     12075                                                <TileMatrix>13</TileMatrix>
     12076                                                <MinTileRow>2948</MinTileRow>
     12077                                                <MaxTileRow>2954</MaxTileRow>
     12078                                                <MinTileCol>4104</MinTileCol>
     12079                                                <MaxTileCol>4110</MaxTileCol>
     12080                                        </TileMatrixLimits>
     12081                                        <TileMatrixLimits>
     12082                                                <TileMatrix>14</TileMatrix>
     12083                                                <MinTileRow>5897</MinTileRow>
     12084                                                <MaxTileRow>5908</MaxTileRow>
     12085                                                <MinTileCol>8208</MinTileCol>
     12086                                                <MaxTileCol>8221</MaxTileCol>
     12087                                        </TileMatrixLimits>
     12088                                        <TileMatrixLimits>
     12089                                                <TileMatrix>15</TileMatrix>
     12090                                                <MinTileRow>11795</MinTileRow>
     12091                                                <MaxTileRow>11817</MaxTileRow>
     12092                                                <MinTileCol>16417</MinTileCol>
     12093                                                <MaxTileCol>16443</MaxTileCol>
     12094                                        </TileMatrixLimits>
     12095                                        <TileMatrixLimits>
     12096                                                <TileMatrix>16</TileMatrix>
     12097                                                <MinTileRow>23590</MinTileRow>
     12098                                                <MaxTileRow>23634</MaxTileRow>
     12099                                                <MinTileCol>32834</MinTileCol>
     12100                                                <MaxTileCol>32886</MaxTileCol>
     12101                                        </TileMatrixLimits>
     12102                                        <TileMatrixLimits>
     12103                                                <TileMatrix>17</TileMatrix>
     12104                                                <MinTileRow>47180</MinTileRow>
     12105                                                <MaxTileRow>47269</MaxTileRow>
     12106                                                <MinTileCol>65669</MinTileCol>
     12107                                                <MaxTileCol>65772</MaxTileCol>
     12108                                        </TileMatrixLimits>
     12109                                        <TileMatrixLimits>
     12110                                                <TileMatrix>18</TileMatrix>
     12111                                                <MinTileRow>94360</MinTileRow>
     12112                                                <MaxTileRow>94539</MaxTileRow>
     12113                                                <MinTileCol>131339</MinTileCol>
     12114                                                <MaxTileCol>131544</MaxTileCol>
     12115                                        </TileMatrixLimits>
     12116                                        <TileMatrixLimits>
     12117                                                <TileMatrix>2</TileMatrix>
     12118                                                <MinTileRow>1</MinTileRow>
     12119                                                <MaxTileRow>1</MaxTileRow>
     12120                                                <MinTileCol>2</MinTileCol>
     12121                                                <MaxTileCol>2</MaxTileCol>
     12122                                        </TileMatrixLimits>
     12123                                        <TileMatrixLimits>
     12124                                                <TileMatrix>3</TileMatrix>
     12125                                                <MinTileRow>2</MinTileRow>
     12126                                                <MaxTileRow>2</MaxTileRow>
     12127                                                <MinTileCol>4</MinTileCol>
     12128                                                <MaxTileCol>4</MaxTileCol>
     12129                                        </TileMatrixLimits>
     12130                                        <TileMatrixLimits>
     12131                                                <TileMatrix>4</TileMatrix>
     12132                                                <MinTileRow>5</MinTileRow>
     12133                                                <MaxTileRow>5</MaxTileRow>
     12134                                                <MinTileCol>8</MinTileCol>
     12135                                                <MaxTileCol>8</MaxTileCol>
     12136                                        </TileMatrixLimits>
     12137                                        <TileMatrixLimits>
     12138                                                <TileMatrix>5</TileMatrix>
     12139                                                <MinTileRow>11</MinTileRow>
     12140                                                <MaxTileRow>11</MaxTileRow>
     12141                                                <MinTileCol>16</MinTileCol>
     12142                                                <MaxTileCol>16</MaxTileCol>
     12143                                        </TileMatrixLimits>
     12144                                        <TileMatrixLimits>
     12145                                                <TileMatrix>6</TileMatrix>
     12146                                                <MinTileRow>23</MinTileRow>
     12147                                                <MaxTileRow>23</MaxTileRow>
     12148                                                <MinTileCol>32</MinTileCol>
     12149                                                <MaxTileCol>32</MaxTileCol>
     12150                                        </TileMatrixLimits>
     12151                                        <TileMatrixLimits>
     12152                                                <TileMatrix>7</TileMatrix>
     12153                                                <MinTileRow>46</MinTileRow>
     12154                                                <MaxTileRow>46</MaxTileRow>
     12155                                                <MinTileCol>64</MinTileCol>
     12156                                                <MaxTileCol>64</MaxTileCol>
     12157                                        </TileMatrixLimits>
     12158                                        <TileMatrixLimits>
     12159                                                <TileMatrix>8</TileMatrix>
     12160                                                <MinTileRow>92</MinTileRow>
     12161                                                <MaxTileRow>92</MaxTileRow>
     12162                                                <MinTileCol>128</MinTileCol>
     12163                                                <MaxTileCol>128</MaxTileCol>
     12164                                        </TileMatrixLimits>
     12165                                        <TileMatrixLimits>
     12166                                                <TileMatrix>9</TileMatrix>
     12167                                                <MinTileRow>184</MinTileRow>
     12168                                                <MaxTileRow>184</MaxTileRow>
     12169                                                <MinTileCol>256</MinTileCol>
     12170                                                <MaxTileCol>256</MaxTileCol>
     12171                                        </TileMatrixLimits>
     12172                                </TileMatrixSetLimits>
     12173                        </TileMatrixSetLink>
     12174                </Layer>
     12175                <Layer>
     12176                        <ows:Title>Orthophotographies Geosud de BEZIERS</ows:Title>
     12177                        <ows:Abstract>Orthophotographies satellites de BEZIERS issues du projet Geosud.</ows:Abstract>
     12178                        <ows:Keywords>
     12179                                <ows:Keyword>Photographies</ows:Keyword>
     12180                        </ows:Keywords>
     12181                        <ows:WGS84BoundingBox>
     12182                                <ows:LowerCorner>3.09849 43.2765</ows:LowerCorner>
     12183                                <ows:UpperCorner>3.37027 43.4211</ows:UpperCorner>
     12184                        </ows:WGS84BoundingBox>
     12185                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BEZIERS-2013-08-31-38573824</ows:Identifier>
     12186                        <Style isDefault="true">
     12187                                <ows:Title>Données Brutes</ows:Title>
     12188                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12189                                <ows:Keywords>
     12190                                        <ows:Keyword>Défaut</ows:Keyword>
     12191                                </ows:Keywords>
     12192                                <ows:Identifier>normal</ows:Identifier>
     12193                                <LegendURL format="image/jpeg" height="200"
     12194                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12195                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12196                        </Style>
     12197                        <Format>image/jpeg</Format>
     12198                        <TileMatrixSetLink>
     12199                                <TileMatrixSet>PM</TileMatrixSet>
     12200                                <TileMatrixSetLimits>
     12201                                        <TileMatrixLimits>
     12202                                                <TileMatrix>0</TileMatrix>
     12203                                                <MinTileRow>0</MinTileRow>
     12204                                                <MaxTileRow>0</MaxTileRow>
     12205                                                <MinTileCol>0</MinTileCol>
     12206                                                <MaxTileCol>0</MaxTileCol>
     12207                                        </TileMatrixLimits>
     12208                                        <TileMatrixLimits>
     12209                                                <TileMatrix>1</TileMatrix>
     12210                                                <MinTileRow>0</MinTileRow>
     12211                                                <MaxTileRow>0</MaxTileRow>
     12212                                                <MinTileCol>1</MinTileCol>
     12213                                                <MaxTileCol>1</MaxTileCol>
     12214                                        </TileMatrixLimits>
     12215                                        <TileMatrixLimits>
     12216                                                <TileMatrix>10</TileMatrix>
     12217                                                <MinTileRow>374</MinTileRow>
     12218                                                <MaxTileRow>375</MaxTileRow>
     12219                                                <MinTileCol>520</MinTileCol>
     12220                                                <MaxTileCol>521</MaxTileCol>
     12221                                        </TileMatrixLimits>
     12222                                        <TileMatrixLimits>
     12223                                                <TileMatrix>11</TileMatrix>
     12224                                                <MinTileRow>749</MinTileRow>
     12225                                                <MaxTileRow>750</MaxTileRow>
     12226                                                <MinTileCol>1041</MinTileCol>
     12227                                                <MaxTileCol>1043</MaxTileCol>
     12228                                        </TileMatrixLimits>
     12229                                        <TileMatrixLimits>
     12230                                                <TileMatrix>12</TileMatrix>
     12231                                                <MinTileRow>1498</MinTileRow>
     12232                                                <MaxTileRow>1500</MaxTileRow>
     12233                                                <MinTileCol>2083</MinTileCol>
     12234                                                <MaxTileCol>2086</MaxTileCol>
     12235                                        </TileMatrixLimits>
     12236                                        <TileMatrixLimits>
     12237                                                <TileMatrix>13</TileMatrix>
     12238                                                <MinTileRow>2996</MinTileRow>
     12239                                                <MaxTileRow>3001</MaxTileRow>
     12240                                                <MinTileCol>4166</MinTileCol>
     12241                                                <MaxTileCol>4172</MaxTileCol>
     12242                                        </TileMatrixLimits>
     12243                                        <TileMatrixLimits>
     12244                                                <TileMatrix>14</TileMatrix>
     12245                                                <MinTileRow>5993</MinTileRow>
     12246                                                <MaxTileRow>6003</MaxTileRow>
     12247                                                <MinTileCol>8333</MinTileCol>
     12248                                                <MaxTileCol>8345</MaxTileCol>
     12249                                        </TileMatrixLimits>
     12250                                        <TileMatrixLimits>
     12251                                                <TileMatrix>15</TileMatrix>
     12252                                                <MinTileRow>11987</MinTileRow>
     12253                                                <MaxTileRow>12006</MaxTileRow>
     12254                                                <MinTileCol>16666</MinTileCol>
     12255                                                <MaxTileCol>16690</MaxTileCol>
     12256                                        </TileMatrixLimits>
     12257                                        <TileMatrixLimits>
     12258                                                <TileMatrix>16</TileMatrix>
     12259                                                <MinTileRow>23975</MinTileRow>
     12260                                                <MaxTileRow>24012</MaxTileRow>
     12261                                                <MinTileCol>33332</MinTileCol>
     12262                                                <MaxTileCol>33381</MaxTileCol>
     12263                                        </TileMatrixLimits>
     12264                                        <TileMatrixLimits>
     12265                                                <TileMatrix>17</TileMatrix>
     12266                                                <MinTileRow>47951</MinTileRow>
     12267                                                <MaxTileRow>48024</MaxTileRow>
     12268                                                <MinTileCol>66664</MinTileCol>
     12269                                                <MaxTileCol>66763</MaxTileCol>
     12270                                        </TileMatrixLimits>
     12271                                        <TileMatrixLimits>
     12272                                                <TileMatrix>18</TileMatrix>
     12273                                                <MinTileRow>95903</MinTileRow>
     12274                                                <MaxTileRow>96048</MaxTileRow>
     12275                                                <MinTileCol>133328</MinTileCol>
     12276                                                <MaxTileCol>133526</MaxTileCol>
     12277                                        </TileMatrixLimits>
     12278                                        <TileMatrixLimits>
     12279                                                <TileMatrix>2</TileMatrix>
     12280                                                <MinTileRow>1</MinTileRow>
     12281                                                <MaxTileRow>1</MaxTileRow>
     12282                                                <MinTileCol>2</MinTileCol>
     12283                                                <MaxTileCol>2</MaxTileCol>
     12284                                        </TileMatrixLimits>
     12285                                        <TileMatrixLimits>
     12286                                                <TileMatrix>3</TileMatrix>
     12287                                                <MinTileRow>2</MinTileRow>
     12288                                                <MaxTileRow>2</MaxTileRow>
     12289                                                <MinTileCol>4</MinTileCol>
     12290                                                <MaxTileCol>4</MaxTileCol>
     12291                                        </TileMatrixLimits>
     12292                                        <TileMatrixLimits>
     12293                                                <TileMatrix>4</TileMatrix>
     12294                                                <MinTileRow>5</MinTileRow>
     12295                                                <MaxTileRow>5</MaxTileRow>
     12296                                                <MinTileCol>8</MinTileCol>
     12297                                                <MaxTileCol>8</MaxTileCol>
     12298                                        </TileMatrixLimits>
     12299                                        <TileMatrixLimits>
     12300                                                <TileMatrix>5</TileMatrix>
     12301                                                <MinTileRow>11</MinTileRow>
     12302                                                <MaxTileRow>11</MaxTileRow>
     12303                                                <MinTileCol>16</MinTileCol>
     12304                                                <MaxTileCol>16</MaxTileCol>
     12305                                        </TileMatrixLimits>
     12306                                        <TileMatrixLimits>
     12307                                                <TileMatrix>6</TileMatrix>
     12308                                                <MinTileRow>23</MinTileRow>
     12309                                                <MaxTileRow>23</MaxTileRow>
     12310                                                <MinTileCol>32</MinTileCol>
     12311                                                <MaxTileCol>32</MaxTileCol>
     12312                                        </TileMatrixLimits>
     12313                                        <TileMatrixLimits>
     12314                                                <TileMatrix>7</TileMatrix>
     12315                                                <MinTileRow>46</MinTileRow>
     12316                                                <MaxTileRow>46</MaxTileRow>
     12317                                                <MinTileCol>65</MinTileCol>
     12318                                                <MaxTileCol>65</MaxTileCol>
     12319                                        </TileMatrixLimits>
     12320                                        <TileMatrixLimits>
     12321                                                <TileMatrix>8</TileMatrix>
     12322                                                <MinTileRow>93</MinTileRow>
     12323                                                <MaxTileRow>93</MaxTileRow>
     12324                                                <MinTileCol>130</MinTileCol>
     12325                                                <MaxTileCol>130</MaxTileCol>
     12326                                        </TileMatrixLimits>
     12327                                        <TileMatrixLimits>
     12328                                                <TileMatrix>9</TileMatrix>
     12329                                                <MinTileRow>187</MinTileRow>
     12330                                                <MaxTileRow>187</MaxTileRow>
     12331                                                <MinTileCol>260</MinTileCol>
     12332                                                <MaxTileCol>260</MaxTileCol>
     12333                                        </TileMatrixLimits>
     12334                                </TileMatrixSetLimits>
     12335                        </TileMatrixSetLink>
     12336                </Layer>
     12337                <Layer>
     12338                        <ows:Title>Orthophotographies Geosud de BORDEAUX-2013</ows:Title>
     12339                        <ows:Abstract>Orthophotographies satellites de BORDEAUX-2013 issues du projet Geosud.</ows:Abstract>
     12340                        <ows:Keywords>
     12341                                <ows:Keyword>Photographies</ows:Keyword>
     12342                        </ows:Keywords>
     12343                        <ows:WGS84BoundingBox>
     12344                                <ows:LowerCorner>-0.910232 44.8017</ows:LowerCorner>
     12345                                <ows:UpperCorner>-0.618547 45.009</ows:UpperCorner>
     12346                        </ows:WGS84BoundingBox>
     12347                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-2013-12-09-40341199</ows:Identifier>
     12348                        <Style isDefault="true">
     12349                                <ows:Title>Données Brutes</ows:Title>
     12350                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12351                                <ows:Keywords>
     12352                                        <ows:Keyword>Défaut</ows:Keyword>
     12353                                </ows:Keywords>
     12354                                <ows:Identifier>normal</ows:Identifier>
     12355                                <LegendURL format="image/jpeg" height="200"
     12356                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12357                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12358                        </Style>
     12359                        <Format>image/jpeg</Format>
     12360                        <TileMatrixSetLink>
     12361                                <TileMatrixSet>PM</TileMatrixSet>
     12362                                <TileMatrixSetLimits>
     12363                                        <TileMatrixLimits>
     12364                                                <TileMatrix>0</TileMatrix>
     12365                                                <MinTileRow>0</MinTileRow>
     12366                                                <MaxTileRow>0</MaxTileRow>
     12367                                                <MinTileCol>0</MinTileCol>
     12368                                                <MaxTileCol>0</MaxTileCol>
     12369                                        </TileMatrixLimits>
     12370                                        <TileMatrixLimits>
     12371                                                <TileMatrix>1</TileMatrix>
     12372                                                <MinTileRow>0</MinTileRow>
     12373                                                <MaxTileRow>0</MaxTileRow>
     12374                                                <MinTileCol>0</MinTileCol>
     12375                                                <MaxTileCol>0</MaxTileCol>
     12376                                        </TileMatrixLimits>
     12377                                        <TileMatrixLimits>
     12378                                                <TileMatrix>10</TileMatrix>
     12379                                                <MinTileRow>368</MinTileRow>
     12380                                                <MaxTileRow>369</MaxTileRow>
     12381                                                <MinTileCol>509</MinTileCol>
     12382                                                <MaxTileCol>510</MaxTileCol>
     12383                                        </TileMatrixLimits>
     12384                                        <TileMatrixLimits>
     12385                                                <TileMatrix>11</TileMatrix>
     12386                                                <MinTileRow>736</MinTileRow>
     12387                                                <MaxTileRow>738</MaxTileRow>
     12388                                                <MinTileCol>1018</MinTileCol>
     12389                                                <MaxTileCol>1020</MaxTileCol>
     12390                                        </TileMatrixLimits>
     12391                                        <TileMatrixLimits>
     12392                                                <TileMatrix>12</TileMatrix>
     12393                                                <MinTileRow>1473</MinTileRow>
     12394                                                <MaxTileRow>1476</MaxTileRow>
     12395                                                <MinTileCol>2037</MinTileCol>
     12396                                                <MaxTileCol>2040</MaxTileCol>
     12397                                        </TileMatrixLimits>
     12398                                        <TileMatrixLimits>
     12399                                                <TileMatrix>13</TileMatrix>
     12400                                                <MinTileRow>2946</MinTileRow>
     12401                                                <MaxTileRow>2953</MaxTileRow>
     12402                                                <MinTileCol>4075</MinTileCol>
     12403                                                <MaxTileCol>4081</MaxTileCol>
     12404                                        </TileMatrixLimits>
     12405                                        <TileMatrixLimits>
     12406                                                <TileMatrix>14</TileMatrix>
     12407                                                <MinTileRow>5893</MinTileRow>
     12408                                                <MaxTileRow>5906</MaxTileRow>
     12409                                                <MinTileCol>8150</MinTileCol>
     12410                                                <MaxTileCol>8163</MaxTileCol>
     12411                                        </TileMatrixLimits>
     12412                                        <TileMatrixLimits>
     12413                                                <TileMatrix>15</TileMatrix>
     12414                                                <MinTileRow>11786</MinTileRow>
     12415                                                <MaxTileRow>11812</MaxTileRow>
     12416                                                <MinTileCol>16301</MinTileCol>
     12417                                                <MaxTileCol>16327</MaxTileCol>
     12418                                        </TileMatrixLimits>
     12419                                        <TileMatrixLimits>
     12420                                                <TileMatrix>16</TileMatrix>
     12421                                                <MinTileRow>23573</MinTileRow>
     12422                                                <MaxTileRow>23624</MaxTileRow>
     12423                                                <MinTileCol>32602</MinTileCol>
     12424                                                <MaxTileCol>32654</MaxTileCol>
     12425                                        </TileMatrixLimits>
     12426                                        <TileMatrixLimits>
     12427                                                <TileMatrix>17</TileMatrix>
     12428                                                <MinTileRow>47146</MinTileRow>
     12429                                                <MaxTileRow>47249</MaxTileRow>
     12430                                                <MinTileCol>65205</MinTileCol>
     12431                                                <MaxTileCol>65309</MaxTileCol>
     12432                                        </TileMatrixLimits>
     12433                                        <TileMatrixLimits>
     12434                                                <TileMatrix>18</TileMatrix>
     12435                                                <MinTileRow>94293</MinTileRow>
     12436                                                <MaxTileRow>94499</MaxTileRow>
     12437                                                <MinTileCol>130411</MinTileCol>
     12438                                                <MaxTileCol>130619</MaxTileCol>
     12439                                        </TileMatrixLimits>
     12440                                        <TileMatrixLimits>
     12441                                                <TileMatrix>2</TileMatrix>
     12442                                                <MinTileRow>1</MinTileRow>
     12443                                                <MaxTileRow>1</MaxTileRow>
     12444                                                <MinTileCol>1</MinTileCol>
     12445                                                <MaxTileCol>1</MaxTileCol>
     12446                                        </TileMatrixLimits>
     12447                                        <TileMatrixLimits>
     12448                                                <TileMatrix>3</TileMatrix>
     12449                                                <MinTileRow>2</MinTileRow>
     12450                                                <MaxTileRow>2</MaxTileRow>
     12451                                                <MinTileCol>3</MinTileCol>
     12452                                                <MaxTileCol>3</MaxTileCol>
     12453                                        </TileMatrixLimits>
     12454                                        <TileMatrixLimits>
     12455                                                <TileMatrix>4</TileMatrix>
     12456                                                <MinTileRow>5</MinTileRow>
     12457                                                <MaxTileRow>5</MaxTileRow>
     12458                                                <MinTileCol>7</MinTileCol>
     12459                                                <MaxTileCol>7</MaxTileCol>
     12460                                        </TileMatrixLimits>
     12461                                        <TileMatrixLimits>
     12462                                                <TileMatrix>5</TileMatrix>
     12463                                                <MinTileRow>11</MinTileRow>
     12464                                                <MaxTileRow>11</MaxTileRow>
     12465                                                <MinTileCol>15</MinTileCol>
     12466                                                <MaxTileCol>15</MaxTileCol>
     12467                                        </TileMatrixLimits>
     12468                                        <TileMatrixLimits>
     12469                                                <TileMatrix>6</TileMatrix>
     12470                                                <MinTileRow>23</MinTileRow>
     12471                                                <MaxTileRow>23</MaxTileRow>
     12472                                                <MinTileCol>31</MinTileCol>
     12473                                                <MaxTileCol>31</MaxTileCol>
     12474                                        </TileMatrixLimits>
     12475                                        <TileMatrixLimits>
     12476                                                <TileMatrix>7</TileMatrix>
     12477                                                <MinTileRow>46</MinTileRow>
     12478                                                <MaxTileRow>46</MaxTileRow>
     12479                                                <MinTileCol>63</MinTileCol>
     12480                                                <MaxTileCol>63</MaxTileCol>
     12481                                        </TileMatrixLimits>
     12482                                        <TileMatrixLimits>
     12483                                                <TileMatrix>8</TileMatrix>
     12484                                                <MinTileRow>92</MinTileRow>
     12485                                                <MaxTileRow>92</MaxTileRow>
     12486                                                <MinTileCol>127</MinTileCol>
     12487                                                <MaxTileCol>127</MaxTileCol>
     12488                                        </TileMatrixLimits>
     12489                                        <TileMatrixLimits>
     12490                                                <TileMatrix>9</TileMatrix>
     12491                                                <MinTileRow>184</MinTileRow>
     12492                                                <MaxTileRow>184</MaxTileRow>
     12493                                                <MinTileCol>254</MinTileCol>
     12494                                                <MaxTileCol>255</MaxTileCol>
     12495                                        </TileMatrixLimits>
     12496                                </TileMatrixSetLimits>
     12497                        </TileMatrixSetLink>
     12498                </Layer>
     12499                <Layer>
     12500                        <ows:Title>Orthophotographies Geosud de BORDEAUX-2013</ows:Title>
     12501                        <ows:Abstract>Orthophotographies satellites de BORDEAUX-2013 issues du projet Geosud.</ows:Abstract>
     12502                        <ows:Keywords>
     12503                                <ows:Keyword>Photographies</ows:Keyword>
     12504                        </ows:Keywords>
     12505                        <ows:WGS84BoundingBox>
     12506                                <ows:LowerCorner>-0.911596 44.5675</ows:LowerCorner>
     12507                                <ows:UpperCorner>-0.616128 44.8467</ows:UpperCorner>
     12508                        </ows:WGS84BoundingBox>
     12509                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-2013-12-10-39858819</ows:Identifier>
     12510                        <Style isDefault="true">
     12511                                <ows:Title>Données Brutes</ows:Title>
     12512                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12513                                <ows:Keywords>
     12514                                        <ows:Keyword>Défaut</ows:Keyword>
     12515                                </ows:Keywords>
     12516                                <ows:Identifier>normal</ows:Identifier>
     12517                                <LegendURL format="image/jpeg" height="200"
     12518                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12519                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12520                        </Style>
     12521                        <Format>image/jpeg</Format>
     12522                        <TileMatrixSetLink>
     12523                                <TileMatrixSet>PM</TileMatrixSet>
     12524                                <TileMatrixSetLimits>
     12525                                        <TileMatrixLimits>
     12526                                                <TileMatrix>0</TileMatrix>
     12527                                                <MinTileRow>0</MinTileRow>
     12528                                                <MaxTileRow>0</MaxTileRow>
     12529                                                <MinTileCol>0</MinTileCol>
     12530                                                <MaxTileCol>0</MaxTileCol>
     12531                                        </TileMatrixLimits>
     12532                                        <TileMatrixLimits>
     12533                                                <TileMatrix>1</TileMatrix>
     12534                                                <MinTileRow>0</MinTileRow>
     12535                                                <MaxTileRow>0</MaxTileRow>
     12536                                                <MinTileCol>0</MinTileCol>
     12537                                                <MaxTileCol>0</MaxTileCol>
     12538                                        </TileMatrixLimits>
     12539                                        <TileMatrixLimits>
     12540                                                <TileMatrix>10</TileMatrix>
     12541                                                <MinTileRow>368</MinTileRow>
     12542                                                <MaxTileRow>370</MaxTileRow>
     12543                                                <MinTileCol>509</MinTileCol>
     12544                                                <MaxTileCol>510</MaxTileCol>
     12545                                        </TileMatrixLimits>
     12546                                        <TileMatrixLimits>
     12547                                                <TileMatrix>11</TileMatrix>
     12548                                                <MinTileRow>737</MinTileRow>
     12549                                                <MaxTileRow>740</MaxTileRow>
     12550                                                <MinTileCol>1018</MinTileCol>
     12551                                                <MaxTileCol>1020</MaxTileCol>
     12552                                        </TileMatrixLimits>
     12553                                        <TileMatrixLimits>
     12554                                                <TileMatrix>12</TileMatrix>
     12555                                                <MinTileRow>1475</MinTileRow>
     12556                                                <MaxTileRow>1480</MaxTileRow>
     12557                                                <MinTileCol>2037</MinTileCol>
     12558                                                <MaxTileCol>2040</MaxTileCol>
     12559                                        </TileMatrixLimits>
     12560                                        <TileMatrixLimits>
     12561                                                <TileMatrix>13</TileMatrix>
     12562                                                <MinTileRow>2951</MinTileRow>
     12563                                                <MaxTileRow>2960</MaxTileRow>
     12564                                                <MinTileCol>4075</MinTileCol>
     12565                                                <MaxTileCol>4081</MaxTileCol>
     12566                                        </TileMatrixLimits>
     12567                                        <TileMatrixLimits>
     12568                                                <TileMatrix>14</TileMatrix>
     12569                                                <MinTileRow>5903</MinTileRow>
     12570                                                <MaxTileRow>5920</MaxTileRow>
     12571                                                <MinTileCol>8150</MinTileCol>
     12572                                                <MaxTileCol>8163</MaxTileCol>
     12573                                        </TileMatrixLimits>
     12574                                        <TileMatrixLimits>
     12575                                                <TileMatrix>15</TileMatrix>
     12576                                                <MinTileRow>11807</MinTileRow>
     12577                                                <MaxTileRow>11841</MaxTileRow>
     12578                                                <MinTileCol>16301</MinTileCol>
     12579                                                <MaxTileCol>16327</MaxTileCol>
     12580                                        </TileMatrixLimits>
     12581                                        <TileMatrixLimits>
     12582                                                <TileMatrix>16</TileMatrix>
     12583                                                <MinTileRow>23615</MinTileRow>
     12584                                                <MaxTileRow>23683</MaxTileRow>
     12585                                                <MinTileCol>32603</MinTileCol>
     12586                                                <MaxTileCol>32654</MaxTileCol>
     12587                                        </TileMatrixLimits>
     12588                                        <TileMatrixLimits>
     12589                                                <TileMatrix>17</TileMatrix>
     12590                                                <MinTileRow>47230</MinTileRow>
     12591                                                <MaxTileRow>47367</MaxTileRow>
     12592                                                <MinTileCol>65207</MinTileCol>
     12593                                                <MaxTileCol>65309</MaxTileCol>
     12594                                        </TileMatrixLimits>
     12595                                        <TileMatrixLimits>
     12596                                                <TileMatrix>18</TileMatrix>
     12597                                                <MinTileRow>94460</MinTileRow>
     12598                                                <MaxTileRow>94735</MaxTileRow>
     12599                                                <MinTileCol>130414</MinTileCol>
     12600                                                <MaxTileCol>130618</MaxTileCol>
     12601                                        </TileMatrixLimits>
     12602                                        <TileMatrixLimits>
     12603                                                <TileMatrix>2</TileMatrix>
     12604                                                <MinTileRow>1</MinTileRow>
     12605                                                <MaxTileRow>1</MaxTileRow>
     12606                                                <MinTileCol>1</MinTileCol>
     12607                                                <MaxTileCol>1</MaxTileCol>
     12608                                        </TileMatrixLimits>
     12609                                        <TileMatrixLimits>
     12610                                                <TileMatrix>3</TileMatrix>
     12611                                                <MinTileRow>2</MinTileRow>
     12612                                                <MaxTileRow>2</MaxTileRow>
     12613                                                <MinTileCol>3</MinTileCol>
     12614                                                <MaxTileCol>3</MaxTileCol>
     12615                                        </TileMatrixLimits>
     12616                                        <TileMatrixLimits>
     12617                                                <TileMatrix>4</TileMatrix>
     12618                                                <MinTileRow>5</MinTileRow>
     12619                                                <MaxTileRow>5</MaxTileRow>
     12620                                                <MinTileCol>7</MinTileCol>
     12621                                                <MaxTileCol>7</MaxTileCol>
     12622                                        </TileMatrixLimits>
     12623                                        <TileMatrixLimits>
     12624                                                <TileMatrix>5</TileMatrix>
     12625                                                <MinTileRow>11</MinTileRow>
     12626                                                <MaxTileRow>11</MaxTileRow>
     12627                                                <MinTileCol>15</MinTileCol>
     12628                                                <MaxTileCol>15</MaxTileCol>
     12629                                        </TileMatrixLimits>
     12630                                        <TileMatrixLimits>
     12631                                                <TileMatrix>6</TileMatrix>
     12632                                                <MinTileRow>23</MinTileRow>
     12633                                                <MaxTileRow>23</MaxTileRow>
     12634                                                <MinTileCol>31</MinTileCol>
     12635                                                <MaxTileCol>31</MaxTileCol>
     12636                                        </TileMatrixLimits>
     12637                                        <TileMatrixLimits>
     12638                                                <TileMatrix>7</TileMatrix>
     12639                                                <MinTileRow>46</MinTileRow>
     12640                                                <MaxTileRow>46</MaxTileRow>
     12641                                                <MinTileCol>63</MinTileCol>
     12642                                                <MaxTileCol>63</MaxTileCol>
     12643                                        </TileMatrixLimits>
     12644                                        <TileMatrixLimits>
     12645                                                <TileMatrix>8</TileMatrix>
     12646                                                <MinTileRow>92</MinTileRow>
     12647                                                <MaxTileRow>92</MaxTileRow>
     12648                                                <MinTileCol>127</MinTileCol>
     12649                                                <MaxTileCol>127</MaxTileCol>
     12650                                        </TileMatrixLimits>
     12651                                        <TileMatrixLimits>
     12652                                                <TileMatrix>9</TileMatrix>
     12653                                                <MinTileRow>184</MinTileRow>
     12654                                                <MaxTileRow>185</MaxTileRow>
     12655                                                <MinTileCol>254</MinTileCol>
     12656                                                <MaxTileCol>255</MaxTileCol>
     12657                                        </TileMatrixLimits>
     12658                                </TileMatrixSetLimits>
     12659                        </TileMatrixSetLink>
     12660                </Layer>
     12661                <Layer>
     12662                        <ows:Title>Orthophotographies Geosud de BORDEAUX-EST 2014</ows:Title>
     12663                        <ows:Abstract>Orthophotographies satellites de BORDEAUX-EST issues du projet Geosud.</ows:Abstract>
     12664                        <ows:Keywords>
     12665                                <ows:Keyword>Photographies</ows:Keyword>
     12666                        </ows:Keywords>
     12667                        <ows:WGS84BoundingBox>
     12668                                <ows:LowerCorner>-0.683234 44.8185</ows:LowerCorner>
     12669                                <ows:UpperCorner>-0.378996 45.0346</ows:UpperCorner>
     12670                        </ows:WGS84BoundingBox>
     12671                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-EST-2014-03-05-39583319</ows:Identifier>
     12672                        <Style isDefault="true">
     12673                                <ows:Title>Données Brutes</ows:Title>
     12674                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12675                                <ows:Keywords>
     12676                                        <ows:Keyword>Défaut</ows:Keyword>
     12677                                </ows:Keywords>
     12678                                <ows:Identifier>normal</ows:Identifier>
     12679                                <LegendURL format="image/jpeg" height="200"
     12680                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12681                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12682                        </Style>
     12683                        <Format>image/jpeg</Format>
     12684                        <TileMatrixSetLink>
     12685                                <TileMatrixSet>PM</TileMatrixSet>
     12686                                <TileMatrixSetLimits>
     12687                                        <TileMatrixLimits>
     12688                                                <TileMatrix>0</TileMatrix>
     12689                                                <MinTileRow>0</MinTileRow>
     12690                                                <MaxTileRow>0</MaxTileRow>
     12691                                                <MinTileCol>0</MinTileCol>
     12692                                                <MaxTileCol>0</MaxTileCol>
     12693                                        </TileMatrixLimits>
     12694                                        <TileMatrixLimits>
     12695                                                <TileMatrix>1</TileMatrix>
     12696                                                <MinTileRow>0</MinTileRow>
     12697                                                <MaxTileRow>0</MaxTileRow>
     12698                                                <MinTileCol>0</MinTileCol>
     12699                                                <MaxTileCol>0</MaxTileCol>
     12700                                        </TileMatrixLimits>
     12701                                        <TileMatrixLimits>
     12702                                                <TileMatrix>10</TileMatrix>
     12703                                                <MinTileRow>368</MinTileRow>
     12704                                                <MaxTileRow>369</MaxTileRow>
     12705                                                <MinTileCol>510</MinTileCol>
     12706                                                <MaxTileCol>510</MaxTileCol>
     12707                                        </TileMatrixLimits>
     12708                                        <TileMatrixLimits>
     12709                                                <TileMatrix>11</TileMatrix>
     12710                                                <MinTileRow>736</MinTileRow>
     12711                                                <MaxTileRow>738</MaxTileRow>
     12712                                                <MinTileCol>1020</MinTileCol>
     12713                                                <MaxTileCol>1021</MaxTileCol>
     12714                                        </TileMatrixLimits>
     12715                                        <TileMatrixLimits>
     12716                                                <TileMatrix>12</TileMatrix>
     12717                                                <MinTileRow>1472</MinTileRow>
     12718                                                <MaxTileRow>1476</MaxTileRow>
     12719                                                <MinTileCol>2040</MinTileCol>
     12720                                                <MaxTileCol>2043</MaxTileCol>
     12721                                        </TileMatrixLimits>
     12722                                        <TileMatrixLimits>
     12723                                                <TileMatrix>13</TileMatrix>
     12724                                                <MinTileRow>2945</MinTileRow>
     12725                                                <MaxTileRow>2952</MaxTileRow>
     12726                                                <MinTileCol>4080</MinTileCol>
     12727                                                <MaxTileCol>4087</MaxTileCol>
     12728                                        </TileMatrixLimits>
     12729                                        <TileMatrixLimits>
     12730                                                <TileMatrix>14</TileMatrix>
     12731                                                <MinTileRow>5891</MinTileRow>
     12732                                                <MaxTileRow>5905</MaxTileRow>
     12733                                                <MinTileCol>8161</MinTileCol>
     12734                                                <MaxTileCol>8174</MaxTileCol>
     12735                                        </TileMatrixLimits>
     12736                                        <TileMatrixLimits>
     12737                                                <TileMatrix>15</TileMatrix>
     12738                                                <MinTileRow>11783</MinTileRow>
     12739                                                <MaxTileRow>11810</MaxTileRow>
     12740                                                <MinTileCol>16322</MinTileCol>
     12741                                                <MaxTileCol>16348</MaxTileCol>
     12742                                        </TileMatrixLimits>
     12743                                        <TileMatrixLimits>
     12744                                                <TileMatrix>16</TileMatrix>
     12745                                                <MinTileRow>23566</MinTileRow>
     12746                                                <MaxTileRow>23621</MaxTileRow>
     12747                                                <MinTileCol>32645</MinTileCol>
     12748                                                <MaxTileCol>32697</MaxTileCol>
     12749                                        </TileMatrixLimits>
     12750                                        <TileMatrixLimits>
     12751                                                <TileMatrix>17</TileMatrix>
     12752                                                <MinTileRow>47132</MinTileRow>
     12753                                                <MaxTileRow>47243</MaxTileRow>
     12754                                                <MinTileCol>65290</MinTileCol>
     12755                                                <MaxTileCol>65395</MaxTileCol>
     12756                                        </TileMatrixLimits>
     12757                                        <TileMatrixLimits>
     12758                                                <TileMatrix>18</TileMatrix>
     12759                                                <MinTileRow>94264</MinTileRow>
     12760                                                <MaxTileRow>94486</MaxTileRow>
     12761                                                <MinTileCol>130580</MinTileCol>
     12762                                                <MaxTileCol>130791</MaxTileCol>
     12763                                        </TileMatrixLimits>
     12764                                        <TileMatrixLimits>
     12765                                                <TileMatrix>2</TileMatrix>
     12766                                                <MinTileRow>1</MinTileRow>
     12767                                                <MaxTileRow>1</MaxTileRow>
     12768                                                <MinTileCol>1</MinTileCol>
     12769                                                <MaxTileCol>1</MaxTileCol>
     12770                                        </TileMatrixLimits>
     12771                                        <TileMatrixLimits>
     12772                                                <TileMatrix>3</TileMatrix>
     12773                                                <MinTileRow>2</MinTileRow>
     12774                                                <MaxTileRow>2</MaxTileRow>
     12775                                                <MinTileCol>3</MinTileCol>
     12776                                                <MaxTileCol>3</MaxTileCol>
     12777                                        </TileMatrixLimits>
     12778                                        <TileMatrixLimits>
     12779                                                <TileMatrix>4</TileMatrix>
     12780                                                <MinTileRow>5</MinTileRow>
     12781                                                <MaxTileRow>5</MaxTileRow>
     12782                                                <MinTileCol>7</MinTileCol>
     12783                                                <MaxTileCol>7</MaxTileCol>
     12784                                        </TileMatrixLimits>
     12785                                        <TileMatrixLimits>
     12786                                                <TileMatrix>5</TileMatrix>
     12787                                                <MinTileRow>11</MinTileRow>
     12788                                                <MaxTileRow>11</MaxTileRow>
     12789                                                <MinTileCol>15</MinTileCol>
     12790                                                <MaxTileCol>15</MaxTileCol>
     12791                                        </TileMatrixLimits>
     12792                                        <TileMatrixLimits>
     12793                                                <TileMatrix>6</TileMatrix>
     12794                                                <MinTileRow>23</MinTileRow>
     12795                                                <MaxTileRow>23</MaxTileRow>
     12796                                                <MinTileCol>31</MinTileCol>
     12797                                                <MaxTileCol>31</MaxTileCol>
     12798                                        </TileMatrixLimits>
     12799                                        <TileMatrixLimits>
     12800                                                <TileMatrix>7</TileMatrix>
     12801                                                <MinTileRow>46</MinTileRow>
     12802                                                <MaxTileRow>46</MaxTileRow>
     12803                                                <MinTileCol>63</MinTileCol>
     12804                                                <MaxTileCol>63</MaxTileCol>
     12805                                        </TileMatrixLimits>
     12806                                        <TileMatrixLimits>
     12807                                                <TileMatrix>8</TileMatrix>
     12808                                                <MinTileRow>92</MinTileRow>
     12809                                                <MaxTileRow>92</MaxTileRow>
     12810                                                <MinTileCol>127</MinTileCol>
     12811                                                <MaxTileCol>127</MaxTileCol>
     12812                                        </TileMatrixLimits>
     12813                                        <TileMatrixLimits>
     12814                                                <TileMatrix>9</TileMatrix>
     12815                                                <MinTileRow>184</MinTileRow>
     12816                                                <MaxTileRow>184</MaxTileRow>
     12817                                                <MinTileCol>255</MinTileCol>
     12818                                                <MaxTileCol>255</MaxTileCol>
     12819                                        </TileMatrixLimits>
     12820                                </TileMatrixSetLimits>
     12821                        </TileMatrixSetLink>
     12822                </Layer>
     12823                <Layer>
     12824                        <ows:Title>Orthophotographies Geosud de BORDEAUX-EST 2014</ows:Title>
     12825                        <ows:Abstract>Orthophotographies satellites de BORDEAUX-EST issues du projet Geosud.</ows:Abstract>
     12826                        <ows:Keywords>
     12827                                <ows:Keyword>Photographies</ows:Keyword>
     12828                        </ows:Keywords>
     12829                        <ows:WGS84BoundingBox>
     12830                                <ows:LowerCorner>-0.684664 44.6562</ows:LowerCorner>
     12831                                <ows:UpperCorner>-0.381886 44.8633</ows:UpperCorner>
     12832                        </ows:WGS84BoundingBox>
     12833                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BORDEAUX-EST-2014-04-13-39626699</ows:Identifier>
     12834                        <Style isDefault="true">
     12835                                <ows:Title>Données Brutes</ows:Title>
     12836                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12837                                <ows:Keywords>
     12838                                        <ows:Keyword>Défaut</ows:Keyword>
     12839                                </ows:Keywords>
     12840                                <ows:Identifier>normal</ows:Identifier>
     12841                                <LegendURL format="image/jpeg" height="200"
     12842                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     12843                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     12844                        </Style>
     12845                        <Format>image/jpeg</Format>
     12846                        <TileMatrixSetLink>
     12847                                <TileMatrixSet>PM</TileMatrixSet>
     12848                                <TileMatrixSetLimits>
     12849                                        <TileMatrixLimits>
     12850                                                <TileMatrix>0</TileMatrix>
     12851                                                <MinTileRow>0</MinTileRow>
     12852                                                <MaxTileRow>0</MaxTileRow>
     12853                                                <MinTileCol>0</MinTileCol>
     12854                                                <MaxTileCol>0</MaxTileCol>
     12855                                        </TileMatrixLimits>
     12856                                        <TileMatrixLimits>
     12857                                                <TileMatrix>1</TileMatrix>
     12858                                                <MinTileRow>0</MinTileRow>
     12859                                                <MaxTileRow>0</MaxTileRow>
     12860                                                <MinTileCol>0</MinTileCol>
     12861                                                <MaxTileCol>0</MaxTileCol>
     12862                                        </TileMatrixLimits>
     12863                                        <TileMatrixLimits>
     12864                                                <TileMatrix>10</TileMatrix>
     12865                                                <MinTileRow>368</MinTileRow>
     12866                                                <MaxTileRow>369</MaxTileRow>
     12867                                                <MinTileCol>510</MinTileCol>
     12868                                                <MaxTileCol>510</MaxTileCol>
     12869                                        </TileMatrixLimits>
     12870                                        <TileMatrixLimits>
     12871                                                <TileMatrix>11</TileMatrix>
     12872                                                <MinTileRow>737</MinTileRow>
     12873                                                <MaxTileRow>739</MaxTileRow>
     12874                                                <MinTileCol>1020</MinTileCol>
     12875                                                <MaxTileCol>1021</MaxTileCol>
     12876                                        </TileMatrixLimits>
     12877                                        <TileMatrixLimits>
     12878                                                <TileMatrix>12</TileMatrix>
     12879                                                <MinTileRow>1475</MinTileRow>
     12880                                                <MaxTileRow>1478</MaxTileRow>
     12881                                                <MinTileCol>2040</MinTileCol>
     12882                                                <MaxTileCol>2043</MaxTileCol>
     12883                                        </TileMatrixLimits>
     12884                                        <TileMatrixLimits>
     12885                                                <TileMatrix>13</TileMatrix>
     12886                                                <MinTileRow>2951</MinTileRow>
     12887                                                <MaxTileRow>2957</MaxTileRow>
     12888                                                <MinTileCol>4080</MinTileCol>
     12889                                                <MaxTileCol>4087</MaxTileCol>
     12890                                        </TileMatrixLimits>
     12891                                        <TileMatrixLimits>
     12892                                                <TileMatrix>14</TileMatrix>
     12893                                                <MinTileRow>5903</MinTileRow>
     12894                                                <MaxTileRow>5915</MaxTileRow>
     12895                                                <MinTileCol>8161</MinTileCol>
     12896                                                <MaxTileCol>8174</MaxTileCol>
     12897                                        </TileMatrixLimits>
     12898                                        <TileMatrixLimits>
     12899                                                <TileMatrix>15</TileMatrix>
     12900                                                <MinTileRow>11806</MinTileRow>
     12901                                                <MaxTileRow>11831</MaxTileRow>
     12902                                                <MinTileCol>16322</MinTileCol>
     12903                                                <MaxTileCol>16348</MaxTileCol>
     12904                                        </TileMatrixLimits>
     12905                                        <TileMatrixLimits>
     12906                                                <TileMatrix>16</TileMatrix>
     12907                                                <MinTileRow>23612</MinTileRow>
     12908                                                <MaxTileRow>23662</MaxTileRow>
     12909                                                <MinTileCol>32645</MinTileCol>
     12910                                                <MaxTileCol>32697</MaxTileCol>
     12911                                        </TileMatrixLimits>
     12912                                        <TileMatrixLimits>
     12913                                                <TileMatrix>17</TileMatrix>
     12914                                                <MinTileRow>47224</MinTileRow>
     12915                                                <MaxTileRow>47324</MaxTileRow>
     12916                                                <MinTileCol>65290</MinTileCol>
     12917                                                <MaxTileCol>65394</MaxTileCol>
     12918                                        </TileMatrixLimits>
     12919                                        <TileMatrixLimits>
     12920                                                <TileMatrix>18</TileMatrix>
     12921                                                <MinTileRow>94448</MinTileRow>
     12922                                                <MaxTileRow>94648</MaxTileRow>
     12923                                                <MinTileCol>130581</MinTileCol>
     12924                                                <MaxTileCol>130789</MaxTileCol>
     12925                                        </TileMatrixLimits>
     12926                                        <TileMatrixLimits>
     12927                                                <TileMatrix>2</TileMatrix>
     12928                                                <MinTileRow>1</MinTileRow>
     12929                                                <MaxTileRow>1</MaxTileRow>
     12930                                                <MinTileCol>1</MinTileCol>
     12931                                                <MaxTileCol>1</MaxTileCol>
     12932                                        </TileMatrixLimits>
     12933                                        <TileMatrixLimits>
     12934                                                <TileMatrix>3</TileMatrix>
     12935                                                <MinTileRow>2</MinTileRow>
     12936                                                <MaxTileRow>2</MaxTileRow>
     12937                                                <MinTileCol>3</MinTileCol>
     12938                                                <MaxTileCol>3</MaxTileCol>
     12939                                        </TileMatrixLimits>
     12940                                        <TileMatrixLimits>
     12941                                                <TileMatrix>4</TileMatrix>
     12942                                                <MinTileRow>5</MinTileRow>
     12943                                                <MaxTileRow>5</MaxTileRow>
     12944                                                <MinTileCol>7</MinTileCol>
     12945                                                <MaxTileCol>7</MaxTileCol>
     12946                                        </TileMatrixLimits>
     12947                                        <TileMatrixLimits>
     12948                                                <TileMatrix>5</TileMatrix>
     12949                                                <MinTileRow>11</MinTileRow>
     12950                                                <MaxTileRow>11</MaxTileRow>
     12951                                                <MinTileCol>15</MinTileCol>
     12952                                                <MaxTileCol>15</MaxTileCol>
     12953                                        </TileMatrixLimits>
     12954                                        <TileMatrixLimits>
     12955                                                <TileMatrix>6</TileMatrix>
     12956                                                <MinTileRow>23</MinTileRow>
     12957                                                <MaxTileRow>23</MaxTileRow>
     12958                                                <MinTileCol>31</MinTileCol>
     12959                                                <MaxTileCol>31</MaxTileCol>
     12960                                        </TileMatrixLimits>
     12961                                        <TileMatrixLimits>
     12962                                                <TileMatrix>7</TileMatrix>
     12963                                                <MinTileRow>46</MinTileRow>
     12964                                                <MaxTileRow>46</MaxTileRow>
     12965                                                <MinTileCol>63</MinTileCol>
     12966                                                <MaxTileCol>63</MaxTileCol>
     12967                                        </TileMatrixLimits>
     12968                                        <TileMatrixLimits>
     12969                                                <TileMatrix>8</TileMatrix>
     12970                                                <MinTileRow>92</MinTileRow>
     12971                                                <MaxTileRow>92</MaxTileRow>
     12972                                                <MinTileCol>127</MinTileCol>
     12973                                                <MaxTileCol>127</MaxTileCol>
     12974                                        </TileMatrixLimits>
     12975                                        <TileMatrixLimits>
     12976                                                <TileMatrix>9</TileMatrix>
     12977                                                <MinTileRow>184</MinTileRow>
     12978                                                <MaxTileRow>184</MaxTileRow>
     12979                                                <MinTileCol>255</MinTileCol>
     12980                                                <MaxTileCol>255</MaxTileCol>
     12981                                        </TileMatrixLimits>
     12982                                </TileMatrixSetLimits>
     12983                        </TileMatrixSetLink>
     12984                </Layer>
     12985                <Layer>
     12986                        <ows:Title>Orthophotographies Geosud de BOURGOGNE 2014</ows:Title>
     12987                        <ows:Abstract>Orthophotographies satellites de BOURGOGNE issues du projet Geosud.</ows:Abstract>
     12988                        <ows:Keywords>
     12989                                <ows:Keyword>Photographies</ows:Keyword>
     12990                        </ows:Keywords>
     12991                        <ows:WGS84BoundingBox>
     12992                                <ows:LowerCorner>2.81625 46.1328</ows:LowerCorner>
     12993                                <ows:UpperCorner>5.57154 48.401</ows:UpperCorner>
     12994                        </ows:WGS84BoundingBox>
     12995                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BOURGOGNE-2014</ows:Identifier>
     12996                        <Style isDefault="true">
     12997                                <ows:Title>Données Brutes</ows:Title>
     12998                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     12999                                <ows:Keywords>
     13000                                        <ows:Keyword>Défaut</ows:Keyword>
     13001                                </ows:Keywords>
     13002                                <ows:Identifier>normal</ows:Identifier>
     13003                                <LegendURL format="image/jpeg" height="200"
     13004                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13005                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13006                        </Style>
     13007                        <Format>image/jpeg</Format>
     13008                        <TileMatrixSetLink>
     13009                                <TileMatrixSet>PM</TileMatrixSet>
     13010                                <TileMatrixSetLimits>
     13011                                        <TileMatrixLimits>
     13012                                                <TileMatrix>0</TileMatrix>
     13013                                                <MinTileRow>0</MinTileRow>
     13014                                                <MaxTileRow>0</MaxTileRow>
     13015                                                <MinTileCol>0</MinTileCol>
     13016                                                <MaxTileCol>0</MaxTileCol>
     13017                                        </TileMatrixLimits>
     13018                                        <TileMatrixLimits>
     13019                                                <TileMatrix>1</TileMatrix>
     13020                                                <MinTileRow>0</MinTileRow>
     13021                                                <MaxTileRow>0</MaxTileRow>
     13022                                                <MinTileCol>1</MinTileCol>
     13023                                                <MaxTileCol>1</MaxTileCol>
     13024                                        </TileMatrixLimits>
     13025                                        <TileMatrixLimits>
     13026                                                <TileMatrix>10</TileMatrix>
     13027                                                <MinTileRow>354</MinTileRow>
     13028                                                <MaxTileRow>363</MaxTileRow>
     13029                                                <MinTileCol>520</MinTileCol>
     13030                                                <MaxTileCol>527</MaxTileCol>
     13031                                        </TileMatrixLimits>
     13032                                        <TileMatrixLimits>
     13033                                                <TileMatrix>11</TileMatrix>
     13034                                                <MinTileRow>708</MinTileRow>
     13035                                                <MaxTileRow>727</MaxTileRow>
     13036                                                <MinTileCol>1040</MinTileCol>
     13037                                                <MaxTileCol>1055</MaxTileCol>
     13038                                        </TileMatrixLimits>
     13039                                        <TileMatrixLimits>
     13040                                                <TileMatrix>12</TileMatrix>
     13041                                                <MinTileRow>1416</MinTileRow>
     13042                                                <MaxTileRow>1454</MaxTileRow>
     13043                                                <MinTileCol>2080</MinTileCol>
     13044                                                <MaxTileCol>2110</MaxTileCol>
     13045                                        </TileMatrixLimits>
     13046                                        <TileMatrixLimits>
     13047                                                <TileMatrix>13</TileMatrix>
     13048                                                <MinTileRow>2833</MinTileRow>
     13049                                                <MaxTileRow>2909</MaxTileRow>
     13050                                                <MinTileCol>4160</MinTileCol>
     13051                                                <MaxTileCol>4221</MaxTileCol>
     13052                                        </TileMatrixLimits>
     13053                                        <TileMatrixLimits>
     13054                                                <TileMatrix>14</TileMatrix>
     13055                                                <MinTileRow>5667</MinTileRow>
     13056                                                <MaxTileRow>5818</MaxTileRow>
     13057                                                <MinTileCol>8320</MinTileCol>
     13058                                                <MaxTileCol>8443</MaxTileCol>
     13059                                        </TileMatrixLimits>
     13060                                        <TileMatrixLimits>
     13061                                                <TileMatrix>15</TileMatrix>
     13062                                                <MinTileRow>11335</MinTileRow>
     13063                                                <MaxTileRow>11637</MaxTileRow>
     13064                                                <MinTileCol>16640</MinTileCol>
     13065                                                <MaxTileCol>16887</MaxTileCol>
     13066                                        </TileMatrixLimits>
     13067                                        <TileMatrixLimits>
     13068                                                <TileMatrix>16</TileMatrix>
     13069                                                <MinTileRow>22671</MinTileRow>
     13070                                                <MaxTileRow>23275</MaxTileRow>
     13071                                                <MinTileCol>33280</MinTileCol>
     13072                                                <MaxTileCol>33775</MaxTileCol>
     13073                                        </TileMatrixLimits>
     13074                                        <TileMatrixLimits>
     13075                                                <TileMatrix>17</TileMatrix>
     13076                                                <MinTileRow>45343</MinTileRow>
     13077                                                <MaxTileRow>46550</MaxTileRow>
     13078                                                <MinTileCol>66561</MinTileCol>
     13079                                                <MaxTileCol>67550</MaxTileCol>
     13080                                        </TileMatrixLimits>
     13081                                        <TileMatrixLimits>
     13082                                                <TileMatrix>2</TileMatrix>
     13083                                                <MinTileRow>1</MinTileRow>
     13084                                                <MaxTileRow>1</MaxTileRow>
     13085                                                <MinTileCol>2</MinTileCol>
     13086                                                <MaxTileCol>2</MaxTileCol>
     13087                                        </TileMatrixLimits>
     13088                                        <TileMatrixLimits>
     13089                                                <TileMatrix>3</TileMatrix>
     13090                                                <MinTileRow>2</MinTileRow>
     13091                                                <MaxTileRow>2</MaxTileRow>
     13092                                                <MinTileCol>4</MinTileCol>
     13093                                                <MaxTileCol>4</MaxTileCol>
     13094                                        </TileMatrixLimits>
     13095                                        <TileMatrixLimits>
     13096                                                <TileMatrix>4</TileMatrix>
     13097                                                <MinTileRow>5</MinTileRow>
     13098                                                <MaxTileRow>5</MaxTileRow>
     13099                                                <MinTileCol>8</MinTileCol>
     13100                                                <MaxTileCol>8</MaxTileCol>
     13101                                        </TileMatrixLimits>
     13102                                        <TileMatrixLimits>
     13103                                                <TileMatrix>5</TileMatrix>
     13104                                                <MinTileRow>11</MinTileRow>
     13105                                                <MaxTileRow>11</MaxTileRow>
     13106                                                <MinTileCol>16</MinTileCol>
     13107                                                <MaxTileCol>16</MaxTileCol>
     13108                                        </TileMatrixLimits>
     13109                                        <TileMatrixLimits>
     13110                                                <TileMatrix>6</TileMatrix>
     13111                                                <MinTileRow>22</MinTileRow>
     13112                                                <MaxTileRow>22</MaxTileRow>
     13113                                                <MinTileCol>32</MinTileCol>
     13114                                                <MaxTileCol>32</MaxTileCol>
     13115                                        </TileMatrixLimits>
     13116                                        <TileMatrixLimits>
     13117                                                <TileMatrix>7</TileMatrix>
     13118                                                <MinTileRow>44</MinTileRow>
     13119                                                <MaxTileRow>45</MaxTileRow>
     13120                                                <MinTileCol>65</MinTileCol>
     13121                                                <MaxTileCol>65</MaxTileCol>
     13122                                        </TileMatrixLimits>
     13123                                        <TileMatrixLimits>
     13124                                                <TileMatrix>8</TileMatrix>
     13125                                                <MinTileRow>88</MinTileRow>
     13126                                                <MaxTileRow>90</MaxTileRow>
     13127                                                <MinTileCol>130</MinTileCol>
     13128                                                <MaxTileCol>131</MaxTileCol>
     13129                                        </TileMatrixLimits>
     13130                                        <TileMatrixLimits>
     13131                                                <TileMatrix>9</TileMatrix>
     13132                                                <MinTileRow>177</MinTileRow>
     13133                                                <MaxTileRow>181</MaxTileRow>
     13134                                                <MinTileCol>260</MinTileCol>
     13135                                                <MaxTileCol>263</MaxTileCol>
     13136                                        </TileMatrixLimits>
     13137                                </TileMatrixSetLimits>
     13138                        </TileMatrixSetLink>
     13139                </Layer>
     13140                <Layer>
     13141                        <ows:Title>Orthophotographies Geosud de BREST 2013</ows:Title>
     13142                        <ows:Abstract>Orthophotographies satellites de BREST issues du projet Geosud.</ows:Abstract>
     13143                        <ows:Keywords>
     13144                                <ows:Keyword>Photographies</ows:Keyword>
     13145                        </ows:Keywords>
     13146                        <ows:WGS84BoundingBox>
     13147                                <ows:LowerCorner>-4.6687 48.2966</ows:LowerCorner>
     13148                                <ows:UpperCorner>-4.36192 48.4847</ows:UpperCorner>
     13149                        </ows:WGS84BoundingBox>
     13150                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BREST-2013-04-03-41613200</ows:Identifier>
     13151                        <Style isDefault="true">
     13152                                <ows:Title>Données Brutes</ows:Title>
     13153                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13154                                <ows:Keywords>
     13155                                        <ows:Keyword>Défaut</ows:Keyword>
     13156                                </ows:Keywords>
     13157                                <ows:Identifier>normal</ows:Identifier>
     13158                                <LegendURL format="image/jpeg" height="200"
     13159                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13160                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13161                        </Style>
     13162                        <Format>image/jpeg</Format>
     13163                        <TileMatrixSetLink>
     13164                                <TileMatrixSet>PM</TileMatrixSet>
     13165                                <TileMatrixSetLimits>
     13166                                        <TileMatrixLimits>
     13167                                                <TileMatrix>0</TileMatrix>
     13168                                                <MinTileRow>0</MinTileRow>
     13169                                                <MaxTileRow>0</MaxTileRow>
     13170                                                <MinTileCol>0</MinTileCol>
     13171                                                <MaxTileCol>0</MaxTileCol>
     13172                                        </TileMatrixLimits>
     13173                                        <TileMatrixLimits>
     13174                                                <TileMatrix>1</TileMatrix>
     13175                                                <MinTileRow>0</MinTileRow>
     13176                                                <MaxTileRow>0</MaxTileRow>
     13177                                                <MinTileCol>0</MinTileCol>
     13178                                                <MaxTileCol>0</MaxTileCol>
     13179                                        </TileMatrixLimits>
     13180                                        <TileMatrixLimits>
     13181                                                <TileMatrix>10</TileMatrix>
     13182                                                <MinTileRow>353</MinTileRow>
     13183                                                <MaxTileRow>354</MaxTileRow>
     13184                                                <MinTileCol>498</MinTileCol>
     13185                                                <MaxTileCol>499</MaxTileCol>
     13186                                        </TileMatrixLimits>
     13187                                        <TileMatrixLimits>
     13188                                                <TileMatrix>11</TileMatrix>
     13189                                                <MinTileRow>707</MinTileRow>
     13190                                                <MaxTileRow>709</MaxTileRow>
     13191                                                <MinTileCol>997</MinTileCol>
     13192                                                <MaxTileCol>999</MaxTileCol>
     13193                                        </TileMatrixLimits>
     13194                                        <TileMatrixLimits>
     13195                                                <TileMatrix>12</TileMatrix>
     13196                                                <MinTileRow>1415</MinTileRow>
     13197                                                <MaxTileRow>1418</MaxTileRow>
     13198                                                <MinTileCol>1995</MinTileCol>
     13199                                                <MaxTileCol>1998</MaxTileCol>
     13200                                        </TileMatrixLimits>
     13201                                        <TileMatrixLimits>
     13202                                                <TileMatrix>13</TileMatrix>
     13203                                                <MinTileRow>2831</MinTileRow>
     13204                                                <MaxTileRow>2837</MaxTileRow>
     13205                                                <MinTileCol>3990</MinTileCol>
     13206                                                <MaxTileCol>3996</MaxTileCol>
     13207                                        </TileMatrixLimits>
     13208                                        <TileMatrixLimits>
     13209                                                <TileMatrix>14</TileMatrix>
     13210                                                <MinTileRow>5662</MinTileRow>
     13211                                                <MaxTileRow>5674</MaxTileRow>
     13212                                                <MinTileCol>7980</MinTileCol>
     13213                                                <MaxTileCol>7993</MaxTileCol>
     13214                                        </TileMatrixLimits>
     13215                                        <TileMatrixLimits>
     13216                                                <TileMatrix>15</TileMatrix>
     13217                                                <MinTileRow>11325</MinTileRow>
     13218                                                <MaxTileRow>11348</MaxTileRow>
     13219                                                <MinTileCol>15960</MinTileCol>
     13220                                                <MaxTileCol>15986</MaxTileCol>
     13221                                        </TileMatrixLimits>
     13222                                        <TileMatrixLimits>
     13223                                                <TileMatrix>16</TileMatrix>
     13224                                                <MinTileRow>22650</MinTileRow>
     13225                                                <MaxTileRow>22697</MaxTileRow>
     13226                                                <MinTileCol>31921</MinTileCol>
     13227                                                <MaxTileCol>31972</MaxTileCol>
     13228                                        </TileMatrixLimits>
     13229                                        <TileMatrixLimits>
     13230                                                <TileMatrix>17</TileMatrix>
     13231                                                <MinTileRow>45300</MinTileRow>
     13232                                                <MaxTileRow>45395</MaxTileRow>
     13233                                                <MinTileCol>63843</MinTileCol>
     13234                                                <MaxTileCol>63945</MaxTileCol>
     13235                                        </TileMatrixLimits>
     13236                                        <TileMatrixLimits>
     13237                                                <TileMatrix>18</TileMatrix>
     13238                                                <MinTileRow>90600</MinTileRow>
     13239                                                <MaxTileRow>90791</MaxTileRow>
     13240                                                <MinTileCol>127686</MinTileCol>
     13241                                                <MaxTileCol>127891</MaxTileCol>
     13242                                        </TileMatrixLimits>
     13243                                        <TileMatrixLimits>
     13244                                                <TileMatrix>2</TileMatrix>
     13245                                                <MinTileRow>1</MinTileRow>
     13246                                                <MaxTileRow>1</MaxTileRow>
     13247                                                <MinTileCol>1</MinTileCol>
     13248                                                <MaxTileCol>1</MaxTileCol>
     13249                                        </TileMatrixLimits>
     13250                                        <TileMatrixLimits>
     13251                                                <TileMatrix>3</TileMatrix>
     13252                                                <MinTileRow>2</MinTileRow>
     13253                                                <MaxTileRow>2</MaxTileRow>
     13254                                                <MinTileCol>3</MinTileCol>
     13255                                                <MaxTileCol>3</MaxTileCol>
     13256                                        </TileMatrixLimits>
     13257                                        <TileMatrixLimits>
     13258                                                <TileMatrix>4</TileMatrix>
     13259                                                <MinTileRow>5</MinTileRow>
     13260                                                <MaxTileRow>5</MaxTileRow>
     13261                                                <MinTileCol>7</MinTileCol>
     13262                                                <MaxTileCol>7</MaxTileCol>
     13263                                        </TileMatrixLimits>
     13264                                        <TileMatrixLimits>
     13265                                                <TileMatrix>5</TileMatrix>
     13266                                                <MinTileRow>11</MinTileRow>
     13267                                                <MaxTileRow>11</MaxTileRow>
     13268                                                <MinTileCol>15</MinTileCol>
     13269                                                <MaxTileCol>15</MaxTileCol>
     13270                                        </TileMatrixLimits>
     13271                                        <TileMatrixLimits>
     13272                                                <TileMatrix>6</TileMatrix>
     13273                                                <MinTileRow>22</MinTileRow>
     13274                                                <MaxTileRow>22</MaxTileRow>
     13275                                                <MinTileCol>31</MinTileCol>
     13276                                                <MaxTileCol>31</MaxTileCol>
     13277                                        </TileMatrixLimits>
     13278                                        <TileMatrixLimits>
     13279                                                <TileMatrix>7</TileMatrix>
     13280                                                <MinTileRow>44</MinTileRow>
     13281                                                <MaxTileRow>44</MaxTileRow>
     13282                                                <MinTileCol>62</MinTileCol>
     13283                                                <MaxTileCol>62</MaxTileCol>
     13284                                        </TileMatrixLimits>
     13285                                        <TileMatrixLimits>
     13286                                                <TileMatrix>8</TileMatrix>
     13287                                                <MinTileRow>88</MinTileRow>
     13288                                                <MaxTileRow>88</MaxTileRow>
     13289                                                <MinTileCol>124</MinTileCol>
     13290                                                <MaxTileCol>124</MaxTileCol>
     13291                                        </TileMatrixLimits>
     13292                                        <TileMatrixLimits>
     13293                                                <TileMatrix>9</TileMatrix>
     13294                                                <MinTileRow>176</MinTileRow>
     13295                                                <MaxTileRow>177</MaxTileRow>
     13296                                                <MinTileCol>249</MinTileCol>
     13297                                                <MaxTileCol>249</MaxTileCol>
     13298                                        </TileMatrixLimits>
     13299                                </TileMatrixSetLimits>
     13300                        </TileMatrixSetLink>
     13301                </Layer>
     13302                <Layer>
     13303                        <ows:Title>Orthophotographies Geosud de BREST 2013</ows:Title>
     13304                        <ows:Abstract>Orthophotographies satellites de BREST issues du projet Geosud.</ows:Abstract>
     13305                        <ows:Keywords>
     13306                                <ows:Keyword>Photographies</ows:Keyword>
     13307                        </ows:Keywords>
     13308                        <ows:WGS84BoundingBox>
     13309                                <ows:LowerCorner>-4.6687 48.2966</ows:LowerCorner>
     13310                                <ows:UpperCorner>-4.36192 48.4847</ows:UpperCorner>
     13311                        </ows:WGS84BoundingBox>
     13312                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BREST-2013-04-03-41635702</ows:Identifier>
     13313                        <Style isDefault="true">
     13314                                <ows:Title>Données Brutes</ows:Title>
     13315                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13316                                <ows:Keywords>
     13317                                        <ows:Keyword>Défaut</ows:Keyword>
     13318                                </ows:Keywords>
     13319                                <ows:Identifier>normal</ows:Identifier>
     13320                                <LegendURL format="image/jpeg" height="200"
     13321                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13322                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13323                        </Style>
     13324                        <Format>image/jpeg</Format>
     13325                        <TileMatrixSetLink>
     13326                                <TileMatrixSet>PM</TileMatrixSet>
     13327                                <TileMatrixSetLimits>
     13328                                        <TileMatrixLimits>
     13329                                                <TileMatrix>0</TileMatrix>
     13330                                                <MinTileRow>0</MinTileRow>
     13331                                                <MaxTileRow>0</MaxTileRow>
     13332                                                <MinTileCol>0</MinTileCol>
     13333                                                <MaxTileCol>0</MaxTileCol>
     13334                                        </TileMatrixLimits>
     13335                                        <TileMatrixLimits>
     13336                                                <TileMatrix>1</TileMatrix>
     13337                                                <MinTileRow>0</MinTileRow>
     13338                                                <MaxTileRow>0</MaxTileRow>
     13339                                                <MinTileCol>0</MinTileCol>
     13340                                                <MaxTileCol>0</MaxTileCol>
     13341                                        </TileMatrixLimits>
     13342                                        <TileMatrixLimits>
     13343                                                <TileMatrix>10</TileMatrix>
     13344                                                <MinTileRow>353</MinTileRow>
     13345                                                <MaxTileRow>354</MaxTileRow>
     13346                                                <MinTileCol>498</MinTileCol>
     13347                                                <MaxTileCol>499</MaxTileCol>
     13348                                        </TileMatrixLimits>
     13349                                        <TileMatrixLimits>
     13350                                                <TileMatrix>11</TileMatrix>
     13351                                                <MinTileRow>707</MinTileRow>
     13352                                                <MaxTileRow>709</MaxTileRow>
     13353                                                <MinTileCol>997</MinTileCol>
     13354                                                <MaxTileCol>999</MaxTileCol>
     13355                                        </TileMatrixLimits>
     13356                                        <TileMatrixLimits>
     13357                                                <TileMatrix>12</TileMatrix>
     13358                                                <MinTileRow>1415</MinTileRow>
     13359                                                <MaxTileRow>1418</MaxTileRow>
     13360                                                <MinTileCol>1995</MinTileCol>
     13361                                                <MaxTileCol>1998</MaxTileCol>
     13362                                        </TileMatrixLimits>
     13363                                        <TileMatrixLimits>
     13364                                                <TileMatrix>13</TileMatrix>
     13365                                                <MinTileRow>2831</MinTileRow>
     13366                                                <MaxTileRow>2837</MaxTileRow>
     13367                                                <MinTileCol>3990</MinTileCol>
     13368                                                <MaxTileCol>3996</MaxTileCol>
     13369                                        </TileMatrixLimits>
     13370                                        <TileMatrixLimits>
     13371                                                <TileMatrix>14</TileMatrix>
     13372                                                <MinTileRow>5662</MinTileRow>
     13373                                                <MaxTileRow>5674</MaxTileRow>
     13374                                                <MinTileCol>7980</MinTileCol>
     13375                                                <MaxTileCol>7993</MaxTileCol>
     13376                                        </TileMatrixLimits>
     13377                                        <TileMatrixLimits>
     13378                                                <TileMatrix>15</TileMatrix>
     13379                                                <MinTileRow>11325</MinTileRow>
     13380                                                <MaxTileRow>11348</MaxTileRow>
     13381                                                <MinTileCol>15960</MinTileCol>
     13382                                                <MaxTileCol>15986</MaxTileCol>
     13383                                        </TileMatrixLimits>
     13384                                        <TileMatrixLimits>
     13385                                                <TileMatrix>16</TileMatrix>
     13386                                                <MinTileRow>22650</MinTileRow>
     13387                                                <MaxTileRow>22697</MaxTileRow>
     13388                                                <MinTileCol>31921</MinTileCol>
     13389                                                <MaxTileCol>31972</MaxTileCol>
     13390                                        </TileMatrixLimits>
     13391                                        <TileMatrixLimits>
     13392                                                <TileMatrix>17</TileMatrix>
     13393                                                <MinTileRow>45300</MinTileRow>
     13394                                                <MaxTileRow>45395</MaxTileRow>
     13395                                                <MinTileCol>63843</MinTileCol>
     13396                                                <MaxTileCol>63945</MaxTileCol>
     13397                                        </TileMatrixLimits>
     13398                                        <TileMatrixLimits>
     13399                                                <TileMatrix>18</TileMatrix>
     13400                                                <MinTileRow>90600</MinTileRow>
     13401                                                <MaxTileRow>90791</MaxTileRow>
     13402                                                <MinTileCol>127686</MinTileCol>
     13403                                                <MaxTileCol>127891</MaxTileCol>
     13404                                        </TileMatrixLimits>
     13405                                        <TileMatrixLimits>
     13406                                                <TileMatrix>2</TileMatrix>
     13407                                                <MinTileRow>1</MinTileRow>
     13408                                                <MaxTileRow>1</MaxTileRow>
     13409                                                <MinTileCol>1</MinTileCol>
     13410                                                <MaxTileCol>1</MaxTileCol>
     13411                                        </TileMatrixLimits>
     13412                                        <TileMatrixLimits>
     13413                                                <TileMatrix>3</TileMatrix>
     13414                                                <MinTileRow>2</MinTileRow>
     13415                                                <MaxTileRow>2</MaxTileRow>
     13416                                                <MinTileCol>3</MinTileCol>
     13417                                                <MaxTileCol>3</MaxTileCol>
     13418                                        </TileMatrixLimits>
     13419                                        <TileMatrixLimits>
     13420                                                <TileMatrix>4</TileMatrix>
     13421                                                <MinTileRow>5</MinTileRow>
     13422                                                <MaxTileRow>5</MaxTileRow>
     13423                                                <MinTileCol>7</MinTileCol>
     13424                                                <MaxTileCol>7</MaxTileCol>
     13425                                        </TileMatrixLimits>
     13426                                        <TileMatrixLimits>
     13427                                                <TileMatrix>5</TileMatrix>
     13428                                                <MinTileRow>11</MinTileRow>
     13429                                                <MaxTileRow>11</MaxTileRow>
     13430                                                <MinTileCol>15</MinTileCol>
     13431                                                <MaxTileCol>15</MaxTileCol>
     13432                                        </TileMatrixLimits>
     13433                                        <TileMatrixLimits>
     13434                                                <TileMatrix>6</TileMatrix>
     13435                                                <MinTileRow>22</MinTileRow>
     13436                                                <MaxTileRow>22</MaxTileRow>
     13437                                                <MinTileCol>31</MinTileCol>
     13438                                                <MaxTileCol>31</MaxTileCol>
     13439                                        </TileMatrixLimits>
     13440                                        <TileMatrixLimits>
     13441                                                <TileMatrix>7</TileMatrix>
     13442                                                <MinTileRow>44</MinTileRow>
     13443                                                <MaxTileRow>44</MaxTileRow>
     13444                                                <MinTileCol>62</MinTileCol>
     13445                                                <MaxTileCol>62</MaxTileCol>
     13446                                        </TileMatrixLimits>
     13447                                        <TileMatrixLimits>
     13448                                                <TileMatrix>8</TileMatrix>
     13449                                                <MinTileRow>88</MinTileRow>
     13450                                                <MaxTileRow>88</MaxTileRow>
     13451                                                <MinTileCol>124</MinTileCol>
     13452                                                <MaxTileCol>124</MaxTileCol>
     13453                                        </TileMatrixLimits>
     13454                                        <TileMatrixLimits>
     13455                                                <TileMatrix>9</TileMatrix>
     13456                                                <MinTileRow>176</MinTileRow>
     13457                                                <MaxTileRow>177</MaxTileRow>
     13458                                                <MinTileCol>249</MinTileCol>
     13459                                                <MaxTileCol>249</MaxTileCol>
     13460                                        </TileMatrixLimits>
     13461                                </TileMatrixSetLimits>
     13462                        </TileMatrixSetLink>
     13463                </Layer>
     13464                <Layer>
     13465                        <ows:Title>Orthophotographies Geosud de BRETAGNE 2014</ows:Title>
     13466                        <ows:Abstract>Orthophotographies satellites de BRETAGNE issues du projet Geosud.</ows:Abstract>
     13467                        <ows:Keywords>
     13468                                <ows:Keyword>Photographies</ows:Keyword>
     13469                        </ows:Keywords>
     13470                        <ows:WGS84BoundingBox>
     13471                                <ows:LowerCorner>-5.23913 47.1432</ows:LowerCorner>
     13472                                <ows:UpperCorner>-0.949064 49.0227</ows:UpperCorner>
     13473                        </ows:WGS84BoundingBox>
     13474                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_BRETAGNE-2014</ows:Identifier>
     13475                        <Style isDefault="true">
     13476                                <ows:Title>Données Brutes</ows:Title>
     13477                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13478                                <ows:Keywords>
     13479                                        <ows:Keyword>Défaut</ows:Keyword>
     13480                                </ows:Keywords>
     13481                                <ows:Identifier>normal</ows:Identifier>
     13482                                <LegendURL format="image/jpeg" height="200"
     13483                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13484                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13485                        </Style>
     13486                        <Format>image/jpeg</Format>
     13487                        <TileMatrixSetLink>
     13488                                <TileMatrixSet>PM</TileMatrixSet>
     13489                                <TileMatrixSetLimits>
     13490                                        <TileMatrixLimits>
     13491                                                <TileMatrix>0</TileMatrix>
     13492                                                <MinTileRow>0</MinTileRow>
     13493                                                <MaxTileRow>0</MaxTileRow>
     13494                                                <MinTileCol>0</MinTileCol>
     13495                                                <MaxTileCol>0</MaxTileCol>
     13496                                        </TileMatrixLimits>
     13497                                        <TileMatrixLimits>
     13498                                                <TileMatrix>1</TileMatrix>
     13499                                                <MinTileRow>0</MinTileRow>
     13500                                                <MaxTileRow>0</MaxTileRow>
     13501                                                <MinTileCol>0</MinTileCol>
     13502                                                <MaxTileCol>0</MaxTileCol>
     13503                                        </TileMatrixLimits>
     13504                                        <TileMatrixLimits>
     13505                                                <TileMatrix>10</TileMatrix>
     13506                                                <MinTileRow>351</MinTileRow>
     13507                                                <MaxTileRow>359</MaxTileRow>
     13508                                                <MinTileCol>497</MinTileCol>
     13509                                                <MaxTileCol>509</MaxTileCol>
     13510                                        </TileMatrixLimits>
     13511                                        <TileMatrixLimits>
     13512                                                <TileMatrix>11</TileMatrix>
     13513                                                <MinTileRow>703</MinTileRow>
     13514                                                <MaxTileRow>718</MaxTileRow>
     13515                                                <MinTileCol>994</MinTileCol>
     13516                                                <MaxTileCol>1018</MaxTileCol>
     13517                                        </TileMatrixLimits>
     13518                                        <TileMatrixLimits>
     13519                                                <TileMatrix>12</TileMatrix>
     13520                                                <MinTileRow>1407</MinTileRow>
     13521                                                <MaxTileRow>1436</MaxTileRow>
     13522                                                <MinTileCol>1988</MinTileCol>
     13523                                                <MaxTileCol>2036</MaxTileCol>
     13524                                        </TileMatrixLimits>
     13525                                        <TileMatrixLimits>
     13526                                                <TileMatrix>13</TileMatrix>
     13527                                                <MinTileRow>2815</MinTileRow>
     13528                                                <MaxTileRow>2873</MaxTileRow>
     13529                                                <MinTileCol>3977</MinTileCol>
     13530                                                <MaxTileCol>4073</MaxTileCol>
     13531                                        </TileMatrixLimits>
     13532                                        <TileMatrixLimits>
     13533                                                <TileMatrix>14</TileMatrix>
     13534                                                <MinTileRow>5630</MinTileRow>
     13535                                                <MaxTileRow>5746</MaxTileRow>
     13536                                                <MinTileCol>7955</MinTileCol>
     13537                                                <MaxTileCol>8146</MaxTileCol>
     13538                                        </TileMatrixLimits>
     13539                                        <TileMatrixLimits>
     13540                                                <TileMatrix>15</TileMatrix>
     13541                                                <MinTileRow>11261</MinTileRow>
     13542                                                <MaxTileRow>11492</MaxTileRow>
     13543                                                <MinTileCol>15911</MinTileCol>
     13544                                                <MaxTileCol>16293</MaxTileCol>
     13545                                        </TileMatrixLimits>
     13546                                        <TileMatrixLimits>
     13547                                                <TileMatrix>16</TileMatrix>
     13548                                                <MinTileRow>22523</MinTileRow>
     13549                                                <MaxTileRow>22984</MaxTileRow>
     13550                                                <MinTileCol>31823</MinTileCol>
     13551                                                <MaxTileCol>32586</MaxTileCol>
     13552                                        </TileMatrixLimits>
     13553                                        <TileMatrixLimits>
     13554                                                <TileMatrix>17</TileMatrix>
     13555                                                <MinTileRow>45046</MinTileRow>
     13556                                                <MaxTileRow>45968</MaxTileRow>
     13557                                                <MinTileCol>63646</MinTileCol>
     13558                                                <MaxTileCol>65173</MaxTileCol>
     13559                                        </TileMatrixLimits>
     13560                                        <TileMatrixLimits>
     13561                                                <TileMatrix>2</TileMatrix>
     13562                                                <MinTileRow>1</MinTileRow>
     13563                                                <MaxTileRow>1</MaxTileRow>
     13564                                                <MinTileCol>1</MinTileCol>
     13565                                                <MaxTileCol>1</MaxTileCol>
     13566                                        </TileMatrixLimits>
     13567                                        <TileMatrixLimits>
     13568                                                <TileMatrix>3</TileMatrix>
     13569                                                <MinTileRow>2</MinTileRow>
     13570                                                <MaxTileRow>2</MaxTileRow>
     13571                                                <MinTileCol>3</MinTileCol>
     13572                                                <MaxTileCol>3</MaxTileCol>
     13573                                        </TileMatrixLimits>
     13574                                        <TileMatrixLimits>
     13575                                                <TileMatrix>4</TileMatrix>
     13576                                                <MinTileRow>5</MinTileRow>
     13577                                                <MaxTileRow>5</MaxTileRow>
     13578                                                <MinTileCol>7</MinTileCol>
     13579                                                <MaxTileCol>7</MaxTileCol>
     13580                                        </TileMatrixLimits>
     13581                                        <TileMatrixLimits>
     13582                                                <TileMatrix>5</TileMatrix>
     13583                                                <MinTileRow>10</MinTileRow>
     13584                                                <MaxTileRow>11</MaxTileRow>
     13585                                                <MinTileCol>15</MinTileCol>
     13586                                                <MaxTileCol>15</MaxTileCol>
     13587                                        </TileMatrixLimits>
     13588                                        <TileMatrixLimits>
     13589                                                <TileMatrix>6</TileMatrix>
     13590                                                <MinTileRow>21</MinTileRow>
     13591                                                <MaxTileRow>22</MaxTileRow>
     13592                                                <MinTileCol>31</MinTileCol>
     13593                                                <MaxTileCol>31</MaxTileCol>
     13594                                        </TileMatrixLimits>
     13595                                        <TileMatrixLimits>
     13596                                                <TileMatrix>7</TileMatrix>
     13597                                                <MinTileRow>43</MinTileRow>
     13598                                                <MaxTileRow>44</MaxTileRow>
     13599                                                <MinTileCol>62</MinTileCol>
     13600                                                <MaxTileCol>63</MaxTileCol>
     13601                                        </TileMatrixLimits>
     13602                                        <TileMatrixLimits>
     13603                                                <TileMatrix>8</TileMatrix>
     13604                                                <MinTileRow>87</MinTileRow>
     13605                                                <MaxTileRow>89</MaxTileRow>
     13606                                                <MinTileCol>124</MinTileCol>
     13607                                                <MaxTileCol>127</MaxTileCol>
     13608                                        </TileMatrixLimits>
     13609                                        <TileMatrixLimits>
     13610                                                <TileMatrix>9</TileMatrix>
     13611                                                <MinTileRow>175</MinTileRow>
     13612                                                <MaxTileRow>179</MaxTileRow>
     13613                                                <MinTileCol>248</MinTileCol>
     13614                                                <MaxTileCol>254</MaxTileCol>
     13615                                        </TileMatrixLimits>
     13616                                </TileMatrixSetLimits>
     13617                        </TileMatrixSetLink>
     13618                </Layer>
     13619                <Layer>
     13620                        <ows:Title>Orthophotographies Geosud de CAEN 2014</ows:Title>
     13621                        <ows:Abstract>Orthophotographies satellites de CAEN issues du projet Geosud.</ows:Abstract>
     13622                        <ows:Keywords>
     13623                                <ows:Keyword>Photographies</ows:Keyword>
     13624                        </ows:Keywords>
     13625                        <ows:WGS84BoundingBox>
     13626                                <ows:LowerCorner>-0.545186 49.049</ows:LowerCorner>
     13627                                <ows:UpperCorner>-0.229756 49.273</ows:UpperCorner>
     13628                        </ows:WGS84BoundingBox>
     13629                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CAEN-2014-03-10-40195319</ows:Identifier>
     13630                        <Style isDefault="true">
     13631                                <ows:Title>Données Brutes</ows:Title>
     13632                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13633                                <ows:Keywords>
     13634                                        <ows:Keyword>Défaut</ows:Keyword>
     13635                                </ows:Keywords>
     13636                                <ows:Identifier>normal</ows:Identifier>
     13637                                <LegendURL format="image/jpeg" height="200"
     13638                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13639                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13640                        </Style>
     13641                        <Format>image/jpeg</Format>
     13642                        <TileMatrixSetLink>
     13643                                <TileMatrixSet>PM</TileMatrixSet>
     13644                                <TileMatrixSetLimits>
     13645                                        <TileMatrixLimits>
     13646                                                <TileMatrix>0</TileMatrix>
     13647                                                <MinTileRow>0</MinTileRow>
     13648                                                <MaxTileRow>0</MaxTileRow>
     13649                                                <MinTileCol>0</MinTileCol>
     13650                                                <MaxTileCol>0</MaxTileCol>
     13651                                        </TileMatrixLimits>
     13652                                        <TileMatrixLimits>
     13653                                                <TileMatrix>1</TileMatrix>
     13654                                                <MinTileRow>0</MinTileRow>
     13655                                                <MaxTileRow>0</MaxTileRow>
     13656                                                <MinTileCol>0</MinTileCol>
     13657                                                <MaxTileCol>0</MaxTileCol>
     13658                                        </TileMatrixLimits>
     13659                                        <TileMatrixLimits>
     13660                                                <TileMatrix>10</TileMatrix>
     13661                                                <MinTileRow>350</MinTileRow>
     13662                                                <MaxTileRow>351</MaxTileRow>
     13663                                                <MinTileCol>510</MinTileCol>
     13664                                                <MaxTileCol>511</MaxTileCol>
     13665                                        </TileMatrixLimits>
     13666                                        <TileMatrixLimits>
     13667                                                <TileMatrix>11</TileMatrix>
     13668                                                <MinTileRow>700</MinTileRow>
     13669                                                <MaxTileRow>702</MaxTileRow>
     13670                                                <MinTileCol>1020</MinTileCol>
     13671                                                <MaxTileCol>1022</MaxTileCol>
     13672                                        </TileMatrixLimits>
     13673                                        <TileMatrixLimits>
     13674                                                <TileMatrix>12</TileMatrix>
     13675                                                <MinTileRow>1401</MinTileRow>
     13676                                                <MaxTileRow>1405</MaxTileRow>
     13677                                                <MinTileCol>2041</MinTileCol>
     13678                                                <MaxTileCol>2045</MaxTileCol>
     13679                                        </TileMatrixLimits>
     13680                                        <TileMatrixLimits>
     13681                                                <TileMatrix>13</TileMatrix>
     13682                                                <MinTileRow>2803</MinTileRow>
     13683                                                <MaxTileRow>2811</MaxTileRow>
     13684                                                <MinTileCol>4083</MinTileCol>
     13685                                                <MaxTileCol>4090</MaxTileCol>
     13686                                        </TileMatrixLimits>
     13687                                        <TileMatrixLimits>
     13688                                                <TileMatrix>14</TileMatrix>
     13689                                                <MinTileRow>5607</MinTileRow>
     13690                                                <MaxTileRow>5622</MaxTileRow>
     13691                                                <MinTileCol>8167</MinTileCol>
     13692                                                <MaxTileCol>8181</MaxTileCol>
     13693                                        </TileMatrixLimits>
     13694                                        <TileMatrixLimits>
     13695                                                <TileMatrix>15</TileMatrix>
     13696                                                <MinTileRow>11215</MinTileRow>
     13697                                                <MaxTileRow>11245</MaxTileRow>
     13698                                                <MinTileCol>16334</MinTileCol>
     13699                                                <MaxTileCol>16362</MaxTileCol>
     13700                                        </TileMatrixLimits>
     13701                                        <TileMatrixLimits>
     13702                                                <TileMatrix>16</TileMatrix>
     13703                                                <MinTileRow>22431</MinTileRow>
     13704                                                <MaxTileRow>22491</MaxTileRow>
     13705                                                <MinTileCol>32668</MinTileCol>
     13706                                                <MaxTileCol>32724</MaxTileCol>
     13707                                        </TileMatrixLimits>
     13708                                        <TileMatrixLimits>
     13709                                                <TileMatrix>17</TileMatrix>
     13710                                                <MinTileRow>44862</MinTileRow>
     13711                                                <MaxTileRow>44982</MaxTileRow>
     13712                                                <MinTileCol>65337</MinTileCol>
     13713                                                <MaxTileCol>65448</MaxTileCol>
     13714                                        </TileMatrixLimits>
     13715                                        <TileMatrixLimits>
     13716                                                <TileMatrix>18</TileMatrix>
     13717                                                <MinTileRow>89725</MinTileRow>
     13718                                                <MaxTileRow>89965</MaxTileRow>
     13719                                                <MinTileCol>130674</MinTileCol>
     13720                                                <MaxTileCol>130897</MaxTileCol>
     13721                                        </TileMatrixLimits>
     13722                                        <TileMatrixLimits>
     13723                                                <TileMatrix>2</TileMatrix>
     13724                                                <MinTileRow>1</MinTileRow>
     13725                                                <MaxTileRow>1</MaxTileRow>
     13726                                                <MinTileCol>1</MinTileCol>
     13727                                                <MaxTileCol>1</MaxTileCol>
     13728                                        </TileMatrixLimits>
     13729                                        <TileMatrixLimits>
     13730                                                <TileMatrix>3</TileMatrix>
     13731                                                <MinTileRow>2</MinTileRow>
     13732                                                <MaxTileRow>2</MaxTileRow>
     13733                                                <MinTileCol>3</MinTileCol>
     13734                                                <MaxTileCol>3</MaxTileCol>
     13735                                        </TileMatrixLimits>
     13736                                        <TileMatrixLimits>
     13737                                                <TileMatrix>4</TileMatrix>
     13738                                                <MinTileRow>5</MinTileRow>
     13739                                                <MaxTileRow>5</MaxTileRow>
     13740                                                <MinTileCol>7</MinTileCol>
     13741                                                <MaxTileCol>7</MaxTileCol>
     13742                                        </TileMatrixLimits>
     13743                                        <TileMatrixLimits>
     13744                                                <TileMatrix>5</TileMatrix>
     13745                                                <MinTileRow>10</MinTileRow>
     13746                                                <MaxTileRow>10</MaxTileRow>
     13747                                                <MinTileCol>15</MinTileCol>
     13748                                                <MaxTileCol>15</MaxTileCol>
     13749                                        </TileMatrixLimits>
     13750                                        <TileMatrixLimits>
     13751                                                <TileMatrix>6</TileMatrix>
     13752                                                <MinTileRow>21</MinTileRow>
     13753                                                <MaxTileRow>21</MaxTileRow>
     13754                                                <MinTileCol>31</MinTileCol>
     13755                                                <MaxTileCol>31</MaxTileCol>
     13756                                        </TileMatrixLimits>
     13757                                        <TileMatrixLimits>
     13758                                                <TileMatrix>7</TileMatrix>
     13759                                                <MinTileRow>43</MinTileRow>
     13760                                                <MaxTileRow>43</MaxTileRow>
     13761                                                <MinTileCol>63</MinTileCol>
     13762                                                <MaxTileCol>63</MaxTileCol>
     13763                                        </TileMatrixLimits>
     13764                                        <TileMatrixLimits>
     13765                                                <TileMatrix>8</TileMatrix>
     13766                                                <MinTileRow>87</MinTileRow>
     13767                                                <MaxTileRow>87</MaxTileRow>
     13768                                                <MinTileCol>127</MinTileCol>
     13769                                                <MaxTileCol>127</MaxTileCol>
     13770                                        </TileMatrixLimits>
     13771                                        <TileMatrixLimits>
     13772                                                <TileMatrix>9</TileMatrix>
     13773                                                <MinTileRow>175</MinTileRow>
     13774                                                <MaxTileRow>175</MaxTileRow>
     13775                                                <MinTileCol>255</MinTileCol>
     13776                                                <MaxTileCol>255</MaxTileCol>
     13777                                        </TileMatrixLimits>
     13778                                </TileMatrixSetLimits>
     13779                        </TileMatrixSetLink>
     13780                </Layer>
     13781                <Layer>
     13782                        <ows:Title>Orthophotographies Geosud de CARCASSONNE 2014</ows:Title>
     13783                        <ows:Abstract>Orthophotographies satellites de CARCASSONNE issues du projet Geosud.</ows:Abstract>
     13784                        <ows:Keywords>
     13785                                <ows:Keyword>Photographies</ows:Keyword>
     13786                        </ows:Keywords>
     13787                        <ows:WGS84BoundingBox>
     13788                                <ows:LowerCorner>2.21171 43.1034</ows:LowerCorner>
     13789                                <ows:UpperCorner>2.48444 43.3029</ows:UpperCorner>
     13790                        </ows:WGS84BoundingBox>
     13791                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CARCASSONNE-2014-03-12-39411944</ows:Identifier>
     13792                        <Style isDefault="true">
     13793                                <ows:Title>Données Brutes</ows:Title>
     13794                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13795                                <ows:Keywords>
     13796                                        <ows:Keyword>Défaut</ows:Keyword>
     13797                                </ows:Keywords>
     13798                                <ows:Identifier>normal</ows:Identifier>
     13799                                <LegendURL format="image/jpeg" height="200"
     13800                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13801                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13802                        </Style>
     13803                        <Format>image/jpeg</Format>
     13804                        <TileMatrixSetLink>
     13805                                <TileMatrixSet>PM</TileMatrixSet>
     13806                                <TileMatrixSetLimits>
     13807                                        <TileMatrixLimits>
     13808                                                <TileMatrix>0</TileMatrix>
     13809                                                <MinTileRow>0</MinTileRow>
     13810                                                <MaxTileRow>0</MaxTileRow>
     13811                                                <MinTileCol>0</MinTileCol>
     13812                                                <MaxTileCol>0</MaxTileCol>
     13813                                        </TileMatrixLimits>
     13814                                        <TileMatrixLimits>
     13815                                                <TileMatrix>1</TileMatrix>
     13816                                                <MinTileRow>0</MinTileRow>
     13817                                                <MaxTileRow>0</MaxTileRow>
     13818                                                <MinTileCol>1</MinTileCol>
     13819                                                <MaxTileCol>1</MaxTileCol>
     13820                                        </TileMatrixLimits>
     13821                                        <TileMatrixLimits>
     13822                                                <TileMatrix>10</TileMatrix>
     13823                                                <MinTileRow>375</MinTileRow>
     13824                                                <MaxTileRow>375</MaxTileRow>
     13825                                                <MinTileCol>518</MinTileCol>
     13826                                                <MaxTileCol>519</MaxTileCol>
     13827                                        </TileMatrixLimits>
     13828                                        <TileMatrixLimits>
     13829                                                <TileMatrix>11</TileMatrix>
     13830                                                <MinTileRow>750</MinTileRow>
     13831                                                <MaxTileRow>751</MaxTileRow>
     13832                                                <MinTileCol>1036</MinTileCol>
     13833                                                <MaxTileCol>1038</MaxTileCol>
     13834                                        </TileMatrixLimits>
     13835                                        <TileMatrixLimits>
     13836                                                <TileMatrix>12</TileMatrix>
     13837                                                <MinTileRow>1500</MinTileRow>
     13838                                                <MaxTileRow>1503</MaxTileRow>
     13839                                                <MinTileCol>2073</MinTileCol>
     13840                                                <MaxTileCol>2076</MaxTileCol>
     13841                                        </TileMatrixLimits>
     13842                                        <TileMatrixLimits>
     13843                                                <TileMatrix>13</TileMatrix>
     13844                                                <MinTileRow>3000</MinTileRow>
     13845                                                <MaxTileRow>3006</MaxTileRow>
     13846                                                <MinTileCol>4146</MinTileCol>
     13847                                                <MaxTileCol>4152</MaxTileCol>
     13848                                        </TileMatrixLimits>
     13849                                        <TileMatrixLimits>
     13850                                                <TileMatrix>14</TileMatrix>
     13851                                                <MinTileRow>6001</MinTileRow>
     13852                                                <MaxTileRow>6013</MaxTileRow>
     13853                                                <MinTileCol>8292</MinTileCol>
     13854                                                <MaxTileCol>8305</MaxTileCol>
     13855                                        </TileMatrixLimits>
     13856                                        <TileMatrixLimits>
     13857                                                <TileMatrix>15</TileMatrix>
     13858                                                <MinTileRow>12002</MinTileRow>
     13859                                                <MaxTileRow>12027</MaxTileRow>
     13860                                                <MinTileCol>16585</MinTileCol>
     13861                                                <MaxTileCol>16610</MaxTileCol>
     13862                                        </TileMatrixLimits>
     13863                                        <TileMatrixLimits>
     13864                                                <TileMatrix>16</TileMatrix>
     13865                                                <MinTileRow>24005</MinTileRow>
     13866                                                <MaxTileRow>24055</MaxTileRow>
     13867                                                <MinTileCol>33170</MinTileCol>
     13868                                                <MaxTileCol>33220</MaxTileCol>
     13869                                        </TileMatrixLimits>
     13870                                        <TileMatrixLimits>
     13871                                                <TileMatrix>17</TileMatrix>
     13872                                                <MinTileRow>48011</MinTileRow>
     13873                                                <MaxTileRow>48110</MaxTileRow>
     13874                                                <MinTileCol>66341</MinTileCol>
     13875                                                <MaxTileCol>66440</MaxTileCol>
     13876                                        </TileMatrixLimits>
     13877                                        <TileMatrixLimits>
     13878                                                <TileMatrix>18</TileMatrix>
     13879                                                <MinTileRow>96022</MinTileRow>
     13880                                                <MaxTileRow>96221</MaxTileRow>
     13881                                                <MinTileCol>132682</MinTileCol>
     13882                                                <MaxTileCol>132881</MaxTileCol>
     13883                                        </TileMatrixLimits>
     13884                                        <TileMatrixLimits>
     13885                                                <TileMatrix>2</TileMatrix>
     13886                                                <MinTileRow>1</MinTileRow>
     13887                                                <MaxTileRow>1</MaxTileRow>
     13888                                                <MinTileCol>2</MinTileCol>
     13889                                                <MaxTileCol>2</MaxTileCol>
     13890                                        </TileMatrixLimits>
     13891                                        <TileMatrixLimits>
     13892                                                <TileMatrix>3</TileMatrix>
     13893                                                <MinTileRow>2</MinTileRow>
     13894                                                <MaxTileRow>2</MaxTileRow>
     13895                                                <MinTileCol>4</MinTileCol>
     13896                                                <MaxTileCol>4</MaxTileCol>
     13897                                        </TileMatrixLimits>
     13898                                        <TileMatrixLimits>
     13899                                                <TileMatrix>4</TileMatrix>
     13900                                                <MinTileRow>5</MinTileRow>
     13901                                                <MaxTileRow>5</MaxTileRow>
     13902                                                <MinTileCol>8</MinTileCol>
     13903                                                <MaxTileCol>8</MaxTileCol>
     13904                                        </TileMatrixLimits>
     13905                                        <TileMatrixLimits>
     13906                                                <TileMatrix>5</TileMatrix>
     13907                                                <MinTileRow>11</MinTileRow>
     13908                                                <MaxTileRow>11</MaxTileRow>
     13909                                                <MinTileCol>16</MinTileCol>
     13910                                                <MaxTileCol>16</MaxTileCol>
     13911                                        </TileMatrixLimits>
     13912                                        <TileMatrixLimits>
     13913                                                <TileMatrix>6</TileMatrix>
     13914                                                <MinTileRow>23</MinTileRow>
     13915                                                <MaxTileRow>23</MaxTileRow>
     13916                                                <MinTileCol>32</MinTileCol>
     13917                                                <MaxTileCol>32</MaxTileCol>
     13918                                        </TileMatrixLimits>
     13919                                        <TileMatrixLimits>
     13920                                                <TileMatrix>7</TileMatrix>
     13921                                                <MinTileRow>46</MinTileRow>
     13922                                                <MaxTileRow>46</MaxTileRow>
     13923                                                <MinTileCol>64</MinTileCol>
     13924                                                <MaxTileCol>64</MaxTileCol>
     13925                                        </TileMatrixLimits>
     13926                                        <TileMatrixLimits>
     13927                                                <TileMatrix>8</TileMatrix>
     13928                                                <MinTileRow>93</MinTileRow>
     13929                                                <MaxTileRow>93</MaxTileRow>
     13930                                                <MinTileCol>129</MinTileCol>
     13931                                                <MaxTileCol>129</MaxTileCol>
     13932                                        </TileMatrixLimits>
     13933                                        <TileMatrixLimits>
     13934                                                <TileMatrix>9</TileMatrix>
     13935                                                <MinTileRow>187</MinTileRow>
     13936                                                <MaxTileRow>187</MaxTileRow>
     13937                                                <MinTileCol>259</MinTileCol>
     13938                                                <MaxTileCol>259</MaxTileCol>
     13939                                        </TileMatrixLimits>
     13940                                </TileMatrixSetLimits>
     13941                        </TileMatrixSetLink>
     13942                </Layer>
     13943                <Layer>
     13944                        <ows:Title>Orthophotographies Geosud de CENTRE 2014</ows:Title>
     13945                        <ows:Abstract>Orthophotographies satellites de CENTRE issues du projet Geosud.</ows:Abstract>
     13946                        <ows:Keywords>
     13947                                <ows:Keyword>Photographies</ows:Keyword>
     13948                        </ows:Keywords>
     13949                        <ows:WGS84BoundingBox>
     13950                                <ows:LowerCorner>-0.0844953 46.3001</ows:LowerCorner>
     13951                                <ows:UpperCorner>3.15021 48.9569</ows:UpperCorner>
     13952                        </ows:WGS84BoundingBox>
     13953                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CENTRE-2014</ows:Identifier>
     13954                        <Style isDefault="true">
     13955                                <ows:Title>Données Brutes</ows:Title>
     13956                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     13957                                <ows:Keywords>
     13958                                        <ows:Keyword>Défaut</ows:Keyword>
     13959                                </ows:Keywords>
     13960                                <ows:Identifier>normal</ows:Identifier>
     13961                                <LegendURL format="image/jpeg" height="200"
     13962                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     13963                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     13964                        </Style>
     13965                        <Format>image/jpeg</Format>
     13966                        <TileMatrixSetLink>
     13967                                <TileMatrixSet>PM</TileMatrixSet>
     13968                                <TileMatrixSetLimits>
     13969                                        <TileMatrixLimits>
     13970                                                <TileMatrix>0</TileMatrix>
     13971                                                <MinTileRow>0</MinTileRow>
     13972                                                <MaxTileRow>0</MaxTileRow>
     13973                                                <MinTileCol>0</MinTileCol>
     13974                                                <MaxTileCol>0</MaxTileCol>
     13975                                        </TileMatrixLimits>
     13976                                        <TileMatrixLimits>
     13977                                                <TileMatrix>1</TileMatrix>
     13978                                                <MinTileRow>0</MinTileRow>
     13979                                                <MaxTileRow>0</MaxTileRow>
     13980                                                <MinTileCol>1</MinTileCol>
     13981                                                <MaxTileCol>1</MaxTileCol>
     13982                                        </TileMatrixLimits>
     13983                                        <TileMatrixLimits>
     13984                                                <TileMatrix>10</TileMatrix>
     13985                                                <MinTileRow>351</MinTileRow>
     13986                                                <MaxTileRow>362</MaxTileRow>
     13987                                                <MinTileCol>512</MinTileCol>
     13988                                                <MaxTileCol>520</MaxTileCol>
     13989                                        </TileMatrixLimits>
     13990                                        <TileMatrixLimits>
     13991                                                <TileMatrix>11</TileMatrix>
     13992                                                <MinTileRow>703</MinTileRow>
     13993                                                <MaxTileRow>725</MaxTileRow>
     13994                                                <MinTileCol>1024</MinTileCol>
     13995                                                <MaxTileCol>1041</MaxTileCol>
     13996                                        </TileMatrixLimits>
     13997                                        <TileMatrixLimits>
     13998                                                <TileMatrix>12</TileMatrix>
     13999                                                <MinTileRow>1407</MinTileRow>
     14000                                                <MaxTileRow>1451</MaxTileRow>
     14001                                                <MinTileCol>2048</MinTileCol>
     14002                                                <MaxTileCol>2083</MaxTileCol>
     14003                                        </TileMatrixLimits>
     14004                                        <TileMatrixLimits>
     14005                                                <TileMatrix>13</TileMatrix>
     14006                                                <MinTileRow>2815</MinTileRow>
     14007                                                <MaxTileRow>2903</MaxTileRow>
     14008                                                <MinTileCol>4096</MinTileCol>
     14009                                                <MaxTileCol>4167</MaxTileCol>
     14010                                        </TileMatrixLimits>
     14011                                        <TileMatrixLimits>
     14012                                                <TileMatrix>14</TileMatrix>
     14013                                                <MinTileRow>5630</MinTileRow>
     14014                                                <MaxTileRow>5807</MaxTileRow>
     14015                                                <MinTileCol>8192</MinTileCol>
     14016                                                <MaxTileCol>8335</MaxTileCol>
     14017                                        </TileMatrixLimits>
     14018                                        <TileMatrixLimits>
     14019                                                <TileMatrix>15</TileMatrix>
     14020                                                <MinTileRow>11260</MinTileRow>
     14021                                                <MaxTileRow>11614</MaxTileRow>
     14022                                                <MinTileCol>16385</MinTileCol>
     14023                                                <MaxTileCol>16670</MaxTileCol>
     14024                                        </TileMatrixLimits>
     14025                                        <TileMatrixLimits>
     14026                                                <TileMatrix>16</TileMatrix>
     14027                                                <MinTileRow>22520</MinTileRow>
     14028                                                <MaxTileRow>23229</MaxTileRow>
     14029                                                <MinTileCol>32770</MinTileCol>
     14030                                                <MaxTileCol>33341</MaxTileCol>
     14031                                        </TileMatrixLimits>
     14032                                        <TileMatrixLimits>
     14033                                                <TileMatrix>17</TileMatrix>
     14034                                                <MinTileRow>45041</MinTileRow>
     14035                                                <MaxTileRow>46458</MaxTileRow>
     14036                                                <MinTileCol>65540</MinTileCol>
     14037                                                <MaxTileCol>66682</MaxTileCol>
     14038                                        </TileMatrixLimits>
     14039                                        <TileMatrixLimits>
     14040                                                <TileMatrix>2</TileMatrix>
     14041                                                <MinTileRow>1</MinTileRow>
     14042                                                <MaxTileRow>1</MaxTileRow>
     14043                                                <MinTileCol>2</MinTileCol>
     14044                                                <MaxTileCol>2</MaxTileCol>
     14045                                        </TileMatrixLimits>
     14046                                        <TileMatrixLimits>
     14047                                                <TileMatrix>3</TileMatrix>
     14048                                                <MinTileRow>2</MinTileRow>
     14049                                                <MaxTileRow>2</MaxTileRow>
     14050                                                <MinTileCol>4</MinTileCol>
     14051                                                <MaxTileCol>4</MaxTileCol>
     14052                                        </TileMatrixLimits>
     14053                                        <TileMatrixLimits>
     14054                                                <TileMatrix>4</TileMatrix>
     14055                                                <MinTileRow>5</MinTileRow>
     14056                                                <MaxTileRow>5</MaxTileRow>
     14057                                                <MinTileCol>8</MinTileCol>
     14058                                                <MaxTileCol>8</MaxTileCol>
     14059                                        </TileMatrixLimits>
     14060                                        <TileMatrixLimits>
     14061                                                <TileMatrix>5</TileMatrix>
     14062                                                <MinTileRow>10</MinTileRow>
     14063                                                <MaxTileRow>11</MaxTileRow>
     14064                                                <MinTileCol>16</MinTileCol>
     14065                                                <MaxTileCol>16</MaxTileCol>
     14066                                        </TileMatrixLimits>
     14067                                        <TileMatrixLimits>
     14068                                                <TileMatrix>6</TileMatrix>
     14069                                                <MinTileRow>21</MinTileRow>
     14070                                                <MaxTileRow>22</MaxTileRow>
     14071                                                <MinTileCol>32</MinTileCol>
     14072                                                <MaxTileCol>32</MaxTileCol>
     14073                                        </TileMatrixLimits>
     14074                                        <TileMatrixLimits>
     14075                                                <TileMatrix>7</TileMatrix>
     14076                                                <MinTileRow>43</MinTileRow>
     14077                                                <MaxTileRow>45</MaxTileRow>
     14078                                                <MinTileCol>64</MinTileCol>
     14079                                                <MaxTileCol>65</MaxTileCol>
     14080                                        </TileMatrixLimits>
     14081                                        <TileMatrixLimits>
     14082                                                <TileMatrix>8</TileMatrix>
     14083                                                <MinTileRow>87</MinTileRow>
     14084                                                <MaxTileRow>90</MaxTileRow>
     14085                                                <MinTileCol>128</MinTileCol>
     14086                                                <MaxTileCol>130</MaxTileCol>
     14087                                        </TileMatrixLimits>
     14088                                        <TileMatrixLimits>
     14089                                                <TileMatrix>9</TileMatrix>
     14090                                                <MinTileRow>175</MinTileRow>
     14091                                                <MaxTileRow>181</MaxTileRow>
     14092                                                <MinTileCol>256</MinTileCol>
     14093                                                <MaxTileCol>260</MaxTileCol>
     14094                                        </TileMatrixLimits>
     14095                                </TileMatrixSetLimits>
     14096                        </TileMatrixSetLink>
     14097                </Layer>
     14098                <Layer>
     14099                        <ows:Title>Orthophotographies Geosud de CHAMPAGNE-ARDENNE 2014</ows:Title>
     14100                        <ows:Abstract>Orthophotographies satellites de CHAMPAGNE-ARDENNE issues du projet Geosud.</ows:Abstract>
     14101                        <ows:Keywords>
     14102                                <ows:Keyword>Photographies</ows:Keyword>
     14103                        </ows:Keywords>
     14104                        <ows:WGS84BoundingBox>
     14105                                <ows:LowerCorner>3.34581 47.5336</ows:LowerCorner>
     14106                                <ows:UpperCorner>6.03616 49.9972</ows:UpperCorner>
     14107                        </ows:WGS84BoundingBox>
     14108                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CHAMPAGNE-ARDENNE-2014</ows:Identifier>
     14109                        <Style isDefault="true">
     14110                                <ows:Title>Données Brutes</ows:Title>
     14111                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14112                                <ows:Keywords>
     14113                                        <ows:Keyword>Défaut</ows:Keyword>
     14114                                </ows:Keywords>
     14115                                <ows:Identifier>normal</ows:Identifier>
     14116                                <LegendURL format="image/jpeg" height="200"
     14117                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14118                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14119                        </Style>
     14120                        <Format>image/jpeg</Format>
     14121                        <TileMatrixSetLink>
     14122                                <TileMatrixSet>PM</TileMatrixSet>
     14123                                <TileMatrixSetLimits>
     14124                                        <TileMatrixLimits>
     14125                                                <TileMatrix>0</TileMatrix>
     14126                                                <MinTileRow>0</MinTileRow>
     14127                                                <MaxTileRow>0</MaxTileRow>
     14128                                                <MinTileCol>0</MinTileCol>
     14129                                                <MaxTileCol>0</MaxTileCol>
     14130                                        </TileMatrixLimits>
     14131                                        <TileMatrixLimits>
     14132                                                <TileMatrix>1</TileMatrix>
     14133                                                <MinTileRow>0</MinTileRow>
     14134                                                <MaxTileRow>0</MaxTileRow>
     14135                                                <MinTileCol>1</MinTileCol>
     14136                                                <MaxTileCol>1</MaxTileCol>
     14137                                        </TileMatrixLimits>
     14138                                        <TileMatrixLimits>
     14139                                                <TileMatrix>10</TileMatrix>
     14140                                                <MinTileRow>347</MinTileRow>
     14141                                                <MaxTileRow>357</MaxTileRow>
     14142                                                <MinTileCol>521</MinTileCol>
     14143                                                <MaxTileCol>528</MaxTileCol>
     14144                                        </TileMatrixLimits>
     14145                                        <TileMatrixLimits>
     14146                                                <TileMatrix>11</TileMatrix>
     14147                                                <MinTileRow>694</MinTileRow>
     14148                                                <MaxTileRow>715</MaxTileRow>
     14149                                                <MinTileCol>1043</MinTileCol>
     14150                                                <MaxTileCol>1057</MaxTileCol>
     14151                                        </TileMatrixLimits>
     14152                                        <TileMatrixLimits>
     14153                                                <TileMatrix>12</TileMatrix>
     14154                                                <MinTileRow>1389</MinTileRow>
     14155                                                <MaxTileRow>1431</MaxTileRow>
     14156                                                <MinTileCol>2086</MinTileCol>
     14157                                                <MaxTileCol>2115</MaxTileCol>
     14158                                        </TileMatrixLimits>
     14159                                        <TileMatrixLimits>
     14160                                                <TileMatrix>13</TileMatrix>
     14161                                                <MinTileRow>2778</MinTileRow>
     14162                                                <MaxTileRow>2862</MaxTileRow>
     14163                                                <MinTileCol>4172</MinTileCol>
     14164                                                <MaxTileCol>4230</MaxTileCol>
     14165                                        </TileMatrixLimits>
     14166                                        <TileMatrixLimits>
     14167                                                <TileMatrix>14</TileMatrix>
     14168                                                <MinTileRow>5557</MinTileRow>
     14169                                                <MaxTileRow>5725</MaxTileRow>
     14170                                                <MinTileCol>8344</MinTileCol>
     14171                                                <MaxTileCol>8461</MaxTileCol>
     14172                                        </TileMatrixLimits>
     14173                                        <TileMatrixLimits>
     14174                                                <TileMatrix>15</TileMatrix>
     14175                                                <MinTileRow>11114</MinTileRow>
     14176                                                <MaxTileRow>11451</MaxTileRow>
     14177                                                <MinTileCol>16688</MinTileCol>
     14178                                                <MaxTileCol>16922</MaxTileCol>
     14179                                        </TileMatrixLimits>
     14180                                        <TileMatrixLimits>
     14181                                                <TileMatrix>16</TileMatrix>
     14182                                                <MinTileRow>22228</MinTileRow>
     14183                                                <MaxTileRow>22903</MaxTileRow>
     14184                                                <MinTileCol>33377</MinTileCol>
     14185                                                <MaxTileCol>33845</MaxTileCol>
     14186                                        </TileMatrixLimits>
     14187                                        <TileMatrixLimits>
     14188                                                <TileMatrix>17</TileMatrix>
     14189                                                <MinTileRow>44457</MinTileRow>
     14190                                                <MaxTileRow>45807</MaxTileRow>
     14191                                                <MinTileCol>66755</MinTileCol>
     14192                                                <MaxTileCol>67691</MaxTileCol>
     14193                                        </TileMatrixLimits>
     14194                                        <TileMatrixLimits>
     14195                                                <TileMatrix>2</TileMatrix>
     14196                                                <MinTileRow>1</MinTileRow>
     14197                                                <MaxTileRow>1</MaxTileRow>
     14198                                                <MinTileCol>2</MinTileCol>
     14199                                                <MaxTileCol>2</MaxTileCol>
     14200                                        </TileMatrixLimits>
     14201                                        <TileMatrixLimits>
     14202                                                <TileMatrix>3</TileMatrix>
     14203                                                <MinTileRow>2</MinTileRow>
     14204                                                <MaxTileRow>2</MaxTileRow>
     14205                                                <MinTileCol>4</MinTileCol>
     14206                                                <MaxTileCol>4</MaxTileCol>
     14207                                        </TileMatrixLimits>
     14208                                        <TileMatrixLimits>
     14209                                                <TileMatrix>4</TileMatrix>
     14210                                                <MinTileRow>5</MinTileRow>
     14211                                                <MaxTileRow>5</MaxTileRow>
     14212                                                <MinTileCol>8</MinTileCol>
     14213                                                <MaxTileCol>8</MaxTileCol>
     14214                                        </TileMatrixLimits>
     14215                                        <TileMatrixLimits>
     14216                                                <TileMatrix>5</TileMatrix>
     14217                                                <MinTileRow>10</MinTileRow>
     14218                                                <MaxTileRow>11</MaxTileRow>
     14219                                                <MinTileCol>16</MinTileCol>
     14220                                                <MaxTileCol>16</MaxTileCol>
     14221                                        </TileMatrixLimits>
     14222                                        <TileMatrixLimits>
     14223                                                <TileMatrix>6</TileMatrix>
     14224                                                <MinTileRow>21</MinTileRow>
     14225                                                <MaxTileRow>22</MaxTileRow>
     14226                                                <MinTileCol>32</MinTileCol>
     14227                                                <MaxTileCol>33</MaxTileCol>
     14228                                        </TileMatrixLimits>
     14229                                        <TileMatrixLimits>
     14230                                                <TileMatrix>7</TileMatrix>
     14231                                                <MinTileRow>43</MinTileRow>
     14232                                                <MaxTileRow>44</MaxTileRow>
     14233                                                <MinTileCol>65</MinTileCol>
     14234                                                <MaxTileCol>66</MaxTileCol>
     14235                                        </TileMatrixLimits>
     14236                                        <TileMatrixLimits>
     14237                                                <TileMatrix>8</TileMatrix>
     14238                                                <MinTileRow>86</MinTileRow>
     14239                                                <MaxTileRow>89</MaxTileRow>
     14240                                                <MinTileCol>130</MinTileCol>
     14241                                                <MaxTileCol>132</MaxTileCol>
     14242                                        </TileMatrixLimits>
     14243                                        <TileMatrixLimits>
     14244                                                <TileMatrix>9</TileMatrix>
     14245                                                <MinTileRow>173</MinTileRow>
     14246                                                <MaxTileRow>178</MaxTileRow>
     14247                                                <MinTileCol>260</MinTileCol>
     14248                                                <MaxTileCol>264</MaxTileCol>
     14249                                        </TileMatrixLimits>
     14250                                </TileMatrixSetLimits>
     14251                        </TileMatrixSetLink>
     14252                </Layer>
     14253                <Layer>
     14254                        <ows:Title>Orthophotographies Geosud de CHARTRES 2014</ows:Title>
     14255                        <ows:Abstract>Orthophotographies satellites de CHARTRES issues du projet Geosud.</ows:Abstract>
     14256                        <ows:Keywords>
     14257                                <ows:Keyword>Photographies</ows:Keyword>
     14258                        </ows:Keywords>
     14259                        <ows:WGS84BoundingBox>
     14260                                <ows:LowerCorner>1.34718 48.3429</ows:LowerCorner>
     14261                                <ows:UpperCorner>1.63676 48.5444</ows:UpperCorner>
     14262                        </ows:WGS84BoundingBox>
     14263                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CHARTRES-2014-03-11-39773074</ows:Identifier>
     14264                        <Style isDefault="true">
     14265                                <ows:Title>Données Brutes</ows:Title>
     14266                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14267                                <ows:Keywords>
     14268                                        <ows:Keyword>Défaut</ows:Keyword>
     14269                                </ows:Keywords>
     14270                                <ows:Identifier>normal</ows:Identifier>
     14271                                <LegendURL format="image/jpeg" height="200"
     14272                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14273                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14274                        </Style>
     14275                        <Format>image/jpeg</Format>
     14276                        <TileMatrixSetLink>
     14277                                <TileMatrixSet>PM</TileMatrixSet>
     14278                                <TileMatrixSetLimits>
     14279                                        <TileMatrixLimits>
     14280                                                <TileMatrix>0</TileMatrix>
     14281                                                <MinTileRow>0</MinTileRow>
     14282                                                <MaxTileRow>0</MaxTileRow>
     14283                                                <MinTileCol>0</MinTileCol>
     14284                                                <MaxTileCol>0</MaxTileCol>
     14285                                        </TileMatrixLimits>
     14286                                        <TileMatrixLimits>
     14287                                                <TileMatrix>1</TileMatrix>
     14288                                                <MinTileRow>0</MinTileRow>
     14289                                                <MaxTileRow>0</MaxTileRow>
     14290                                                <MinTileCol>1</MinTileCol>
     14291                                                <MaxTileCol>1</MaxTileCol>
     14292                                        </TileMatrixLimits>
     14293                                        <TileMatrixLimits>
     14294                                                <TileMatrix>10</TileMatrix>
     14295                                                <MinTileRow>353</MinTileRow>
     14296                                                <MaxTileRow>354</MaxTileRow>
     14297                                                <MinTileCol>515</MinTileCol>
     14298                                                <MaxTileCol>516</MaxTileCol>
     14299                                        </TileMatrixLimits>
     14300                                        <TileMatrixLimits>
     14301                                                <TileMatrix>11</TileMatrix>
     14302                                                <MinTileRow>707</MinTileRow>
     14303                                                <MaxTileRow>708</MaxTileRow>
     14304                                                <MinTileCol>1031</MinTileCol>
     14305                                                <MaxTileCol>1033</MaxTileCol>
     14306                                        </TileMatrixLimits>
     14307                                        <TileMatrixLimits>
     14308                                                <TileMatrix>12</TileMatrix>
     14309                                                <MinTileRow>1414</MinTileRow>
     14310                                                <MaxTileRow>1417</MaxTileRow>
     14311                                                <MinTileCol>2063</MinTileCol>
     14312                                                <MaxTileCol>2066</MaxTileCol>
     14313                                        </TileMatrixLimits>
     14314                                        <TileMatrixLimits>
     14315                                                <TileMatrix>13</TileMatrix>
     14316                                                <MinTileRow>2829</MinTileRow>
     14317                                                <MaxTileRow>2835</MaxTileRow>
     14318                                                <MinTileCol>4126</MinTileCol>
     14319                                                <MaxTileCol>4133</MaxTileCol>
     14320                                        </TileMatrixLimits>
     14321                                        <TileMatrixLimits>
     14322                                                <TileMatrix>14</TileMatrix>
     14323                                                <MinTileRow>5658</MinTileRow>
     14324                                                <MaxTileRow>5671</MaxTileRow>
     14325                                                <MinTileCol>8253</MinTileCol>
     14326                                                <MaxTileCol>8266</MaxTileCol>
     14327                                        </TileMatrixLimits>
     14328                                        <TileMatrixLimits>
     14329                                                <TileMatrix>15</TileMatrix>
     14330                                                <MinTileRow>11316</MinTileRow>
     14331                                                <MaxTileRow>11343</MaxTileRow>
     14332                                                <MinTileCol>16506</MinTileCol>
     14333                                                <MaxTileCol>16533</MaxTileCol>
     14334                                        </TileMatrixLimits>
     14335                                        <TileMatrixLimits>
     14336                                                <TileMatrix>16</TileMatrix>
     14337                                                <MinTileRow>22632</MinTileRow>
     14338                                                <MaxTileRow>22687</MaxTileRow>
     14339                                                <MinTileCol>33013</MinTileCol>
     14340                                                <MaxTileCol>33066</MaxTileCol>
     14341                                        </TileMatrixLimits>
     14342                                        <TileMatrixLimits>
     14343                                                <TileMatrix>17</TileMatrix>
     14344                                                <MinTileRow>45264</MinTileRow>
     14345                                                <MaxTileRow>45375</MaxTileRow>
     14346                                                <MinTileCol>66026</MinTileCol>
     14347                                                <MaxTileCol>66132</MaxTileCol>
     14348                                        </TileMatrixLimits>
     14349                                        <TileMatrixLimits>
     14350                                                <TileMatrix>18</TileMatrix>
     14351                                                <MinTileRow>90529</MinTileRow>
     14352                                                <MaxTileRow>90750</MaxTileRow>
     14353                                                <MinTileCol>132052</MinTileCol>
     14354                                                <MaxTileCol>132264</MaxTileCol>
     14355                                        </TileMatrixLimits>
     14356                                        <TileMatrixLimits>
     14357                                                <TileMatrix>2</TileMatrix>
     14358                                                <MinTileRow>1</MinTileRow>
     14359                                                <MaxTileRow>1</MaxTileRow>
     14360                                                <MinTileCol>2</MinTileCol>
     14361                                                <MaxTileCol>2</MaxTileCol>
     14362                                        </TileMatrixLimits>
     14363                                        <TileMatrixLimits>
     14364                                                <TileMatrix>3</TileMatrix>
     14365                                                <MinTileRow>2</MinTileRow>
     14366                                                <MaxTileRow>2</MaxTileRow>
     14367                                                <MinTileCol>4</MinTileCol>
     14368                                                <MaxTileCol>4</MaxTileCol>
     14369                                        </TileMatrixLimits>
     14370                                        <TileMatrixLimits>
     14371                                                <TileMatrix>4</TileMatrix>
     14372                                                <MinTileRow>5</MinTileRow>
     14373                                                <MaxTileRow>5</MaxTileRow>
     14374                                                <MinTileCol>8</MinTileCol>
     14375                                                <MaxTileCol>8</MaxTileCol>
     14376                                        </TileMatrixLimits>
     14377                                        <TileMatrixLimits>
     14378                                                <TileMatrix>5</TileMatrix>
     14379                                                <MinTileRow>11</MinTileRow>
     14380                                                <MaxTileRow>11</MaxTileRow>
     14381                                                <MinTileCol>16</MinTileCol>
     14382                                                <MaxTileCol>16</MaxTileCol>
     14383                                        </TileMatrixLimits>
     14384                                        <TileMatrixLimits>
     14385                                                <TileMatrix>6</TileMatrix>
     14386                                                <MinTileRow>22</MinTileRow>
     14387                                                <MaxTileRow>22</MaxTileRow>
     14388                                                <MinTileCol>32</MinTileCol>
     14389                                                <MaxTileCol>32</MaxTileCol>
     14390                                        </TileMatrixLimits>
     14391                                        <TileMatrixLimits>
     14392                                                <TileMatrix>7</TileMatrix>
     14393                                                <MinTileRow>44</MinTileRow>
     14394                                                <MaxTileRow>44</MaxTileRow>
     14395                                                <MinTileCol>64</MinTileCol>
     14396                                                <MaxTileCol>64</MaxTileCol>
     14397                                        </TileMatrixLimits>
     14398                                        <TileMatrixLimits>
     14399                                                <TileMatrix>8</TileMatrix>
     14400                                                <MinTileRow>88</MinTileRow>
     14401                                                <MaxTileRow>88</MaxTileRow>
     14402                                                <MinTileCol>128</MinTileCol>
     14403                                                <MaxTileCol>129</MaxTileCol>
     14404                                        </TileMatrixLimits>
     14405                                        <TileMatrixLimits>
     14406                                                <TileMatrix>9</TileMatrix>
     14407                                                <MinTileRow>176</MinTileRow>
     14408                                                <MaxTileRow>177</MaxTileRow>
     14409                                                <MinTileCol>257</MinTileCol>
     14410                                                <MaxTileCol>258</MaxTileCol>
     14411                                        </TileMatrixLimits>
     14412                                </TileMatrixSetLimits>
     14413                        </TileMatrixSetLink>
     14414                </Layer>
     14415                <Layer>
     14416                        <ows:Title>Orthophotographies Geosud de COLMAR 2014</ows:Title>
     14417                        <ows:Abstract>Orthophotographies satellites de COLMAR issues du projet Geosud.</ows:Abstract>
     14418                        <ows:Keywords>
     14419                                <ows:Keyword>Photographies</ows:Keyword>
     14420                        </ows:Keywords>
     14421                        <ows:WGS84BoundingBox>
     14422                                <ows:LowerCorner>7.18548 47.9901</ows:LowerCorner>
     14423                                <ows:UpperCorner>7.49832 48.2166</ows:UpperCorner>
     14424                        </ows:WGS84BoundingBox>
     14425                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_COLMAR-2014-03-08-38193199</ows:Identifier>
     14426                        <Style isDefault="true">
     14427                                <ows:Title>Données Brutes</ows:Title>
     14428                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14429                                <ows:Keywords>
     14430                                        <ows:Keyword>Défaut</ows:Keyword>
     14431                                </ows:Keywords>
     14432                                <ows:Identifier>normal</ows:Identifier>
     14433                                <LegendURL format="image/jpeg" height="200"
     14434                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14435                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14436                        </Style>
     14437                        <Format>image/jpeg</Format>
     14438                        <TileMatrixSetLink>
     14439                                <TileMatrixSet>PM</TileMatrixSet>
     14440                                <TileMatrixSetLimits>
     14441                                        <TileMatrixLimits>
     14442                                                <TileMatrix>0</TileMatrix>
     14443                                                <MinTileRow>0</MinTileRow>
     14444                                                <MaxTileRow>0</MaxTileRow>
     14445                                                <MinTileCol>0</MinTileCol>
     14446                                                <MaxTileCol>0</MaxTileCol>
     14447                                        </TileMatrixLimits>
     14448                                        <TileMatrixLimits>
     14449                                                <TileMatrix>1</TileMatrix>
     14450                                                <MinTileRow>0</MinTileRow>
     14451                                                <MaxTileRow>0</MaxTileRow>
     14452                                                <MinTileCol>1</MinTileCol>
     14453                                                <MaxTileCol>1</MaxTileCol>
     14454                                        </TileMatrixLimits>
     14455                                        <TileMatrixLimits>
     14456                                                <TileMatrix>10</TileMatrix>
     14457                                                <MinTileRow>355</MinTileRow>
     14458                                                <MaxTileRow>355</MaxTileRow>
     14459                                                <MinTileCol>532</MinTileCol>
     14460                                                <MaxTileCol>533</MaxTileCol>
     14461                                        </TileMatrixLimits>
     14462                                        <TileMatrixLimits>
     14463                                                <TileMatrix>11</TileMatrix>
     14464                                                <MinTileRow>710</MinTileRow>
     14465                                                <MaxTileRow>711</MaxTileRow>
     14466                                                <MinTileCol>1064</MinTileCol>
     14467                                                <MaxTileCol>1066</MaxTileCol>
     14468                                        </TileMatrixLimits>
     14469                                        <TileMatrixLimits>
     14470                                                <TileMatrix>12</TileMatrix>
     14471                                                <MinTileRow>1420</MinTileRow>
     14472                                                <MaxTileRow>1423</MaxTileRow>
     14473                                                <MinTileCol>2129</MinTileCol>
     14474                                                <MaxTileCol>2133</MaxTileCol>
     14475                                        </TileMatrixLimits>
     14476                                        <TileMatrixLimits>
     14477                                                <TileMatrix>13</TileMatrix>
     14478                                                <MinTileRow>2840</MinTileRow>
     14479                                                <MaxTileRow>2847</MaxTileRow>
     14480                                                <MinTileCol>4259</MinTileCol>
     14481                                                <MaxTileCol>4266</MaxTileCol>
     14482                                        </TileMatrixLimits>
     14483                                        <TileMatrixLimits>
     14484                                                <TileMatrix>14</TileMatrix>
     14485                                                <MinTileRow>5681</MinTileRow>
     14486                                                <MaxTileRow>5695</MaxTileRow>
     14487                                                <MinTileCol>8519</MinTileCol>
     14488                                                <MaxTileCol>8532</MaxTileCol>
     14489                                        </TileMatrixLimits>
     14490                                        <TileMatrixLimits>
     14491                                                <TileMatrix>15</TileMatrix>
     14492                                                <MinTileRow>11362</MinTileRow>
     14493                                                <MaxTileRow>11391</MaxTileRow>
     14494                                                <MinTileCol>17038</MinTileCol>
     14495                                                <MaxTileCol>17065</MaxTileCol>
     14496                                        </TileMatrixLimits>
     14497                                        <TileMatrixLimits>
     14498                                                <TileMatrix>16</TileMatrix>
     14499                                                <MinTileRow>22724</MinTileRow>
     14500                                                <MaxTileRow>22783</MaxTileRow>
     14501                                                <MinTileCol>34076</MinTileCol>
     14502                                                <MaxTileCol>34131</MaxTileCol>
     14503                                        </TileMatrixLimits>
     14504                                        <TileMatrixLimits>
     14505                                                <TileMatrix>17</TileMatrix>
     14506                                                <MinTileRow>45448</MinTileRow>
     14507                                                <MaxTileRow>45567</MaxTileRow>
     14508                                                <MinTileCol>68152</MinTileCol>
     14509                                                <MaxTileCol>68263</MaxTileCol>
     14510                                        </TileMatrixLimits>
     14511                                        <TileMatrixLimits>
     14512                                                <TileMatrix>18</TileMatrix>
     14513                                                <MinTileRow>90897</MinTileRow>
     14514                                                <MaxTileRow>91135</MaxTileRow>
     14515                                                <MinTileCol>136304</MinTileCol>
     14516                                                <MaxTileCol>136527</MaxTileCol>
     14517                                        </TileMatrixLimits>
     14518                                        <TileMatrixLimits>
     14519                                                <TileMatrix>2</TileMatrix>
     14520                                                <MinTileRow>1</MinTileRow>
     14521                                                <MaxTileRow>1</MaxTileRow>
     14522                                                <MinTileCol>2</MinTileCol>
     14523                                                <MaxTileCol>2</MaxTileCol>
     14524                                        </TileMatrixLimits>
     14525                                        <TileMatrixLimits>
     14526                                                <TileMatrix>3</TileMatrix>
     14527                                                <MinTileRow>2</MinTileRow>
     14528                                                <MaxTileRow>2</MaxTileRow>
     14529                                                <MinTileCol>4</MinTileCol>
     14530                                                <MaxTileCol>4</MaxTileCol>
     14531                                        </TileMatrixLimits>
     14532                                        <TileMatrixLimits>
     14533                                                <TileMatrix>4</TileMatrix>
     14534                                                <MinTileRow>5</MinTileRow>
     14535                                                <MaxTileRow>5</MaxTileRow>
     14536                                                <MinTileCol>8</MinTileCol>
     14537                                                <MaxTileCol>8</MaxTileCol>
     14538                                        </TileMatrixLimits>
     14539                                        <TileMatrixLimits>
     14540                                                <TileMatrix>5</TileMatrix>
     14541                                                <MinTileRow>11</MinTileRow>
     14542                                                <MaxTileRow>11</MaxTileRow>
     14543                                                <MinTileCol>16</MinTileCol>
     14544                                                <MaxTileCol>16</MaxTileCol>
     14545                                        </TileMatrixLimits>
     14546                                        <TileMatrixLimits>
     14547                                                <TileMatrix>6</TileMatrix>
     14548                                                <MinTileRow>22</MinTileRow>
     14549                                                <MaxTileRow>22</MaxTileRow>
     14550                                                <MinTileCol>33</MinTileCol>
     14551                                                <MaxTileCol>33</MaxTileCol>
     14552                                        </TileMatrixLimits>
     14553                                        <TileMatrixLimits>
     14554                                                <TileMatrix>7</TileMatrix>
     14555                                                <MinTileRow>44</MinTileRow>
     14556                                                <MaxTileRow>44</MaxTileRow>
     14557                                                <MinTileCol>66</MinTileCol>
     14558                                                <MaxTileCol>66</MaxTileCol>
     14559                                        </TileMatrixLimits>
     14560                                        <TileMatrixLimits>
     14561                                                <TileMatrix>8</TileMatrix>
     14562                                                <MinTileRow>88</MinTileRow>
     14563                                                <MaxTileRow>88</MaxTileRow>
     14564                                                <MinTileCol>133</MinTileCol>
     14565                                                <MaxTileCol>133</MaxTileCol>
     14566                                        </TileMatrixLimits>
     14567                                        <TileMatrixLimits>
     14568                                                <TileMatrix>9</TileMatrix>
     14569                                                <MinTileRow>177</MinTileRow>
     14570                                                <MaxTileRow>177</MaxTileRow>
     14571                                                <MinTileCol>266</MinTileCol>
     14572                                                <MaxTileCol>266</MaxTileCol>
     14573                                        </TileMatrixLimits>
     14574                                </TileMatrixSetLimits>
     14575                        </TileMatrixSetLink>
     14576                </Layer>
     14577                <Layer>
     14578                        <ows:Title>Orthophotographies Geosud de CORSE 2014</ows:Title>
     14579                        <ows:Abstract>Orthophotographies satellites de la CORSE issues du projet Geosud.</ows:Abstract>
     14580                        <ows:Keywords>
     14581                                <ows:Keyword>Photographies</ows:Keyword>
     14582                        </ows:Keywords>
     14583                        <ows:WGS84BoundingBox>
     14584                                <ows:LowerCorner>8.39828 41.3101</ows:LowerCorner>
     14585                                <ows:UpperCorner>9.69656 43.0942</ows:UpperCorner>
     14586                        </ows:WGS84BoundingBox>
     14587                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_CORSE-2014</ows:Identifier>
     14588                        <Style isDefault="true">
     14589                                <ows:Title>Données Brutes</ows:Title>
     14590                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14591                                <ows:Keywords>
     14592                                        <ows:Keyword>Défaut</ows:Keyword>
     14593                                </ows:Keywords>
     14594                                <ows:Identifier>normal</ows:Identifier>
     14595                                <LegendURL format="image/jpeg" height="200"
     14596                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14597                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14598                        </Style>
     14599                        <Format>image/jpeg</Format>
     14600                        <TileMatrixSetLink>
     14601                                <TileMatrixSet>PM</TileMatrixSet>
     14602                                <TileMatrixSetLimits>
     14603                                        <TileMatrixLimits>
     14604                                                <TileMatrix>0</TileMatrix>
     14605                                                <MinTileRow>0</MinTileRow>
     14606                                                <MaxTileRow>0</MaxTileRow>
     14607                                                <MinTileCol>0</MinTileCol>
     14608                                                <MaxTileCol>0</MaxTileCol>
     14609                                        </TileMatrixLimits>
     14610                                        <TileMatrixLimits>
     14611                                                <TileMatrix>1</TileMatrix>
     14612                                                <MinTileRow>0</MinTileRow>
     14613                                                <MaxTileRow>0</MaxTileRow>
     14614                                                <MinTileCol>1</MinTileCol>
     14615                                                <MaxTileCol>1</MaxTileCol>
     14616                                        </TileMatrixLimits>
     14617                                        <TileMatrixLimits>
     14618                                                <TileMatrix>10</TileMatrix>
     14619                                                <MinTileRow>376</MinTileRow>
     14620                                                <MaxTileRow>382</MaxTileRow>
     14621                                                <MinTileCol>536</MinTileCol>
     14622                                                <MaxTileCol>539</MaxTileCol>
     14623                                        </TileMatrixLimits>
     14624                                        <TileMatrixLimits>
     14625                                                <TileMatrix>11</TileMatrix>
     14626                                                <MinTileRow>752</MinTileRow>
     14627                                                <MaxTileRow>765</MaxTileRow>
     14628                                                <MinTileCol>1072</MinTileCol>
     14629                                                <MaxTileCol>1078</MaxTileCol>
     14630                                        </TileMatrixLimits>
     14631                                        <TileMatrixLimits>
     14632                                                <TileMatrix>12</TileMatrix>
     14633                                                <MinTileRow>1504</MinTileRow>
     14634                                                <MaxTileRow>1530</MaxTileRow>
     14635                                                <MinTileCol>2144</MinTileCol>
     14636                                                <MaxTileCol>2157</MaxTileCol>
     14637                                        </TileMatrixLimits>
     14638                                        <TileMatrixLimits>
     14639                                                <TileMatrix>13</TileMatrix>
     14640                                                <MinTileRow>3008</MinTileRow>
     14641                                                <MaxTileRow>3061</MaxTileRow>
     14642                                                <MinTileCol>4289</MinTileCol>
     14643                                                <MaxTileCol>4314</MaxTileCol>
     14644                                        </TileMatrixLimits>
     14645                                        <TileMatrixLimits>
     14646                                                <TileMatrix>14</TileMatrix>
     14647                                                <MinTileRow>6017</MinTileRow>
     14648                                                <MaxTileRow>6123</MaxTileRow>
     14649                                                <MinTileCol>8578</MinTileCol>
     14650                                                <MaxTileCol>8629</MaxTileCol>
     14651                                        </TileMatrixLimits>
     14652                                        <TileMatrixLimits>
     14653                                                <TileMatrix>15</TileMatrix>
     14654                                                <MinTileRow>12034</MinTileRow>
     14655                                                <MaxTileRow>12246</MaxTileRow>
     14656                                                <MinTileCol>17156</MinTileCol>
     14657                                                <MaxTileCol>17258</MaxTileCol>
     14658                                        </TileMatrixLimits>
     14659                                        <TileMatrixLimits>
     14660                                                <TileMatrix>16</TileMatrix>
     14661                                                <MinTileRow>24069</MinTileRow>
     14662                                                <MaxTileRow>24493</MaxTileRow>
     14663                                                <MinTileCol>34312</MinTileCol>
     14664                                                <MaxTileCol>34516</MaxTileCol>
     14665                                        </TileMatrixLimits>
     14666                                        <TileMatrixLimits>
     14667                                                <TileMatrix>17</TileMatrix>
     14668                                                <MinTileRow>48138</MinTileRow>
     14669                                                <MaxTileRow>48986</MaxTileRow>
     14670                                                <MinTileCol>68625</MinTileCol>
     14671                                                <MaxTileCol>69033</MaxTileCol>
     14672                                        </TileMatrixLimits>
     14673                                        <TileMatrixLimits>
     14674                                                <TileMatrix>2</TileMatrix>
     14675                                                <MinTileRow>1</MinTileRow>
     14676                                                <MaxTileRow>1</MaxTileRow>
     14677                                                <MinTileCol>2</MinTileCol>
     14678                                                <MaxTileCol>2</MaxTileCol>
     14679                                        </TileMatrixLimits>
     14680                                        <TileMatrixLimits>
     14681                                                <TileMatrix>3</TileMatrix>
     14682                                                <MinTileRow>2</MinTileRow>
     14683                                                <MaxTileRow>2</MaxTileRow>
     14684                                                <MinTileCol>4</MinTileCol>
     14685                                                <MaxTileCol>4</MaxTileCol>
     14686                                        </TileMatrixLimits>
     14687                                        <TileMatrixLimits>
     14688                                                <TileMatrix>4</TileMatrix>
     14689                                                <MinTileRow>5</MinTileRow>
     14690                                                <MaxTileRow>5</MaxTileRow>
     14691                                                <MinTileCol>8</MinTileCol>
     14692                                                <MaxTileCol>8</MaxTileCol>
     14693                                        </TileMatrixLimits>
     14694                                        <TileMatrixLimits>
     14695                                                <TileMatrix>5</TileMatrix>
     14696                                                <MinTileRow>11</MinTileRow>
     14697                                                <MaxTileRow>11</MaxTileRow>
     14698                                                <MinTileCol>16</MinTileCol>
     14699                                                <MaxTileCol>16</MaxTileCol>
     14700                                        </TileMatrixLimits>
     14701                                        <TileMatrixLimits>
     14702                                                <TileMatrix>6</TileMatrix>
     14703                                                <MinTileRow>23</MinTileRow>
     14704                                                <MaxTileRow>23</MaxTileRow>
     14705                                                <MinTileCol>33</MinTileCol>
     14706                                                <MaxTileCol>33</MaxTileCol>
     14707                                        </TileMatrixLimits>
     14708                                        <TileMatrixLimits>
     14709                                                <TileMatrix>7</TileMatrix>
     14710                                                <MinTileRow>47</MinTileRow>
     14711                                                <MaxTileRow>47</MaxTileRow>
     14712                                                <MinTileCol>67</MinTileCol>
     14713                                                <MaxTileCol>67</MaxTileCol>
     14714                                        </TileMatrixLimits>
     14715                                        <TileMatrixLimits>
     14716                                                <TileMatrix>8</TileMatrix>
     14717                                                <MinTileRow>94</MinTileRow>
     14718                                                <MaxTileRow>95</MaxTileRow>
     14719                                                <MinTileCol>134</MinTileCol>
     14720                                                <MaxTileCol>134</MaxTileCol>
     14721                                        </TileMatrixLimits>
     14722                                        <TileMatrixLimits>
     14723                                                <TileMatrix>9</TileMatrix>
     14724                                                <MinTileRow>188</MinTileRow>
     14725                                                <MaxTileRow>191</MaxTileRow>
     14726                                                <MinTileCol>268</MinTileCol>
     14727                                                <MaxTileCol>269</MaxTileCol>
     14728                                        </TileMatrixLimits>
     14729                                </TileMatrixSetLimits>
     14730                        </TileMatrixSetLink>
     14731                </Layer>
     14732                <Layer>
     14733                        <ows:Title>Orthophotographies Geosud de COUTANCES 2014</ows:Title>
     14734                        <ows:Abstract>Orthophotographies Geosud de COUTANCES 2014</ows:Abstract>
     14735                        <ows:Keywords>
     14736                                <ows:Keyword>Photographies</ows:Keyword>
     14737                        </ows:Keywords>
     14738                        <ows:WGS84BoundingBox>
     14739                                <ows:LowerCorner>-1.63017 48.8862</ows:LowerCorner>
     14740                                <ows:UpperCorner>-1.28499 49.1048</ows:UpperCorner>
     14741                        </ows:WGS84BoundingBox>
     14742                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_COUTANCES-2014-02-24-40636069</ows:Identifier>
     14743                        <Style isDefault="true">
     14744                                <ows:Title>Données Brutes</ows:Title>
     14745                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14746                                <ows:Keywords>
     14747                                        <ows:Keyword>Défaut</ows:Keyword>
     14748                                </ows:Keywords>
     14749                                <ows:Identifier>normal</ows:Identifier>
     14750                                <LegendURL format="image/jpeg" height="200"
     14751                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14752                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14753                        </Style>
     14754                        <Format>image/jpeg</Format>
     14755                        <TileMatrixSetLink>
     14756                                <TileMatrixSet>PM</TileMatrixSet>
     14757                                <TileMatrixSetLimits>
     14758                                        <TileMatrixLimits>
     14759                                                <TileMatrix>0</TileMatrix>
     14760                                                <MinTileRow>0</MinTileRow>
     14761                                                <MaxTileRow>0</MaxTileRow>
     14762                                                <MinTileCol>0</MinTileCol>
     14763                                                <MaxTileCol>0</MaxTileCol>
     14764                                        </TileMatrixLimits>
     14765                                        <TileMatrixLimits>
     14766                                                <TileMatrix>1</TileMatrix>
     14767                                                <MinTileRow>0</MinTileRow>
     14768                                                <MaxTileRow>0</MaxTileRow>
     14769                                                <MinTileCol>0</MinTileCol>
     14770                                                <MaxTileCol>0</MaxTileCol>
     14771                                        </TileMatrixLimits>
     14772                                        <TileMatrixLimits>
     14773                                                <TileMatrix>10</TileMatrix>
     14774                                                <MinTileRow>351</MinTileRow>
     14775                                                <MaxTileRow>352</MaxTileRow>
     14776                                                <MinTileCol>507</MinTileCol>
     14777                                                <MaxTileCol>508</MaxTileCol>
     14778                                        </TileMatrixLimits>
     14779                                        <TileMatrixLimits>
     14780                                                <TileMatrix>11</TileMatrix>
     14781                                                <MinTileRow>702</MinTileRow>
     14782                                                <MaxTileRow>704</MaxTileRow>
     14783                                                <MinTileCol>1014</MinTileCol>
     14784                                                <MaxTileCol>1016</MaxTileCol>
     14785                                        </TileMatrixLimits>
     14786                                        <TileMatrixLimits>
     14787                                                <TileMatrix>12</TileMatrix>
     14788                                                <MinTileRow>1404</MinTileRow>
     14789                                                <MaxTileRow>1408</MaxTileRow>
     14790                                                <MinTileCol>2029</MinTileCol>
     14791                                                <MaxTileCol>2033</MaxTileCol>
     14792                                        </TileMatrixLimits>
     14793                                        <TileMatrixLimits>
     14794                                                <TileMatrix>13</TileMatrix>
     14795                                                <MinTileRow>2809</MinTileRow>
     14796                                                <MaxTileRow>2817</MaxTileRow>
     14797                                                <MinTileCol>4058</MinTileCol>
     14798                                                <MaxTileCol>4066</MaxTileCol>
     14799                                        </TileMatrixLimits>
     14800                                        <TileMatrixLimits>
     14801                                                <TileMatrix>14</TileMatrix>
     14802                                                <MinTileRow>5619</MinTileRow>
     14803                                                <MaxTileRow>5634</MaxTileRow>
     14804                                                <MinTileCol>8117</MinTileCol>
     14805                                                <MaxTileCol>8132</MaxTileCol>
     14806                                        </TileMatrixLimits>
     14807                                        <TileMatrixLimits>
     14808                                                <TileMatrix>15</TileMatrix>
     14809                                                <MinTileRow>11239</MinTileRow>
     14810                                                <MaxTileRow>11268</MaxTileRow>
     14811                                                <MinTileCol>16235</MinTileCol>
     14812                                                <MaxTileCol>16265</MaxTileCol>
     14813                                        </TileMatrixLimits>
     14814                                        <TileMatrixLimits>
     14815                                                <TileMatrix>16</TileMatrix>
     14816                                                <MinTileRow>22479</MinTileRow>
     14817                                                <MaxTileRow>22536</MaxTileRow>
     14818                                                <MinTileCol>32471</MinTileCol>
     14819                                                <MaxTileCol>32531</MaxTileCol>
     14820                                        </TileMatrixLimits>
     14821                                        <TileMatrixLimits>
     14822                                                <TileMatrix>17</TileMatrix>
     14823                                                <MinTileRow>44959</MinTileRow>
     14824                                                <MaxTileRow>45073</MaxTileRow>
     14825                                                <MinTileCol>64943</MinTileCol>
     14826                                                <MaxTileCol>65062</MaxTileCol>
     14827                                        </TileMatrixLimits>
     14828                                        <TileMatrixLimits>
     14829                                                <TileMatrix>18</TileMatrix>
     14830                                                <MinTileRow>89919</MinTileRow>
     14831                                                <MaxTileRow>90146</MaxTileRow>
     14832                                                <MinTileCol>129887</MinTileCol>
     14833                                                <MaxTileCol>130125</MaxTileCol>
     14834                                        </TileMatrixLimits>
     14835                                        <TileMatrixLimits>
     14836                                                <TileMatrix>2</TileMatrix>
     14837                                                <MinTileRow>1</MinTileRow>
     14838                                                <MaxTileRow>1</MaxTileRow>
     14839                                                <MinTileCol>1</MinTileCol>
     14840                                                <MaxTileCol>1</MaxTileCol>
     14841                                        </TileMatrixLimits>
     14842                                        <TileMatrixLimits>
     14843                                                <TileMatrix>3</TileMatrix>
     14844                                                <MinTileRow>2</MinTileRow>
     14845                                                <MaxTileRow>2</MaxTileRow>
     14846                                                <MinTileCol>3</MinTileCol>
     14847                                                <MaxTileCol>3</MaxTileCol>
     14848                                        </TileMatrixLimits>
     14849                                        <TileMatrixLimits>
     14850                                                <TileMatrix>4</TileMatrix>
     14851                                                <MinTileRow>5</MinTileRow>
     14852                                                <MaxTileRow>5</MaxTileRow>
     14853                                                <MinTileCol>7</MinTileCol>
     14854                                                <MaxTileCol>7</MaxTileCol>
     14855                                        </TileMatrixLimits>
     14856                                        <TileMatrixLimits>
     14857                                                <TileMatrix>5</TileMatrix>
     14858                                                <MinTileRow>10</MinTileRow>
     14859                                                <MaxTileRow>11</MaxTileRow>
     14860                                                <MinTileCol>15</MinTileCol>
     14861                                                <MaxTileCol>15</MaxTileCol>
     14862                                        </TileMatrixLimits>
     14863                                        <TileMatrixLimits>
     14864                                                <TileMatrix>6</TileMatrix>
     14865                                                <MinTileRow>21</MinTileRow>
     14866                                                <MaxTileRow>22</MaxTileRow>
     14867                                                <MinTileCol>31</MinTileCol>
     14868                                                <MaxTileCol>31</MaxTileCol>
     14869                                        </TileMatrixLimits>
     14870                                        <TileMatrixLimits>
     14871                                                <TileMatrix>7</TileMatrix>
     14872                                                <MinTileRow>43</MinTileRow>
     14873                                                <MaxTileRow>44</MaxTileRow>
     14874                                                <MinTileCol>63</MinTileCol>
     14875                                                <MaxTileCol>63</MaxTileCol>
     14876                                        </TileMatrixLimits>
     14877                                        <TileMatrixLimits>
     14878                                                <TileMatrix>8</TileMatrix>
     14879                                                <MinTileRow>87</MinTileRow>
     14880                                                <MaxTileRow>88</MaxTileRow>
     14881                                                <MinTileCol>126</MinTileCol>
     14882                                                <MaxTileCol>127</MaxTileCol>
     14883                                        </TileMatrixLimits>
     14884                                        <TileMatrixLimits>
     14885                                                <TileMatrix>9</TileMatrix>
     14886                                                <MinTileRow>175</MinTileRow>
     14887                                                <MaxTileRow>176</MaxTileRow>
     14888                                                <MinTileCol>253</MinTileCol>
     14889                                                <MaxTileCol>254</MaxTileCol>
     14890                                        </TileMatrixLimits>
     14891                                </TileMatrixSetLimits>
     14892                        </TileMatrixSetLink>
     14893                </Layer>
     14894                <Layer>
     14895                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     14896                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     14897                        <ows:Keywords>
     14898                                <ows:Keyword>Photographies</ows:Keyword>
     14899                        </ows:Keywords>
     14900                        <ows:WGS84BoundingBox>
     14901                                <ows:LowerCorner>2.45469 45.9044</ows:LowerCorner>
     14902                                <ows:UpperCorner>2.63883 46.2653</ows:UpperCorner>
     14903                        </ows:WGS84BoundingBox>
     14904                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-05-05-38939202</ows:Identifier>
     14905                        <Style isDefault="true">
     14906                                <ows:Title>Données Brutes</ows:Title>
     14907                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     14908                                <ows:Keywords>
     14909                                        <ows:Keyword>Défaut</ows:Keyword>
     14910                                </ows:Keywords>
     14911                                <ows:Identifier>normal</ows:Identifier>
     14912                                <LegendURL format="image/jpeg" height="200"
     14913                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     14914                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     14915                        </Style>
     14916                        <Format>image/jpeg</Format>
     14917                        <TileMatrixSetLink>
     14918                                <TileMatrixSet>PM</TileMatrixSet>
     14919                                <TileMatrixSetLimits>
     14920                                        <TileMatrixLimits>
     14921                                                <TileMatrix>0</TileMatrix>
     14922                                                <MinTileRow>0</MinTileRow>
     14923                                                <MaxTileRow>0</MaxTileRow>
     14924                                                <MinTileCol>0</MinTileCol>
     14925                                                <MaxTileCol>0</MaxTileCol>
     14926                                        </TileMatrixLimits>
     14927                                        <TileMatrixLimits>
     14928                                                <TileMatrix>1</TileMatrix>
     14929                                                <MinTileRow>0</MinTileRow>
     14930                                                <MaxTileRow>0</MaxTileRow>
     14931                                                <MinTileCol>1</MinTileCol>
     14932                                                <MaxTileCol>1</MaxTileCol>
     14933                                        </TileMatrixLimits>
     14934                                        <TileMatrixLimits>
     14935                                                <TileMatrix>10</TileMatrix>
     14936                                                <MinTileRow>363</MinTileRow>
     14937                                                <MaxTileRow>364</MaxTileRow>
     14938                                                <MinTileCol>518</MinTileCol>
     14939                                                <MaxTileCol>519</MaxTileCol>
     14940                                        </TileMatrixLimits>
     14941                                        <TileMatrixLimits>
     14942                                                <TileMatrix>11</TileMatrix>
     14943                                                <MinTileRow>726</MinTileRow>
     14944                                                <MaxTileRow>729</MaxTileRow>
     14945                                                <MinTileCol>1037</MinTileCol>
     14946                                                <MaxTileCol>1039</MaxTileCol>
     14947                                        </TileMatrixLimits>
     14948                                        <TileMatrixLimits>
     14949                                                <TileMatrix>12</TileMatrix>
     14950                                                <MinTileRow>1452</MinTileRow>
     14951                                                <MaxTileRow>1458</MaxTileRow>
     14952                                                <MinTileCol>2075</MinTileCol>
     14953                                                <MaxTileCol>2078</MaxTileCol>
     14954                                        </TileMatrixLimits>
     14955                                        <TileMatrixLimits>
     14956                                                <TileMatrix>13</TileMatrix>
     14957                                                <MinTileRow>2905</MinTileRow>
     14958                                                <MaxTileRow>2917</MaxTileRow>
     14959                                                <MinTileCol>4151</MinTileCol>
     14960                                                <MaxTileCol>4156</MaxTileCol>
     14961                                        </TileMatrixLimits>
     14962                                        <TileMatrixLimits>
     14963                                                <TileMatrix>14</TileMatrix>
     14964                                                <MinTileRow>5811</MinTileRow>
     14965                                                <MaxTileRow>5835</MaxTileRow>
     14966                                                <MinTileCol>8303</MinTileCol>
     14967                                                <MaxTileCol>8312</MaxTileCol>
     14968                                        </TileMatrixLimits>
     14969                                        <TileMatrixLimits>
     14970                                                <TileMatrix>15</TileMatrix>
     14971                                                <MinTileRow>11622</MinTileRow>
     14972                                                <MaxTileRow>11670</MaxTileRow>
     14973                                                <MinTileCol>16607</MinTileCol>
     14974                                                <MaxTileCol>16624</MaxTileCol>
     14975                                        </TileMatrixLimits>
     14976                                        <TileMatrixLimits>
     14977                                                <TileMatrix>16</TileMatrix>
     14978                                                <MinTileRow>23245</MinTileRow>
     14979                                                <MaxTileRow>23340</MaxTileRow>
     14980                                                <MinTileCol>33214</MinTileCol>
     14981                                                <MaxTileCol>33248</MaxTileCol>
     14982                                        </TileMatrixLimits>
     14983                                        <TileMatrixLimits>
     14984                                                <TileMatrix>17</TileMatrix>
     14985                                                <MinTileRow>46491</MinTileRow>
     14986                                                <MaxTileRow>46680</MaxTileRow>
     14987                                                <MinTileCol>66429</MinTileCol>
     14988                                                <MaxTileCol>66496</MaxTileCol>
     14989                                        </TileMatrixLimits>
     14990                                        <TileMatrixLimits>
     14991                                                <TileMatrix>18</TileMatrix>
     14992                                                <MinTileRow>92982</MinTileRow>
     14993                                                <MaxTileRow>93360</MaxTileRow>
     14994                                                <MinTileCol>132859</MinTileCol>
     14995                                                <MaxTileCol>132993</MaxTileCol>
     14996                                        </TileMatrixLimits>
     14997                                        <TileMatrixLimits>
     14998                                                <TileMatrix>2</TileMatrix>
     14999                                                <MinTileRow>1</MinTileRow>
     15000                                                <MaxTileRow>1</MaxTileRow>
     15001                                                <MinTileCol>2</MinTileCol>
     15002                                                <MaxTileCol>2</MaxTileCol>
     15003                                        </TileMatrixLimits>
     15004                                        <TileMatrixLimits>
     15005                                                <TileMatrix>3</TileMatrix>
     15006                                                <MinTileRow>2</MinTileRow>
     15007                                                <MaxTileRow>2</MaxTileRow>
     15008                                                <MinTileCol>4</MinTileCol>
     15009                                                <MaxTileCol>4</MaxTileCol>
     15010                                        </TileMatrixLimits>
     15011                                        <TileMatrixLimits>
     15012                                                <TileMatrix>4</TileMatrix>
     15013                                                <MinTileRow>5</MinTileRow>
     15014                                                <MaxTileRow>5</MaxTileRow>
     15015                                                <MinTileCol>8</MinTileCol>
     15016                                                <MaxTileCol>8</MaxTileCol>
     15017                                        </TileMatrixLimits>
     15018                                        <TileMatrixLimits>
     15019                                                <TileMatrix>5</TileMatrix>
     15020                                                <MinTileRow>11</MinTileRow>
     15021                                                <MaxTileRow>11</MaxTileRow>
     15022                                                <MinTileCol>16</MinTileCol>
     15023                                                <MaxTileCol>16</MaxTileCol>
     15024                                        </TileMatrixLimits>
     15025                                        <TileMatrixLimits>
     15026                                                <TileMatrix>6</TileMatrix>
     15027                                                <MinTileRow>22</MinTileRow>
     15028                                                <MaxTileRow>22</MaxTileRow>
     15029                                                <MinTileCol>32</MinTileCol>
     15030                                                <MaxTileCol>32</MaxTileCol>
     15031                                        </TileMatrixLimits>
     15032                                        <TileMatrixLimits>
     15033                                                <TileMatrix>7</TileMatrix>
     15034                                                <MinTileRow>45</MinTileRow>
     15035                                                <MaxTileRow>45</MaxTileRow>
     15036                                                <MinTileCol>64</MinTileCol>
     15037                                                <MaxTileCol>64</MaxTileCol>
     15038                                        </TileMatrixLimits>
     15039                                        <TileMatrixLimits>
     15040                                                <TileMatrix>8</TileMatrix>
     15041                                                <MinTileRow>90</MinTileRow>
     15042                                                <MaxTileRow>91</MaxTileRow>
     15043                                                <MinTileCol>129</MinTileCol>
     15044                                                <MaxTileCol>129</MaxTileCol>
     15045                                        </TileMatrixLimits>
     15046                                        <TileMatrixLimits>
     15047                                                <TileMatrix>9</TileMatrix>
     15048                                                <MinTileRow>181</MinTileRow>
     15049                                                <MaxTileRow>182</MaxTileRow>
     15050                                                <MinTileCol>259</MinTileCol>
     15051                                                <MaxTileCol>259</MaxTileCol>
     15052                                        </TileMatrixLimits>
     15053                                </TileMatrixSetLimits>
     15054                        </TileMatrixSetLink>
     15055                </Layer>
     15056                <Layer>
     15057                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15058                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15059                        <ows:Keywords>
     15060                                <ows:Keyword>Photographies</ows:Keyword>
     15061                        </ows:Keywords>
     15062                        <ows:WGS84BoundingBox>
     15063                                <ows:LowerCorner>2.96065 46.4637</ows:LowerCorner>
     15064                                <ows:UpperCorner>3.24923 46.8241</ows:UpperCorner>
     15065                        </ows:WGS84BoundingBox>
     15066                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-05-39568623</ows:Identifier>
     15067                        <Style isDefault="true">
     15068                                <ows:Title>Données Brutes</ows:Title>
     15069                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15070                                <ows:Keywords>
     15071                                        <ows:Keyword>Défaut</ows:Keyword>
     15072                                </ows:Keywords>
     15073                                <ows:Identifier>normal</ows:Identifier>
     15074                                <LegendURL format="image/jpeg" height="200"
     15075                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15076                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15077                        </Style>
     15078                        <Format>image/jpeg</Format>
     15079                        <TileMatrixSetLink>
     15080                                <TileMatrixSet>PM</TileMatrixSet>
     15081                                <TileMatrixSetLimits>
     15082                                        <TileMatrixLimits>
     15083                                                <TileMatrix>0</TileMatrix>
     15084                                                <MinTileRow>0</MinTileRow>
     15085                                                <MaxTileRow>0</MaxTileRow>
     15086                                                <MinTileCol>0</MinTileCol>
     15087                                                <MaxTileCol>0</MaxTileCol>
     15088                                        </TileMatrixLimits>
     15089                                        <TileMatrixLimits>
     15090                                                <TileMatrix>1</TileMatrix>
     15091                                                <MinTileRow>0</MinTileRow>
     15092                                                <MaxTileRow>0</MaxTileRow>
     15093                                                <MinTileCol>1</MinTileCol>
     15094                                                <MaxTileCol>1</MaxTileCol>
     15095                                        </TileMatrixLimits>
     15096                                        <TileMatrixLimits>
     15097                                                <TileMatrix>10</TileMatrix>
     15098                                                <MinTileRow>360</MinTileRow>
     15099                                                <MaxTileRow>362</MaxTileRow>
     15100                                                <MinTileCol>520</MinTileCol>
     15101                                                <MaxTileCol>521</MaxTileCol>
     15102                                        </TileMatrixLimits>
     15103                                        <TileMatrixLimits>
     15104                                                <TileMatrix>11</TileMatrix>
     15105                                                <MinTileRow>721</MinTileRow>
     15106                                                <MaxTileRow>724</MaxTileRow>
     15107                                                <MinTileCol>1040</MinTileCol>
     15108                                                <MaxTileCol>1042</MaxTileCol>
     15109                                        </TileMatrixLimits>
     15110                                        <TileMatrixLimits>
     15111                                                <TileMatrix>12</TileMatrix>
     15112                                                <MinTileRow>1443</MinTileRow>
     15113                                                <MaxTileRow>1449</MaxTileRow>
     15114                                                <MinTileCol>2081</MinTileCol>
     15115                                                <MaxTileCol>2084</MaxTileCol>
     15116                                        </TileMatrixLimits>
     15117                                        <TileMatrixLimits>
     15118                                                <TileMatrix>13</TileMatrix>
     15119                                                <MinTileRow>2887</MinTileRow>
     15120                                                <MaxTileRow>2899</MaxTileRow>
     15121                                                <MinTileCol>4163</MinTileCol>
     15122                                                <MaxTileCol>4169</MaxTileCol>
     15123                                        </TileMatrixLimits>
     15124                                        <TileMatrixLimits>
     15125                                                <TileMatrix>14</TileMatrix>
     15126                                                <MinTileRow>5774</MinTileRow>
     15127                                                <MaxTileRow>5798</MaxTileRow>
     15128                                                <MinTileCol>8326</MinTileCol>
     15129                                                <MaxTileCol>8339</MaxTileCol>
     15130                                        </TileMatrixLimits>
     15131                                        <TileMatrixLimits>
     15132                                                <TileMatrix>15</TileMatrix>
     15133                                                <MinTileRow>11548</MinTileRow>
     15134                                                <MaxTileRow>11596</MaxTileRow>
     15135                                                <MinTileCol>16653</MinTileCol>
     15136                                                <MaxTileCol>16679</MaxTileCol>
     15137                                        </TileMatrixLimits>
     15138                                        <TileMatrixLimits>
     15139                                                <TileMatrix>16</TileMatrix>
     15140                                                <MinTileRow>23097</MinTileRow>
     15141                                                <MaxTileRow>23193</MaxTileRow>
     15142                                                <MinTileCol>33306</MinTileCol>
     15143                                                <MaxTileCol>33359</MaxTileCol>
     15144                                        </TileMatrixLimits>
     15145                                        <TileMatrixLimits>
     15146                                                <TileMatrix>17</TileMatrix>
     15147                                                <MinTileRow>46195</MinTileRow>
     15148                                                <MaxTileRow>46386</MaxTileRow>
     15149                                                <MinTileCol>66613</MinTileCol>
     15150                                                <MaxTileCol>66718</MaxTileCol>
     15151                                        </TileMatrixLimits>
     15152                                        <TileMatrixLimits>
     15153                                                <TileMatrix>18</TileMatrix>
     15154                                                <MinTileRow>92390</MinTileRow>
     15155                                                <MaxTileRow>92772</MaxTileRow>
     15156                                                <MinTileCol>133227</MinTileCol>
     15157                                                <MaxTileCol>133437</MaxTileCol>
     15158                                        </TileMatrixLimits>
     15159                                        <TileMatrixLimits>
     15160                                                <TileMatrix>2</TileMatrix>
     15161                                                <MinTileRow>1</MinTileRow>
     15162                                                <MaxTileRow>1</MaxTileRow>
     15163                                                <MinTileCol>2</MinTileCol>
     15164                                                <MaxTileCol>2</MaxTileCol>
     15165                                        </TileMatrixLimits>
     15166                                        <TileMatrixLimits>
     15167                                                <TileMatrix>3</TileMatrix>
     15168                                                <MinTileRow>2</MinTileRow>
     15169                                                <MaxTileRow>2</MaxTileRow>
     15170                                                <MinTileCol>4</MinTileCol>
     15171                                                <MaxTileCol>4</MaxTileCol>
     15172                                        </TileMatrixLimits>
     15173                                        <TileMatrixLimits>
     15174                                                <TileMatrix>4</TileMatrix>
     15175                                                <MinTileRow>5</MinTileRow>
     15176                                                <MaxTileRow>5</MaxTileRow>
     15177                                                <MinTileCol>8</MinTileCol>
     15178                                                <MaxTileCol>8</MaxTileCol>
     15179                                        </TileMatrixLimits>
     15180                                        <TileMatrixLimits>
     15181                                                <TileMatrix>5</TileMatrix>
     15182                                                <MinTileRow>11</MinTileRow>
     15183                                                <MaxTileRow>11</MaxTileRow>
     15184                                                <MinTileCol>16</MinTileCol>
     15185                                                <MaxTileCol>16</MaxTileCol>
     15186                                        </TileMatrixLimits>
     15187                                        <TileMatrixLimits>
     15188                                                <TileMatrix>6</TileMatrix>
     15189                                                <MinTileRow>22</MinTileRow>
     15190                                                <MaxTileRow>22</MaxTileRow>
     15191                                                <MinTileCol>32</MinTileCol>
     15192                                                <MaxTileCol>32</MaxTileCol>
     15193                                        </TileMatrixLimits>
     15194                                        <TileMatrixLimits>
     15195                                                <TileMatrix>7</TileMatrix>
     15196                                                <MinTileRow>45</MinTileRow>
     15197                                                <MaxTileRow>45</MaxTileRow>
     15198                                                <MinTileCol>65</MinTileCol>
     15199                                                <MaxTileCol>65</MaxTileCol>
     15200                                        </TileMatrixLimits>
     15201                                        <TileMatrixLimits>
     15202                                                <TileMatrix>8</TileMatrix>
     15203                                                <MinTileRow>90</MinTileRow>
     15204                                                <MaxTileRow>90</MaxTileRow>
     15205                                                <MinTileCol>130</MinTileCol>
     15206                                                <MaxTileCol>130</MaxTileCol>
     15207                                        </TileMatrixLimits>
     15208                                        <TileMatrixLimits>
     15209                                                <TileMatrix>9</TileMatrix>
     15210                                                <MinTileRow>180</MinTileRow>
     15211                                                <MaxTileRow>181</MaxTileRow>
     15212                                                <MinTileCol>260</MinTileCol>
     15213                                                <MaxTileCol>260</MaxTileCol>
     15214                                        </TileMatrixLimits>
     15215                                </TileMatrixSetLimits>
     15216                        </TileMatrixSetLink>
     15217                </Layer>
     15218                <Layer>
     15219                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15220                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15221                        <ows:Keywords>
     15222                                <ows:Keyword>Photographies</ows:Keyword>
     15223                        </ows:Keywords>
     15224                        <ows:WGS84BoundingBox>
     15225                                <ows:LowerCorner>2.24348 46.3174</ows:LowerCorner>
     15226                                <ows:UpperCorner>2.35018 46.5161</ows:UpperCorner>
     15227                        </ows:WGS84BoundingBox>
     15228                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-05-39656451</ows:Identifier>
     15229                        <Style isDefault="true">
     15230                                <ows:Title>Données Brutes</ows:Title>
     15231                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15232                                <ows:Keywords>
     15233                                        <ows:Keyword>Défaut</ows:Keyword>
     15234                                </ows:Keywords>
     15235                                <ows:Identifier>normal</ows:Identifier>
     15236                                <LegendURL format="image/jpeg" height="200"
     15237                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15238                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15239                        </Style>
     15240                        <Format>image/jpeg</Format>
     15241                        <TileMatrixSetLink>
     15242                                <TileMatrixSet>PM</TileMatrixSet>
     15243                                <TileMatrixSetLimits>
     15244                                        <TileMatrixLimits>
     15245                                                <TileMatrix>0</TileMatrix>
     15246                                                <MinTileRow>0</MinTileRow>
     15247                                                <MaxTileRow>0</MaxTileRow>
     15248                                                <MinTileCol>0</MinTileCol>
     15249                                                <MaxTileCol>0</MaxTileCol>
     15250                                        </TileMatrixLimits>
     15251                                        <TileMatrixLimits>
     15252                                                <TileMatrix>1</TileMatrix>
     15253                                                <MinTileRow>0</MinTileRow>
     15254                                                <MaxTileRow>0</MaxTileRow>
     15255                                                <MinTileCol>1</MinTileCol>
     15256                                                <MaxTileCol>1</MaxTileCol>
     15257                                        </TileMatrixLimits>
     15258                                        <TileMatrixLimits>
     15259                                                <TileMatrix>10</TileMatrix>
     15260                                                <MinTileRow>362</MinTileRow>
     15261                                                <MaxTileRow>362</MaxTileRow>
     15262                                                <MinTileCol>518</MinTileCol>
     15263                                                <MaxTileCol>518</MaxTileCol>
     15264                                        </TileMatrixLimits>
     15265                                        <TileMatrixLimits>
     15266                                                <TileMatrix>11</TileMatrix>
     15267                                                <MinTileRow>724</MinTileRow>
     15268                                                <MaxTileRow>725</MaxTileRow>
     15269                                                <MinTileCol>1036</MinTileCol>
     15270                                                <MaxTileCol>1037</MaxTileCol>
     15271                                        </TileMatrixLimits>
     15272                                        <TileMatrixLimits>
     15273                                                <TileMatrix>12</TileMatrix>
     15274                                                <MinTileRow>1448</MinTileRow>
     15275                                                <MaxTileRow>1451</MaxTileRow>
     15276                                                <MinTileCol>2073</MinTileCol>
     15277                                                <MaxTileCol>2074</MaxTileCol>
     15278                                        </TileMatrixLimits>
     15279                                        <TileMatrixLimits>
     15280                                                <TileMatrix>13</TileMatrix>
     15281                                                <MinTileRow>2897</MinTileRow>
     15282                                                <MaxTileRow>2903</MaxTileRow>
     15283                                                <MinTileCol>4147</MinTileCol>
     15284                                                <MaxTileCol>4149</MaxTileCol>
     15285                                        </TileMatrixLimits>
     15286                                        <TileMatrixLimits>
     15287                                                <TileMatrix>14</TileMatrix>
     15288                                                <MinTileRow>5794</MinTileRow>
     15289                                                <MaxTileRow>5807</MaxTileRow>
     15290                                                <MinTileCol>8294</MinTileCol>
     15291                                                <MaxTileCol>8298</MaxTileCol>
     15292                                        </TileMatrixLimits>
     15293                                        <TileMatrixLimits>
     15294                                                <TileMatrix>15</TileMatrix>
     15295                                                <MinTileRow>11589</MinTileRow>
     15296                                                <MaxTileRow>11615</MaxTileRow>
     15297                                                <MinTileCol>16588</MinTileCol>
     15298                                                <MaxTileCol>16597</MaxTileCol>
     15299                                        </TileMatrixLimits>
     15300                                        <TileMatrixLimits>
     15301                                                <TileMatrix>16</TileMatrix>
     15302                                                <MinTileRow>23179</MinTileRow>
     15303                                                <MaxTileRow>23231</MaxTileRow>
     15304                                                <MinTileCol>33176</MinTileCol>
     15305                                                <MaxTileCol>33195</MaxTileCol>
     15306                                        </TileMatrixLimits>
     15307                                        <TileMatrixLimits>
     15308                                                <TileMatrix>17</TileMatrix>
     15309                                                <MinTileRow>46358</MinTileRow>
     15310                                                <MaxTileRow>46463</MaxTileRow>
     15311                                                <MinTileCol>66353</MinTileCol>
     15312                                                <MaxTileCol>66391</MaxTileCol>
     15313                                        </TileMatrixLimits>
     15314                                        <TileMatrixLimits>
     15315                                                <TileMatrix>18</TileMatrix>
     15316                                                <MinTileRow>92717</MinTileRow>
     15317                                                <MaxTileRow>92926</MaxTileRow>
     15318                                                <MinTileCol>132706</MinTileCol>
     15319                                                <MaxTileCol>132782</MaxTileCol>
     15320                                        </TileMatrixLimits>
     15321                                        <TileMatrixLimits>
     15322                                                <TileMatrix>2</TileMatrix>
     15323                                                <MinTileRow>1</MinTileRow>
     15324                                                <MaxTileRow>1</MaxTileRow>
     15325                                                <MinTileCol>2</MinTileCol>
     15326                                                <MaxTileCol>2</MaxTileCol>
     15327                                        </TileMatrixLimits>
     15328                                        <TileMatrixLimits>
     15329                                                <TileMatrix>3</TileMatrix>
     15330                                                <MinTileRow>2</MinTileRow>
     15331                                                <MaxTileRow>2</MaxTileRow>
     15332                                                <MinTileCol>4</MinTileCol>
     15333                                                <MaxTileCol>4</MaxTileCol>
     15334                                        </TileMatrixLimits>
     15335                                        <TileMatrixLimits>
     15336                                                <TileMatrix>4</TileMatrix>
     15337                                                <MinTileRow>5</MinTileRow>
     15338                                                <MaxTileRow>5</MaxTileRow>
     15339                                                <MinTileCol>8</MinTileCol>
     15340                                                <MaxTileCol>8</MaxTileCol>
     15341                                        </TileMatrixLimits>
     15342                                        <TileMatrixLimits>
     15343                                                <TileMatrix>5</TileMatrix>
     15344                                                <MinTileRow>11</MinTileRow>
     15345                                                <MaxTileRow>11</MaxTileRow>
     15346                                                <MinTileCol>16</MinTileCol>
     15347                                                <MaxTileCol>16</MaxTileCol>
     15348                                        </TileMatrixLimits>
     15349                                        <TileMatrixLimits>
     15350                                                <TileMatrix>6</TileMatrix>
     15351                                                <MinTileRow>22</MinTileRow>
     15352                                                <MaxTileRow>22</MaxTileRow>
     15353                                                <MinTileCol>32</MinTileCol>
     15354                                                <MaxTileCol>32</MaxTileCol>
     15355                                        </TileMatrixLimits>
     15356                                        <TileMatrixLimits>
     15357                                                <TileMatrix>7</TileMatrix>
     15358                                                <MinTileRow>45</MinTileRow>
     15359                                                <MaxTileRow>45</MaxTileRow>
     15360                                                <MinTileCol>64</MinTileCol>
     15361                                                <MaxTileCol>64</MaxTileCol>
     15362                                        </TileMatrixLimits>
     15363                                        <TileMatrixLimits>
     15364                                                <TileMatrix>8</TileMatrix>
     15365                                                <MinTileRow>90</MinTileRow>
     15366                                                <MaxTileRow>90</MaxTileRow>
     15367                                                <MinTileCol>129</MinTileCol>
     15368                                                <MaxTileCol>129</MaxTileCol>
     15369                                        </TileMatrixLimits>
     15370                                        <TileMatrixLimits>
     15371                                                <TileMatrix>9</TileMatrix>
     15372                                                <MinTileRow>181</MinTileRow>
     15373                                                <MaxTileRow>181</MaxTileRow>
     15374                                                <MinTileCol>259</MinTileCol>
     15375                                                <MaxTileCol>259</MaxTileCol>
     15376                                        </TileMatrixLimits>
     15377                                </TileMatrixSetLimits>
     15378                        </TileMatrixSetLink>
     15379                </Layer>
     15380                <Layer>
     15381                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15382                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15383                        <ows:Keywords>
     15384                                <ows:Keyword>Photographies</ows:Keyword>
     15385                        </ows:Keywords>
     15386                        <ows:WGS84BoundingBox>
     15387                                <ows:LowerCorner>3.40369 46.4258</ows:LowerCorner>
     15388                                <ows:UpperCorner>3.70786 46.7874</ows:UpperCorner>
     15389                        </ows:WGS84BoundingBox>
     15390                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39082000</ows:Identifier>
     15391                        <Style isDefault="true">
     15392                                <ows:Title>Données Brutes</ows:Title>
     15393                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15394                                <ows:Keywords>
     15395                                        <ows:Keyword>Défaut</ows:Keyword>
     15396                                </ows:Keywords>
     15397                                <ows:Identifier>normal</ows:Identifier>
     15398                                <LegendURL format="image/jpeg" height="200"
     15399                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15400                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15401                        </Style>
     15402                        <Format>image/jpeg</Format>
     15403                        <TileMatrixSetLink>
     15404                                <TileMatrixSet>PM</TileMatrixSet>
     15405                                <TileMatrixSetLimits>
     15406                                        <TileMatrixLimits>
     15407                                                <TileMatrix>0</TileMatrix>
     15408                                                <MinTileRow>0</MinTileRow>
     15409                                                <MaxTileRow>0</MaxTileRow>
     15410                                                <MinTileCol>0</MinTileCol>
     15411                                                <MaxTileCol>0</MaxTileCol>
     15412                                        </TileMatrixLimits>
     15413                                        <TileMatrixLimits>
     15414                                                <TileMatrix>1</TileMatrix>
     15415                                                <MinTileRow>0</MinTileRow>
     15416                                                <MaxTileRow>0</MaxTileRow>
     15417                                                <MinTileCol>1</MinTileCol>
     15418                                                <MaxTileCol>1</MaxTileCol>
     15419                                        </TileMatrixLimits>
     15420                                        <TileMatrixLimits>
     15421                                                <TileMatrix>10</TileMatrix>
     15422                                                <MinTileRow>361</MinTileRow>
     15423                                                <MaxTileRow>362</MaxTileRow>
     15424                                                <MinTileCol>521</MinTileCol>
     15425                                                <MaxTileCol>522</MaxTileCol>
     15426                                        </TileMatrixLimits>
     15427                                        <TileMatrixLimits>
     15428                                                <TileMatrix>11</TileMatrix>
     15429                                                <MinTileRow>722</MinTileRow>
     15430                                                <MaxTileRow>725</MaxTileRow>
     15431                                                <MinTileCol>1043</MinTileCol>
     15432                                                <MaxTileCol>1045</MaxTileCol>
     15433                                        </TileMatrixLimits>
     15434                                        <TileMatrixLimits>
     15435                                                <TileMatrix>12</TileMatrix>
     15436                                                <MinTileRow>1444</MinTileRow>
     15437                                                <MaxTileRow>1450</MaxTileRow>
     15438                                                <MinTileCol>2086</MinTileCol>
     15439                                                <MaxTileCol>2090</MaxTileCol>
     15440                                        </TileMatrixLimits>
     15441                                        <TileMatrixLimits>
     15442                                                <TileMatrix>13</TileMatrix>
     15443                                                <MinTileRow>2888</MinTileRow>
     15444                                                <MaxTileRow>2900</MaxTileRow>
     15445                                                <MinTileCol>4173</MinTileCol>
     15446                                                <MaxTileCol>4180</MaxTileCol>
     15447                                        </TileMatrixLimits>
     15448                                        <TileMatrixLimits>
     15449                                                <TileMatrix>14</TileMatrix>
     15450                                                <MinTileRow>5776</MinTileRow>
     15451                                                <MaxTileRow>5800</MaxTileRow>
     15452                                                <MinTileCol>8346</MinTileCol>
     15453                                                <MaxTileCol>8360</MaxTileCol>
     15454                                        </TileMatrixLimits>
     15455                                        <TileMatrixLimits>
     15456                                                <TileMatrix>15</TileMatrix>
     15457                                                <MinTileRow>11553</MinTileRow>
     15458                                                <MaxTileRow>11601</MaxTileRow>
     15459                                                <MinTileCol>16693</MinTileCol>
     15460                                                <MaxTileCol>16721</MaxTileCol>
     15461                                        </TileMatrixLimits>
     15462                                        <TileMatrixLimits>
     15463                                                <TileMatrix>16</TileMatrix>
     15464                                                <MinTileRow>23107</MinTileRow>
     15465                                                <MaxTileRow>23203</MaxTileRow>
     15466                                                <MinTileCol>33387</MinTileCol>
     15467                                                <MaxTileCol>33442</MaxTileCol>
     15468                                        </TileMatrixLimits>
     15469                                        <TileMatrixLimits>
     15470                                                <TileMatrix>17</TileMatrix>
     15471                                                <MinTileRow>46215</MinTileRow>
     15472                                                <MaxTileRow>46406</MaxTileRow>
     15473                                                <MinTileCol>66775</MinTileCol>
     15474                                                <MaxTileCol>66885</MaxTileCol>
     15475                                        </TileMatrixLimits>
     15476                                        <TileMatrixLimits>
     15477                                                <TileMatrix>18</TileMatrix>
     15478                                                <MinTileRow>92430</MinTileRow>
     15479                                                <MaxTileRow>92812</MaxTileRow>
     15480                                                <MinTileCol>133551</MinTileCol>
     15481                                                <MaxTileCol>133771</MaxTileCol>
     15482                                        </TileMatrixLimits>
     15483                                        <TileMatrixLimits>
     15484                                                <TileMatrix>2</TileMatrix>
     15485                                                <MinTileRow>1</MinTileRow>
     15486                                                <MaxTileRow>1</MaxTileRow>
     15487                                                <MinTileCol>2</MinTileCol>
     15488                                                <MaxTileCol>2</MaxTileCol>
     15489                                        </TileMatrixLimits>
     15490                                        <TileMatrixLimits>
     15491                                                <TileMatrix>3</TileMatrix>
     15492                                                <MinTileRow>2</MinTileRow>
     15493                                                <MaxTileRow>2</MaxTileRow>
     15494                                                <MinTileCol>4</MinTileCol>
     15495                                                <MaxTileCol>4</MaxTileCol>
     15496                                        </TileMatrixLimits>
     15497                                        <TileMatrixLimits>
     15498                                                <TileMatrix>4</TileMatrix>
     15499                                                <MinTileRow>5</MinTileRow>
     15500                                                <MaxTileRow>5</MaxTileRow>
     15501                                                <MinTileCol>8</MinTileCol>
     15502                                                <MaxTileCol>8</MaxTileCol>
     15503                                        </TileMatrixLimits>
     15504                                        <TileMatrixLimits>
     15505                                                <TileMatrix>5</TileMatrix>
     15506                                                <MinTileRow>11</MinTileRow>
     15507                                                <MaxTileRow>11</MaxTileRow>
     15508                                                <MinTileCol>16</MinTileCol>
     15509                                                <MaxTileCol>16</MaxTileCol>
     15510                                        </TileMatrixLimits>
     15511                                        <TileMatrixLimits>
     15512                                                <TileMatrix>6</TileMatrix>
     15513                                                <MinTileRow>22</MinTileRow>
     15514                                                <MaxTileRow>22</MaxTileRow>
     15515                                                <MinTileCol>32</MinTileCol>
     15516                                                <MaxTileCol>32</MaxTileCol>
     15517                                        </TileMatrixLimits>
     15518                                        <TileMatrixLimits>
     15519                                                <TileMatrix>7</TileMatrix>
     15520                                                <MinTileRow>45</MinTileRow>
     15521                                                <MaxTileRow>45</MaxTileRow>
     15522                                                <MinTileCol>65</MinTileCol>
     15523                                                <MaxTileCol>65</MaxTileCol>
     15524                                        </TileMatrixLimits>
     15525                                        <TileMatrixLimits>
     15526                                                <TileMatrix>8</TileMatrix>
     15527                                                <MinTileRow>90</MinTileRow>
     15528                                                <MaxTileRow>90</MaxTileRow>
     15529                                                <MinTileCol>130</MinTileCol>
     15530                                                <MaxTileCol>130</MaxTileCol>
     15531                                        </TileMatrixLimits>
     15532                                        <TileMatrixLimits>
     15533                                                <TileMatrix>9</TileMatrix>
     15534                                                <MinTileRow>180</MinTileRow>
     15535                                                <MaxTileRow>181</MaxTileRow>
     15536                                                <MinTileCol>260</MinTileCol>
     15537                                                <MaxTileCol>261</MaxTileCol>
     15538                                        </TileMatrixLimits>
     15539                                </TileMatrixSetLimits>
     15540                        </TileMatrixSetLink>
     15541                </Layer>
     15542                <Layer>
     15543                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15544                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15545                        <ows:Keywords>
     15546                                <ows:Keyword>Photographies</ows:Keyword>
     15547                        </ows:Keywords>
     15548                        <ows:WGS84BoundingBox>
     15549                                <ows:LowerCorner>3.1827 46.544</ows:LowerCorner>
     15550                                <ows:UpperCorner>3.48454 46.734</ows:UpperCorner>
     15551                        </ows:WGS84BoundingBox>
     15552                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39094704</ows:Identifier>
     15553                        <Style isDefault="true">
     15554                                <ows:Title>Données Brutes</ows:Title>
     15555                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15556                                <ows:Keywords>
     15557                                        <ows:Keyword>Défaut</ows:Keyword>
     15558                                </ows:Keywords>
     15559                                <ows:Identifier>normal</ows:Identifier>
     15560                                <LegendURL format="image/jpeg" height="200"
     15561                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15562                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15563                        </Style>
     15564                        <Format>image/jpeg</Format>
     15565                        <TileMatrixSetLink>
     15566                                <TileMatrixSet>PM</TileMatrixSet>
     15567                                <TileMatrixSetLimits>
     15568                                        <TileMatrixLimits>
     15569                                                <TileMatrix>0</TileMatrix>
     15570                                                <MinTileRow>0</MinTileRow>
     15571                                                <MaxTileRow>0</MaxTileRow>
     15572                                                <MinTileCol>0</MinTileCol>
     15573                                                <MaxTileCol>0</MaxTileCol>
     15574                                        </TileMatrixLimits>
     15575                                        <TileMatrixLimits>
     15576                                                <TileMatrix>1</TileMatrix>
     15577                                                <MinTileRow>0</MinTileRow>
     15578                                                <MaxTileRow>0</MaxTileRow>
     15579                                                <MinTileCol>1</MinTileCol>
     15580                                                <MaxTileCol>1</MaxTileCol>
     15581                                        </TileMatrixLimits>
     15582                                        <TileMatrixLimits>
     15583                                                <TileMatrix>10</TileMatrix>
     15584                                                <MinTileRow>361</MinTileRow>
     15585                                                <MaxTileRow>362</MaxTileRow>
     15586                                                <MinTileCol>521</MinTileCol>
     15587                                                <MaxTileCol>521</MaxTileCol>
     15588                                        </TileMatrixLimits>
     15589                                        <TileMatrixLimits>
     15590                                                <TileMatrix>11</TileMatrix>
     15591                                                <MinTileRow>722</MinTileRow>
     15592                                                <MaxTileRow>724</MaxTileRow>
     15593                                                <MinTileCol>1042</MinTileCol>
     15594                                                <MaxTileCol>1043</MaxTileCol>
     15595                                        </TileMatrixLimits>
     15596                                        <TileMatrixLimits>
     15597                                                <TileMatrix>12</TileMatrix>
     15598                                                <MinTileRow>1445</MinTileRow>
     15599                                                <MaxTileRow>1448</MaxTileRow>
     15600                                                <MinTileCol>2084</MinTileCol>
     15601                                                <MaxTileCol>2087</MaxTileCol>
     15602                                        </TileMatrixLimits>
     15603                                        <TileMatrixLimits>
     15604                                                <TileMatrix>13</TileMatrix>
     15605                                                <MinTileRow>2890</MinTileRow>
     15606                                                <MaxTileRow>2896</MaxTileRow>
     15607                                                <MinTileCol>4168</MinTileCol>
     15608                                                <MaxTileCol>4175</MaxTileCol>
     15609                                        </TileMatrixLimits>
     15610                                        <TileMatrixLimits>
     15611                                                <TileMatrix>14</TileMatrix>
     15612                                                <MinTileRow>5780</MinTileRow>
     15613                                                <MaxTileRow>5792</MaxTileRow>
     15614                                                <MinTileCol>8336</MinTileCol>
     15615                                                <MaxTileCol>8350</MaxTileCol>
     15616                                        </TileMatrixLimits>
     15617                                        <TileMatrixLimits>
     15618                                                <TileMatrix>15</TileMatrix>
     15619                                                <MinTileRow>11560</MinTileRow>
     15620                                                <MaxTileRow>11585</MaxTileRow>
     15621                                                <MinTileCol>16673</MinTileCol>
     15622                                                <MaxTileCol>16701</MaxTileCol>
     15623                                        </TileMatrixLimits>
     15624                                        <TileMatrixLimits>
     15625                                                <TileMatrix>16</TileMatrix>
     15626                                                <MinTileRow>23121</MinTileRow>
     15627                                                <MaxTileRow>23171</MaxTileRow>
     15628                                                <MinTileCol>33347</MinTileCol>
     15629                                                <MaxTileCol>33402</MaxTileCol>
     15630                                        </TileMatrixLimits>
     15631                                        <TileMatrixLimits>
     15632                                                <TileMatrix>17</TileMatrix>
     15633                                                <MinTileRow>46243</MinTileRow>
     15634                                                <MaxTileRow>46343</MaxTileRow>
     15635                                                <MinTileCol>66694</MinTileCol>
     15636                                                <MaxTileCol>66804</MaxTileCol>
     15637                                        </TileMatrixLimits>
     15638                                        <TileMatrixLimits>
     15639                                                <TileMatrix>18</TileMatrix>
     15640                                                <MinTileRow>92486</MinTileRow>
     15641                                                <MaxTileRow>92687</MaxTileRow>
     15642                                                <MinTileCol>133389</MinTileCol>
     15643                                                <MaxTileCol>133608</MaxTileCol>
     15644                                        </TileMatrixLimits>
     15645                                        <TileMatrixLimits>
     15646                                                <TileMatrix>2</TileMatrix>
     15647                                                <MinTileRow>1</MinTileRow>
     15648                                                <MaxTileRow>1</MaxTileRow>
     15649                                                <MinTileCol>2</MinTileCol>
     15650                                                <MaxTileCol>2</MaxTileCol>
     15651                                        </TileMatrixLimits>
     15652                                        <TileMatrixLimits>
     15653                                                <TileMatrix>3</TileMatrix>
     15654                                                <MinTileRow>2</MinTileRow>
     15655                                                <MaxTileRow>2</MaxTileRow>
     15656                                                <MinTileCol>4</MinTileCol>
     15657                                                <MaxTileCol>4</MaxTileCol>
     15658                                        </TileMatrixLimits>
     15659                                        <TileMatrixLimits>
     15660                                                <TileMatrix>4</TileMatrix>
     15661                                                <MinTileRow>5</MinTileRow>
     15662                                                <MaxTileRow>5</MaxTileRow>
     15663                                                <MinTileCol>8</MinTileCol>
     15664                                                <MaxTileCol>8</MaxTileCol>
     15665                                        </TileMatrixLimits>
     15666                                        <TileMatrixLimits>
     15667                                                <TileMatrix>5</TileMatrix>
     15668                                                <MinTileRow>11</MinTileRow>
     15669                                                <MaxTileRow>11</MaxTileRow>
     15670                                                <MinTileCol>16</MinTileCol>
     15671                                                <MaxTileCol>16</MaxTileCol>
     15672                                        </TileMatrixLimits>
     15673                                        <TileMatrixLimits>
     15674                                                <TileMatrix>6</TileMatrix>
     15675                                                <MinTileRow>22</MinTileRow>
     15676                                                <MaxTileRow>22</MaxTileRow>
     15677                                                <MinTileCol>32</MinTileCol>
     15678                                                <MaxTileCol>32</MaxTileCol>
     15679                                        </TileMatrixLimits>
     15680                                        <TileMatrixLimits>
     15681                                                <TileMatrix>7</TileMatrix>
     15682                                                <MinTileRow>45</MinTileRow>
     15683                                                <MaxTileRow>45</MaxTileRow>
     15684                                                <MinTileCol>65</MinTileCol>
     15685                                                <MaxTileCol>65</MaxTileCol>
     15686                                        </TileMatrixLimits>
     15687                                        <TileMatrixLimits>
     15688                                                <TileMatrix>8</TileMatrix>
     15689                                                <MinTileRow>90</MinTileRow>
     15690                                                <MaxTileRow>90</MaxTileRow>
     15691                                                <MinTileCol>130</MinTileCol>
     15692                                                <MaxTileCol>130</MaxTileCol>
     15693                                        </TileMatrixLimits>
     15694                                        <TileMatrixLimits>
     15695                                                <TileMatrix>9</TileMatrix>
     15696                                                <MinTileRow>180</MinTileRow>
     15697                                                <MaxTileRow>181</MaxTileRow>
     15698                                                <MinTileCol>260</MinTileCol>
     15699                                                <MaxTileCol>260</MaxTileCol>
     15700                                        </TileMatrixLimits>
     15701                                </TileMatrixSetLimits>
     15702                        </TileMatrixSetLink>
     15703                </Layer>
     15704                <Layer>
     15705                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15706                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15707                        <ows:Keywords>
     15708                                <ows:Keyword>Photographies</ows:Keyword>
     15709                        </ows:Keywords>
     15710                        <ows:WGS84BoundingBox>
     15711                                <ows:LowerCorner>2.73765 46.4727</ows:LowerCorner>
     15712                                <ows:UpperCorner>3.01312 46.8242</ows:UpperCorner>
     15713                        </ows:WGS84BoundingBox>
     15714                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39105993</ows:Identifier>
     15715                        <Style isDefault="true">
     15716                                <ows:Title>Données Brutes</ows:Title>
     15717                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15718                                <ows:Keywords>
     15719                                        <ows:Keyword>Défaut</ows:Keyword>
     15720                                </ows:Keywords>
     15721                                <ows:Identifier>normal</ows:Identifier>
     15722                                <LegendURL format="image/jpeg" height="200"
     15723                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15724                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15725                        </Style>
     15726                        <Format>image/jpeg</Format>
     15727                        <TileMatrixSetLink>
     15728                                <TileMatrixSet>PM</TileMatrixSet>
     15729                                <TileMatrixSetLimits>
     15730                                        <TileMatrixLimits>
     15731                                                <TileMatrix>0</TileMatrix>
     15732                                                <MinTileRow>0</MinTileRow>
     15733                                                <MaxTileRow>0</MaxTileRow>
     15734                                                <MinTileCol>0</MinTileCol>
     15735                                                <MaxTileCol>0</MaxTileCol>
     15736                                        </TileMatrixLimits>
     15737                                        <TileMatrixLimits>
     15738                                                <TileMatrix>1</TileMatrix>
     15739                                                <MinTileRow>0</MinTileRow>
     15740                                                <MaxTileRow>0</MaxTileRow>
     15741                                                <MinTileCol>1</MinTileCol>
     15742                                                <MaxTileCol>1</MaxTileCol>
     15743                                        </TileMatrixLimits>
     15744                                        <TileMatrixLimits>
     15745                                                <TileMatrix>10</TileMatrix>
     15746                                                <MinTileRow>360</MinTileRow>
     15747                                                <MaxTileRow>362</MaxTileRow>
     15748                                                <MinTileCol>519</MinTileCol>
     15749                                                <MaxTileCol>520</MaxTileCol>
     15750                                        </TileMatrixLimits>
     15751                                        <TileMatrixLimits>
     15752                                                <TileMatrix>11</TileMatrix>
     15753                                                <MinTileRow>721</MinTileRow>
     15754                                                <MaxTileRow>724</MaxTileRow>
     15755                                                <MinTileCol>1039</MinTileCol>
     15756                                                <MaxTileCol>1041</MaxTileCol>
     15757                                        </TileMatrixLimits>
     15758                                        <TileMatrixLimits>
     15759                                                <TileMatrix>12</TileMatrix>
     15760                                                <MinTileRow>1443</MinTileRow>
     15761                                                <MaxTileRow>1449</MaxTileRow>
     15762                                                <MinTileCol>2079</MinTileCol>
     15763                                                <MaxTileCol>2082</MaxTileCol>
     15764                                        </TileMatrixLimits>
     15765                                        <TileMatrixLimits>
     15766                                                <TileMatrix>13</TileMatrix>
     15767                                                <MinTileRow>2887</MinTileRow>
     15768                                                <MaxTileRow>2898</MaxTileRow>
     15769                                                <MinTileCol>4158</MinTileCol>
     15770                                                <MaxTileCol>4164</MaxTileCol>
     15771                                        </TileMatrixLimits>
     15772                                        <TileMatrixLimits>
     15773                                                <TileMatrix>14</TileMatrix>
     15774                                                <MinTileRow>5774</MinTileRow>
     15775                                                <MaxTileRow>5797</MaxTileRow>
     15776                                                <MinTileCol>8316</MinTileCol>
     15777                                                <MaxTileCol>8329</MaxTileCol>
     15778                                        </TileMatrixLimits>
     15779                                        <TileMatrixLimits>
     15780                                                <TileMatrix>15</TileMatrix>
     15781                                                <MinTileRow>11548</MinTileRow>
     15782                                                <MaxTileRow>11595</MaxTileRow>
     15783                                                <MinTileCol>16633</MinTileCol>
     15784                                                <MaxTileCol>16658</MaxTileCol>
     15785                                        </TileMatrixLimits>
     15786                                        <TileMatrixLimits>
     15787                                                <TileMatrix>16</TileMatrix>
     15788                                                <MinTileRow>23097</MinTileRow>
     15789                                                <MaxTileRow>23190</MaxTileRow>
     15790                                                <MinTileCol>33266</MinTileCol>
     15791                                                <MaxTileCol>33316</MaxTileCol>
     15792                                        </TileMatrixLimits>
     15793                                        <TileMatrixLimits>
     15794                                                <TileMatrix>17</TileMatrix>
     15795                                                <MinTileRow>46195</MinTileRow>
     15796                                                <MaxTileRow>46381</MaxTileRow>
     15797                                                <MinTileCol>66532</MinTileCol>
     15798                                                <MaxTileCol>66633</MaxTileCol>
     15799                                        </TileMatrixLimits>
     15800                                        <TileMatrixLimits>
     15801                                                <TileMatrix>18</TileMatrix>
     15802                                                <MinTileRow>92390</MinTileRow>
     15803                                                <MaxTileRow>92763</MaxTileRow>
     15804                                                <MinTileCol>133065</MinTileCol>
     15805                                                <MaxTileCol>133266</MaxTileCol>
     15806                                        </TileMatrixLimits>
     15807                                        <TileMatrixLimits>
     15808                                                <TileMatrix>2</TileMatrix>
     15809                                                <MinTileRow>1</MinTileRow>
     15810                                                <MaxTileRow>1</MaxTileRow>
     15811                                                <MinTileCol>2</MinTileCol>
     15812                                                <MaxTileCol>2</MaxTileCol>
     15813                                        </TileMatrixLimits>
     15814                                        <TileMatrixLimits>
     15815                                                <TileMatrix>3</TileMatrix>
     15816                                                <MinTileRow>2</MinTileRow>
     15817                                                <MaxTileRow>2</MaxTileRow>
     15818                                                <MinTileCol>4</MinTileCol>
     15819                                                <MaxTileCol>4</MaxTileCol>
     15820                                        </TileMatrixLimits>
     15821                                        <TileMatrixLimits>
     15822                                                <TileMatrix>4</TileMatrix>
     15823                                                <MinTileRow>5</MinTileRow>
     15824                                                <MaxTileRow>5</MaxTileRow>
     15825                                                <MinTileCol>8</MinTileCol>
     15826                                                <MaxTileCol>8</MaxTileCol>
     15827                                        </TileMatrixLimits>
     15828                                        <TileMatrixLimits>
     15829                                                <TileMatrix>5</TileMatrix>
     15830                                                <MinTileRow>11</MinTileRow>
     15831                                                <MaxTileRow>11</MaxTileRow>
     15832                                                <MinTileCol>16</MinTileCol>
     15833                                                <MaxTileCol>16</MaxTileCol>
     15834                                        </TileMatrixLimits>
     15835                                        <TileMatrixLimits>
     15836                                                <TileMatrix>6</TileMatrix>
     15837                                                <MinTileRow>22</MinTileRow>
     15838                                                <MaxTileRow>22</MaxTileRow>
     15839                                                <MinTileCol>32</MinTileCol>
     15840                                                <MaxTileCol>32</MaxTileCol>
     15841                                        </TileMatrixLimits>
     15842                                        <TileMatrixLimits>
     15843                                                <TileMatrix>7</TileMatrix>
     15844                                                <MinTileRow>45</MinTileRow>
     15845                                                <MaxTileRow>45</MaxTileRow>
     15846                                                <MinTileCol>64</MinTileCol>
     15847                                                <MaxTileCol>65</MaxTileCol>
     15848                                        </TileMatrixLimits>
     15849                                        <TileMatrixLimits>
     15850                                                <TileMatrix>8</TileMatrix>
     15851                                                <MinTileRow>90</MinTileRow>
     15852                                                <MaxTileRow>90</MaxTileRow>
     15853                                                <MinTileCol>129</MinTileCol>
     15854                                                <MaxTileCol>130</MaxTileCol>
     15855                                        </TileMatrixLimits>
     15856                                        <TileMatrixLimits>
     15857                                                <TileMatrix>9</TileMatrix>
     15858                                                <MinTileRow>180</MinTileRow>
     15859                                                <MaxTileRow>181</MaxTileRow>
     15860                                                <MinTileCol>259</MinTileCol>
     15861                                                <MaxTileCol>260</MaxTileCol>
     15862                                        </TileMatrixLimits>
     15863                                </TileMatrixSetLimits>
     15864                        </TileMatrixSetLink>
     15865                </Layer>
     15866                <Layer>
     15867                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     15868                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     15869                        <ows:Keywords>
     15870                                <ows:Keyword>Photographies</ows:Keyword>
     15871                        </ows:Keywords>
     15872                        <ows:WGS84BoundingBox>
     15873                                <ows:LowerCorner>2.50204 46.4179</ows:LowerCorner>
     15874                                <ows:UpperCorner>2.79168 46.7699</ows:UpperCorner>
     15875                        </ows:WGS84BoundingBox>
     15876                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-06-06-39119829</ows:Identifier>
     15877                        <Style isDefault="true">
     15878                                <ows:Title>Données Brutes</ows:Title>
     15879                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     15880                                <ows:Keywords>
     15881                                        <ows:Keyword>Défaut</ows:Keyword>
     15882                                </ows:Keywords>
     15883                                <ows:Identifier>normal</ows:Identifier>
     15884                                <LegendURL format="image/jpeg" height="200"
     15885                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     15886                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     15887                        </Style>
     15888                        <Format>image/jpeg</Format>
     15889                        <TileMatrixSetLink>
     15890                                <TileMatrixSet>PM</TileMatrixSet>
     15891                                <TileMatrixSetLimits>
     15892                                        <TileMatrixLimits>
     15893                                                <TileMatrix>0</TileMatrix>
     15894                                                <MinTileRow>0</MinTileRow>
     15895                                                <MaxTileRow>0</MaxTileRow>
     15896                                                <MinTileCol>0</MinTileCol>
     15897                                                <MaxTileCol>0</MaxTileCol>
     15898                                        </TileMatrixLimits>
     15899                                        <TileMatrixLimits>
     15900                                                <TileMatrix>1</TileMatrix>
     15901                                                <MinTileRow>0</MinTileRow>
     15902                                                <MaxTileRow>0</MaxTileRow>
     15903                                                <MinTileCol>1</MinTileCol>
     15904                                                <MaxTileCol>1</MaxTileCol>
     15905                                        </TileMatrixLimits>
     15906                                        <TileMatrixLimits>
     15907                                                <TileMatrix>10</TileMatrix>
     15908                                                <MinTileRow>361</MinTileRow>
     15909                                                <MaxTileRow>362</MaxTileRow>
     15910                                                <MinTileCol>519</MinTileCol>
     15911                                                <MaxTileCol>519</MaxTileCol>
     15912                                        </TileMatrixLimits>
     15913                                        <TileMatrixLimits>
     15914                                                <TileMatrix>11</TileMatrix>
     15915                                                <MinTileRow>722</MinTileRow>
     15916                                                <MaxTileRow>725</MaxTileRow>
     15917                                                <MinTileCol>1038</MinTileCol>
     15918                                                <MaxTileCol>1039</MaxTileCol>
     15919                                        </TileMatrixLimits>
     15920                                        <TileMatrixLimits>
     15921                                                <TileMatrix>12</TileMatrix>
     15922                                                <MinTileRow>1444</MinTileRow>
     15923                                                <MaxTileRow>1450</MaxTileRow>
     15924                                                <MinTileCol>2076</MinTileCol>
     15925                                                <MaxTileCol>2079</MaxTileCol>
     15926                                        </TileMatrixLimits>
     15927                                        <TileMatrixLimits>
     15928                                                <TileMatrix>13</TileMatrix>
     15929                                                <MinTileRow>2889</MinTileRow>
     15930                                                <MaxTileRow>2900</MaxTileRow>
     15931                                                <MinTileCol>4152</MinTileCol>
     15932                                                <MaxTileCol>4159</MaxTileCol>
     15933                                        </TileMatrixLimits>
     15934                                        <TileMatrixLimits>
     15935                                                <TileMatrix>14</TileMatrix>
     15936                                                <MinTileRow>5778</MinTileRow>
     15937                                                <MaxTileRow>5801</MaxTileRow>
     15938                                                <MinTileCol>8305</MinTileCol>
     15939                                                <MaxTileCol>8319</MaxTileCol>
     15940                                        </TileMatrixLimits>
     15941                                        <TileMatrixLimits>
     15942                                                <TileMatrix>15</TileMatrix>
     15943                                                <MinTileRow>11556</MinTileRow>
     15944                                                <MaxTileRow>11602</MaxTileRow>
     15945                                                <MinTileCol>16611</MinTileCol>
     15946                                                <MaxTileCol>16638</MaxTileCol>
     15947                                        </TileMatrixLimits>
     15948                                        <TileMatrixLimits>
     15949                                                <TileMatrix>16</TileMatrix>
     15950                                                <MinTileRow>23112</MinTileRow>
     15951                                                <MaxTileRow>23205</MaxTileRow>
     15952                                                <MinTileCol>33223</MinTileCol>
     15953                                                <MaxTileCol>33276</MaxTileCol>
     15954                                        </TileMatrixLimits>
     15955                                        <TileMatrixLimits>
     15956                                                <TileMatrix>17</TileMatrix>
     15957                                                <MinTileRow>46224</MinTileRow>
     15958                                                <MaxTileRow>46410</MaxTileRow>
     15959                                                <MinTileCol>66447</MinTileCol>
     15960                                                <MaxTileCol>66552</MaxTileCol>
     15961                                        </TileMatrixLimits>
     15962                                        <TileMatrixLimits>
     15963                                                <TileMatrix>18</TileMatrix>
     15964                                                <MinTileRow>92448</MinTileRow>
     15965                                                <MaxTileRow>92821</MaxTileRow>
     15966                                                <MinTileCol>132895</MinTileCol>
     15967                                                <MaxTileCol>133105</MaxTileCol>
     15968                                        </TileMatrixLimits>
     15969                                        <TileMatrixLimits>
     15970                                                <TileMatrix>2</TileMatrix>
     15971                                                <MinTileRow>1</MinTileRow>
     15972                                                <MaxTileRow>1</MaxTileRow>
     15973                                                <MinTileCol>2</MinTileCol>
     15974                                                <MaxTileCol>2</MaxTileCol>
     15975                                        </TileMatrixLimits>
     15976                                        <TileMatrixLimits>
     15977                                                <TileMatrix>3</TileMatrix>
     15978                                                <MinTileRow>2</MinTileRow>
     15979                                                <MaxTileRow>2</MaxTileRow>
     15980                                                <MinTileCol>4</MinTileCol>
     15981                                                <MaxTileCol>4</MaxTileCol>
     15982                                        </TileMatrixLimits>
     15983                                        <TileMatrixLimits>
     15984                                                <TileMatrix>4</TileMatrix>
     15985                                                <MinTileRow>5</MinTileRow>
     15986                                                <MaxTileRow>5</MaxTileRow>
     15987                                                <MinTileCol>8</MinTileCol>
     15988                                                <MaxTileCol>8</MaxTileCol>
     15989                                        </TileMatrixLimits>
     15990                                        <TileMatrixLimits>
     15991                                                <TileMatrix>5</TileMatrix>
     15992                                                <MinTileRow>11</MinTileRow>
     15993                                                <MaxTileRow>11</MaxTileRow>
     15994                                                <MinTileCol>16</MinTileCol>
     15995                                                <MaxTileCol>16</MaxTileCol>
     15996                                        </TileMatrixLimits>
     15997                                        <TileMatrixLimits>
     15998                                                <TileMatrix>6</TileMatrix>
     15999                                                <MinTileRow>22</MinTileRow>
     16000                                                <MaxTileRow>22</MaxTileRow>
     16001                                                <MinTileCol>32</MinTileCol>
     16002                                                <MaxTileCol>32</MaxTileCol>
     16003                                        </TileMatrixLimits>
     16004                                        <TileMatrixLimits>
     16005                                                <TileMatrix>7</TileMatrix>
     16006                                                <MinTileRow>45</MinTileRow>
     16007                                                <MaxTileRow>45</MaxTileRow>
     16008                                                <MinTileCol>64</MinTileCol>
     16009                                                <MaxTileCol>64</MaxTileCol>
     16010                                        </TileMatrixLimits>
     16011                                        <TileMatrixLimits>
     16012                                                <TileMatrix>8</TileMatrix>
     16013                                                <MinTileRow>90</MinTileRow>
     16014                                                <MaxTileRow>90</MaxTileRow>
     16015                                                <MinTileCol>129</MinTileCol>
     16016                                                <MaxTileCol>129</MaxTileCol>
     16017                                        </TileMatrixLimits>
     16018                                        <TileMatrixLimits>
     16019                                                <TileMatrix>9</TileMatrix>
     16020                                                <MinTileRow>180</MinTileRow>
     16021                                                <MaxTileRow>181</MaxTileRow>
     16022                                                <MinTileCol>259</MinTileCol>
     16023                                                <MaxTileCol>259</MaxTileCol>
     16024                                        </TileMatrixLimits>
     16025                                </TileMatrixSetLimits>
     16026                        </TileMatrixSetLink>
     16027                </Layer>
     16028                <Layer>
     16029                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16030                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16031                        <ows:Keywords>
     16032                                <ows:Keyword>Photographies</ows:Keyword>
     16033                        </ows:Keywords>
     16034                        <ows:WGS84BoundingBox>
     16035                                <ows:LowerCorner>2.7926 45.8245</ows:LowerCorner>
     16036                                <ows:UpperCorner>3.09074 46.1758</ows:UpperCorner>
     16037                        </ows:WGS84BoundingBox>
     16038                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-01-39641326</ows:Identifier>
     16039                        <Style isDefault="true">
     16040                                <ows:Title>Données Brutes</ows:Title>
     16041                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16042                                <ows:Keywords>
     16043                                        <ows:Keyword>Défaut</ows:Keyword>
     16044                                </ows:Keywords>
     16045                                <ows:Identifier>normal</ows:Identifier>
     16046                                <LegendURL format="image/jpeg" height="200"
     16047                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16048                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16049                        </Style>
     16050                        <Format>image/jpeg</Format>
     16051                        <TileMatrixSetLink>
     16052                                <TileMatrixSet>PM</TileMatrixSet>
     16053                                <TileMatrixSetLimits>
     16054                                        <TileMatrixLimits>
     16055                                                <TileMatrix>0</TileMatrix>
     16056                                                <MinTileRow>0</MinTileRow>
     16057                                                <MaxTileRow>0</MaxTileRow>
     16058                                                <MinTileCol>0</MinTileCol>
     16059                                                <MaxTileCol>0</MaxTileCol>
     16060                                        </TileMatrixLimits>
     16061                                        <TileMatrixLimits>
     16062                                                <TileMatrix>1</TileMatrix>
     16063                                                <MinTileRow>0</MinTileRow>
     16064                                                <MaxTileRow>0</MaxTileRow>
     16065                                                <MinTileCol>1</MinTileCol>
     16066                                                <MaxTileCol>1</MaxTileCol>
     16067                                        </TileMatrixLimits>
     16068                                        <TileMatrixLimits>
     16069                                                <TileMatrix>10</TileMatrix>
     16070                                                <MinTileRow>363</MinTileRow>
     16071                                                <MaxTileRow>365</MaxTileRow>
     16072                                                <MinTileCol>519</MinTileCol>
     16073                                                <MaxTileCol>520</MaxTileCol>
     16074                                        </TileMatrixLimits>
     16075                                        <TileMatrixLimits>
     16076                                                <TileMatrix>11</TileMatrix>
     16077                                                <MinTileRow>727</MinTileRow>
     16078                                                <MaxTileRow>730</MaxTileRow>
     16079                                                <MinTileCol>1039</MinTileCol>
     16080                                                <MaxTileCol>1041</MaxTileCol>
     16081                                        </TileMatrixLimits>
     16082                                        <TileMatrixLimits>
     16083                                                <TileMatrix>12</TileMatrix>
     16084                                                <MinTileRow>1454</MinTileRow>
     16085                                                <MaxTileRow>1460</MaxTileRow>
     16086                                                <MinTileCol>2079</MinTileCol>
     16087                                                <MaxTileCol>2083</MaxTileCol>
     16088                                        </TileMatrixLimits>
     16089                                        <TileMatrixLimits>
     16090                                                <TileMatrix>13</TileMatrix>
     16091                                                <MinTileRow>2908</MinTileRow>
     16092                                                <MaxTileRow>2920</MaxTileRow>
     16093                                                <MinTileCol>4159</MinTileCol>
     16094                                                <MaxTileCol>4166</MaxTileCol>
     16095                                        </TileMatrixLimits>
     16096                                        <TileMatrixLimits>
     16097                                                <TileMatrix>14</TileMatrix>
     16098                                                <MinTileRow>5817</MinTileRow>
     16099                                                <MaxTileRow>5840</MaxTileRow>
     16100                                                <MinTileCol>8319</MinTileCol>
     16101                                                <MaxTileCol>8332</MaxTileCol>
     16102                                        </TileMatrixLimits>
     16103                                        <TileMatrixLimits>
     16104                                                <TileMatrix>15</TileMatrix>
     16105                                                <MinTileRow>11634</MinTileRow>
     16106                                                <MaxTileRow>11680</MaxTileRow>
     16107                                                <MinTileCol>16638</MinTileCol>
     16108                                                <MaxTileCol>16665</MaxTileCol>
     16109                                        </TileMatrixLimits>
     16110                                        <TileMatrixLimits>
     16111                                                <TileMatrix>16</TileMatrix>
     16112                                                <MinTileRow>23269</MinTileRow>
     16113                                                <MaxTileRow>23361</MaxTileRow>
     16114                                                <MinTileCol>33276</MinTileCol>
     16115                                                <MaxTileCol>33330</MaxTileCol>
     16116                                        </TileMatrixLimits>
     16117                                        <TileMatrixLimits>
     16118                                                <TileMatrix>17</TileMatrix>
     16119                                                <MinTileRow>46538</MinTileRow>
     16120                                                <MaxTileRow>46722</MaxTileRow>
     16121                                                <MinTileCol>66553</MinTileCol>
     16122                                                <MaxTileCol>66661</MaxTileCol>
     16123                                        </TileMatrixLimits>
     16124                                        <TileMatrixLimits>
     16125                                                <TileMatrix>18</TileMatrix>
     16126                                                <MinTileRow>93076</MinTileRow>
     16127                                                <MaxTileRow>93444</MaxTileRow>
     16128                                                <MinTileCol>133106</MinTileCol>
     16129                                                <MaxTileCol>133322</MaxTileCol>
     16130                                        </TileMatrixLimits>
     16131                                        <TileMatrixLimits>
     16132                                                <TileMatrix>2</TileMatrix>
     16133                                                <MinTileRow>1</MinTileRow>
     16134                                                <MaxTileRow>1</MaxTileRow>
     16135                                                <MinTileCol>2</MinTileCol>
     16136                                                <MaxTileCol>2</MaxTileCol>
     16137                                        </TileMatrixLimits>
     16138                                        <TileMatrixLimits>
     16139                                                <TileMatrix>3</TileMatrix>
     16140                                                <MinTileRow>2</MinTileRow>
     16141                                                <MaxTileRow>2</MaxTileRow>
     16142                                                <MinTileCol>4</MinTileCol>
     16143                                                <MaxTileCol>4</MaxTileCol>
     16144                                        </TileMatrixLimits>
     16145                                        <TileMatrixLimits>
     16146                                                <TileMatrix>4</TileMatrix>
     16147                                                <MinTileRow>5</MinTileRow>
     16148                                                <MaxTileRow>5</MaxTileRow>
     16149                                                <MinTileCol>8</MinTileCol>
     16150                                                <MaxTileCol>8</MaxTileCol>
     16151                                        </TileMatrixLimits>
     16152                                        <TileMatrixLimits>
     16153                                                <TileMatrix>5</TileMatrix>
     16154                                                <MinTileRow>11</MinTileRow>
     16155                                                <MaxTileRow>11</MaxTileRow>
     16156                                                <MinTileCol>16</MinTileCol>
     16157                                                <MaxTileCol>16</MaxTileCol>
     16158                                        </TileMatrixLimits>
     16159                                        <TileMatrixLimits>
     16160                                                <TileMatrix>6</TileMatrix>
     16161                                                <MinTileRow>22</MinTileRow>
     16162                                                <MaxTileRow>22</MaxTileRow>
     16163                                                <MinTileCol>32</MinTileCol>
     16164                                                <MaxTileCol>32</MaxTileCol>
     16165                                        </TileMatrixLimits>
     16166                                        <TileMatrixLimits>
     16167                                                <TileMatrix>7</TileMatrix>
     16168                                                <MinTileRow>45</MinTileRow>
     16169                                                <MaxTileRow>45</MaxTileRow>
     16170                                                <MinTileCol>64</MinTileCol>
     16171                                                <MaxTileCol>65</MaxTileCol>
     16172                                        </TileMatrixLimits>
     16173                                        <TileMatrixLimits>
     16174                                                <TileMatrix>8</TileMatrix>
     16175                                                <MinTileRow>90</MinTileRow>
     16176                                                <MaxTileRow>91</MaxTileRow>
     16177                                                <MinTileCol>129</MinTileCol>
     16178                                                <MaxTileCol>130</MaxTileCol>
     16179                                        </TileMatrixLimits>
     16180                                        <TileMatrixLimits>
     16181                                                <TileMatrix>9</TileMatrix>
     16182                                                <MinTileRow>181</MinTileRow>
     16183                                                <MaxTileRow>182</MaxTileRow>
     16184                                                <MinTileCol>259</MinTileCol>
     16185                                                <MaxTileCol>260</MaxTileCol>
     16186                                        </TileMatrixLimits>
     16187                                </TileMatrixSetLimits>
     16188                        </TileMatrixSetLink>
     16189                </Layer>
     16190                <Layer>
     16191                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16192                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16193                        <ows:Keywords>
     16194                                <ows:Keyword>Photographies</ows:Keyword>
     16195                        </ows:Keywords>
     16196                        <ows:WGS84BoundingBox>
     16197                                <ows:LowerCorner>3.26916 45.5531</ows:LowerCorner>
     16198                                <ows:UpperCorner>3.56653 45.8063</ows:UpperCorner>
     16199                        </ows:WGS84BoundingBox>
     16200                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-01-39652702</ows:Identifier>
     16201                        <Style isDefault="true">
     16202                                <ows:Title>Données Brutes</ows:Title>
     16203                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16204                                <ows:Keywords>
     16205                                        <ows:Keyword>Défaut</ows:Keyword>
     16206                                </ows:Keywords>
     16207                                <ows:Identifier>normal</ows:Identifier>
     16208                                <LegendURL format="image/jpeg" height="200"
     16209                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16210                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16211                        </Style>
     16212                        <Format>image/jpeg</Format>
     16213                        <TileMatrixSetLink>
     16214                                <TileMatrixSet>PM</TileMatrixSet>
     16215                                <TileMatrixSetLimits>
     16216                                        <TileMatrixLimits>
     16217                                                <TileMatrix>0</TileMatrix>
     16218                                                <MinTileRow>0</MinTileRow>
     16219                                                <MaxTileRow>0</MaxTileRow>
     16220                                                <MinTileCol>0</MinTileCol>
     16221                                                <MaxTileCol>0</MaxTileCol>
     16222                                        </TileMatrixLimits>
     16223                                        <TileMatrixLimits>
     16224                                                <TileMatrix>1</TileMatrix>
     16225                                                <MinTileRow>0</MinTileRow>
     16226                                                <MaxTileRow>0</MaxTileRow>
     16227                                                <MinTileCol>1</MinTileCol>
     16228                                                <MaxTileCol>1</MaxTileCol>
     16229                                        </TileMatrixLimits>
     16230                                        <TileMatrixLimits>
     16231                                                <TileMatrix>10</TileMatrix>
     16232                                                <MinTileRow>365</MinTileRow>
     16233                                                <MaxTileRow>366</MaxTileRow>
     16234                                                <MinTileCol>521</MinTileCol>
     16235                                                <MaxTileCol>522</MaxTileCol>
     16236                                        </TileMatrixLimits>
     16237                                        <TileMatrixLimits>
     16238                                                <TileMatrix>11</TileMatrix>
     16239                                                <MinTileRow>730</MinTileRow>
     16240                                                <MaxTileRow>732</MaxTileRow>
     16241                                                <MinTileCol>1042</MinTileCol>
     16242                                                <MaxTileCol>1044</MaxTileCol>
     16243                                        </TileMatrixLimits>
     16244                                        <TileMatrixLimits>
     16245                                                <TileMatrix>12</TileMatrix>
     16246                                                <MinTileRow>1460</MinTileRow>
     16247                                                <MaxTileRow>1464</MaxTileRow>
     16248                                                <MinTileCol>2085</MinTileCol>
     16249                                                <MaxTileCol>2088</MaxTileCol>
     16250                                        </TileMatrixLimits>
     16251                                        <TileMatrixLimits>
     16252                                                <TileMatrix>13</TileMatrix>
     16253                                                <MinTileRow>2920</MinTileRow>
     16254                                                <MaxTileRow>2928</MaxTileRow>
     16255                                                <MinTileCol>4170</MinTileCol>
     16256                                                <MaxTileCol>4177</MaxTileCol>
     16257                                        </TileMatrixLimits>
     16258                                        <TileMatrixLimits>
     16259                                                <TileMatrix>14</TileMatrix>
     16260                                                <MinTileRow>5841</MinTileRow>
     16261                                                <MaxTileRow>5857</MaxTileRow>
     16262                                                <MinTileCol>8340</MinTileCol>
     16263                                                <MaxTileCol>8354</MaxTileCol>
     16264                                        </TileMatrixLimits>
     16265                                        <TileMatrixLimits>
     16266                                                <TileMatrix>15</TileMatrix>
     16267                                                <MinTileRow>11682</MinTileRow>
     16268                                                <MaxTileRow>11715</MaxTileRow>
     16269                                                <MinTileCol>16681</MinTileCol>
     16270                                                <MaxTileCol>16708</MaxTileCol>
     16271                                        </TileMatrixLimits>
     16272                                        <TileMatrixLimits>
     16273                                                <TileMatrix>16</TileMatrix>
     16274                                                <MinTileRow>23365</MinTileRow>
     16275                                                <MaxTileRow>23431</MaxTileRow>
     16276                                                <MinTileCol>33363</MinTileCol>
     16277                                                <MaxTileCol>33417</MaxTileCol>
     16278                                        </TileMatrixLimits>
     16279                                        <TileMatrixLimits>
     16280                                                <TileMatrix>17</TileMatrix>
     16281                                                <MinTileRow>46731</MinTileRow>
     16282                                                <MaxTileRow>46863</MaxTileRow>
     16283                                                <MinTileCol>66726</MinTileCol>
     16284                                                <MaxTileCol>66834</MaxTileCol>
     16285                                        </TileMatrixLimits>
     16286                                        <TileMatrixLimits>
     16287                                                <TileMatrix>18</TileMatrix>
     16288                                                <MinTileRow>93463</MinTileRow>
     16289                                                <MaxTileRow>93727</MaxTileRow>
     16290                                                <MinTileCol>133452</MinTileCol>
     16291                                                <MaxTileCol>133669</MaxTileCol>
     16292                                        </TileMatrixLimits>
     16293                                        <TileMatrixLimits>
     16294                                                <TileMatrix>2</TileMatrix>
     16295                                                <MinTileRow>1</MinTileRow>
     16296                                                <MaxTileRow>1</MaxTileRow>
     16297                                                <MinTileCol>2</MinTileCol>
     16298                                                <MaxTileCol>2</MaxTileCol>
     16299                                        </TileMatrixLimits>
     16300                                        <TileMatrixLimits>
     16301                                                <TileMatrix>3</TileMatrix>
     16302                                                <MinTileRow>2</MinTileRow>
     16303                                                <MaxTileRow>2</MaxTileRow>
     16304                                                <MinTileCol>4</MinTileCol>
     16305                                                <MaxTileCol>4</MaxTileCol>
     16306                                        </TileMatrixLimits>
     16307                                        <TileMatrixLimits>
     16308                                                <TileMatrix>4</TileMatrix>
     16309                                                <MinTileRow>5</MinTileRow>
     16310                                                <MaxTileRow>5</MaxTileRow>
     16311                                                <MinTileCol>8</MinTileCol>
     16312                                                <MaxTileCol>8</MaxTileCol>
     16313                                        </TileMatrixLimits>
     16314                                        <TileMatrixLimits>
     16315                                                <TileMatrix>5</TileMatrix>
     16316                                                <MinTileRow>11</MinTileRow>
     16317                                                <MaxTileRow>11</MaxTileRow>
     16318                                                <MinTileCol>16</MinTileCol>
     16319                                                <MaxTileCol>16</MaxTileCol>
     16320                                        </TileMatrixLimits>
     16321                                        <TileMatrixLimits>
     16322                                                <TileMatrix>6</TileMatrix>
     16323                                                <MinTileRow>22</MinTileRow>
     16324                                                <MaxTileRow>22</MaxTileRow>
     16325                                                <MinTileCol>32</MinTileCol>
     16326                                                <MaxTileCol>32</MaxTileCol>
     16327                                        </TileMatrixLimits>
     16328                                        <TileMatrixLimits>
     16329                                                <TileMatrix>7</TileMatrix>
     16330                                                <MinTileRow>45</MinTileRow>
     16331                                                <MaxTileRow>45</MaxTileRow>
     16332                                                <MinTileCol>65</MinTileCol>
     16333                                                <MaxTileCol>65</MaxTileCol>
     16334                                        </TileMatrixLimits>
     16335                                        <TileMatrixLimits>
     16336                                                <TileMatrix>8</TileMatrix>
     16337                                                <MinTileRow>91</MinTileRow>
     16338                                                <MaxTileRow>91</MaxTileRow>
     16339                                                <MinTileCol>130</MinTileCol>
     16340                                                <MaxTileCol>130</MaxTileCol>
     16341                                        </TileMatrixLimits>
     16342                                        <TileMatrixLimits>
     16343                                                <TileMatrix>9</TileMatrix>
     16344                                                <MinTileRow>182</MinTileRow>
     16345                                                <MaxTileRow>183</MaxTileRow>
     16346                                                <MinTileCol>260</MinTileCol>
     16347                                                <MaxTileCol>261</MaxTileCol>
     16348                                        </TileMatrixLimits>
     16349                                </TileMatrixSetLimits>
     16350                        </TileMatrixSetLink>
     16351                </Layer>
     16352                <Layer>
     16353                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16354                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16355                        <ows:Keywords>
     16356                                <ows:Keyword>Photographies</ows:Keyword>
     16357                        </ows:Keywords>
     16358                        <ows:WGS84BoundingBox>
     16359                                <ows:LowerCorner>3.61325 46.5327</ows:LowerCorner>
     16360                                <ows:UpperCorner>3.87724 46.7235</ows:UpperCorner>
     16361                        </ows:WGS84BoundingBox>
     16362                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-09-38886576</ows:Identifier>
     16363                        <Style isDefault="true">
     16364                                <ows:Title>Données Brutes</ows:Title>
     16365                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16366                                <ows:Keywords>
     16367                                        <ows:Keyword>Défaut</ows:Keyword>
     16368                                </ows:Keywords>
     16369                                <ows:Identifier>normal</ows:Identifier>
     16370                                <LegendURL format="image/jpeg" height="200"
     16371                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16372                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16373                        </Style>
     16374                        <Format>image/jpeg</Format>
     16375                        <TileMatrixSetLink>
     16376                                <TileMatrixSet>PM</TileMatrixSet>
     16377                                <TileMatrixSetLimits>
     16378                                        <TileMatrixLimits>
     16379                                                <TileMatrix>0</TileMatrix>
     16380                                                <MinTileRow>0</MinTileRow>
     16381                                                <MaxTileRow>0</MaxTileRow>
     16382                                                <MinTileCol>0</MinTileCol>
     16383                                                <MaxTileCol>0</MaxTileCol>
     16384                                        </TileMatrixLimits>
     16385                                        <TileMatrixLimits>
     16386                                                <TileMatrix>1</TileMatrix>
     16387                                                <MinTileRow>0</MinTileRow>
     16388                                                <MaxTileRow>0</MaxTileRow>
     16389                                                <MinTileCol>1</MinTileCol>
     16390                                                <MaxTileCol>1</MaxTileCol>
     16391                                        </TileMatrixLimits>
     16392                                        <TileMatrixLimits>
     16393                                                <TileMatrix>10</TileMatrix>
     16394                                                <MinTileRow>361</MinTileRow>
     16395                                                <MaxTileRow>362</MaxTileRow>
     16396                                                <MinTileCol>522</MinTileCol>
     16397                                                <MaxTileCol>523</MaxTileCol>
     16398                                        </TileMatrixLimits>
     16399                                        <TileMatrixLimits>
     16400                                                <TileMatrix>11</TileMatrix>
     16401                                                <MinTileRow>722</MinTileRow>
     16402                                                <MaxTileRow>724</MaxTileRow>
     16403                                                <MinTileCol>1044</MinTileCol>
     16404                                                <MaxTileCol>1046</MaxTileCol>
     16405                                        </TileMatrixLimits>
     16406                                        <TileMatrixLimits>
     16407                                                <TileMatrix>12</TileMatrix>
     16408                                                <MinTileRow>1445</MinTileRow>
     16409                                                <MaxTileRow>1448</MaxTileRow>
     16410                                                <MinTileCol>2089</MinTileCol>
     16411                                                <MaxTileCol>2092</MaxTileCol>
     16412                                        </TileMatrixLimits>
     16413                                        <TileMatrixLimits>
     16414                                                <TileMatrix>13</TileMatrix>
     16415                                                <MinTileRow>2890</MinTileRow>
     16416                                                <MaxTileRow>2896</MaxTileRow>
     16417                                                <MinTileCol>4178</MinTileCol>
     16418                                                <MaxTileCol>4184</MaxTileCol>
     16419                                        </TileMatrixLimits>
     16420                                        <TileMatrixLimits>
     16421                                                <TileMatrix>14</TileMatrix>
     16422                                                <MinTileRow>5781</MinTileRow>
     16423                                                <MaxTileRow>5793</MaxTileRow>
     16424                                                <MinTileCol>8356</MinTileCol>
     16425                                                <MaxTileCol>8368</MaxTileCol>
     16426                                        </TileMatrixLimits>
     16427                                        <TileMatrixLimits>
     16428                                                <TileMatrix>15</TileMatrix>
     16429                                                <MinTileRow>11562</MinTileRow>
     16430                                                <MaxTileRow>11587</MaxTileRow>
     16431                                                <MinTileCol>16712</MinTileCol>
     16432                                                <MaxTileCol>16736</MaxTileCol>
     16433                                        </TileMatrixLimits>
     16434                                        <TileMatrixLimits>
     16435                                                <TileMatrix>16</TileMatrix>
     16436                                                <MinTileRow>23124</MinTileRow>
     16437                                                <MaxTileRow>23174</MaxTileRow>
     16438                                                <MinTileCol>33425</MinTileCol>
     16439                                                <MaxTileCol>33473</MaxTileCol>
     16440                                        </TileMatrixLimits>
     16441                                        <TileMatrixLimits>
     16442                                                <TileMatrix>17</TileMatrix>
     16443                                                <MinTileRow>46248</MinTileRow>
     16444                                                <MaxTileRow>46349</MaxTileRow>
     16445                                                <MinTileCol>66851</MinTileCol>
     16446                                                <MaxTileCol>66946</MaxTileCol>
     16447                                        </TileMatrixLimits>
     16448                                        <TileMatrixLimits>
     16449                                                <TileMatrix>18</TileMatrix>
     16450                                                <MinTileRow>92497</MinTileRow>
     16451                                                <MaxTileRow>92699</MaxTileRow>
     16452                                                <MinTileCol>133702</MinTileCol>
     16453                                                <MaxTileCol>133893</MaxTileCol>
     16454                                        </TileMatrixLimits>
     16455                                        <TileMatrixLimits>
     16456                                                <TileMatrix>2</TileMatrix>
     16457                                                <MinTileRow>1</MinTileRow>
     16458                                                <MaxTileRow>1</MaxTileRow>
     16459                                                <MinTileCol>2</MinTileCol>
     16460                                                <MaxTileCol>2</MaxTileCol>
     16461                                        </TileMatrixLimits>
     16462                                        <TileMatrixLimits>
     16463                                                <TileMatrix>3</TileMatrix>
     16464                                                <MinTileRow>2</MinTileRow>
     16465                                                <MaxTileRow>2</MaxTileRow>
     16466                                                <MinTileCol>4</MinTileCol>
     16467                                                <MaxTileCol>4</MaxTileCol>
     16468                                        </TileMatrixLimits>
     16469                                        <TileMatrixLimits>
     16470                                                <TileMatrix>4</TileMatrix>
     16471                                                <MinTileRow>5</MinTileRow>
     16472                                                <MaxTileRow>5</MaxTileRow>
     16473                                                <MinTileCol>8</MinTileCol>
     16474                                                <MaxTileCol>8</MaxTileCol>
     16475                                        </TileMatrixLimits>
     16476                                        <TileMatrixLimits>
     16477                                                <TileMatrix>5</TileMatrix>
     16478                                                <MinTileRow>11</MinTileRow>
     16479                                                <MaxTileRow>11</MaxTileRow>
     16480                                                <MinTileCol>16</MinTileCol>
     16481                                                <MaxTileCol>16</MaxTileCol>
     16482                                        </TileMatrixLimits>
     16483                                        <TileMatrixLimits>
     16484                                                <TileMatrix>6</TileMatrix>
     16485                                                <MinTileRow>22</MinTileRow>
     16486                                                <MaxTileRow>22</MaxTileRow>
     16487                                                <MinTileCol>32</MinTileCol>
     16488                                                <MaxTileCol>32</MaxTileCol>
     16489                                        </TileMatrixLimits>
     16490                                        <TileMatrixLimits>
     16491                                                <TileMatrix>7</TileMatrix>
     16492                                                <MinTileRow>45</MinTileRow>
     16493                                                <MaxTileRow>45</MaxTileRow>
     16494                                                <MinTileCol>65</MinTileCol>
     16495                                                <MaxTileCol>65</MaxTileCol>
     16496                                        </TileMatrixLimits>
     16497                                        <TileMatrixLimits>
     16498                                                <TileMatrix>8</TileMatrix>
     16499                                                <MinTileRow>90</MinTileRow>
     16500                                                <MaxTileRow>90</MaxTileRow>
     16501                                                <MinTileCol>130</MinTileCol>
     16502                                                <MaxTileCol>130</MaxTileCol>
     16503                                        </TileMatrixLimits>
     16504                                        <TileMatrixLimits>
     16505                                                <TileMatrix>9</TileMatrix>
     16506                                                <MinTileRow>180</MinTileRow>
     16507                                                <MaxTileRow>181</MaxTileRow>
     16508                                                <MinTileCol>261</MinTileCol>
     16509                                                <MaxTileCol>261</MaxTileCol>
     16510                                        </TileMatrixLimits>
     16511                                </TileMatrixSetLimits>
     16512                        </TileMatrixSetLink>
     16513                </Layer>
     16514                <Layer>
     16515                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16516                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16517                        <ows:Keywords>
     16518                                <ows:Keyword>Photographies</ows:Keyword>
     16519                        </ows:Keywords>
     16520                        <ows:WGS84BoundingBox>
     16521                                <ows:LowerCorner>2.27173 46.2996</ows:LowerCorner>
     16522                                <ows:UpperCorner>2.3504 46.3541</ows:UpperCorner>
     16523                        </ows:WGS84BoundingBox>
     16524                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-13-40119200</ows:Identifier>
     16525                        <Style isDefault="true">
     16526                                <ows:Title>Données Brutes</ows:Title>
     16527                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16528                                <ows:Keywords>
     16529                                        <ows:Keyword>Défaut</ows:Keyword>
     16530                                </ows:Keywords>
     16531                                <ows:Identifier>normal</ows:Identifier>
     16532                                <LegendURL format="image/jpeg" height="200"
     16533                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16534                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16535                        </Style>
     16536                        <Format>image/jpeg</Format>
     16537                        <TileMatrixSetLink>
     16538                                <TileMatrixSet>PM</TileMatrixSet>
     16539                                <TileMatrixSetLimits>
     16540                                        <TileMatrixLimits>
     16541                                                <TileMatrix>0</TileMatrix>
     16542                                                <MinTileRow>0</MinTileRow>
     16543                                                <MaxTileRow>0</MaxTileRow>
     16544                                                <MinTileCol>0</MinTileCol>
     16545                                                <MaxTileCol>0</MaxTileCol>
     16546                                        </TileMatrixLimits>
     16547                                        <TileMatrixLimits>
     16548                                                <TileMatrix>1</TileMatrix>
     16549                                                <MinTileRow>0</MinTileRow>
     16550                                                <MaxTileRow>0</MaxTileRow>
     16551                                                <MinTileCol>1</MinTileCol>
     16552                                                <MaxTileCol>1</MaxTileCol>
     16553                                        </TileMatrixLimits>
     16554                                        <TileMatrixLimits>
     16555                                                <TileMatrix>10</TileMatrix>
     16556                                                <MinTileRow>362</MinTileRow>
     16557                                                <MaxTileRow>363</MaxTileRow>
     16558                                                <MinTileCol>518</MinTileCol>
     16559                                                <MaxTileCol>518</MaxTileCol>
     16560                                        </TileMatrixLimits>
     16561                                        <TileMatrixLimits>
     16562                                                <TileMatrix>11</TileMatrix>
     16563                                                <MinTileRow>725</MinTileRow>
     16564                                                <MaxTileRow>726</MaxTileRow>
     16565                                                <MinTileCol>1036</MinTileCol>
     16566                                                <MaxTileCol>1037</MaxTileCol>
     16567                                        </TileMatrixLimits>
     16568                                        <TileMatrixLimits>
     16569                                                <TileMatrix>12</TileMatrix>
     16570                                                <MinTileRow>1451</MinTileRow>
     16571                                                <MaxTileRow>1452</MaxTileRow>
     16572                                                <MinTileCol>2073</MinTileCol>
     16573                                                <MaxTileCol>2074</MaxTileCol>
     16574                                        </TileMatrixLimits>
     16575                                        <TileMatrixLimits>
     16576                                                <TileMatrix>13</TileMatrix>
     16577                                                <MinTileRow>2902</MinTileRow>
     16578                                                <MaxTileRow>2904</MaxTileRow>
     16579                                                <MinTileCol>4147</MinTileCol>
     16580                                                <MaxTileCol>4149</MaxTileCol>
     16581                                        </TileMatrixLimits>
     16582                                        <TileMatrixLimits>
     16583                                                <TileMatrix>14</TileMatrix>
     16584                                                <MinTileRow>5805</MinTileRow>
     16585                                                <MaxTileRow>5809</MaxTileRow>
     16586                                                <MinTileCol>8295</MinTileCol>
     16587                                                <MaxTileCol>8298</MaxTileCol>
     16588                                        </TileMatrixLimits>
     16589                                        <TileMatrixLimits>
     16590                                                <TileMatrix>15</TileMatrix>
     16591                                                <MinTileRow>11611</MinTileRow>
     16592                                                <MaxTileRow>11618</MaxTileRow>
     16593                                                <MinTileCol>16590</MinTileCol>
     16594                                                <MaxTileCol>16597</MaxTileCol>
     16595                                        </TileMatrixLimits>
     16596                                        <TileMatrixLimits>
     16597                                                <TileMatrix>16</TileMatrix>
     16598                                                <MinTileRow>23222</MinTileRow>
     16599                                                <MaxTileRow>23236</MaxTileRow>
     16600                                                <MinTileCol>33181</MinTileCol>
     16601                                                <MaxTileCol>33195</MaxTileCol>
     16602                                        </TileMatrixLimits>
     16603                                        <TileMatrixLimits>
     16604                                                <TileMatrix>17</TileMatrix>
     16605                                                <MinTileRow>46444</MinTileRow>
     16606                                                <MaxTileRow>46472</MaxTileRow>
     16607                                                <MinTileCol>66363</MinTileCol>
     16608                                                <MaxTileCol>66391</MaxTileCol>
     16609                                        </TileMatrixLimits>
     16610                                        <TileMatrixLimits>
     16611                                                <TileMatrix>18</TileMatrix>
     16612                                                <MinTileRow>92888</MinTileRow>
     16613                                                <MaxTileRow>92945</MaxTileRow>
     16614                                                <MinTileCol>132726</MinTileCol>
     16615                                                <MaxTileCol>132783</MaxTileCol>
     16616                                        </TileMatrixLimits>
     16617                                        <TileMatrixLimits>
     16618                                                <TileMatrix>2</TileMatrix>
     16619                                                <MinTileRow>1</MinTileRow>
     16620                                                <MaxTileRow>1</MaxTileRow>
     16621                                                <MinTileCol>2</MinTileCol>
     16622                                                <MaxTileCol>2</MaxTileCol>
     16623                                        </TileMatrixLimits>
     16624                                        <TileMatrixLimits>
     16625                                                <TileMatrix>3</TileMatrix>
     16626                                                <MinTileRow>2</MinTileRow>
     16627                                                <MaxTileRow>2</MaxTileRow>
     16628                                                <MinTileCol>4</MinTileCol>
     16629                                                <MaxTileCol>4</MaxTileCol>
     16630                                        </TileMatrixLimits>
     16631                                        <TileMatrixLimits>
     16632                                                <TileMatrix>4</TileMatrix>
     16633                                                <MinTileRow>5</MinTileRow>
     16634                                                <MaxTileRow>5</MaxTileRow>
     16635                                                <MinTileCol>8</MinTileCol>
     16636                                                <MaxTileCol>8</MaxTileCol>
     16637                                        </TileMatrixLimits>
     16638                                        <TileMatrixLimits>
     16639                                                <TileMatrix>5</TileMatrix>
     16640                                                <MinTileRow>11</MinTileRow>
     16641                                                <MaxTileRow>11</MaxTileRow>
     16642                                                <MinTileCol>16</MinTileCol>
     16643                                                <MaxTileCol>16</MaxTileCol>
     16644                                        </TileMatrixLimits>
     16645                                        <TileMatrixLimits>
     16646                                                <TileMatrix>6</TileMatrix>
     16647                                                <MinTileRow>22</MinTileRow>
     16648                                                <MaxTileRow>22</MaxTileRow>
     16649                                                <MinTileCol>32</MinTileCol>
     16650                                                <MaxTileCol>32</MaxTileCol>
     16651                                        </TileMatrixLimits>
     16652                                        <TileMatrixLimits>
     16653                                                <TileMatrix>7</TileMatrix>
     16654                                                <MinTileRow>45</MinTileRow>
     16655                                                <MaxTileRow>45</MaxTileRow>
     16656                                                <MinTileCol>64</MinTileCol>
     16657                                                <MaxTileCol>64</MaxTileCol>
     16658                                        </TileMatrixLimits>
     16659                                        <TileMatrixLimits>
     16660                                                <TileMatrix>8</TileMatrix>
     16661                                                <MinTileRow>90</MinTileRow>
     16662                                                <MaxTileRow>90</MaxTileRow>
     16663                                                <MinTileCol>129</MinTileCol>
     16664                                                <MaxTileCol>129</MaxTileCol>
     16665                                        </TileMatrixLimits>
     16666                                        <TileMatrixLimits>
     16667                                                <TileMatrix>9</TileMatrix>
     16668                                                <MinTileRow>181</MinTileRow>
     16669                                                <MaxTileRow>181</MaxTileRow>
     16670                                                <MinTileCol>259</MinTileCol>
     16671                                                <MaxTileCol>259</MaxTileCol>
     16672                                        </TileMatrixLimits>
     16673                                </TileMatrixSetLimits>
     16674                        </TileMatrixSetLink>
     16675                </Layer>
     16676                <Layer>
     16677                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16678                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16679                        <ows:Keywords>
     16680                                <ows:Keyword>Photographies</ows:Keyword>
     16681                        </ows:Keywords>
     16682                        <ows:WGS84BoundingBox>
     16683                                <ows:LowerCorner>3.18156 46.2018</ows:LowerCorner>
     16684                                <ows:UpperCorner>3.48326 46.5899</ows:UpperCorner>
     16685                        </ows:WGS84BoundingBox>
     16686                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-22-38926326</ows:Identifier>
     16687                        <Style isDefault="true">
     16688                                <ows:Title>Données Brutes</ows:Title>
     16689                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16690                                <ows:Keywords>
     16691                                        <ows:Keyword>Défaut</ows:Keyword>
     16692                                </ows:Keywords>
     16693                                <ows:Identifier>normal</ows:Identifier>
     16694                                <LegendURL format="image/jpeg" height="200"
     16695                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16696                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16697                        </Style>
     16698                        <Format>image/jpeg</Format>
     16699                        <TileMatrixSetLink>
     16700                                <TileMatrixSet>PM</TileMatrixSet>
     16701                                <TileMatrixSetLimits>
     16702                                        <TileMatrixLimits>
     16703                                                <TileMatrix>0</TileMatrix>
     16704                                                <MinTileRow>0</MinTileRow>
     16705                                                <MaxTileRow>0</MaxTileRow>
     16706                                                <MinTileCol>0</MinTileCol>
     16707                                                <MaxTileCol>0</MaxTileCol>
     16708                                        </TileMatrixLimits>
     16709                                        <TileMatrixLimits>
     16710                                                <TileMatrix>1</TileMatrix>
     16711                                                <MinTileRow>0</MinTileRow>
     16712                                                <MaxTileRow>0</MaxTileRow>
     16713                                                <MinTileCol>1</MinTileCol>
     16714                                                <MaxTileCol>1</MaxTileCol>
     16715                                        </TileMatrixLimits>
     16716                                        <TileMatrixLimits>
     16717                                                <TileMatrix>10</TileMatrix>
     16718                                                <MinTileRow>361</MinTileRow>
     16719                                                <MaxTileRow>363</MaxTileRow>
     16720                                                <MinTileCol>521</MinTileCol>
     16721                                                <MaxTileCol>521</MaxTileCol>
     16722                                        </TileMatrixLimits>
     16723                                        <TileMatrixLimits>
     16724                                                <TileMatrix>11</TileMatrix>
     16725                                                <MinTileRow>723</MinTileRow>
     16726                                                <MaxTileRow>726</MaxTileRow>
     16727                                                <MinTileCol>1042</MinTileCol>
     16728                                                <MaxTileCol>1043</MaxTileCol>
     16729                                        </TileMatrixLimits>
     16730                                        <TileMatrixLimits>
     16731                                                <TileMatrix>12</TileMatrix>
     16732                                                <MinTileRow>1447</MinTileRow>
     16733                                                <MaxTileRow>1453</MaxTileRow>
     16734                                                <MinTileCol>2084</MinTileCol>
     16735                                                <MaxTileCol>2087</MaxTileCol>
     16736                                        </TileMatrixLimits>
     16737                                        <TileMatrixLimits>
     16738                                                <TileMatrix>13</TileMatrix>
     16739                                                <MinTileRow>2894</MinTileRow>
     16740                                                <MaxTileRow>2907</MaxTileRow>
     16741                                                <MinTileCol>4168</MinTileCol>
     16742                                                <MaxTileCol>4175</MaxTileCol>
     16743                                        </TileMatrixLimits>
     16744                                        <TileMatrixLimits>
     16745                                                <TileMatrix>14</TileMatrix>
     16746                                                <MinTileRow>5789</MinTileRow>
     16747                                                <MaxTileRow>5815</MaxTileRow>
     16748                                                <MinTileCol>8336</MinTileCol>
     16749                                                <MaxTileCol>8350</MaxTileCol>
     16750                                        </TileMatrixLimits>
     16751                                        <TileMatrixLimits>
     16752                                                <TileMatrix>15</TileMatrix>
     16753                                                <MinTileRow>11579</MinTileRow>
     16754                                                <MaxTileRow>11631</MaxTileRow>
     16755                                                <MinTileCol>16673</MinTileCol>
     16756                                                <MaxTileCol>16701</MaxTileCol>
     16757                                        </TileMatrixLimits>
     16758                                        <TileMatrixLimits>
     16759                                                <TileMatrix>16</TileMatrix>
     16760                                                <MinTileRow>23159</MinTileRow>
     16761                                                <MaxTileRow>23262</MaxTileRow>
     16762                                                <MinTileCol>33347</MinTileCol>
     16763                                                <MaxTileCol>33402</MaxTileCol>
     16764                                        </TileMatrixLimits>
     16765                                        <TileMatrixLimits>
     16766                                                <TileMatrix>17</TileMatrix>
     16767                                                <MinTileRow>46319</MinTileRow>
     16768                                                <MaxTileRow>46524</MaxTileRow>
     16769                                                <MinTileCol>66694</MinTileCol>
     16770                                                <MaxTileCol>66804</MaxTileCol>
     16771                                        </TileMatrixLimits>
     16772                                        <TileMatrixLimits>
     16773                                                <TileMatrix>18</TileMatrix>
     16774                                                <MinTileRow>92639</MinTileRow>
     16775                                                <MaxTileRow>93048</MaxTileRow>
     16776                                                <MinTileCol>133388</MinTileCol>
     16777                                                <MaxTileCol>133608</MaxTileCol>
     16778                                        </TileMatrixLimits>
     16779                                        <TileMatrixLimits>
     16780                                                <TileMatrix>2</TileMatrix>
     16781                                                <MinTileRow>1</MinTileRow>
     16782                                                <MaxTileRow>1</MaxTileRow>
     16783                                                <MinTileCol>2</MinTileCol>
     16784                                                <MaxTileCol>2</MaxTileCol>
     16785                                        </TileMatrixLimits>
     16786                                        <TileMatrixLimits>
     16787                                                <TileMatrix>3</TileMatrix>
     16788                                                <MinTileRow>2</MinTileRow>
     16789                                                <MaxTileRow>2</MaxTileRow>
     16790                                                <MinTileCol>4</MinTileCol>
     16791                                                <MaxTileCol>4</MaxTileCol>
     16792                                        </TileMatrixLimits>
     16793                                        <TileMatrixLimits>
     16794                                                <TileMatrix>4</TileMatrix>
     16795                                                <MinTileRow>5</MinTileRow>
     16796                                                <MaxTileRow>5</MaxTileRow>
     16797                                                <MinTileCol>8</MinTileCol>
     16798                                                <MaxTileCol>8</MaxTileCol>
     16799                                        </TileMatrixLimits>
     16800                                        <TileMatrixLimits>
     16801                                                <TileMatrix>5</TileMatrix>
     16802                                                <MinTileRow>11</MinTileRow>
     16803                                                <MaxTileRow>11</MaxTileRow>
     16804                                                <MinTileCol>16</MinTileCol>
     16805                                                <MaxTileCol>16</MaxTileCol>
     16806                                        </TileMatrixLimits>
     16807                                        <TileMatrixLimits>
     16808                                                <TileMatrix>6</TileMatrix>
     16809                                                <MinTileRow>22</MinTileRow>
     16810                                                <MaxTileRow>22</MaxTileRow>
     16811                                                <MinTileCol>32</MinTileCol>
     16812                                                <MaxTileCol>32</MaxTileCol>
     16813                                        </TileMatrixLimits>
     16814                                        <TileMatrixLimits>
     16815                                                <TileMatrix>7</TileMatrix>
     16816                                                <MinTileRow>45</MinTileRow>
     16817                                                <MaxTileRow>45</MaxTileRow>
     16818                                                <MinTileCol>65</MinTileCol>
     16819                                                <MaxTileCol>65</MaxTileCol>
     16820                                        </TileMatrixLimits>
     16821                                        <TileMatrixLimits>
     16822                                                <TileMatrix>8</TileMatrix>
     16823                                                <MinTileRow>90</MinTileRow>
     16824                                                <MaxTileRow>90</MaxTileRow>
     16825                                                <MinTileCol>130</MinTileCol>
     16826                                                <MaxTileCol>130</MaxTileCol>
     16827                                        </TileMatrixLimits>
     16828                                        <TileMatrixLimits>
     16829                                                <TileMatrix>9</TileMatrix>
     16830                                                <MinTileRow>180</MinTileRow>
     16831                                                <MaxTileRow>181</MaxTileRow>
     16832                                                <MinTileCol>260</MinTileCol>
     16833                                                <MaxTileCol>260</MaxTileCol>
     16834                                        </TileMatrixLimits>
     16835                                </TileMatrixSetLimits>
     16836                        </TileMatrixSetLink>
     16837                </Layer>
     16838                <Layer>
     16839                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     16840                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     16841                        <ows:Keywords>
     16842                                <ows:Keyword>Photographies</ows:Keyword>
     16843                        </ows:Keywords>
     16844                        <ows:WGS84BoundingBox>
     16845                                <ows:LowerCorner>2.7259 46.2824</ows:LowerCorner>
     16846                                <ows:UpperCorner>3.02609 46.5168</ows:UpperCorner>
     16847                        </ows:WGS84BoundingBox>
     16848                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-26-40018699</ows:Identifier>
     16849                        <Style isDefault="true">
     16850                                <ows:Title>Données Brutes</ows:Title>
     16851                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     16852                                <ows:Keywords>
     16853                                        <ows:Keyword>Défaut</ows:Keyword>
     16854                                </ows:Keywords>
     16855                                <ows:Identifier>normal</ows:Identifier>
     16856                                <LegendURL format="image/jpeg" height="200"
     16857                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     16858                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     16859                        </Style>
     16860                        <Format>image/jpeg</Format>
     16861                        <TileMatrixSetLink>
     16862                                <TileMatrixSet>PM</TileMatrixSet>
     16863                                <TileMatrixSetLimits>
     16864                                        <TileMatrixLimits>
     16865                                                <TileMatrix>0</TileMatrix>
     16866                                                <MinTileRow>0</MinTileRow>
     16867                                                <MaxTileRow>0</MaxTileRow>
     16868                                                <MinTileCol>0</MinTileCol>
     16869                                                <MaxTileCol>0</MaxTileCol>
     16870                                        </TileMatrixLimits>
     16871                                        <TileMatrixLimits>
     16872                                                <TileMatrix>1</TileMatrix>
     16873                                                <MinTileRow>0</MinTileRow>
     16874                                                <MaxTileRow>0</MaxTileRow>
     16875                                                <MinTileCol>1</MinTileCol>
     16876                                                <MaxTileCol>1</MaxTileCol>
     16877                                        </TileMatrixLimits>
     16878                                        <TileMatrixLimits>
     16879                                                <TileMatrix>10</TileMatrix>
     16880                                                <MinTileRow>362</MinTileRow>
     16881                                                <MaxTileRow>363</MaxTileRow>
     16882                                                <MinTileCol>519</MinTileCol>
     16883                                                <MaxTileCol>520</MaxTileCol>
     16884                                        </TileMatrixLimits>
     16885                                        <TileMatrixLimits>
     16886                                                <TileMatrix>11</TileMatrix>
     16887                                                <MinTileRow>724</MinTileRow>
     16888                                                <MaxTileRow>726</MaxTileRow>
     16889                                                <MinTileCol>1039</MinTileCol>
     16890                                                <MaxTileCol>1041</MaxTileCol>
     16891                                        </TileMatrixLimits>
     16892                                        <TileMatrixLimits>
     16893                                                <TileMatrix>12</TileMatrix>
     16894                                                <MinTileRow>1448</MinTileRow>
     16895                                                <MaxTileRow>1452</MaxTileRow>
     16896                                                <MinTileCol>2079</MinTileCol>
     16897                                                <MaxTileCol>2082</MaxTileCol>
     16898                                        </TileMatrixLimits>
     16899                                        <TileMatrixLimits>
     16900                                                <TileMatrix>13</TileMatrix>
     16901                                                <MinTileRow>2897</MinTileRow>
     16902                                                <MaxTileRow>2905</MaxTileRow>
     16903                                                <MinTileCol>4158</MinTileCol>
     16904                                                <MaxTileCol>4164</MaxTileCol>
     16905                                        </TileMatrixLimits>
     16906                                        <TileMatrixLimits>
     16907                                                <TileMatrix>14</TileMatrix>
     16908                                                <MinTileRow>5794</MinTileRow>
     16909                                                <MaxTileRow>5810</MaxTileRow>
     16910                                                <MinTileCol>8316</MinTileCol>
     16911                                                <MaxTileCol>8329</MaxTileCol>
     16912                                        </TileMatrixLimits>
     16913                                        <TileMatrixLimits>
     16914                                                <TileMatrix>15</TileMatrix>
     16915                                                <MinTileRow>11589</MinTileRow>
     16916                                                <MaxTileRow>11620</MaxTileRow>
     16917                                                <MinTileCol>16632</MinTileCol>
     16918                                                <MaxTileCol>16659</MaxTileCol>
     16919                                        </TileMatrixLimits>
     16920                                        <TileMatrixLimits>
     16921                                                <TileMatrix>16</TileMatrix>
     16922                                                <MinTileRow>23179</MinTileRow>
     16923                                                <MaxTileRow>23240</MaxTileRow>
     16924                                                <MinTileCol>33264</MinTileCol>
     16925                                                <MaxTileCol>33318</MaxTileCol>
     16926                                        </TileMatrixLimits>
     16927                                        <TileMatrixLimits>
     16928                                                <TileMatrix>17</TileMatrix>
     16929                                                <MinTileRow>46358</MinTileRow>
     16930                                                <MaxTileRow>46481</MaxTileRow>
     16931                                                <MinTileCol>66528</MinTileCol>
     16932                                                <MaxTileCol>66637</MaxTileCol>
     16933                                        </TileMatrixLimits>
     16934                                        <TileMatrixLimits>
     16935                                                <TileMatrix>18</TileMatrix>
     16936                                                <MinTileRow>92716</MinTileRow>
     16937                                                <MaxTileRow>92963</MaxTileRow>
     16938                                                <MinTileCol>133056</MinTileCol>
     16939                                                <MaxTileCol>133275</MaxTileCol>
     16940                                        </TileMatrixLimits>
     16941                                        <TileMatrixLimits>
     16942                                                <TileMatrix>2</TileMatrix>
     16943                                                <MinTileRow>1</MinTileRow>
     16944                                                <MaxTileRow>1</MaxTileRow>
     16945                                                <MinTileCol>2</MinTileCol>
     16946                                                <MaxTileCol>2</MaxTileCol>
     16947                                        </TileMatrixLimits>
     16948                                        <TileMatrixLimits>
     16949                                                <TileMatrix>3</TileMatrix>
     16950                                                <MinTileRow>2</MinTileRow>
     16951                                                <MaxTileRow>2</MaxTileRow>
     16952                                                <MinTileCol>4</MinTileCol>
     16953                                                <MaxTileCol>4</MaxTileCol>
     16954                                        </TileMatrixLimits>
     16955                                        <TileMatrixLimits>
     16956                                                <TileMatrix>4</TileMatrix>
     16957                                                <MinTileRow>5</MinTileRow>
     16958                                                <MaxTileRow>5</MaxTileRow>
     16959                                                <MinTileCol>8</MinTileCol>
     16960                                                <MaxTileCol>8</MaxTileCol>
     16961                                        </TileMatrixLimits>
     16962                                        <TileMatrixLimits>
     16963                                                <TileMatrix>5</TileMatrix>
     16964                                                <MinTileRow>11</MinTileRow>
     16965                                                <MaxTileRow>11</MaxTileRow>
     16966                                                <MinTileCol>16</MinTileCol>
     16967                                                <MaxTileCol>16</MaxTileCol>
     16968                                        </TileMatrixLimits>
     16969                                        <TileMatrixLimits>
     16970                                                <TileMatrix>6</TileMatrix>
     16971                                                <MinTileRow>22</MinTileRow>
     16972                                                <MaxTileRow>22</MaxTileRow>
     16973                                                <MinTileCol>32</MinTileCol>
     16974                                                <MaxTileCol>32</MaxTileCol>
     16975                                        </TileMatrixLimits>
     16976                                        <TileMatrixLimits>
     16977                                                <TileMatrix>7</TileMatrix>
     16978                                                <MinTileRow>45</MinTileRow>
     16979                                                <MaxTileRow>45</MaxTileRow>
     16980                                                <MinTileCol>64</MinTileCol>
     16981                                                <MaxTileCol>65</MaxTileCol>
     16982                                        </TileMatrixLimits>
     16983                                        <TileMatrixLimits>
     16984                                                <TileMatrix>8</TileMatrix>
     16985                                                <MinTileRow>90</MinTileRow>
     16986                                                <MaxTileRow>90</MaxTileRow>
     16987                                                <MinTileCol>129</MinTileCol>
     16988                                                <MaxTileCol>130</MaxTileCol>
     16989                                        </TileMatrixLimits>
     16990                                        <TileMatrixLimits>
     16991                                                <TileMatrix>9</TileMatrix>
     16992                                                <MinTileRow>181</MinTileRow>
     16993                                                <MaxTileRow>181</MaxTileRow>
     16994                                                <MinTileCol>259</MinTileCol>
     16995                                                <MaxTileCol>260</MaxTileCol>
     16996                                        </TileMatrixLimits>
     16997                                </TileMatrixSetLimits>
     16998                        </TileMatrixSetLink>
     16999                </Layer>
     17000                <Layer>
     17001                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17002                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17003                        <ows:Keywords>
     17004                                <ows:Keyword>Photographies</ows:Keyword>
     17005                        </ows:Keywords>
     17006                        <ows:WGS84BoundingBox>
     17007                                <ows:LowerCorner>2.44143 46.2015</ows:LowerCorner>
     17008                                <ows:UpperCorner>2.74062 46.2926</ows:UpperCorner>
     17009                        </ows:WGS84BoundingBox>
     17010                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-26-40028072</ows:Identifier>
     17011                        <Style isDefault="true">
     17012                                <ows:Title>Données Brutes</ows:Title>
     17013                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17014                                <ows:Keywords>
     17015                                        <ows:Keyword>Défaut</ows:Keyword>
     17016                                </ows:Keywords>
     17017                                <ows:Identifier>normal</ows:Identifier>
     17018                                <LegendURL format="image/jpeg" height="200"
     17019                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17020                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17021                        </Style>
     17022                        <Format>image/jpeg</Format>
     17023                        <TileMatrixSetLink>
     17024                                <TileMatrixSet>PM</TileMatrixSet>
     17025                                <TileMatrixSetLimits>
     17026                                        <TileMatrixLimits>
     17027                                                <TileMatrix>0</TileMatrix>
     17028                                                <MinTileRow>0</MinTileRow>
     17029                                                <MaxTileRow>0</MaxTileRow>
     17030                                                <MinTileCol>0</MinTileCol>
     17031                                                <MaxTileCol>0</MaxTileCol>
     17032                                        </TileMatrixLimits>
     17033                                        <TileMatrixLimits>
     17034                                                <TileMatrix>1</TileMatrix>
     17035                                                <MinTileRow>0</MinTileRow>
     17036                                                <MaxTileRow>0</MaxTileRow>
     17037                                                <MinTileCol>1</MinTileCol>
     17038                                                <MaxTileCol>1</MaxTileCol>
     17039                                        </TileMatrixLimits>
     17040                                        <TileMatrixLimits>
     17041                                                <TileMatrix>10</TileMatrix>
     17042                                                <MinTileRow>363</MinTileRow>
     17043                                                <MaxTileRow>363</MaxTileRow>
     17044                                                <MinTileCol>518</MinTileCol>
     17045                                                <MaxTileCol>519</MaxTileCol>
     17046                                        </TileMatrixLimits>
     17047                                        <TileMatrixLimits>
     17048                                                <TileMatrix>11</TileMatrix>
     17049                                                <MinTileRow>726</MinTileRow>
     17050                                                <MaxTileRow>726</MaxTileRow>
     17051                                                <MinTileCol>1037</MinTileCol>
     17052                                                <MaxTileCol>1039</MaxTileCol>
     17053                                        </TileMatrixLimits>
     17054                                        <TileMatrixLimits>
     17055                                                <TileMatrix>12</TileMatrix>
     17056                                                <MinTileRow>1452</MinTileRow>
     17057                                                <MaxTileRow>1453</MaxTileRow>
     17058                                                <MinTileCol>2075</MinTileCol>
     17059                                                <MaxTileCol>2079</MaxTileCol>
     17060                                        </TileMatrixLimits>
     17061                                        <TileMatrixLimits>
     17062                                                <TileMatrix>13</TileMatrix>
     17063                                                <MinTileRow>2904</MinTileRow>
     17064                                                <MaxTileRow>2907</MaxTileRow>
     17065                                                <MinTileCol>4151</MinTileCol>
     17066                                                <MaxTileCol>4158</MaxTileCol>
     17067                                        </TileMatrixLimits>
     17068                                        <TileMatrixLimits>
     17069                                                <TileMatrix>14</TileMatrix>
     17070                                                <MinTileRow>5809</MinTileRow>
     17071                                                <MaxTileRow>5815</MaxTileRow>
     17072                                                <MinTileCol>8303</MinTileCol>
     17073                                                <MaxTileCol>8316</MaxTileCol>
     17074                                        </TileMatrixLimits>
     17075                                        <TileMatrixLimits>
     17076                                                <TileMatrix>15</TileMatrix>
     17077                                                <MinTileRow>11619</MinTileRow>
     17078                                                <MaxTileRow>11631</MaxTileRow>
     17079                                                <MinTileCol>16606</MinTileCol>
     17080                                                <MaxTileCol>16633</MaxTileCol>
     17081                                        </TileMatrixLimits>
     17082                                        <TileMatrixLimits>
     17083                                                <TileMatrix>16</TileMatrix>
     17084                                                <MinTileRow>23238</MinTileRow>
     17085                                                <MaxTileRow>23262</MaxTileRow>
     17086                                                <MinTileCol>33212</MinTileCol>
     17087                                                <MaxTileCol>33266</MaxTileCol>
     17088                                        </TileMatrixLimits>
     17089                                        <TileMatrixLimits>
     17090                                                <TileMatrix>17</TileMatrix>
     17091                                                <MinTileRow>46477</MinTileRow>
     17092                                                <MaxTileRow>46524</MaxTileRow>
     17093                                                <MinTileCol>66424</MinTileCol>
     17094                                                <MaxTileCol>66533</MaxTileCol>
     17095                                        </TileMatrixLimits>
     17096                                        <TileMatrixLimits>
     17097                                                <TileMatrix>18</TileMatrix>
     17098                                                <MinTileRow>92954</MinTileRow>
     17099                                                <MaxTileRow>93048</MaxTileRow>
     17100                                                <MinTileCol>132849</MinTileCol>
     17101                                                <MaxTileCol>133067</MaxTileCol>
     17102                                        </TileMatrixLimits>
     17103                                        <TileMatrixLimits>
     17104                                                <TileMatrix>2</TileMatrix>
     17105                                                <MinTileRow>1</MinTileRow>
     17106                                                <MaxTileRow>1</MaxTileRow>
     17107                                                <MinTileCol>2</MinTileCol>
     17108                                                <MaxTileCol>2</MaxTileCol>
     17109                                        </TileMatrixLimits>
     17110                                        <TileMatrixLimits>
     17111                                                <TileMatrix>3</TileMatrix>
     17112                                                <MinTileRow>2</MinTileRow>
     17113                                                <MaxTileRow>2</MaxTileRow>
     17114                                                <MinTileCol>4</MinTileCol>
     17115                                                <MaxTileCol>4</MaxTileCol>
     17116                                        </TileMatrixLimits>
     17117                                        <TileMatrixLimits>
     17118                                                <TileMatrix>4</TileMatrix>
     17119                                                <MinTileRow>5</MinTileRow>
     17120                                                <MaxTileRow>5</MaxTileRow>
     17121                                                <MinTileCol>8</MinTileCol>
     17122                                                <MaxTileCol>8</MaxTileCol>
     17123                                        </TileMatrixLimits>
     17124                                        <TileMatrixLimits>
     17125                                                <TileMatrix>5</TileMatrix>
     17126                                                <MinTileRow>11</MinTileRow>
     17127                                                <MaxTileRow>11</MaxTileRow>
     17128                                                <MinTileCol>16</MinTileCol>
     17129                                                <MaxTileCol>16</MaxTileCol>
     17130                                        </TileMatrixLimits>
     17131                                        <TileMatrixLimits>
     17132                                                <TileMatrix>6</TileMatrix>
     17133                                                <MinTileRow>22</MinTileRow>
     17134                                                <MaxTileRow>22</MaxTileRow>
     17135                                                <MinTileCol>32</MinTileCol>
     17136                                                <MaxTileCol>32</MaxTileCol>
     17137                                        </TileMatrixLimits>
     17138                                        <TileMatrixLimits>
     17139                                                <TileMatrix>7</TileMatrix>
     17140                                                <MinTileRow>45</MinTileRow>
     17141                                                <MaxTileRow>45</MaxTileRow>
     17142                                                <MinTileCol>64</MinTileCol>
     17143                                                <MaxTileCol>64</MaxTileCol>
     17144                                        </TileMatrixLimits>
     17145                                        <TileMatrixLimits>
     17146                                                <TileMatrix>8</TileMatrix>
     17147                                                <MinTileRow>90</MinTileRow>
     17148                                                <MaxTileRow>90</MaxTileRow>
     17149                                                <MinTileCol>129</MinTileCol>
     17150                                                <MaxTileCol>129</MaxTileCol>
     17151                                        </TileMatrixLimits>
     17152                                        <TileMatrixLimits>
     17153                                                <TileMatrix>9</TileMatrix>
     17154                                                <MinTileRow>181</MinTileRow>
     17155                                                <MaxTileRow>181</MaxTileRow>
     17156                                                <MinTileCol>259</MinTileCol>
     17157                                                <MaxTileCol>259</MaxTileCol>
     17158                                        </TileMatrixLimits>
     17159                                </TileMatrixSetLimits>
     17160                        </TileMatrixSetLink>
     17161                </Layer>
     17162                <Layer>
     17163                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17164                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17165                        <ows:Keywords>
     17166                                <ows:Keyword>Photographies</ows:Keyword>
     17167                        </ows:Keywords>
     17168                        <ows:WGS84BoundingBox>
     17169                                <ows:LowerCorner>3.63557 46.208</ows:LowerCorner>
     17170                                <ows:UpperCorner>3.93989 46.5612</ows:UpperCorner>
     17171                        </ows:WGS84BoundingBox>
     17172                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39646576</ows:Identifier>
     17173                        <Style isDefault="true">
     17174                                <ows:Title>Données Brutes</ows:Title>
     17175                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17176                                <ows:Keywords>
     17177                                        <ows:Keyword>Défaut</ows:Keyword>
     17178                                </ows:Keywords>
     17179                                <ows:Identifier>normal</ows:Identifier>
     17180                                <LegendURL format="image/jpeg" height="200"
     17181                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17182                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17183                        </Style>
     17184                        <Format>image/jpeg</Format>
     17185                        <TileMatrixSetLink>
     17186                                <TileMatrixSet>PM</TileMatrixSet>
     17187                                <TileMatrixSetLimits>
     17188                                        <TileMatrixLimits>
     17189                                                <TileMatrix>0</TileMatrix>
     17190                                                <MinTileRow>0</MinTileRow>
     17191                                                <MaxTileRow>0</MaxTileRow>
     17192                                                <MinTileCol>0</MinTileCol>
     17193                                                <MaxTileCol>0</MaxTileCol>
     17194                                        </TileMatrixLimits>
     17195                                        <TileMatrixLimits>
     17196                                                <TileMatrix>1</TileMatrix>
     17197                                                <MinTileRow>0</MinTileRow>
     17198                                                <MaxTileRow>0</MaxTileRow>
     17199                                                <MinTileCol>1</MinTileCol>
     17200                                                <MaxTileCol>1</MaxTileCol>
     17201                                        </TileMatrixLimits>
     17202                                        <TileMatrixLimits>
     17203                                                <TileMatrix>10</TileMatrix>
     17204                                                <MinTileRow>361</MinTileRow>
     17205                                                <MaxTileRow>363</MaxTileRow>
     17206                                                <MinTileCol>522</MinTileCol>
     17207                                                <MaxTileCol>523</MaxTileCol>
     17208                                        </TileMatrixLimits>
     17209                                        <TileMatrixLimits>
     17210                                                <TileMatrix>11</TileMatrix>
     17211                                                <MinTileRow>723</MinTileRow>
     17212                                                <MaxTileRow>726</MaxTileRow>
     17213                                                <MinTileCol>1044</MinTileCol>
     17214                                                <MaxTileCol>1046</MaxTileCol>
     17215                                        </TileMatrixLimits>
     17216                                        <TileMatrixLimits>
     17217                                                <TileMatrix>12</TileMatrix>
     17218                                                <MinTileRow>1447</MinTileRow>
     17219                                                <MaxTileRow>1453</MaxTileRow>
     17220                                                <MinTileCol>2089</MinTileCol>
     17221                                                <MaxTileCol>2092</MaxTileCol>
     17222                                        </TileMatrixLimits>
     17223                                        <TileMatrixLimits>
     17224                                                <TileMatrix>13</TileMatrix>
     17225                                                <MinTileRow>2895</MinTileRow>
     17226                                                <MaxTileRow>2907</MaxTileRow>
     17227                                                <MinTileCol>4178</MinTileCol>
     17228                                                <MaxTileCol>4185</MaxTileCol>
     17229                                        </TileMatrixLimits>
     17230                                        <TileMatrixLimits>
     17231                                                <TileMatrix>14</TileMatrix>
     17232                                                <MinTileRow>5791</MinTileRow>
     17233                                                <MaxTileRow>5815</MaxTileRow>
     17234                                                <MinTileCol>8357</MinTileCol>
     17235                                                <MaxTileCol>8371</MaxTileCol>
     17236                                        </TileMatrixLimits>
     17237                                        <TileMatrixLimits>
     17238                                                <TileMatrix>15</TileMatrix>
     17239                                                <MinTileRow>11583</MinTileRow>
     17240                                                <MaxTileRow>11630</MaxTileRow>
     17241                                                <MinTileCol>16714</MinTileCol>
     17242                                                <MaxTileCol>16742</MaxTileCol>
     17243                                        </TileMatrixLimits>
     17244                                        <TileMatrixLimits>
     17245                                                <TileMatrix>16</TileMatrix>
     17246                                                <MinTileRow>23167</MinTileRow>
     17247                                                <MaxTileRow>23260</MaxTileRow>
     17248                                                <MinTileCol>33429</MinTileCol>
     17249                                                <MaxTileCol>33485</MaxTileCol>
     17250                                        </TileMatrixLimits>
     17251                                        <TileMatrixLimits>
     17252                                                <TileMatrix>17</TileMatrix>
     17253                                                <MinTileRow>46334</MinTileRow>
     17254                                                <MaxTileRow>46520</MaxTileRow>
     17255                                                <MinTileCol>66859</MinTileCol>
     17256                                                <MaxTileCol>66970</MaxTileCol>
     17257                                        </TileMatrixLimits>
     17258                                        <TileMatrixLimits>
     17259                                                <TileMatrix>18</TileMatrix>
     17260                                                <MinTileRow>92669</MinTileRow>
     17261                                                <MaxTileRow>93041</MaxTileRow>
     17262                                                <MinTileCol>133719</MinTileCol>
     17263                                                <MaxTileCol>133940</MaxTileCol>
     17264                                        </TileMatrixLimits>
     17265                                        <TileMatrixLimits>
     17266                                                <TileMatrix>2</TileMatrix>
     17267                                                <MinTileRow>1</MinTileRow>
     17268                                                <MaxTileRow>1</MaxTileRow>
     17269                                                <MinTileCol>2</MinTileCol>
     17270                                                <MaxTileCol>2</MaxTileCol>
     17271                                        </TileMatrixLimits>
     17272                                        <TileMatrixLimits>
     17273                                                <TileMatrix>3</TileMatrix>
     17274                                                <MinTileRow>2</MinTileRow>
     17275                                                <MaxTileRow>2</MaxTileRow>
     17276                                                <MinTileCol>4</MinTileCol>
     17277                                                <MaxTileCol>4</MaxTileCol>
     17278                                        </TileMatrixLimits>
     17279                                        <TileMatrixLimits>
     17280                                                <TileMatrix>4</TileMatrix>
     17281                                                <MinTileRow>5</MinTileRow>
     17282                                                <MaxTileRow>5</MaxTileRow>
     17283                                                <MinTileCol>8</MinTileCol>
     17284                                                <MaxTileCol>8</MaxTileCol>
     17285                                        </TileMatrixLimits>
     17286                                        <TileMatrixLimits>
     17287                                                <TileMatrix>5</TileMatrix>
     17288                                                <MinTileRow>11</MinTileRow>
     17289                                                <MaxTileRow>11</MaxTileRow>
     17290                                                <MinTileCol>16</MinTileCol>
     17291                                                <MaxTileCol>16</MaxTileCol>
     17292                                        </TileMatrixLimits>
     17293                                        <TileMatrixLimits>
     17294                                                <TileMatrix>6</TileMatrix>
     17295                                                <MinTileRow>22</MinTileRow>
     17296                                                <MaxTileRow>22</MaxTileRow>
     17297                                                <MinTileCol>32</MinTileCol>
     17298                                                <MaxTileCol>32</MaxTileCol>
     17299                                        </TileMatrixLimits>
     17300                                        <TileMatrixLimits>
     17301                                                <TileMatrix>7</TileMatrix>
     17302                                                <MinTileRow>45</MinTileRow>
     17303                                                <MaxTileRow>45</MaxTileRow>
     17304                                                <MinTileCol>65</MinTileCol>
     17305                                                <MaxTileCol>65</MaxTileCol>
     17306                                        </TileMatrixLimits>
     17307                                        <TileMatrixLimits>
     17308                                                <TileMatrix>8</TileMatrix>
     17309                                                <MinTileRow>90</MinTileRow>
     17310                                                <MaxTileRow>90</MaxTileRow>
     17311                                                <MinTileCol>130</MinTileCol>
     17312                                                <MaxTileCol>130</MaxTileCol>
     17313                                        </TileMatrixLimits>
     17314                                        <TileMatrixLimits>
     17315                                                <TileMatrix>9</TileMatrix>
     17316                                                <MinTileRow>180</MinTileRow>
     17317                                                <MaxTileRow>181</MaxTileRow>
     17318                                                <MinTileCol>261</MinTileCol>
     17319                                                <MaxTileCol>261</MaxTileCol>
     17320                                        </TileMatrixLimits>
     17321                                </TileMatrixSetLimits>
     17322                        </TileMatrixSetLink>
     17323                </Layer>
     17324                <Layer>
     17325                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17326                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17327                        <ows:Keywords>
     17328                                <ows:Keyword>Photographies</ows:Keyword>
     17329                        </ows:Keywords>
     17330                        <ows:WGS84BoundingBox>
     17331                                <ows:LowerCorner>3.8047 46.2431</ows:LowerCorner>
     17332                                <ows:UpperCorner>4.04362 46.5242</ows:UpperCorner>
     17333                        </ows:WGS84BoundingBox>
     17334                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39660077</ows:Identifier>
     17335                        <Style isDefault="true">
     17336                                <ows:Title>Données Brutes</ows:Title>
     17337                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17338                                <ows:Keywords>
     17339                                        <ows:Keyword>Défaut</ows:Keyword>
     17340                                </ows:Keywords>
     17341                                <ows:Identifier>normal</ows:Identifier>
     17342                                <LegendURL format="image/jpeg" height="200"
     17343                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17344                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17345                        </Style>
     17346                        <Format>image/jpeg</Format>
     17347                        <TileMatrixSetLink>
     17348                                <TileMatrixSet>PM</TileMatrixSet>
     17349                                <TileMatrixSetLimits>
     17350                                        <TileMatrixLimits>
     17351                                                <TileMatrix>0</TileMatrix>
     17352                                                <MinTileRow>0</MinTileRow>
     17353                                                <MaxTileRow>0</MaxTileRow>
     17354                                                <MinTileCol>0</MinTileCol>
     17355                                                <MaxTileCol>0</MaxTileCol>
     17356                                        </TileMatrixLimits>
     17357                                        <TileMatrixLimits>
     17358                                                <TileMatrix>1</TileMatrix>
     17359                                                <MinTileRow>0</MinTileRow>
     17360                                                <MaxTileRow>0</MaxTileRow>
     17361                                                <MinTileCol>1</MinTileCol>
     17362                                                <MaxTileCol>1</MaxTileCol>
     17363                                        </TileMatrixLimits>
     17364                                        <TileMatrixLimits>
     17365                                                <TileMatrix>10</TileMatrix>
     17366                                                <MinTileRow>362</MinTileRow>
     17367                                                <MaxTileRow>363</MaxTileRow>
     17368                                                <MinTileCol>522</MinTileCol>
     17369                                                <MaxTileCol>523</MaxTileCol>
     17370                                        </TileMatrixLimits>
     17371                                        <TileMatrixLimits>
     17372                                                <TileMatrix>11</TileMatrix>
     17373                                                <MinTileRow>724</MinTileRow>
     17374                                                <MaxTileRow>726</MaxTileRow>
     17375                                                <MinTileCol>1045</MinTileCol>
     17376                                                <MaxTileCol>1046</MaxTileCol>
     17377                                        </TileMatrixLimits>
     17378                                        <TileMatrixLimits>
     17379                                                <TileMatrix>12</TileMatrix>
     17380                                                <MinTileRow>1448</MinTileRow>
     17381                                                <MaxTileRow>1453</MaxTileRow>
     17382                                                <MinTileCol>2091</MinTileCol>
     17383                                                <MaxTileCol>2093</MaxTileCol>
     17384                                        </TileMatrixLimits>
     17385                                        <TileMatrixLimits>
     17386                                                <TileMatrix>13</TileMatrix>
     17387                                                <MinTileRow>2897</MinTileRow>
     17388                                                <MaxTileRow>2906</MaxTileRow>
     17389                                                <MinTileCol>4182</MinTileCol>
     17390                                                <MaxTileCol>4187</MaxTileCol>
     17391                                        </TileMatrixLimits>
     17392                                        <TileMatrixLimits>
     17393                                                <TileMatrix>14</TileMatrix>
     17394                                                <MinTileRow>5794</MinTileRow>
     17395                                                <MaxTileRow>5812</MaxTileRow>
     17396                                                <MinTileCol>8365</MinTileCol>
     17397                                                <MaxTileCol>8375</MaxTileCol>
     17398                                        </TileMatrixLimits>
     17399                                        <TileMatrixLimits>
     17400                                                <TileMatrix>15</TileMatrix>
     17401                                                <MinTileRow>11588</MinTileRow>
     17402                                                <MaxTileRow>11625</MaxTileRow>
     17403                                                <MinTileCol>16730</MinTileCol>
     17404                                                <MaxTileCol>16751</MaxTileCol>
     17405                                        </TileMatrixLimits>
     17406                                        <TileMatrixLimits>
     17407                                                <TileMatrix>16</TileMatrix>
     17408                                                <MinTileRow>23177</MinTileRow>
     17409                                                <MaxTileRow>23251</MaxTileRow>
     17410                                                <MinTileCol>33460</MinTileCol>
     17411                                                <MaxTileCol>33503</MaxTileCol>
     17412                                        </TileMatrixLimits>
     17413                                        <TileMatrixLimits>
     17414                                                <TileMatrix>17</TileMatrix>
     17415                                                <MinTileRow>46354</MinTileRow>
     17416                                                <MaxTileRow>46502</MaxTileRow>
     17417                                                <MinTileCol>66921</MinTileCol>
     17418                                                <MaxTileCol>67007</MaxTileCol>
     17419                                        </TileMatrixLimits>
     17420                                        <TileMatrixLimits>
     17421                                                <TileMatrix>18</TileMatrix>
     17422                                                <MinTileRow>92708</MinTileRow>
     17423                                                <MaxTileRow>93004</MaxTileRow>
     17424                                                <MinTileCol>133842</MinTileCol>
     17425                                                <MaxTileCol>134014</MaxTileCol>
     17426                                        </TileMatrixLimits>
     17427                                        <TileMatrixLimits>
     17428                                                <TileMatrix>2</TileMatrix>
     17429                                                <MinTileRow>1</MinTileRow>
     17430                                                <MaxTileRow>1</MaxTileRow>
     17431                                                <MinTileCol>2</MinTileCol>
     17432                                                <MaxTileCol>2</MaxTileCol>
     17433                                        </TileMatrixLimits>
     17434                                        <TileMatrixLimits>
     17435                                                <TileMatrix>3</TileMatrix>
     17436                                                <MinTileRow>2</MinTileRow>
     17437                                                <MaxTileRow>2</MaxTileRow>
     17438                                                <MinTileCol>4</MinTileCol>
     17439                                                <MaxTileCol>4</MaxTileCol>
     17440                                        </TileMatrixLimits>
     17441                                        <TileMatrixLimits>
     17442                                                <TileMatrix>4</TileMatrix>
     17443                                                <MinTileRow>5</MinTileRow>
     17444                                                <MaxTileRow>5</MaxTileRow>
     17445                                                <MinTileCol>8</MinTileCol>
     17446                                                <MaxTileCol>8</MaxTileCol>
     17447                                        </TileMatrixLimits>
     17448                                        <TileMatrixLimits>
     17449                                                <TileMatrix>5</TileMatrix>
     17450                                                <MinTileRow>11</MinTileRow>
     17451                                                <MaxTileRow>11</MaxTileRow>
     17452                                                <MinTileCol>16</MinTileCol>
     17453                                                <MaxTileCol>16</MaxTileCol>
     17454                                        </TileMatrixLimits>
     17455                                        <TileMatrixLimits>
     17456                                                <TileMatrix>6</TileMatrix>
     17457                                                <MinTileRow>22</MinTileRow>
     17458                                                <MaxTileRow>22</MaxTileRow>
     17459                                                <MinTileCol>32</MinTileCol>
     17460                                                <MaxTileCol>32</MaxTileCol>
     17461                                        </TileMatrixLimits>
     17462                                        <TileMatrixLimits>
     17463                                                <TileMatrix>7</TileMatrix>
     17464                                                <MinTileRow>45</MinTileRow>
     17465                                                <MaxTileRow>45</MaxTileRow>
     17466                                                <MinTileCol>65</MinTileCol>
     17467                                                <MaxTileCol>65</MaxTileCol>
     17468                                        </TileMatrixLimits>
     17469                                        <TileMatrixLimits>
     17470                                                <TileMatrix>8</TileMatrix>
     17471                                                <MinTileRow>90</MinTileRow>
     17472                                                <MaxTileRow>90</MaxTileRow>
     17473                                                <MinTileCol>130</MinTileCol>
     17474                                                <MaxTileCol>130</MaxTileCol>
     17475                                        </TileMatrixLimits>
     17476                                        <TileMatrixLimits>
     17477                                                <TileMatrix>9</TileMatrix>
     17478                                                <MinTileRow>181</MinTileRow>
     17479                                                <MaxTileRow>181</MaxTileRow>
     17480                                                <MinTileCol>261</MinTileCol>
     17481                                                <MaxTileCol>261</MaxTileCol>
     17482                                        </TileMatrixLimits>
     17483                                </TileMatrixSetLimits>
     17484                        </TileMatrixSetLink>
     17485                </Layer>
     17486                <Layer>
     17487                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17488                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17489                        <ows:Keywords>
     17490                                <ows:Keyword>Photographies</ows:Keyword>
     17491                        </ows:Keywords>
     17492                        <ows:WGS84BoundingBox>
     17493                                <ows:LowerCorner>3.40131 46.1016</ows:LowerCorner>
     17494                                <ows:UpperCorner>3.7168 46.4723</ows:UpperCorner>
     17495                        </ows:WGS84BoundingBox>
     17496                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39671451</ows:Identifier>
     17497                        <Style isDefault="true">
     17498                                <ows:Title>Données Brutes</ows:Title>
     17499                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17500                                <ows:Keywords>
     17501                                        <ows:Keyword>Défaut</ows:Keyword>
     17502                                </ows:Keywords>
     17503                                <ows:Identifier>normal</ows:Identifier>
     17504                                <LegendURL format="image/jpeg" height="200"
     17505                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17506                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17507                        </Style>
     17508                        <Format>image/jpeg</Format>
     17509                        <TileMatrixSetLink>
     17510                                <TileMatrixSet>PM</TileMatrixSet>
     17511                                <TileMatrixSetLimits>
     17512                                        <TileMatrixLimits>
     17513                                                <TileMatrix>0</TileMatrix>
     17514                                                <MinTileRow>0</MinTileRow>
     17515                                                <MaxTileRow>0</MaxTileRow>
     17516                                                <MinTileCol>0</MinTileCol>
     17517                                                <MaxTileCol>0</MaxTileCol>
     17518                                        </TileMatrixLimits>
     17519                                        <TileMatrixLimits>
     17520                                                <TileMatrix>1</TileMatrix>
     17521                                                <MinTileRow>0</MinTileRow>
     17522                                                <MaxTileRow>0</MaxTileRow>
     17523                                                <MinTileCol>1</MinTileCol>
     17524                                                <MaxTileCol>1</MaxTileCol>
     17525                                        </TileMatrixLimits>
     17526                                        <TileMatrixLimits>
     17527                                                <TileMatrix>10</TileMatrix>
     17528                                                <MinTileRow>362</MinTileRow>
     17529                                                <MaxTileRow>363</MaxTileRow>
     17530                                                <MinTileCol>521</MinTileCol>
     17531                                                <MaxTileCol>522</MaxTileCol>
     17532                                        </TileMatrixLimits>
     17533                                        <TileMatrixLimits>
     17534                                                <TileMatrix>11</TileMatrix>
     17535                                                <MinTileRow>724</MinTileRow>
     17536                                                <MaxTileRow>727</MaxTileRow>
     17537                                                <MinTileCol>1043</MinTileCol>
     17538                                                <MaxTileCol>1045</MaxTileCol>
     17539                                        </TileMatrixLimits>
     17540                                        <TileMatrixLimits>
     17541                                                <TileMatrix>12</TileMatrix>
     17542                                                <MinTileRow>1449</MinTileRow>
     17543                                                <MaxTileRow>1455</MaxTileRow>
     17544                                                <MinTileCol>2086</MinTileCol>
     17545                                                <MaxTileCol>2090</MaxTileCol>
     17546                                        </TileMatrixLimits>
     17547                                        <TileMatrixLimits>
     17548                                                <TileMatrix>13</TileMatrix>
     17549                                                <MinTileRow>2898</MinTileRow>
     17550                                                <MaxTileRow>2911</MaxTileRow>
     17551                                                <MinTileCol>4173</MinTileCol>
     17552                                                <MaxTileCol>4180</MaxTileCol>
     17553                                        </TileMatrixLimits>
     17554                                        <TileMatrixLimits>
     17555                                                <TileMatrix>14</TileMatrix>
     17556                                                <MinTileRow>5797</MinTileRow>
     17557                                                <MaxTileRow>5822</MaxTileRow>
     17558                                                <MinTileCol>8346</MinTileCol>
     17559                                                <MaxTileCol>8361</MaxTileCol>
     17560                                        </TileMatrixLimits>
     17561                                        <TileMatrixLimits>
     17562                                                <TileMatrix>15</TileMatrix>
     17563                                                <MinTileRow>11595</MinTileRow>
     17564                                                <MaxTileRow>11644</MaxTileRow>
     17565                                                <MinTileCol>16693</MinTileCol>
     17566                                                <MaxTileCol>16722</MaxTileCol>
     17567                                        </TileMatrixLimits>
     17568                                        <TileMatrixLimits>
     17569                                                <TileMatrix>16</TileMatrix>
     17570                                                <MinTileRow>23191</MinTileRow>
     17571                                                <MaxTileRow>23288</MaxTileRow>
     17572                                                <MinTileCol>33387</MinTileCol>
     17573                                                <MaxTileCol>33444</MaxTileCol>
     17574                                        </TileMatrixLimits>
     17575                                        <TileMatrixLimits>
     17576                                                <TileMatrix>17</TileMatrix>
     17577                                                <MinTileRow>46382</MinTileRow>
     17578                                                <MaxTileRow>46576</MaxTileRow>
     17579                                                <MinTileCol>66774</MinTileCol>
     17580                                                <MaxTileCol>66889</MaxTileCol>
     17581                                        </TileMatrixLimits>
     17582                                        <TileMatrixLimits>
     17583                                                <TileMatrix>18</TileMatrix>
     17584                                                <MinTileRow>92764</MinTileRow>
     17585                                                <MaxTileRow>93153</MaxTileRow>
     17586                                                <MinTileCol>133548</MinTileCol>
     17587                                                <MaxTileCol>133778</MaxTileCol>
     17588                                        </TileMatrixLimits>
     17589                                        <TileMatrixLimits>
     17590                                                <TileMatrix>2</TileMatrix>
     17591                                                <MinTileRow>1</MinTileRow>
     17592                                                <MaxTileRow>1</MaxTileRow>
     17593                                                <MinTileCol>2</MinTileCol>
     17594                                                <MaxTileCol>2</MaxTileCol>
     17595                                        </TileMatrixLimits>
     17596                                        <TileMatrixLimits>
     17597                                                <TileMatrix>3</TileMatrix>
     17598                                                <MinTileRow>2</MinTileRow>
     17599                                                <MaxTileRow>2</MaxTileRow>
     17600                                                <MinTileCol>4</MinTileCol>
     17601                                                <MaxTileCol>4</MaxTileCol>
     17602                                        </TileMatrixLimits>
     17603                                        <TileMatrixLimits>
     17604                                                <TileMatrix>4</TileMatrix>
     17605                                                <MinTileRow>5</MinTileRow>
     17606                                                <MaxTileRow>5</MaxTileRow>
     17607                                                <MinTileCol>8</MinTileCol>
     17608                                                <MaxTileCol>8</MaxTileCol>
     17609                                        </TileMatrixLimits>
     17610                                        <TileMatrixLimits>
     17611                                                <TileMatrix>5</TileMatrix>
     17612                                                <MinTileRow>11</MinTileRow>
     17613                                                <MaxTileRow>11</MaxTileRow>
     17614                                                <MinTileCol>16</MinTileCol>
     17615                                                <MaxTileCol>16</MaxTileCol>
     17616                                        </TileMatrixLimits>
     17617                                        <TileMatrixLimits>
     17618                                                <TileMatrix>6</TileMatrix>
     17619                                                <MinTileRow>22</MinTileRow>
     17620                                                <MaxTileRow>22</MaxTileRow>
     17621                                                <MinTileCol>32</MinTileCol>
     17622                                                <MaxTileCol>32</MaxTileCol>
     17623                                        </TileMatrixLimits>
     17624                                        <TileMatrixLimits>
     17625                                                <TileMatrix>7</TileMatrix>
     17626                                                <MinTileRow>45</MinTileRow>
     17627                                                <MaxTileRow>45</MaxTileRow>
     17628                                                <MinTileCol>65</MinTileCol>
     17629                                                <MaxTileCol>65</MaxTileCol>
     17630                                        </TileMatrixLimits>
     17631                                        <TileMatrixLimits>
     17632                                                <TileMatrix>8</TileMatrix>
     17633                                                <MinTileRow>90</MinTileRow>
     17634                                                <MaxTileRow>90</MaxTileRow>
     17635                                                <MinTileCol>130</MinTileCol>
     17636                                                <MaxTileCol>130</MaxTileCol>
     17637                                        </TileMatrixLimits>
     17638                                        <TileMatrixLimits>
     17639                                                <TileMatrix>9</TileMatrix>
     17640                                                <MinTileRow>181</MinTileRow>
     17641                                                <MaxTileRow>181</MaxTileRow>
     17642                                                <MinTileCol>260</MinTileCol>
     17643                                                <MaxTileCol>261</MaxTileCol>
     17644                                        </TileMatrixLimits>
     17645                                </TileMatrixSetLimits>
     17646                        </TileMatrixSetLink>
     17647                </Layer>
     17648                <Layer>
     17649                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17650                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17651                        <ows:Keywords>
     17652                                <ows:Keyword>Photographies</ows:Keyword>
     17653                        </ows:Keywords>
     17654                        <ows:WGS84BoundingBox>
     17655                                <ows:LowerCorner>3.49777 45.3175</ows:LowerCorner>
     17656                                <ows:UpperCorner>3.80681 45.5084</ows:UpperCorner>
     17657                        </ows:WGS84BoundingBox>
     17658                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39682574</ows:Identifier>
     17659                        <Style isDefault="true">
     17660                                <ows:Title>Données Brutes</ows:Title>
     17661                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17662                                <ows:Keywords>
     17663                                        <ows:Keyword>Défaut</ows:Keyword>
     17664                                </ows:Keywords>
     17665                                <ows:Identifier>normal</ows:Identifier>
     17666                                <LegendURL format="image/jpeg" height="200"
     17667                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17668                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17669                        </Style>
     17670                        <Format>image/jpeg</Format>
     17671                        <TileMatrixSetLink>
     17672                                <TileMatrixSet>PM</TileMatrixSet>
     17673                                <TileMatrixSetLimits>
     17674                                        <TileMatrixLimits>
     17675                                                <TileMatrix>0</TileMatrix>
     17676                                                <MinTileRow>0</MinTileRow>
     17677                                                <MaxTileRow>0</MaxTileRow>
     17678                                                <MinTileCol>0</MinTileCol>
     17679                                                <MaxTileCol>0</MaxTileCol>
     17680                                        </TileMatrixLimits>
     17681                                        <TileMatrixLimits>
     17682                                                <TileMatrix>1</TileMatrix>
     17683                                                <MinTileRow>0</MinTileRow>
     17684                                                <MaxTileRow>0</MaxTileRow>
     17685                                                <MinTileCol>1</MinTileCol>
     17686                                                <MaxTileCol>1</MaxTileCol>
     17687                                        </TileMatrixLimits>
     17688                                        <TileMatrixLimits>
     17689                                                <TileMatrix>10</TileMatrix>
     17690                                                <MinTileRow>366</MinTileRow>
     17691                                                <MaxTileRow>367</MaxTileRow>
     17692                                                <MinTileCol>521</MinTileCol>
     17693                                                <MaxTileCol>522</MaxTileCol>
     17694                                        </TileMatrixLimits>
     17695                                        <TileMatrixLimits>
     17696                                                <TileMatrix>11</TileMatrix>
     17697                                                <MinTileRow>732</MinTileRow>
     17698                                                <MaxTileRow>734</MaxTileRow>
     17699                                                <MinTileCol>1043</MinTileCol>
     17700                                                <MaxTileCol>1045</MaxTileCol>
     17701                                        </TileMatrixLimits>
     17702                                        <TileMatrixLimits>
     17703                                                <TileMatrix>12</TileMatrix>
     17704                                                <MinTileRow>1465</MinTileRow>
     17705                                                <MaxTileRow>1468</MaxTileRow>
     17706                                                <MinTileCol>2087</MinTileCol>
     17707                                                <MaxTileCol>2091</MaxTileCol>
     17708                                        </TileMatrixLimits>
     17709                                        <TileMatrixLimits>
     17710                                                <TileMatrix>13</TileMatrix>
     17711                                                <MinTileRow>2930</MinTileRow>
     17712                                                <MaxTileRow>2936</MaxTileRow>
     17713                                                <MinTileCol>4175</MinTileCol>
     17714                                                <MaxTileCol>4182</MaxTileCol>
     17715                                        </TileMatrixLimits>
     17716                                        <TileMatrixLimits>
     17717                                                <TileMatrix>14</TileMatrix>
     17718                                                <MinTileRow>5860</MinTileRow>
     17719                                                <MaxTileRow>5873</MaxTileRow>
     17720                                                <MinTileCol>8351</MinTileCol>
     17721                                                <MaxTileCol>8365</MaxTileCol>
     17722                                        </TileMatrixLimits>
     17723                                        <TileMatrixLimits>
     17724                                                <TileMatrix>15</TileMatrix>
     17725                                                <MinTileRow>11721</MinTileRow>
     17726                                                <MaxTileRow>11746</MaxTileRow>
     17727                                                <MinTileCol>16702</MinTileCol>
     17728                                                <MaxTileCol>16730</MaxTileCol>
     17729                                        </TileMatrixLimits>
     17730                                        <TileMatrixLimits>
     17731                                                <TileMatrix>16</TileMatrix>
     17732                                                <MinTileRow>23443</MinTileRow>
     17733                                                <MaxTileRow>23492</MaxTileRow>
     17734                                                <MinTileCol>33404</MinTileCol>
     17735                                                <MaxTileCol>33461</MaxTileCol>
     17736                                        </TileMatrixLimits>
     17737                                        <TileMatrixLimits>
     17738                                                <TileMatrix>17</TileMatrix>
     17739                                                <MinTileRow>46887</MinTileRow>
     17740                                                <MaxTileRow>46985</MaxTileRow>
     17741                                                <MinTileCol>66809</MinTileCol>
     17742                                                <MaxTileCol>66922</MaxTileCol>
     17743                                        </TileMatrixLimits>
     17744                                        <TileMatrixLimits>
     17745                                                <TileMatrix>18</TileMatrix>
     17746                                                <MinTileRow>93775</MinTileRow>
     17747                                                <MaxTileRow>93970</MaxTileRow>
     17748                                                <MinTileCol>133619</MinTileCol>
     17749                                                <MaxTileCol>133844</MaxTileCol>
     17750                                        </TileMatrixLimits>
     17751                                        <TileMatrixLimits>
     17752                                                <TileMatrix>2</TileMatrix>
     17753                                                <MinTileRow>1</MinTileRow>
     17754                                                <MaxTileRow>1</MaxTileRow>
     17755                                                <MinTileCol>2</MinTileCol>
     17756                                                <MaxTileCol>2</MaxTileCol>
     17757                                        </TileMatrixLimits>
     17758                                        <TileMatrixLimits>
     17759                                                <TileMatrix>3</TileMatrix>
     17760                                                <MinTileRow>2</MinTileRow>
     17761                                                <MaxTileRow>2</MaxTileRow>
     17762                                                <MinTileCol>4</MinTileCol>
     17763                                                <MaxTileCol>4</MaxTileCol>
     17764                                        </TileMatrixLimits>
     17765                                        <TileMatrixLimits>
     17766                                                <TileMatrix>4</TileMatrix>
     17767                                                <MinTileRow>5</MinTileRow>
     17768                                                <MaxTileRow>5</MaxTileRow>
     17769                                                <MinTileCol>8</MinTileCol>
     17770                                                <MaxTileCol>8</MaxTileCol>
     17771                                        </TileMatrixLimits>
     17772                                        <TileMatrixLimits>
     17773                                                <TileMatrix>5</TileMatrix>
     17774                                                <MinTileRow>11</MinTileRow>
     17775                                                <MaxTileRow>11</MaxTileRow>
     17776                                                <MinTileCol>16</MinTileCol>
     17777                                                <MaxTileCol>16</MaxTileCol>
     17778                                        </TileMatrixLimits>
     17779                                        <TileMatrixLimits>
     17780                                                <TileMatrix>6</TileMatrix>
     17781                                                <MinTileRow>22</MinTileRow>
     17782                                                <MaxTileRow>22</MaxTileRow>
     17783                                                <MinTileCol>32</MinTileCol>
     17784                                                <MaxTileCol>32</MaxTileCol>
     17785                                        </TileMatrixLimits>
     17786                                        <TileMatrixLimits>
     17787                                                <TileMatrix>7</TileMatrix>
     17788                                                <MinTileRow>45</MinTileRow>
     17789                                                <MaxTileRow>45</MaxTileRow>
     17790                                                <MinTileCol>65</MinTileCol>
     17791                                                <MaxTileCol>65</MaxTileCol>
     17792                                        </TileMatrixLimits>
     17793                                        <TileMatrixLimits>
     17794                                                <TileMatrix>8</TileMatrix>
     17795                                                <MinTileRow>91</MinTileRow>
     17796                                                <MaxTileRow>91</MaxTileRow>
     17797                                                <MinTileCol>130</MinTileCol>
     17798                                                <MaxTileCol>130</MaxTileCol>
     17799                                        </TileMatrixLimits>
     17800                                        <TileMatrixLimits>
     17801                                                <TileMatrix>9</TileMatrix>
     17802                                                <MinTileRow>183</MinTileRow>
     17803                                                <MaxTileRow>183</MaxTileRow>
     17804                                                <MinTileCol>260</MinTileCol>
     17805                                                <MaxTileCol>261</MaxTileCol>
     17806                                        </TileMatrixLimits>
     17807                                </TileMatrixSetLimits>
     17808                        </TileMatrixSetLink>
     17809                </Layer>
     17810                <Layer>
     17811                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17812                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17813                        <ows:Keywords>
     17814                                <ows:Keyword>Photographies</ows:Keyword>
     17815                        </ows:Keywords>
     17816                        <ows:WGS84BoundingBox>
     17817                                <ows:LowerCorner>3.29384 45.3728</ows:LowerCorner>
     17818                                <ows:UpperCorner>3.60191 45.5091</ows:UpperCorner>
     17819                        </ows:WGS84BoundingBox>
     17820                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-07-27-39691949</ows:Identifier>
     17821                        <Style isDefault="true">
     17822                                <ows:Title>Données Brutes</ows:Title>
     17823                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17824                                <ows:Keywords>
     17825                                        <ows:Keyword>Défaut</ows:Keyword>
     17826                                </ows:Keywords>
     17827                                <ows:Identifier>normal</ows:Identifier>
     17828                                <LegendURL format="image/jpeg" height="200"
     17829                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17830                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17831                        </Style>
     17832                        <Format>image/jpeg</Format>
     17833                        <TileMatrixSetLink>
     17834                                <TileMatrixSet>PM</TileMatrixSet>
     17835                                <TileMatrixSetLimits>
     17836                                        <TileMatrixLimits>
     17837                                                <TileMatrix>0</TileMatrix>
     17838                                                <MinTileRow>0</MinTileRow>
     17839                                                <MaxTileRow>0</MaxTileRow>
     17840                                                <MinTileCol>0</MinTileCol>
     17841                                                <MaxTileCol>0</MaxTileCol>
     17842                                        </TileMatrixLimits>
     17843                                        <TileMatrixLimits>
     17844                                                <TileMatrix>1</TileMatrix>
     17845                                                <MinTileRow>0</MinTileRow>
     17846                                                <MaxTileRow>0</MaxTileRow>
     17847                                                <MinTileCol>1</MinTileCol>
     17848                                                <MaxTileCol>1</MaxTileCol>
     17849                                        </TileMatrixLimits>
     17850                                        <TileMatrixLimits>
     17851                                                <TileMatrix>10</TileMatrix>
     17852                                                <MinTileRow>366</MinTileRow>
     17853                                                <MaxTileRow>366</MaxTileRow>
     17854                                                <MinTileCol>521</MinTileCol>
     17855                                                <MaxTileCol>522</MaxTileCol>
     17856                                        </TileMatrixLimits>
     17857                                        <TileMatrixLimits>
     17858                                                <TileMatrix>11</TileMatrix>
     17859                                                <MinTileRow>732</MinTileRow>
     17860                                                <MaxTileRow>733</MaxTileRow>
     17861                                                <MinTileCol>1042</MinTileCol>
     17862                                                <MaxTileCol>1044</MaxTileCol>
     17863                                        </TileMatrixLimits>
     17864                                        <TileMatrixLimits>
     17865                                                <TileMatrix>12</TileMatrix>
     17866                                                <MinTileRow>1465</MinTileRow>
     17867                                                <MaxTileRow>1467</MaxTileRow>
     17868                                                <MinTileCol>2085</MinTileCol>
     17869                                                <MaxTileCol>2088</MaxTileCol>
     17870                                        </TileMatrixLimits>
     17871                                        <TileMatrixLimits>
     17872                                                <TileMatrix>13</TileMatrix>
     17873                                                <MinTileRow>2930</MinTileRow>
     17874                                                <MaxTileRow>2934</MaxTileRow>
     17875                                                <MinTileCol>4170</MinTileCol>
     17876                                                <MaxTileCol>4177</MaxTileCol>
     17877                                        </TileMatrixLimits>
     17878                                        <TileMatrixLimits>
     17879                                                <TileMatrix>14</TileMatrix>
     17880                                                <MinTileRow>5860</MinTileRow>
     17881                                                <MaxTileRow>5869</MaxTileRow>
     17882                                                <MinTileCol>8341</MinTileCol>
     17883                                                <MaxTileCol>8355</MaxTileCol>
     17884                                        </TileMatrixLimits>
     17885                                        <TileMatrixLimits>
     17886                                                <TileMatrix>15</TileMatrix>
     17887                                                <MinTileRow>11721</MinTileRow>
     17888                                                <MaxTileRow>11739</MaxTileRow>
     17889                                                <MinTileCol>16683</MinTileCol>
     17890                                                <MaxTileCol>16711</MaxTileCol>
     17891                                        </TileMatrixLimits>
     17892                                        <TileMatrixLimits>
     17893                                                <TileMatrix>16</TileMatrix>
     17894                                                <MinTileRow>23443</MinTileRow>
     17895                                                <MaxTileRow>23478</MaxTileRow>
     17896                                                <MinTileCol>33367</MinTileCol>
     17897                                                <MaxTileCol>33423</MaxTileCol>
     17898                                        </TileMatrixLimits>
     17899                                        <TileMatrixLimits>
     17900                                                <TileMatrix>17</TileMatrix>
     17901                                                <MinTileRow>46887</MinTileRow>
     17902                                                <MaxTileRow>46957</MaxTileRow>
     17903                                                <MinTileCol>66735</MinTileCol>
     17904                                                <MaxTileCol>66847</MaxTileCol>
     17905                                        </TileMatrixLimits>
     17906                                        <TileMatrixLimits>
     17907                                                <TileMatrix>18</TileMatrix>
     17908                                                <MinTileRow>93774</MinTileRow>
     17909                                                <MaxTileRow>93914</MaxTileRow>
     17910                                                <MinTileCol>133470</MinTileCol>
     17911                                                <MaxTileCol>133694</MaxTileCol>
     17912                                        </TileMatrixLimits>
     17913                                        <TileMatrixLimits>
     17914                                                <TileMatrix>2</TileMatrix>
     17915                                                <MinTileRow>1</MinTileRow>
     17916                                                <MaxTileRow>1</MaxTileRow>
     17917                                                <MinTileCol>2</MinTileCol>
     17918                                                <MaxTileCol>2</MaxTileCol>
     17919                                        </TileMatrixLimits>
     17920                                        <TileMatrixLimits>
     17921                                                <TileMatrix>3</TileMatrix>
     17922                                                <MinTileRow>2</MinTileRow>
     17923                                                <MaxTileRow>2</MaxTileRow>
     17924                                                <MinTileCol>4</MinTileCol>
     17925                                                <MaxTileCol>4</MaxTileCol>
     17926                                        </TileMatrixLimits>
     17927                                        <TileMatrixLimits>
     17928                                                <TileMatrix>4</TileMatrix>
     17929                                                <MinTileRow>5</MinTileRow>
     17930                                                <MaxTileRow>5</MaxTileRow>
     17931                                                <MinTileCol>8</MinTileCol>
     17932                                                <MaxTileCol>8</MaxTileCol>
     17933                                        </TileMatrixLimits>
     17934                                        <TileMatrixLimits>
     17935                                                <TileMatrix>5</TileMatrix>
     17936                                                <MinTileRow>11</MinTileRow>
     17937                                                <MaxTileRow>11</MaxTileRow>
     17938                                                <MinTileCol>16</MinTileCol>
     17939                                                <MaxTileCol>16</MaxTileCol>
     17940                                        </TileMatrixLimits>
     17941                                        <TileMatrixLimits>
     17942                                                <TileMatrix>6</TileMatrix>
     17943                                                <MinTileRow>22</MinTileRow>
     17944                                                <MaxTileRow>22</MaxTileRow>
     17945                                                <MinTileCol>32</MinTileCol>
     17946                                                <MaxTileCol>32</MaxTileCol>
     17947                                        </TileMatrixLimits>
     17948                                        <TileMatrixLimits>
     17949                                                <TileMatrix>7</TileMatrix>
     17950                                                <MinTileRow>45</MinTileRow>
     17951                                                <MaxTileRow>45</MaxTileRow>
     17952                                                <MinTileCol>65</MinTileCol>
     17953                                                <MaxTileCol>65</MaxTileCol>
     17954                                        </TileMatrixLimits>
     17955                                        <TileMatrixLimits>
     17956                                                <TileMatrix>8</TileMatrix>
     17957                                                <MinTileRow>91</MinTileRow>
     17958                                                <MaxTileRow>91</MaxTileRow>
     17959                                                <MinTileCol>130</MinTileCol>
     17960                                                <MaxTileCol>130</MaxTileCol>
     17961                                        </TileMatrixLimits>
     17962                                        <TileMatrixLimits>
     17963                                                <TileMatrix>9</TileMatrix>
     17964                                                <MinTileRow>183</MinTileRow>
     17965                                                <MaxTileRow>183</MaxTileRow>
     17966                                                <MinTileCol>260</MinTileCol>
     17967                                                <MaxTileCol>261</MaxTileCol>
     17968                                        </TileMatrixLimits>
     17969                                </TileMatrixSetLimits>
     17970                        </TileMatrixSetLink>
     17971                </Layer>
     17972                <Layer>
     17973                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     17974                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     17975                        <ows:Keywords>
     17976                                <ows:Keyword>Photographies</ows:Keyword>
     17977                        </ows:Keywords>
     17978                        <ows:WGS84BoundingBox>
     17979                                <ows:LowerCorner>2.49197 46.2467</ows:LowerCorner>
     17980                                <ows:UpperCorner>2.80531 46.4458</ows:UpperCorner>
     17981                        </ows:WGS84BoundingBox>
     17982                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-05-38509201</ows:Identifier>
     17983                        <Style isDefault="true">
     17984                                <ows:Title>Données Brutes</ows:Title>
     17985                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     17986                                <ows:Keywords>
     17987                                        <ows:Keyword>Défaut</ows:Keyword>
     17988                                </ows:Keywords>
     17989                                <ows:Identifier>normal</ows:Identifier>
     17990                                <LegendURL format="image/jpeg" height="200"
     17991                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     17992                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     17993                        </Style>
     17994                        <Format>image/jpeg</Format>
     17995                        <TileMatrixSetLink>
     17996                                <TileMatrixSet>PM</TileMatrixSet>
     17997                                <TileMatrixSetLimits>
     17998                                        <TileMatrixLimits>
     17999                                                <TileMatrix>0</TileMatrix>
     18000                                                <MinTileRow>0</MinTileRow>
     18001                                                <MaxTileRow>0</MaxTileRow>
     18002                                                <MinTileCol>0</MinTileCol>
     18003                                                <MaxTileCol>0</MaxTileCol>
     18004                                        </TileMatrixLimits>
     18005                                        <TileMatrixLimits>
     18006                                                <TileMatrix>1</TileMatrix>
     18007                                                <MinTileRow>0</MinTileRow>
     18008                                                <MaxTileRow>0</MaxTileRow>
     18009                                                <MinTileCol>1</MinTileCol>
     18010                                                <MaxTileCol>1</MaxTileCol>
     18011                                        </TileMatrixLimits>
     18012                                        <TileMatrixLimits>
     18013                                                <TileMatrix>10</TileMatrix>
     18014                                                <MinTileRow>362</MinTileRow>
     18015                                                <MaxTileRow>363</MaxTileRow>
     18016                                                <MinTileCol>519</MinTileCol>
     18017                                                <MaxTileCol>519</MaxTileCol>
     18018                                        </TileMatrixLimits>
     18019                                        <TileMatrixLimits>
     18020                                                <TileMatrix>11</TileMatrix>
     18021                                                <MinTileRow>724</MinTileRow>
     18022                                                <MaxTileRow>726</MaxTileRow>
     18023                                                <MinTileCol>1038</MinTileCol>
     18024                                                <MaxTileCol>1039</MaxTileCol>
     18025                                        </TileMatrixLimits>
     18026                                        <TileMatrixLimits>
     18027                                                <TileMatrix>12</TileMatrix>
     18028                                                <MinTileRow>1449</MinTileRow>
     18029                                                <MaxTileRow>1453</MaxTileRow>
     18030                                                <MinTileCol>2076</MinTileCol>
     18031                                                <MaxTileCol>2079</MaxTileCol>
     18032                                        </TileMatrixLimits>
     18033                                        <TileMatrixLimits>
     18034                                                <TileMatrix>13</TileMatrix>
     18035                                                <MinTileRow>2899</MinTileRow>
     18036                                                <MaxTileRow>2906</MaxTileRow>
     18037                                                <MinTileCol>4152</MinTileCol>
     18038                                                <MaxTileCol>4159</MaxTileCol>
     18039                                        </TileMatrixLimits>
     18040                                        <TileMatrixLimits>
     18041                                                <TileMatrix>14</TileMatrix>
     18042                                                <MinTileRow>5799</MinTileRow>
     18043                                                <MaxTileRow>5812</MaxTileRow>
     18044                                                <MinTileCol>8305</MinTileCol>
     18045                                                <MaxTileCol>8319</MaxTileCol>
     18046                                        </TileMatrixLimits>
     18047                                        <TileMatrixLimits>
     18048                                                <TileMatrix>15</TileMatrix>
     18049                                                <MinTileRow>11598</MinTileRow>
     18050                                                <MaxTileRow>11625</MaxTileRow>
     18051                                                <MinTileCol>16610</MinTileCol>
     18052                                                <MaxTileCol>16639</MaxTileCol>
     18053                                        </TileMatrixLimits>
     18054                                        <TileMatrixLimits>
     18055                                                <TileMatrix>16</TileMatrix>
     18056                                                <MinTileRow>23197</MinTileRow>
     18057                                                <MaxTileRow>23250</MaxTileRow>
     18058                                                <MinTileCol>33221</MinTileCol>
     18059                                                <MaxTileCol>33278</MaxTileCol>
     18060                                        </TileMatrixLimits>
     18061                                        <TileMatrixLimits>
     18062                                                <TileMatrix>17</TileMatrix>
     18063                                                <MinTileRow>46395</MinTileRow>
     18064                                                <MaxTileRow>46500</MaxTileRow>
     18065                                                <MinTileCol>66443</MinTileCol>
     18066                                                <MaxTileCol>66557</MaxTileCol>
     18067                                        </TileMatrixLimits>
     18068                                        <TileMatrixLimits>
     18069                                                <TileMatrix>18</TileMatrix>
     18070                                                <MinTileRow>92791</MinTileRow>
     18071                                                <MaxTileRow>93001</MaxTileRow>
     18072                                                <MinTileCol>132886</MinTileCol>
     18073                                                <MaxTileCol>133114</MaxTileCol>
     18074                                        </TileMatrixLimits>
     18075                                        <TileMatrixLimits>
     18076                                                <TileMatrix>2</TileMatrix>
     18077                                                <MinTileRow>1</MinTileRow>
     18078                                                <MaxTileRow>1</MaxTileRow>
     18079                                                <MinTileCol>2</MinTileCol>
     18080                                                <MaxTileCol>2</MaxTileCol>
     18081                                        </TileMatrixLimits>
     18082                                        <TileMatrixLimits>
     18083                                                <TileMatrix>3</TileMatrix>
     18084                                                <MinTileRow>2</MinTileRow>
     18085                                                <MaxTileRow>2</MaxTileRow>
     18086                                                <MinTileCol>4</MinTileCol>
     18087                                                <MaxTileCol>4</MaxTileCol>
     18088                                        </TileMatrixLimits>
     18089                                        <TileMatrixLimits>
     18090                                                <TileMatrix>4</TileMatrix>
     18091                                                <MinTileRow>5</MinTileRow>
     18092                                                <MaxTileRow>5</MaxTileRow>
     18093                                                <MinTileCol>8</MinTileCol>
     18094                                                <MaxTileCol>8</MaxTileCol>
     18095                                        </TileMatrixLimits>
     18096                                        <TileMatrixLimits>
     18097                                                <TileMatrix>5</TileMatrix>
     18098                                                <MinTileRow>11</MinTileRow>
     18099                                                <MaxTileRow>11</MaxTileRow>
     18100                                                <MinTileCol>16</MinTileCol>
     18101                                                <MaxTileCol>16</MaxTileCol>
     18102                                        </TileMatrixLimits>
     18103                                        <TileMatrixLimits>
     18104                                                <TileMatrix>6</TileMatrix>
     18105                                                <MinTileRow>22</MinTileRow>
     18106                                                <MaxTileRow>22</MaxTileRow>
     18107                                                <MinTileCol>32</MinTileCol>
     18108                                                <MaxTileCol>32</MaxTileCol>
     18109                                        </TileMatrixLimits>
     18110                                        <TileMatrixLimits>
     18111                                                <TileMatrix>7</TileMatrix>
     18112                                                <MinTileRow>45</MinTileRow>
     18113                                                <MaxTileRow>45</MaxTileRow>
     18114                                                <MinTileCol>64</MinTileCol>
     18115                                                <MaxTileCol>64</MaxTileCol>
     18116                                        </TileMatrixLimits>
     18117                                        <TileMatrixLimits>
     18118                                                <TileMatrix>8</TileMatrix>
     18119                                                <MinTileRow>90</MinTileRow>
     18120                                                <MaxTileRow>90</MaxTileRow>
     18121                                                <MinTileCol>129</MinTileCol>
     18122                                                <MaxTileCol>129</MaxTileCol>
     18123                                        </TileMatrixLimits>
     18124                                        <TileMatrixLimits>
     18125                                                <TileMatrix>9</TileMatrix>
     18126                                                <MinTileRow>181</MinTileRow>
     18127                                                <MaxTileRow>181</MaxTileRow>
     18128                                                <MinTileCol>259</MinTileCol>
     18129                                                <MaxTileCol>259</MaxTileCol>
     18130                                        </TileMatrixLimits>
     18131                                </TileMatrixSetLimits>
     18132                        </TileMatrixSetLink>
     18133                </Layer>
     18134                <Layer>
     18135                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18136                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18137                        <ows:Keywords>
     18138                                <ows:Keyword>Photographies</ows:Keyword>
     18139                        </ows:Keywords>
     18140                        <ows:WGS84BoundingBox>
     18141                                <ows:LowerCorner>3.47347 45.4619</ows:LowerCorner>
     18142                                <ows:UpperCorner>3.76652 46.3009</ows:UpperCorner>
     18143                        </ows:WGS84BoundingBox>
     18144                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-11-38705947</ows:Identifier>
     18145                        <Style isDefault="true">
     18146                                <ows:Title>Données Brutes</ows:Title>
     18147                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18148                                <ows:Keywords>
     18149                                        <ows:Keyword>Défaut</ows:Keyword>
     18150                                </ows:Keywords>
     18151                                <ows:Identifier>normal</ows:Identifier>
     18152                                <LegendURL format="image/jpeg" height="200"
     18153                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18154                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18155                        </Style>
     18156                        <Format>image/jpeg</Format>
     18157                        <TileMatrixSetLink>
     18158                                <TileMatrixSet>PM</TileMatrixSet>
     18159                                <TileMatrixSetLimits>
     18160                                        <TileMatrixLimits>
     18161                                                <TileMatrix>0</TileMatrix>
     18162                                                <MinTileRow>0</MinTileRow>
     18163                                                <MaxTileRow>0</MaxTileRow>
     18164                                                <MinTileCol>0</MinTileCol>
     18165                                                <MaxTileCol>0</MaxTileCol>
     18166                                        </TileMatrixLimits>
     18167                                        <TileMatrixLimits>
     18168                                                <TileMatrix>1</TileMatrix>
     18169                                                <MinTileRow>0</MinTileRow>
     18170                                                <MaxTileRow>0</MaxTileRow>
     18171                                                <MinTileCol>1</MinTileCol>
     18172                                                <MaxTileCol>1</MaxTileCol>
     18173                                        </TileMatrixLimits>
     18174                                        <TileMatrixLimits>
     18175                                                <TileMatrix>10</TileMatrix>
     18176                                                <MinTileRow>363</MinTileRow>
     18177                                                <MaxTileRow>366</MaxTileRow>
     18178                                                <MinTileCol>521</MinTileCol>
     18179                                                <MaxTileCol>522</MaxTileCol>
     18180                                        </TileMatrixLimits>
     18181                                        <TileMatrixLimits>
     18182                                                <TileMatrix>11</TileMatrix>
     18183                                                <MinTileRow>726</MinTileRow>
     18184                                                <MaxTileRow>732</MaxTileRow>
     18185                                                <MinTileCol>1043</MinTileCol>
     18186                                                <MaxTileCol>1045</MaxTileCol>
     18187                                        </TileMatrixLimits>
     18188                                        <TileMatrixLimits>
     18189                                                <TileMatrix>12</TileMatrix>
     18190                                                <MinTileRow>1452</MinTileRow>
     18191                                                <MaxTileRow>1465</MaxTileRow>
     18192                                                <MinTileCol>2087</MinTileCol>
     18193                                                <MaxTileCol>2090</MaxTileCol>
     18194                                        </TileMatrixLimits>
     18195                                        <TileMatrixLimits>
     18196                                                <TileMatrix>13</TileMatrix>
     18197                                                <MinTileRow>2904</MinTileRow>
     18198                                                <MaxTileRow>2931</MaxTileRow>
     18199                                                <MinTileCol>4175</MinTileCol>
     18200                                                <MaxTileCol>4181</MaxTileCol>
     18201                                        </TileMatrixLimits>
     18202                                        <TileMatrixLimits>
     18203                                                <TileMatrix>14</TileMatrix>
     18204                                                <MinTileRow>5809</MinTileRow>
     18205                                                <MaxTileRow>5863</MaxTileRow>
     18206                                                <MinTileCol>8350</MinTileCol>
     18207                                                <MaxTileCol>8363</MaxTileCol>
     18208                                        </TileMatrixLimits>
     18209                                        <TileMatrixLimits>
     18210                                                <TileMatrix>15</TileMatrix>
     18211                                                <MinTileRow>11618</MinTileRow>
     18212                                                <MaxTileRow>11727</MaxTileRow>
     18213                                                <MinTileCol>16700</MinTileCol>
     18214                                                <MaxTileCol>16726</MaxTileCol>
     18215                                        </TileMatrixLimits>
     18216                                        <TileMatrixLimits>
     18217                                                <TileMatrix>16</TileMatrix>
     18218                                                <MinTileRow>23236</MinTileRow>
     18219                                                <MaxTileRow>23455</MaxTileRow>
     18220                                                <MinTileCol>33400</MinTileCol>
     18221                                                <MaxTileCol>33453</MaxTileCol>
     18222                                        </TileMatrixLimits>
     18223                                        <TileMatrixLimits>
     18224                                                <TileMatrix>17</TileMatrix>
     18225                                                <MinTileRow>46472</MinTileRow>
     18226                                                <MaxTileRow>46911</MaxTileRow>
     18227                                                <MinTileCol>66800</MinTileCol>
     18228                                                <MaxTileCol>66907</MaxTileCol>
     18229                                        </TileMatrixLimits>
     18230                                        <TileMatrixLimits>
     18231                                                <TileMatrix>18</TileMatrix>
     18232                                                <MinTileRow>92944</MinTileRow>
     18233                                                <MaxTileRow>93822</MaxTileRow>
     18234                                                <MinTileCol>133601</MinTileCol>
     18235                                                <MaxTileCol>133814</MaxTileCol>
     18236                                        </TileMatrixLimits>
     18237                                        <TileMatrixLimits>
     18238                                                <TileMatrix>2</TileMatrix>
     18239                                                <MinTileRow>1</MinTileRow>
     18240                                                <MaxTileRow>1</MaxTileRow>
     18241                                                <MinTileCol>2</MinTileCol>
     18242                                                <MaxTileCol>2</MaxTileCol>
     18243                                        </TileMatrixLimits>
     18244                                        <TileMatrixLimits>
     18245                                                <TileMatrix>3</TileMatrix>
     18246                                                <MinTileRow>2</MinTileRow>
     18247                                                <MaxTileRow>2</MaxTileRow>
     18248                                                <MinTileCol>4</MinTileCol>
     18249                                                <MaxTileCol>4</MaxTileCol>
     18250                                        </TileMatrixLimits>
     18251                                        <TileMatrixLimits>
     18252                                                <TileMatrix>4</TileMatrix>
     18253                                                <MinTileRow>5</MinTileRow>
     18254                                                <MaxTileRow>5</MaxTileRow>
     18255                                                <MinTileCol>8</MinTileCol>
     18256                                                <MaxTileCol>8</MaxTileCol>
     18257                                        </TileMatrixLimits>
     18258                                        <TileMatrixLimits>
     18259                                                <TileMatrix>5</TileMatrix>
     18260                                                <MinTileRow>11</MinTileRow>
     18261                                                <MaxTileRow>11</MaxTileRow>
     18262                                                <MinTileCol>16</MinTileCol>
     18263                                                <MaxTileCol>16</MaxTileCol>
     18264                                        </TileMatrixLimits>
     18265                                        <TileMatrixLimits>
     18266                                                <TileMatrix>6</TileMatrix>
     18267                                                <MinTileRow>22</MinTileRow>
     18268                                                <MaxTileRow>22</MaxTileRow>
     18269                                                <MinTileCol>32</MinTileCol>
     18270                                                <MaxTileCol>32</MaxTileCol>
     18271                                        </TileMatrixLimits>
     18272                                        <TileMatrixLimits>
     18273                                                <TileMatrix>7</TileMatrix>
     18274                                                <MinTileRow>45</MinTileRow>
     18275                                                <MaxTileRow>45</MaxTileRow>
     18276                                                <MinTileCol>65</MinTileCol>
     18277                                                <MaxTileCol>65</MaxTileCol>
     18278                                        </TileMatrixLimits>
     18279                                        <TileMatrixLimits>
     18280                                                <TileMatrix>8</TileMatrix>
     18281                                                <MinTileRow>90</MinTileRow>
     18282                                                <MaxTileRow>91</MaxTileRow>
     18283                                                <MinTileCol>130</MinTileCol>
     18284                                                <MaxTileCol>130</MaxTileCol>
     18285                                        </TileMatrixLimits>
     18286                                        <TileMatrixLimits>
     18287                                                <TileMatrix>9</TileMatrix>
     18288                                                <MinTileRow>181</MinTileRow>
     18289                                                <MaxTileRow>183</MaxTileRow>
     18290                                                <MinTileCol>260</MinTileCol>
     18291                                                <MaxTileCol>261</MaxTileCol>
     18292                                        </TileMatrixLimits>
     18293                                </TileMatrixSetLimits>
     18294                        </TileMatrixSetLink>
     18295                </Layer>
     18296                <Layer>
     18297                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18298                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18299                        <ows:Keywords>
     18300                                <ows:Keyword>Photographies</ows:Keyword>
     18301                        </ows:Keywords>
     18302                        <ows:WGS84BoundingBox>
     18303                                <ows:LowerCorner>3.25585 45.4452</ows:LowerCorner>
     18304                                <ows:UpperCorner>3.53902 45.6262</ows:UpperCorner>
     18305                        </ows:WGS84BoundingBox>
     18306                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-11-38725694</ows:Identifier>
     18307                        <Style isDefault="true">
     18308                                <ows:Title>Données Brutes</ows:Title>
     18309                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18310                                <ows:Keywords>
     18311                                        <ows:Keyword>Défaut</ows:Keyword>
     18312                                </ows:Keywords>
     18313                                <ows:Identifier>normal</ows:Identifier>
     18314                                <LegendURL format="image/jpeg" height="200"
     18315                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18316                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18317                        </Style>
     18318                        <Format>image/jpeg</Format>
     18319                        <TileMatrixSetLink>
     18320                                <TileMatrixSet>PM</TileMatrixSet>
     18321                                <TileMatrixSetLimits>
     18322                                        <TileMatrixLimits>
     18323                                                <TileMatrix>0</TileMatrix>
     18324                                                <MinTileRow>0</MinTileRow>
     18325                                                <MaxTileRow>0</MaxTileRow>
     18326                                                <MinTileCol>0</MinTileCol>
     18327                                                <MaxTileCol>0</MaxTileCol>
     18328                                        </TileMatrixLimits>
     18329                                        <TileMatrixLimits>
     18330                                                <TileMatrix>1</TileMatrix>
     18331                                                <MinTileRow>0</MinTileRow>
     18332                                                <MaxTileRow>0</MaxTileRow>
     18333                                                <MinTileCol>1</MinTileCol>
     18334                                                <MaxTileCol>1</MaxTileCol>
     18335                                        </TileMatrixLimits>
     18336                                        <TileMatrixLimits>
     18337                                                <TileMatrix>10</TileMatrix>
     18338                                                <MinTileRow>365</MinTileRow>
     18339                                                <MaxTileRow>366</MaxTileRow>
     18340                                                <MinTileCol>521</MinTileCol>
     18341                                                <MaxTileCol>522</MaxTileCol>
     18342                                        </TileMatrixLimits>
     18343                                        <TileMatrixLimits>
     18344                                                <TileMatrix>11</TileMatrix>
     18345                                                <MinTileRow>731</MinTileRow>
     18346                                                <MaxTileRow>733</MaxTileRow>
     18347                                                <MinTileCol>1042</MinTileCol>
     18348                                                <MaxTileCol>1044</MaxTileCol>
     18349                                        </TileMatrixLimits>
     18350                                        <TileMatrixLimits>
     18351                                                <TileMatrix>12</TileMatrix>
     18352                                                <MinTileRow>1463</MinTileRow>
     18353                                                <MaxTileRow>1466</MaxTileRow>
     18354                                                <MinTileCol>2085</MinTileCol>
     18355                                                <MaxTileCol>2088</MaxTileCol>
     18356                                        </TileMatrixLimits>
     18357                                        <TileMatrixLimits>
     18358                                                <TileMatrix>13</TileMatrix>
     18359                                                <MinTileRow>2926</MinTileRow>
     18360                                                <MaxTileRow>2932</MaxTileRow>
     18361                                                <MinTileCol>4170</MinTileCol>
     18362                                                <MaxTileCol>4176</MaxTileCol>
     18363                                        </TileMatrixLimits>
     18364                                        <TileMatrixLimits>
     18365                                                <TileMatrix>14</TileMatrix>
     18366                                                <MinTileRow>5853</MinTileRow>
     18367                                                <MaxTileRow>5864</MaxTileRow>
     18368                                                <MinTileCol>8340</MinTileCol>
     18369                                                <MaxTileCol>8353</MaxTileCol>
     18370                                        </TileMatrixLimits>
     18371                                        <TileMatrixLimits>
     18372                                                <TileMatrix>15</TileMatrix>
     18373                                                <MinTileRow>11706</MinTileRow>
     18374                                                <MaxTileRow>11729</MaxTileRow>
     18375                                                <MinTileCol>16680</MinTileCol>
     18376                                                <MaxTileCol>16706</MaxTileCol>
     18377                                        </TileMatrixLimits>
     18378                                        <TileMatrixLimits>
     18379                                                <TileMatrix>16</TileMatrix>
     18380                                                <MinTileRow>23412</MinTileRow>
     18381                                                <MaxTileRow>23459</MaxTileRow>
     18382                                                <MinTileCol>33360</MinTileCol>
     18383                                                <MaxTileCol>33412</MaxTileCol>
     18384                                        </TileMatrixLimits>
     18385                                        <TileMatrixLimits>
     18386                                                <TileMatrix>17</TileMatrix>
     18387                                                <MinTileRow>46825</MinTileRow>
     18388                                                <MaxTileRow>46919</MaxTileRow>
     18389                                                <MinTileCol>66721</MinTileCol>
     18390                                                <MaxTileCol>66824</MaxTileCol>
     18391                                        </TileMatrixLimits>
     18392                                        <TileMatrixLimits>
     18393                                                <TileMatrix>18</TileMatrix>
     18394                                                <MinTileRow>93651</MinTileRow>
     18395                                                <MaxTileRow>93839</MaxTileRow>
     18396                                                <MinTileCol>133442</MinTileCol>
     18397                                                <MaxTileCol>133648</MaxTileCol>
     18398                                        </TileMatrixLimits>
     18399                                        <TileMatrixLimits>
     18400                                                <TileMatrix>2</TileMatrix>
     18401                                                <MinTileRow>1</MinTileRow>
     18402                                                <MaxTileRow>1</MaxTileRow>
     18403                                                <MinTileCol>2</MinTileCol>
     18404                                                <MaxTileCol>2</MaxTileCol>
     18405                                        </TileMatrixLimits>
     18406                                        <TileMatrixLimits>
     18407                                                <TileMatrix>3</TileMatrix>
     18408                                                <MinTileRow>2</MinTileRow>
     18409                                                <MaxTileRow>2</MaxTileRow>
     18410                                                <MinTileCol>4</MinTileCol>
     18411                                                <MaxTileCol>4</MaxTileCol>
     18412                                        </TileMatrixLimits>
     18413                                        <TileMatrixLimits>
     18414                                                <TileMatrix>4</TileMatrix>
     18415                                                <MinTileRow>5</MinTileRow>
     18416                                                <MaxTileRow>5</MaxTileRow>
     18417                                                <MinTileCol>8</MinTileCol>
     18418                                                <MaxTileCol>8</MaxTileCol>
     18419                                        </TileMatrixLimits>
     18420                                        <TileMatrixLimits>
     18421                                                <TileMatrix>5</TileMatrix>
     18422                                                <MinTileRow>11</MinTileRow>
     18423                                                <MaxTileRow>11</MaxTileRow>
     18424                                                <MinTileCol>16</MinTileCol>
     18425                                                <MaxTileCol>16</MaxTileCol>
     18426                                        </TileMatrixLimits>
     18427                                        <TileMatrixLimits>
     18428                                                <TileMatrix>6</TileMatrix>
     18429                                                <MinTileRow>22</MinTileRow>
     18430                                                <MaxTileRow>22</MaxTileRow>
     18431                                                <MinTileCol>32</MinTileCol>
     18432                                                <MaxTileCol>32</MaxTileCol>
     18433                                        </TileMatrixLimits>
     18434                                        <TileMatrixLimits>
     18435                                                <TileMatrix>7</TileMatrix>
     18436                                                <MinTileRow>45</MinTileRow>
     18437                                                <MaxTileRow>45</MaxTileRow>
     18438                                                <MinTileCol>65</MinTileCol>
     18439                                                <MaxTileCol>65</MaxTileCol>
     18440                                        </TileMatrixLimits>
     18441                                        <TileMatrixLimits>
     18442                                                <TileMatrix>8</TileMatrix>
     18443                                                <MinTileRow>91</MinTileRow>
     18444                                                <MaxTileRow>91</MaxTileRow>
     18445                                                <MinTileCol>130</MinTileCol>
     18446                                                <MaxTileCol>130</MaxTileCol>
     18447                                        </TileMatrixLimits>
     18448                                        <TileMatrixLimits>
     18449                                                <TileMatrix>9</TileMatrix>
     18450                                                <MinTileRow>182</MinTileRow>
     18451                                                <MaxTileRow>183</MaxTileRow>
     18452                                                <MinTileCol>260</MinTileCol>
     18453                                                <MaxTileCol>261</MaxTileCol>
     18454                                        </TileMatrixLimits>
     18455                                </TileMatrixSetLimits>
     18456                        </TileMatrixSetLink>
     18457                </Layer>
     18458                <Layer>
     18459                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18460                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18461                        <ows:Keywords>
     18462                                <ows:Keyword>Photographies</ows:Keyword>
     18463                        </ows:Keywords>
     18464                        <ows:WGS84BoundingBox>
     18465                                <ows:LowerCorner>3.72761 45.3248</ows:LowerCorner>
     18466                                <ows:UpperCorner>4.01317 45.5881</ows:UpperCorner>
     18467                        </ows:WGS84BoundingBox>
     18468                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-12-38340574</ows:Identifier>
     18469                        <Style isDefault="true">
     18470                                <ows:Title>Données Brutes</ows:Title>
     18471                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18472                                <ows:Keywords>
     18473                                        <ows:Keyword>Défaut</ows:Keyword>
     18474                                </ows:Keywords>
     18475                                <ows:Identifier>normal</ows:Identifier>
     18476                                <LegendURL format="image/jpeg" height="200"
     18477                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18478                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18479                        </Style>
     18480                        <Format>image/jpeg</Format>
     18481                        <TileMatrixSetLink>
     18482                                <TileMatrixSet>PM</TileMatrixSet>
     18483                                <TileMatrixSetLimits>
     18484                                        <TileMatrixLimits>
     18485                                                <TileMatrix>0</TileMatrix>
     18486                                                <MinTileRow>0</MinTileRow>
     18487                                                <MaxTileRow>0</MaxTileRow>
     18488                                                <MinTileCol>0</MinTileCol>
     18489                                                <MaxTileCol>0</MaxTileCol>
     18490                                        </TileMatrixLimits>
     18491                                        <TileMatrixLimits>
     18492                                                <TileMatrix>1</TileMatrix>
     18493                                                <MinTileRow>0</MinTileRow>
     18494                                                <MaxTileRow>0</MaxTileRow>
     18495                                                <MinTileCol>1</MinTileCol>
     18496                                                <MaxTileCol>1</MaxTileCol>
     18497                                        </TileMatrixLimits>
     18498                                        <TileMatrixLimits>
     18499                                                <TileMatrix>10</TileMatrix>
     18500                                                <MinTileRow>365</MinTileRow>
     18501                                                <MaxTileRow>367</MaxTileRow>
     18502                                                <MinTileCol>522</MinTileCol>
     18503                                                <MaxTileCol>523</MaxTileCol>
     18504                                        </TileMatrixLimits>
     18505                                        <TileMatrixLimits>
     18506                                                <TileMatrix>11</TileMatrix>
     18507                                                <MinTileRow>731</MinTileRow>
     18508                                                <MaxTileRow>734</MaxTileRow>
     18509                                                <MinTileCol>1045</MinTileCol>
     18510                                                <MaxTileCol>1046</MaxTileCol>
     18511                                        </TileMatrixLimits>
     18512                                        <TileMatrixLimits>
     18513                                                <TileMatrix>12</TileMatrix>
     18514                                                <MinTileRow>1463</MinTileRow>
     18515                                                <MaxTileRow>1468</MaxTileRow>
     18516                                                <MinTileCol>2090</MinTileCol>
     18517                                                <MaxTileCol>2093</MaxTileCol>
     18518                                        </TileMatrixLimits>
     18519                                        <TileMatrixLimits>
     18520                                                <TileMatrix>13</TileMatrix>
     18521                                                <MinTileRow>2927</MinTileRow>
     18522                                                <MaxTileRow>2936</MaxTileRow>
     18523                                                <MinTileCol>4180</MinTileCol>
     18524                                                <MaxTileCol>4187</MaxTileCol>
     18525                                        </TileMatrixLimits>
     18526                                        <TileMatrixLimits>
     18527                                                <TileMatrix>14</TileMatrix>
     18528                                                <MinTileRow>5855</MinTileRow>
     18529                                                <MaxTileRow>5872</MaxTileRow>
     18530                                                <MinTileCol>8361</MinTileCol>
     18531                                                <MaxTileCol>8374</MaxTileCol>
     18532                                        </TileMatrixLimits>
     18533                                        <TileMatrixLimits>
     18534                                                <TileMatrix>15</TileMatrix>
     18535                                                <MinTileRow>11711</MinTileRow>
     18536                                                <MaxTileRow>11745</MaxTileRow>
     18537                                                <MinTileCol>16723</MinTileCol>
     18538                                                <MaxTileCol>16749</MaxTileCol>
     18539                                        </TileMatrixLimits>
     18540                                        <TileMatrixLimits>
     18541                                                <TileMatrix>16</TileMatrix>
     18542                                                <MinTileRow>23422</MinTileRow>
     18543                                                <MaxTileRow>23490</MaxTileRow>
     18544                                                <MinTileCol>33446</MinTileCol>
     18545                                                <MaxTileCol>33498</MaxTileCol>
     18546                                        </TileMatrixLimits>
     18547                                        <TileMatrixLimits>
     18548                                                <TileMatrix>17</TileMatrix>
     18549                                                <MinTileRow>46845</MinTileRow>
     18550                                                <MaxTileRow>46981</MaxTileRow>
     18551                                                <MinTileCol>66893</MinTileCol>
     18552                                                <MaxTileCol>66996</MaxTileCol>
     18553                                        </TileMatrixLimits>
     18554                                        <TileMatrixLimits>
     18555                                                <TileMatrix>18</TileMatrix>
     18556                                                <MinTileRow>93690</MinTileRow>
     18557                                                <MaxTileRow>93962</MaxTileRow>
     18558                                                <MinTileCol>133786</MinTileCol>
     18559                                                <MaxTileCol>133993</MaxTileCol>
     18560                                        </TileMatrixLimits>
     18561                                        <TileMatrixLimits>
     18562                                                <TileMatrix>2</TileMatrix>
     18563                                                <MinTileRow>1</MinTileRow>
     18564                                                <MaxTileRow>1</MaxTileRow>
     18565                                                <MinTileCol>2</MinTileCol>
     18566                                                <MaxTileCol>2</MaxTileCol>
     18567                                        </TileMatrixLimits>
     18568                                        <TileMatrixLimits>
     18569                                                <TileMatrix>3</TileMatrix>
     18570                                                <MinTileRow>2</MinTileRow>
     18571                                                <MaxTileRow>2</MaxTileRow>
     18572                                                <MinTileCol>4</MinTileCol>
     18573                                                <MaxTileCol>4</MaxTileCol>
     18574                                        </TileMatrixLimits>
     18575                                        <TileMatrixLimits>
     18576                                                <TileMatrix>4</TileMatrix>
     18577                                                <MinTileRow>5</MinTileRow>
     18578                                                <MaxTileRow>5</MaxTileRow>
     18579                                                <MinTileCol>8</MinTileCol>
     18580                                                <MaxTileCol>8</MaxTileCol>
     18581                                        </TileMatrixLimits>
     18582                                        <TileMatrixLimits>
     18583                                                <TileMatrix>5</TileMatrix>
     18584                                                <MinTileRow>11</MinTileRow>
     18585                                                <MaxTileRow>11</MaxTileRow>
     18586                                                <MinTileCol>16</MinTileCol>
     18587                                                <MaxTileCol>16</MaxTileCol>
     18588                                        </TileMatrixLimits>
     18589                                        <TileMatrixLimits>
     18590                                                <TileMatrix>6</TileMatrix>
     18591                                                <MinTileRow>22</MinTileRow>
     18592                                                <MaxTileRow>22</MaxTileRow>
     18593                                                <MinTileCol>32</MinTileCol>
     18594                                                <MaxTileCol>32</MaxTileCol>
     18595                                        </TileMatrixLimits>
     18596                                        <TileMatrixLimits>
     18597                                                <TileMatrix>7</TileMatrix>
     18598                                                <MinTileRow>45</MinTileRow>
     18599                                                <MaxTileRow>45</MaxTileRow>
     18600                                                <MinTileCol>65</MinTileCol>
     18601                                                <MaxTileCol>65</MaxTileCol>
     18602                                        </TileMatrixLimits>
     18603                                        <TileMatrixLimits>
     18604                                                <TileMatrix>8</TileMatrix>
     18605                                                <MinTileRow>91</MinTileRow>
     18606                                                <MaxTileRow>91</MaxTileRow>
     18607                                                <MinTileCol>130</MinTileCol>
     18608                                                <MaxTileCol>130</MaxTileCol>
     18609                                        </TileMatrixLimits>
     18610                                        <TileMatrixLimits>
     18611                                                <TileMatrix>9</TileMatrix>
     18612                                                <MinTileRow>182</MinTileRow>
     18613                                                <MaxTileRow>183</MaxTileRow>
     18614                                                <MinTileCol>261</MinTileCol>
     18615                                                <MaxTileCol>261</MaxTileCol>
     18616                                        </TileMatrixLimits>
     18617                                </TileMatrixSetLimits>
     18618                        </TileMatrixSetLink>
     18619                </Layer>
     18620                <Layer>
     18621                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18622                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18623                        <ows:Keywords>
     18624                                <ows:Keyword>Photographies</ows:Keyword>
     18625                        </ows:Keywords>
     18626                        <ows:WGS84BoundingBox>
     18627                                <ows:LowerCorner>2.96088 46.2476</ows:LowerCorner>
     18628                                <ows:UpperCorner>3.24775 46.5</ows:UpperCorner>
     18629                        </ows:WGS84BoundingBox>
     18630                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39347445</ows:Identifier>
     18631                        <Style isDefault="true">
     18632                                <ows:Title>Données Brutes</ows:Title>
     18633                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18634                                <ows:Keywords>
     18635                                        <ows:Keyword>Défaut</ows:Keyword>
     18636                                </ows:Keywords>
     18637                                <ows:Identifier>normal</ows:Identifier>
     18638                                <LegendURL format="image/jpeg" height="200"
     18639                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18640                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18641                        </Style>
     18642                        <Format>image/jpeg</Format>
     18643                        <TileMatrixSetLink>
     18644                                <TileMatrixSet>PM</TileMatrixSet>
     18645                                <TileMatrixSetLimits>
     18646                                        <TileMatrixLimits>
     18647                                                <TileMatrix>0</TileMatrix>
     18648                                                <MinTileRow>0</MinTileRow>
     18649                                                <MaxTileRow>0</MaxTileRow>
     18650                                                <MinTileCol>0</MinTileCol>
     18651                                                <MaxTileCol>0</MaxTileCol>
     18652                                        </TileMatrixLimits>
     18653                                        <TileMatrixLimits>
     18654                                                <TileMatrix>1</TileMatrix>
     18655                                                <MinTileRow>0</MinTileRow>
     18656                                                <MaxTileRow>0</MaxTileRow>
     18657                                                <MinTileCol>1</MinTileCol>
     18658                                                <MaxTileCol>1</MaxTileCol>
     18659                                        </TileMatrixLimits>
     18660                                        <TileMatrixLimits>
     18661                                                <TileMatrix>10</TileMatrix>
     18662                                                <MinTileRow>362</MinTileRow>
     18663                                                <MaxTileRow>363</MaxTileRow>
     18664                                                <MinTileCol>520</MinTileCol>
     18665                                                <MaxTileCol>521</MaxTileCol>
     18666                                        </TileMatrixLimits>
     18667                                        <TileMatrixLimits>
     18668                                                <TileMatrix>11</TileMatrix>
     18669                                                <MinTileRow>724</MinTileRow>
     18670                                                <MaxTileRow>726</MaxTileRow>
     18671                                                <MinTileCol>1040</MinTileCol>
     18672                                                <MaxTileCol>1042</MaxTileCol>
     18673                                        </TileMatrixLimits>
     18674                                        <TileMatrixLimits>
     18675                                                <TileMatrix>12</TileMatrix>
     18676                                                <MinTileRow>1448</MinTileRow>
     18677                                                <MaxTileRow>1453</MaxTileRow>
     18678                                                <MinTileCol>2081</MinTileCol>
     18679                                                <MaxTileCol>2084</MaxTileCol>
     18680                                        </TileMatrixLimits>
     18681                                        <TileMatrixLimits>
     18682                                                <TileMatrix>13</TileMatrix>
     18683                                                <MinTileRow>2897</MinTileRow>
     18684                                                <MaxTileRow>2906</MaxTileRow>
     18685                                                <MinTileCol>4163</MinTileCol>
     18686                                                <MaxTileCol>4169</MaxTileCol>
     18687                                        </TileMatrixLimits>
     18688                                        <TileMatrixLimits>
     18689                                                <TileMatrix>14</TileMatrix>
     18690                                                <MinTileRow>5795</MinTileRow>
     18691                                                <MaxTileRow>5812</MaxTileRow>
     18692                                                <MinTileCol>8326</MinTileCol>
     18693                                                <MaxTileCol>8339</MaxTileCol>
     18694                                        </TileMatrixLimits>
     18695                                        <TileMatrixLimits>
     18696                                                <TileMatrix>15</TileMatrix>
     18697                                                <MinTileRow>11591</MinTileRow>
     18698                                                <MaxTileRow>11625</MaxTileRow>
     18699                                                <MinTileCol>16653</MinTileCol>
     18700                                                <MaxTileCol>16679</MaxTileCol>
     18701                                        </TileMatrixLimits>
     18702                                        <TileMatrixLimits>
     18703                                                <TileMatrix>16</TileMatrix>
     18704                                                <MinTileRow>23183</MinTileRow>
     18705                                                <MaxTileRow>23250</MaxTileRow>
     18706                                                <MinTileCol>33306</MinTileCol>
     18707                                                <MaxTileCol>33359</MaxTileCol>
     18708                                        </TileMatrixLimits>
     18709                                        <TileMatrixLimits>
     18710                                                <TileMatrix>17</TileMatrix>
     18711                                                <MinTileRow>46367</MinTileRow>
     18712                                                <MaxTileRow>46500</MaxTileRow>
     18713                                                <MinTileCol>66613</MinTileCol>
     18714                                                <MaxTileCol>66718</MaxTileCol>
     18715                                        </TileMatrixLimits>
     18716                                        <TileMatrixLimits>
     18717                                                <TileMatrix>18</TileMatrix>
     18718                                                <MinTileRow>92734</MinTileRow>
     18719                                                <MaxTileRow>93000</MaxTileRow>
     18720                                                <MinTileCol>133227</MinTileCol>
     18721                                                <MaxTileCol>133437</MaxTileCol>
     18722                                        </TileMatrixLimits>
     18723                                        <TileMatrixLimits>
     18724                                                <TileMatrix>2</TileMatrix>
     18725                                                <MinTileRow>1</MinTileRow>
     18726                                                <MaxTileRow>1</MaxTileRow>
     18727                                                <MinTileCol>2</MinTileCol>
     18728                                                <MaxTileCol>2</MaxTileCol>
     18729                                        </TileMatrixLimits>
     18730                                        <TileMatrixLimits>
     18731                                                <TileMatrix>3</TileMatrix>
     18732                                                <MinTileRow>2</MinTileRow>
     18733                                                <MaxTileRow>2</MaxTileRow>
     18734                                                <MinTileCol>4</MinTileCol>
     18735                                                <MaxTileCol>4</MaxTileCol>
     18736                                        </TileMatrixLimits>
     18737                                        <TileMatrixLimits>
     18738                                                <TileMatrix>4</TileMatrix>
     18739                                                <MinTileRow>5</MinTileRow>
     18740                                                <MaxTileRow>5</MaxTileRow>
     18741                                                <MinTileCol>8</MinTileCol>
     18742                                                <MaxTileCol>8</MaxTileCol>
     18743                                        </TileMatrixLimits>
     18744                                        <TileMatrixLimits>
     18745                                                <TileMatrix>5</TileMatrix>
     18746                                                <MinTileRow>11</MinTileRow>
     18747                                                <MaxTileRow>11</MaxTileRow>
     18748                                                <MinTileCol>16</MinTileCol>
     18749                                                <MaxTileCol>16</MaxTileCol>
     18750                                        </TileMatrixLimits>
     18751                                        <TileMatrixLimits>
     18752                                                <TileMatrix>6</TileMatrix>
     18753                                                <MinTileRow>22</MinTileRow>
     18754                                                <MaxTileRow>22</MaxTileRow>
     18755                                                <MinTileCol>32</MinTileCol>
     18756                                                <MaxTileCol>32</MaxTileCol>
     18757                                        </TileMatrixLimits>
     18758                                        <TileMatrixLimits>
     18759                                                <TileMatrix>7</TileMatrix>
     18760                                                <MinTileRow>45</MinTileRow>
     18761                                                <MaxTileRow>45</MaxTileRow>
     18762                                                <MinTileCol>65</MinTileCol>
     18763                                                <MaxTileCol>65</MaxTileCol>
     18764                                        </TileMatrixLimits>
     18765                                        <TileMatrixLimits>
     18766                                                <TileMatrix>8</TileMatrix>
     18767                                                <MinTileRow>90</MinTileRow>
     18768                                                <MaxTileRow>90</MaxTileRow>
     18769                                                <MinTileCol>130</MinTileCol>
     18770                                                <MaxTileCol>130</MaxTileCol>
     18771                                        </TileMatrixLimits>
     18772                                        <TileMatrixLimits>
     18773                                                <TileMatrix>9</TileMatrix>
     18774                                                <MinTileRow>181</MinTileRow>
     18775                                                <MaxTileRow>181</MaxTileRow>
     18776                                                <MinTileCol>260</MinTileCol>
     18777                                                <MaxTileCol>260</MaxTileCol>
     18778                                        </TileMatrixLimits>
     18779                                </TileMatrixSetLimits>
     18780                        </TileMatrixSetLink>
     18781                </Layer>
     18782                <Layer>
     18783                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18784                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18785                        <ows:Keywords>
     18786                                <ows:Keyword>Photographies</ows:Keyword>
     18787                        </ows:Keywords>
     18788                        <ows:WGS84BoundingBox>
     18789                                <ows:LowerCorner>2.35475 45.5437</ows:LowerCorner>
     18790                                <ows:UpperCorner>2.62836 45.9321</ows:UpperCorner>
     18791                        </ows:WGS84BoundingBox>
     18792                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39375824</ows:Identifier>
     18793                        <Style isDefault="true">
     18794                                <ows:Title>Données Brutes</ows:Title>
     18795                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18796                                <ows:Keywords>
     18797                                        <ows:Keyword>Défaut</ows:Keyword>
     18798                                </ows:Keywords>
     18799                                <ows:Identifier>normal</ows:Identifier>
     18800                                <LegendURL format="image/jpeg" height="200"
     18801                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18802                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18803                        </Style>
     18804                        <Format>image/jpeg</Format>
     18805                        <TileMatrixSetLink>
     18806                                <TileMatrixSet>PM</TileMatrixSet>
     18807                                <TileMatrixSetLimits>
     18808                                        <TileMatrixLimits>
     18809                                                <TileMatrix>0</TileMatrix>
     18810                                                <MinTileRow>0</MinTileRow>
     18811                                                <MaxTileRow>0</MaxTileRow>
     18812                                                <MinTileCol>0</MinTileCol>
     18813                                                <MaxTileCol>0</MaxTileCol>
     18814                                        </TileMatrixLimits>
     18815                                        <TileMatrixLimits>
     18816                                                <TileMatrix>1</TileMatrix>
     18817                                                <MinTileRow>0</MinTileRow>
     18818                                                <MaxTileRow>0</MaxTileRow>
     18819                                                <MinTileCol>1</MinTileCol>
     18820                                                <MaxTileCol>1</MaxTileCol>
     18821                                        </TileMatrixLimits>
     18822                                        <TileMatrixLimits>
     18823                                                <TileMatrix>10</TileMatrix>
     18824                                                <MinTileRow>364</MinTileRow>
     18825                                                <MaxTileRow>366</MaxTileRow>
     18826                                                <MinTileCol>518</MinTileCol>
     18827                                                <MaxTileCol>519</MaxTileCol>
     18828                                        </TileMatrixLimits>
     18829                                        <TileMatrixLimits>
     18830                                                <TileMatrix>11</TileMatrix>
     18831                                                <MinTileRow>729</MinTileRow>
     18832                                                <MaxTileRow>732</MaxTileRow>
     18833                                                <MinTileCol>1037</MinTileCol>
     18834                                                <MaxTileCol>1038</MaxTileCol>
     18835                                        </TileMatrixLimits>
     18836                                        <TileMatrixLimits>
     18837                                                <TileMatrix>12</TileMatrix>
     18838                                                <MinTileRow>1458</MinTileRow>
     18839                                                <MaxTileRow>1464</MaxTileRow>
     18840                                                <MinTileCol>2074</MinTileCol>
     18841                                                <MaxTileCol>2077</MaxTileCol>
     18842                                        </TileMatrixLimits>
     18843                                        <TileMatrixLimits>
     18844                                                <TileMatrix>13</TileMatrix>
     18845                                                <MinTileRow>2916</MinTileRow>
     18846                                                <MaxTileRow>2929</MaxTileRow>
     18847                                                <MinTileCol>4149</MinTileCol>
     18848                                                <MaxTileCol>4155</MaxTileCol>
     18849                                        </TileMatrixLimits>
     18850                                        <TileMatrixLimits>
     18851                                                <TileMatrix>14</TileMatrix>
     18852                                                <MinTileRow>5833</MinTileRow>
     18853                                                <MaxTileRow>5858</MaxTileRow>
     18854                                                <MinTileCol>8299</MinTileCol>
     18855                                                <MaxTileCol>8311</MaxTileCol>
     18856                                        </TileMatrixLimits>
     18857                                        <TileMatrixLimits>
     18858                                                <TileMatrix>15</TileMatrix>
     18859                                                <MinTileRow>11666</MinTileRow>
     18860                                                <MaxTileRow>11717</MaxTileRow>
     18861                                                <MinTileCol>16598</MinTileCol>
     18862                                                <MaxTileCol>16623</MaxTileCol>
     18863                                        </TileMatrixLimits>
     18864                                        <TileMatrixLimits>
     18865                                                <TileMatrix>16</TileMatrix>
     18866                                                <MinTileRow>23332</MinTileRow>
     18867                                                <MaxTileRow>23434</MaxTileRow>
     18868                                                <MinTileCol>33196</MinTileCol>
     18869                                                <MaxTileCol>33246</MaxTileCol>
     18870                                        </TileMatrixLimits>
     18871                                        <TileMatrixLimits>
     18872                                                <TileMatrix>17</TileMatrix>
     18873                                                <MinTileRow>46665</MinTileRow>
     18874                                                <MaxTileRow>46868</MaxTileRow>
     18875                                                <MinTileCol>66393</MinTileCol>
     18876                                                <MaxTileCol>66493</MaxTileCol>
     18877                                        </TileMatrixLimits>
     18878                                        <TileMatrixLimits>
     18879                                                <TileMatrix>18</TileMatrix>
     18880                                                <MinTileRow>93331</MinTileRow>
     18881                                                <MaxTileRow>93736</MaxTileRow>
     18882                                                <MinTileCol>132787</MinTileCol>
     18883                                                <MaxTileCol>132986</MaxTileCol>
     18884                                        </TileMatrixLimits>
     18885                                        <TileMatrixLimits>
     18886                                                <TileMatrix>2</TileMatrix>
     18887                                                <MinTileRow>1</MinTileRow>
     18888                                                <MaxTileRow>1</MaxTileRow>
     18889                                                <MinTileCol>2</MinTileCol>
     18890                                                <MaxTileCol>2</MaxTileCol>
     18891                                        </TileMatrixLimits>
     18892                                        <TileMatrixLimits>
     18893                                                <TileMatrix>3</TileMatrix>
     18894                                                <MinTileRow>2</MinTileRow>
     18895                                                <MaxTileRow>2</MaxTileRow>
     18896                                                <MinTileCol>4</MinTileCol>
     18897                                                <MaxTileCol>4</MaxTileCol>
     18898                                        </TileMatrixLimits>
     18899                                        <TileMatrixLimits>
     18900                                                <TileMatrix>4</TileMatrix>
     18901                                                <MinTileRow>5</MinTileRow>
     18902                                                <MaxTileRow>5</MaxTileRow>
     18903                                                <MinTileCol>8</MinTileCol>
     18904                                                <MaxTileCol>8</MaxTileCol>
     18905                                        </TileMatrixLimits>
     18906                                        <TileMatrixLimits>
     18907                                                <TileMatrix>5</TileMatrix>
     18908                                                <MinTileRow>11</MinTileRow>
     18909                                                <MaxTileRow>11</MaxTileRow>
     18910                                                <MinTileCol>16</MinTileCol>
     18911                                                <MaxTileCol>16</MaxTileCol>
     18912                                        </TileMatrixLimits>
     18913                                        <TileMatrixLimits>
     18914                                                <TileMatrix>6</TileMatrix>
     18915                                                <MinTileRow>22</MinTileRow>
     18916                                                <MaxTileRow>22</MaxTileRow>
     18917                                                <MinTileCol>32</MinTileCol>
     18918                                                <MaxTileCol>32</MaxTileCol>
     18919                                        </TileMatrixLimits>
     18920                                        <TileMatrixLimits>
     18921                                                <TileMatrix>7</TileMatrix>
     18922                                                <MinTileRow>45</MinTileRow>
     18923                                                <MaxTileRow>45</MaxTileRow>
     18924                                                <MinTileCol>64</MinTileCol>
     18925                                                <MaxTileCol>64</MaxTileCol>
     18926                                        </TileMatrixLimits>
     18927                                        <TileMatrixLimits>
     18928                                                <TileMatrix>8</TileMatrix>
     18929                                                <MinTileRow>91</MinTileRow>
     18930                                                <MaxTileRow>91</MaxTileRow>
     18931                                                <MinTileCol>129</MinTileCol>
     18932                                                <MaxTileCol>129</MaxTileCol>
     18933                                        </TileMatrixLimits>
     18934                                        <TileMatrixLimits>
     18935                                                <TileMatrix>9</TileMatrix>
     18936                                                <MinTileRow>182</MinTileRow>
     18937                                                <MaxTileRow>183</MaxTileRow>
     18938                                                <MinTileCol>259</MinTileCol>
     18939                                                <MaxTileCol>259</MaxTileCol>
     18940                                        </TileMatrixLimits>
     18941                                </TileMatrixSetLimits>
     18942                        </TileMatrixSetLink>
     18943                </Layer>
     18944                <Layer>
     18945                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     18946                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     18947                        <ows:Keywords>
     18948                                <ows:Keyword>Photographies</ows:Keyword>
     18949                        </ows:Keywords>
     18950                        <ows:WGS84BoundingBox>
     18951                                <ows:LowerCorner>2.62902 45.3468</ows:LowerCorner>
     18952                                <ows:UpperCorner>2.89784 45.4464</ows:UpperCorner>
     18953                        </ows:WGS84BoundingBox>
     18954                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-16-39388195</ows:Identifier>
     18955                        <Style isDefault="true">
     18956                                <ows:Title>Données Brutes</ows:Title>
     18957                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     18958                                <ows:Keywords>
     18959                                        <ows:Keyword>Défaut</ows:Keyword>
     18960                                </ows:Keywords>
     18961                                <ows:Identifier>normal</ows:Identifier>
     18962                                <LegendURL format="image/jpeg" height="200"
     18963                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     18964                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     18965                        </Style>
     18966                        <Format>image/jpeg</Format>
     18967                        <TileMatrixSetLink>
     18968                                <TileMatrixSet>PM</TileMatrixSet>
     18969                                <TileMatrixSetLimits>
     18970                                        <TileMatrixLimits>
     18971                                                <TileMatrix>0</TileMatrix>
     18972                                                <MinTileRow>0</MinTileRow>
     18973                                                <MaxTileRow>0</MaxTileRow>
     18974                                                <MinTileCol>0</MinTileCol>
     18975                                                <MaxTileCol>0</MaxTileCol>
     18976                                        </TileMatrixLimits>
     18977                                        <TileMatrixLimits>
     18978                                                <TileMatrix>1</TileMatrix>
     18979                                                <MinTileRow>0</MinTileRow>
     18980                                                <MaxTileRow>0</MaxTileRow>
     18981                                                <MinTileCol>1</MinTileCol>
     18982                                                <MaxTileCol>1</MaxTileCol>
     18983                                        </TileMatrixLimits>
     18984                                        <TileMatrixLimits>
     18985                                                <TileMatrix>10</TileMatrix>
     18986                                                <MinTileRow>366</MinTileRow>
     18987                                                <MaxTileRow>366</MaxTileRow>
     18988                                                <MinTileCol>519</MinTileCol>
     18989                                                <MaxTileCol>520</MaxTileCol>
     18990                                        </TileMatrixLimits>
     18991                                        <TileMatrixLimits>
     18992                                                <TileMatrix>11</TileMatrix>
     18993                                                <MinTileRow>733</MinTileRow>
     18994                                                <MaxTileRow>733</MaxTileRow>
     18995                                                <MinTileCol>1038</MinTileCol>
     18996                                                <MaxTileCol>1040</MaxTileCol>
     18997                                        </TileMatrixLimits>
     18998                                        <TileMatrixLimits>
     18999                                                <TileMatrix>12</TileMatrix>
     19000                                                <MinTileRow>1466</MinTileRow>
     19001                                                <MaxTileRow>1467</MaxTileRow>
     19002                                                <MinTileCol>2077</MinTileCol>
     19003                                                <MaxTileCol>2080</MaxTileCol>
     19004                                        </TileMatrixLimits>
     19005                                        <TileMatrixLimits>
     19006                                                <TileMatrix>13</TileMatrix>
     19007                                                <MinTileRow>2932</MinTileRow>
     19008                                                <MaxTileRow>2935</MaxTileRow>
     19009                                                <MinTileCol>4155</MinTileCol>
     19010                                                <MaxTileCol>4161</MaxTileCol>
     19011                                        </TileMatrixLimits>
     19012                                        <TileMatrixLimits>
     19013                                                <TileMatrix>14</TileMatrix>
     19014                                                <MinTileRow>5864</MinTileRow>
     19015                                                <MaxTileRow>5871</MaxTileRow>
     19016                                                <MinTileCol>8311</MinTileCol>
     19017                                                <MaxTileCol>8323</MaxTileCol>
     19018                                        </TileMatrixLimits>
     19019                                        <TileMatrixLimits>
     19020                                                <TileMatrix>15</TileMatrix>
     19021                                                <MinTileRow>11729</MinTileRow>
     19022                                                <MaxTileRow>11742</MaxTileRow>
     19023                                                <MinTileCol>16623</MinTileCol>
     19024                                                <MaxTileCol>16647</MaxTileCol>
     19025                                        </TileMatrixLimits>
     19026                                        <TileMatrixLimits>
     19027                                                <TileMatrix>16</TileMatrix>
     19028                                                <MinTileRow>23459</MinTileRow>
     19029                                                <MaxTileRow>23485</MaxTileRow>
     19030                                                <MinTileCol>33246</MinTileCol>
     19031                                                <MaxTileCol>33295</MaxTileCol>
     19032                                        </TileMatrixLimits>
     19033                                        <TileMatrixLimits>
     19034                                                <TileMatrix>17</TileMatrix>
     19035                                                <MinTileRow>46919</MinTileRow>
     19036                                                <MaxTileRow>46970</MaxTileRow>
     19037                                                <MinTileCol>66493</MinTileCol>
     19038                                                <MaxTileCol>66591</MaxTileCol>
     19039                                        </TileMatrixLimits>
     19040                                        <TileMatrixLimits>
     19041                                                <TileMatrix>18</TileMatrix>
     19042                                                <MinTileRow>93838</MinTileRow>
     19043                                                <MaxTileRow>93940</MaxTileRow>
     19044                                                <MinTileCol>132986</MinTileCol>
     19045                                                <MaxTileCol>133182</MaxTileCol>
     19046                                        </TileMatrixLimits>
     19047                                        <TileMatrixLimits>
     19048                                                <TileMatrix>2</TileMatrix>
     19049                                                <MinTileRow>1</MinTileRow>
     19050                                                <MaxTileRow>1</MaxTileRow>
     19051                                                <MinTileCol>2</MinTileCol>
     19052                                                <MaxTileCol>2</MaxTileCol>
     19053                                        </TileMatrixLimits>
     19054                                        <TileMatrixLimits>
     19055                                                <TileMatrix>3</TileMatrix>
     19056                                                <MinTileRow>2</MinTileRow>
     19057                                                <MaxTileRow>2</MaxTileRow>
     19058                                                <MinTileCol>4</MinTileCol>
     19059                                                <MaxTileCol>4</MaxTileCol>
     19060                                        </TileMatrixLimits>
     19061                                        <TileMatrixLimits>
     19062                                                <TileMatrix>4</TileMatrix>
     19063                                                <MinTileRow>5</MinTileRow>
     19064                                                <MaxTileRow>5</MaxTileRow>
     19065                                                <MinTileCol>8</MinTileCol>
     19066                                                <MaxTileCol>8</MaxTileCol>
     19067                                        </TileMatrixLimits>
     19068                                        <TileMatrixLimits>
     19069                                                <TileMatrix>5</TileMatrix>
     19070                                                <MinTileRow>11</MinTileRow>
     19071                                                <MaxTileRow>11</MaxTileRow>
     19072                                                <MinTileCol>16</MinTileCol>
     19073                                                <MaxTileCol>16</MaxTileCol>
     19074                                        </TileMatrixLimits>
     19075                                        <TileMatrixLimits>
     19076                                                <TileMatrix>6</TileMatrix>
     19077                                                <MinTileRow>22</MinTileRow>
     19078                                                <MaxTileRow>22</MaxTileRow>
     19079                                                <MinTileCol>32</MinTileCol>
     19080                                                <MaxTileCol>32</MaxTileCol>
     19081                                        </TileMatrixLimits>
     19082                                        <TileMatrixLimits>
     19083                                                <TileMatrix>7</TileMatrix>
     19084                                                <MinTileRow>45</MinTileRow>
     19085                                                <MaxTileRow>45</MaxTileRow>
     19086                                                <MinTileCol>64</MinTileCol>
     19087                                                <MaxTileCol>65</MaxTileCol>
     19088                                        </TileMatrixLimits>
     19089                                        <TileMatrixLimits>
     19090                                                <TileMatrix>8</TileMatrix>
     19091                                                <MinTileRow>91</MinTileRow>
     19092                                                <MaxTileRow>91</MaxTileRow>
     19093                                                <MinTileCol>129</MinTileCol>
     19094                                                <MaxTileCol>130</MaxTileCol>
     19095                                        </TileMatrixLimits>
     19096                                        <TileMatrixLimits>
     19097                                                <TileMatrix>9</TileMatrix>
     19098                                                <MinTileRow>183</MinTileRow>
     19099                                                <MaxTileRow>183</MaxTileRow>
     19100                                                <MinTileCol>259</MinTileCol>
     19101                                                <MaxTileCol>260</MaxTileCol>
     19102                                        </TileMatrixLimits>
     19103                                </TileMatrixSetLimits>
     19104                        </TileMatrixSetLink>
     19105                </Layer>
     19106                <Layer>
     19107                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19108                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19109                        <ows:Keywords>
     19110                                <ows:Keyword>Photographies</ows:Keyword>
     19111                        </ows:Keywords>
     19112                        <ows:WGS84BoundingBox>
     19113                                <ows:LowerCorner>2.50204 46.4899</ows:LowerCorner>
     19114                                <ows:UpperCorner>2.7914 46.7699</ows:UpperCorner>
     19115                        </ows:WGS84BoundingBox>
     19116                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38949864</ows:Identifier>
     19117                        <Style isDefault="true">
     19118                                <ows:Title>Données Brutes</ows:Title>
     19119                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19120                                <ows:Keywords>
     19121                                        <ows:Keyword>Défaut</ows:Keyword>
     19122                                </ows:Keywords>
     19123                                <ows:Identifier>normal</ows:Identifier>
     19124                                <LegendURL format="image/jpeg" height="200"
     19125                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19126                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19127                        </Style>
     19128                        <Format>image/jpeg</Format>
     19129                        <TileMatrixSetLink>
     19130                                <TileMatrixSet>PM</TileMatrixSet>
     19131                                <TileMatrixSetLimits>
     19132                                        <TileMatrixLimits>
     19133                                                <TileMatrix>0</TileMatrix>
     19134                                                <MinTileRow>0</MinTileRow>
     19135                                                <MaxTileRow>0</MaxTileRow>
     19136                                                <MinTileCol>0</MinTileCol>
     19137                                                <MaxTileCol>0</MaxTileCol>
     19138                                        </TileMatrixLimits>
     19139                                        <TileMatrixLimits>
     19140                                                <TileMatrix>1</TileMatrix>
     19141                                                <MinTileRow>0</MinTileRow>
     19142                                                <MaxTileRow>0</MaxTileRow>
     19143                                                <MinTileCol>1</MinTileCol>
     19144                                                <MaxTileCol>1</MaxTileCol>
     19145                                        </TileMatrixLimits>
     19146                                        <TileMatrixLimits>
     19147                                                <TileMatrix>10</TileMatrix>
     19148                                                <MinTileRow>361</MinTileRow>
     19149                                                <MaxTileRow>362</MaxTileRow>
     19150                                                <MinTileCol>519</MinTileCol>
     19151                                                <MaxTileCol>519</MaxTileCol>
     19152                                        </TileMatrixLimits>
     19153                                        <TileMatrixLimits>
     19154                                                <TileMatrix>11</TileMatrix>
     19155                                                <MinTileRow>722</MinTileRow>
     19156                                                <MaxTileRow>724</MaxTileRow>
     19157                                                <MinTileCol>1038</MinTileCol>
     19158                                                <MaxTileCol>1039</MaxTileCol>
     19159                                        </TileMatrixLimits>
     19160                                        <TileMatrixLimits>
     19161                                                <TileMatrix>12</TileMatrix>
     19162                                                <MinTileRow>1444</MinTileRow>
     19163                                                <MaxTileRow>1449</MaxTileRow>
     19164                                                <MinTileCol>2076</MinTileCol>
     19165                                                <MaxTileCol>2079</MaxTileCol>
     19166                                        </TileMatrixLimits>
     19167                                        <TileMatrixLimits>
     19168                                                <TileMatrix>13</TileMatrix>
     19169                                                <MinTileRow>2889</MinTileRow>
     19170                                                <MaxTileRow>2898</MaxTileRow>
     19171                                                <MinTileCol>4152</MinTileCol>
     19172                                                <MaxTileCol>4159</MaxTileCol>
     19173                                        </TileMatrixLimits>
     19174                                        <TileMatrixLimits>
     19175                                                <TileMatrix>14</TileMatrix>
     19176                                                <MinTileRow>5778</MinTileRow>
     19177                                                <MaxTileRow>5796</MaxTileRow>
     19178                                                <MinTileCol>8305</MinTileCol>
     19179                                                <MaxTileCol>8319</MaxTileCol>
     19180                                        </TileMatrixLimits>
     19181                                        <TileMatrixLimits>
     19182                                                <TileMatrix>15</TileMatrix>
     19183                                                <MinTileRow>11556</MinTileRow>
     19184                                                <MaxTileRow>11593</MaxTileRow>
     19185                                                <MinTileCol>16611</MinTileCol>
     19186                                                <MaxTileCol>16638</MaxTileCol>
     19187                                        </TileMatrixLimits>
     19188                                        <TileMatrixLimits>
     19189                                                <TileMatrix>16</TileMatrix>
     19190                                                <MinTileRow>23112</MinTileRow>
     19191                                                <MaxTileRow>23186</MaxTileRow>
     19192                                                <MinTileCol>33223</MinTileCol>
     19193                                                <MaxTileCol>33276</MaxTileCol>
     19194                                        </TileMatrixLimits>
     19195                                        <TileMatrixLimits>
     19196                                                <TileMatrix>17</TileMatrix>
     19197                                                <MinTileRow>46224</MinTileRow>
     19198                                                <MaxTileRow>46372</MaxTileRow>
     19199                                                <MinTileCol>66447</MinTileCol>
     19200                                                <MaxTileCol>66552</MaxTileCol>
     19201                                        </TileMatrixLimits>
     19202                                        <TileMatrixLimits>
     19203                                                <TileMatrix>18</TileMatrix>
     19204                                                <MinTileRow>92448</MinTileRow>
     19205                                                <MaxTileRow>92744</MaxTileRow>
     19206                                                <MinTileCol>132895</MinTileCol>
     19207                                                <MaxTileCol>133104</MaxTileCol>
     19208                                        </TileMatrixLimits>
     19209                                        <TileMatrixLimits>
     19210                                                <TileMatrix>2</TileMatrix>
     19211                                                <MinTileRow>1</MinTileRow>
     19212                                                <MaxTileRow>1</MaxTileRow>
     19213                                                <MinTileCol>2</MinTileCol>
     19214                                                <MaxTileCol>2</MaxTileCol>
     19215                                        </TileMatrixLimits>
     19216                                        <TileMatrixLimits>
     19217                                                <TileMatrix>3</TileMatrix>
     19218                                                <MinTileRow>2</MinTileRow>
     19219                                                <MaxTileRow>2</MaxTileRow>
     19220                                                <MinTileCol>4</MinTileCol>
     19221                                                <MaxTileCol>4</MaxTileCol>
     19222                                        </TileMatrixLimits>
     19223                                        <TileMatrixLimits>
     19224                                                <TileMatrix>4</TileMatrix>
     19225                                                <MinTileRow>5</MinTileRow>
     19226                                                <MaxTileRow>5</MaxTileRow>
     19227                                                <MinTileCol>8</MinTileCol>
     19228                                                <MaxTileCol>8</MaxTileCol>
     19229                                        </TileMatrixLimits>
     19230                                        <TileMatrixLimits>
     19231                                                <TileMatrix>5</TileMatrix>
     19232                                                <MinTileRow>11</MinTileRow>
     19233                                                <MaxTileRow>11</MaxTileRow>
     19234                                                <MinTileCol>16</MinTileCol>
     19235                                                <MaxTileCol>16</MaxTileCol>
     19236                                        </TileMatrixLimits>
     19237                                        <TileMatrixLimits>
     19238                                                <TileMatrix>6</TileMatrix>
     19239                                                <MinTileRow>22</MinTileRow>
     19240                                                <MaxTileRow>22</MaxTileRow>
     19241                                                <MinTileCol>32</MinTileCol>
     19242                                                <MaxTileCol>32</MaxTileCol>
     19243                                        </TileMatrixLimits>
     19244                                        <TileMatrixLimits>
     19245                                                <TileMatrix>7</TileMatrix>
     19246                                                <MinTileRow>45</MinTileRow>
     19247                                                <MaxTileRow>45</MaxTileRow>
     19248                                                <MinTileCol>64</MinTileCol>
     19249                                                <MaxTileCol>64</MaxTileCol>
     19250                                        </TileMatrixLimits>
     19251                                        <TileMatrixLimits>
     19252                                                <TileMatrix>8</TileMatrix>
     19253                                                <MinTileRow>90</MinTileRow>
     19254                                                <MaxTileRow>90</MaxTileRow>
     19255                                                <MinTileCol>129</MinTileCol>
     19256                                                <MaxTileCol>129</MaxTileCol>
     19257                                        </TileMatrixLimits>
     19258                                        <TileMatrixLimits>
     19259                                                <TileMatrix>9</TileMatrix>
     19260                                                <MinTileRow>180</MinTileRow>
     19261                                                <MaxTileRow>181</MaxTileRow>
     19262                                                <MinTileCol>259</MinTileCol>
     19263                                                <MaxTileCol>259</MaxTileCol>
     19264                                        </TileMatrixLimits>
     19265                                </TileMatrixSetLimits>
     19266                        </TileMatrixSetLink>
     19267                </Layer>
     19268                <Layer>
     19269                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19270                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19271                        <ows:Keywords>
     19272                                <ows:Keyword>Photographies</ows:Keyword>
     19273                        </ows:Keywords>
     19274                        <ows:WGS84BoundingBox>
     19275                                <ows:LowerCorner>3.02584 45.9863</ows:LowerCorner>
     19276                                <ows:UpperCorner>3.31202 46.3379</ows:UpperCorner>
     19277                        </ows:WGS84BoundingBox>
     19278                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38970075</ows:Identifier>
     19279                        <Style isDefault="true">
     19280                                <ows:Title>Données Brutes</ows:Title>
     19281                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19282                                <ows:Keywords>
     19283                                        <ows:Keyword>Défaut</ows:Keyword>
     19284                                </ows:Keywords>
     19285                                <ows:Identifier>normal</ows:Identifier>
     19286                                <LegendURL format="image/jpeg" height="200"
     19287                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19288                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19289                        </Style>
     19290                        <Format>image/jpeg</Format>
     19291                        <TileMatrixSetLink>
     19292                                <TileMatrixSet>PM</TileMatrixSet>
     19293                                <TileMatrixSetLimits>
     19294                                        <TileMatrixLimits>
     19295                                                <TileMatrix>0</TileMatrix>
     19296                                                <MinTileRow>0</MinTileRow>
     19297                                                <MaxTileRow>0</MaxTileRow>
     19298                                                <MinTileCol>0</MinTileCol>
     19299                                                <MaxTileCol>0</MaxTileCol>
     19300                                        </TileMatrixLimits>
     19301                                        <TileMatrixLimits>
     19302                                                <TileMatrix>1</TileMatrix>
     19303                                                <MinTileRow>0</MinTileRow>
     19304                                                <MaxTileRow>0</MaxTileRow>
     19305                                                <MinTileCol>1</MinTileCol>
     19306                                                <MaxTileCol>1</MaxTileCol>
     19307                                        </TileMatrixLimits>
     19308                                        <TileMatrixLimits>
     19309                                                <TileMatrix>10</TileMatrix>
     19310                                                <MinTileRow>362</MinTileRow>
     19311                                                <MaxTileRow>364</MaxTileRow>
     19312                                                <MinTileCol>520</MinTileCol>
     19313                                                <MaxTileCol>521</MaxTileCol>
     19314                                        </TileMatrixLimits>
     19315                                        <TileMatrixLimits>
     19316                                                <TileMatrix>11</TileMatrix>
     19317                                                <MinTileRow>725</MinTileRow>
     19318                                                <MaxTileRow>728</MaxTileRow>
     19319                                                <MinTileCol>1041</MinTileCol>
     19320                                                <MaxTileCol>1042</MaxTileCol>
     19321                                        </TileMatrixLimits>
     19322                                        <TileMatrixLimits>
     19323                                                <TileMatrix>12</TileMatrix>
     19324                                                <MinTileRow>1451</MinTileRow>
     19325                                                <MaxTileRow>1457</MaxTileRow>
     19326                                                <MinTileCol>2082</MinTileCol>
     19327                                                <MaxTileCol>2085</MaxTileCol>
     19328                                        </TileMatrixLimits>
     19329                                        <TileMatrixLimits>
     19330                                                <TileMatrix>13</TileMatrix>
     19331                                                <MinTileRow>2903</MinTileRow>
     19332                                                <MaxTileRow>2914</MaxTileRow>
     19333                                                <MinTileCol>4164</MinTileCol>
     19334                                                <MaxTileCol>4171</MaxTileCol>
     19335                                        </TileMatrixLimits>
     19336                                        <TileMatrixLimits>
     19337                                                <TileMatrix>14</TileMatrix>
     19338                                                <MinTileRow>5806</MinTileRow>
     19339                                                <MaxTileRow>5829</MaxTileRow>
     19340                                                <MinTileCol>8329</MinTileCol>
     19341                                                <MaxTileCol>8342</MaxTileCol>
     19342                                        </TileMatrixLimits>
     19343                                        <TileMatrixLimits>
     19344                                                <TileMatrix>15</TileMatrix>
     19345                                                <MinTileRow>11613</MinTileRow>
     19346                                                <MaxTileRow>11659</MaxTileRow>
     19347                                                <MinTileCol>16659</MinTileCol>
     19348                                                <MaxTileCol>16685</MaxTileCol>
     19349                                        </TileMatrixLimits>
     19350                                        <TileMatrixLimits>
     19351                                                <TileMatrix>16</TileMatrix>
     19352                                                <MinTileRow>23226</MinTileRow>
     19353                                                <MaxTileRow>23318</MaxTileRow>
     19354                                                <MinTileCol>33318</MinTileCol>
     19355                                                <MaxTileCol>33370</MaxTileCol>
     19356                                        </TileMatrixLimits>
     19357                                        <TileMatrixLimits>
     19358                                                <TileMatrix>17</TileMatrix>
     19359                                                <MinTileRow>46452</MinTileRow>
     19360                                                <MaxTileRow>46637</MaxTileRow>
     19361                                                <MinTileCol>66637</MinTileCol>
     19362                                                <MaxTileCol>66741</MaxTileCol>
     19363                                        </TileMatrixLimits>
     19364                                        <TileMatrixLimits>
     19365                                                <TileMatrix>18</TileMatrix>
     19366                                                <MinTileRow>92905</MinTileRow>
     19367                                                <MaxTileRow>93275</MaxTileRow>
     19368                                                <MinTileCol>133275</MinTileCol>
     19369                                                <MaxTileCol>133483</MaxTileCol>
     19370                                        </TileMatrixLimits>
     19371                                        <TileMatrixLimits>
     19372                                                <TileMatrix>2</TileMatrix>
     19373                                                <MinTileRow>1</MinTileRow>
     19374                                                <MaxTileRow>1</MaxTileRow>
     19375                                                <MinTileCol>2</MinTileCol>
     19376                                                <MaxTileCol>2</MaxTileCol>
     19377                                        </TileMatrixLimits>
     19378                                        <TileMatrixLimits>
     19379                                                <TileMatrix>3</TileMatrix>
     19380                                                <MinTileRow>2</MinTileRow>
     19381                                                <MaxTileRow>2</MaxTileRow>
     19382                                                <MinTileCol>4</MinTileCol>
     19383                                                <MaxTileCol>4</MaxTileCol>
     19384                                        </TileMatrixLimits>
     19385                                        <TileMatrixLimits>
     19386                                                <TileMatrix>4</TileMatrix>
     19387                                                <MinTileRow>5</MinTileRow>
     19388                                                <MaxTileRow>5</MaxTileRow>
     19389                                                <MinTileCol>8</MinTileCol>
     19390                                                <MaxTileCol>8</MaxTileCol>
     19391                                        </TileMatrixLimits>
     19392                                        <TileMatrixLimits>
     19393                                                <TileMatrix>5</TileMatrix>
     19394                                                <MinTileRow>11</MinTileRow>
     19395                                                <MaxTileRow>11</MaxTileRow>
     19396                                                <MinTileCol>16</MinTileCol>
     19397                                                <MaxTileCol>16</MaxTileCol>
     19398                                        </TileMatrixLimits>
     19399                                        <TileMatrixLimits>
     19400                                                <TileMatrix>6</TileMatrix>
     19401                                                <MinTileRow>22</MinTileRow>
     19402                                                <MaxTileRow>22</MaxTileRow>
     19403                                                <MinTileCol>32</MinTileCol>
     19404                                                <MaxTileCol>32</MaxTileCol>
     19405                                        </TileMatrixLimits>
     19406                                        <TileMatrixLimits>
     19407                                                <TileMatrix>7</TileMatrix>
     19408                                                <MinTileRow>45</MinTileRow>
     19409                                                <MaxTileRow>45</MaxTileRow>
     19410                                                <MinTileCol>65</MinTileCol>
     19411                                                <MaxTileCol>65</MaxTileCol>
     19412                                        </TileMatrixLimits>
     19413                                        <TileMatrixLimits>
     19414                                                <TileMatrix>8</TileMatrix>
     19415                                                <MinTileRow>90</MinTileRow>
     19416                                                <MaxTileRow>91</MaxTileRow>
     19417                                                <MinTileCol>130</MinTileCol>
     19418                                                <MaxTileCol>130</MaxTileCol>
     19419                                        </TileMatrixLimits>
     19420                                        <TileMatrixLimits>
     19421                                                <TileMatrix>9</TileMatrix>
     19422                                                <MinTileRow>181</MinTileRow>
     19423                                                <MaxTileRow>182</MaxTileRow>
     19424                                                <MinTileCol>260</MinTileCol>
     19425                                                <MaxTileCol>260</MaxTileCol>
     19426                                        </TileMatrixLimits>
     19427                                </TileMatrixSetLimits>
     19428                        </TileMatrixSetLink>
     19429                </Layer>
     19430                <Layer>
     19431                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19432                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19433                        <ows:Keywords>
     19434                                <ows:Keyword>Photographies</ows:Keyword>
     19435                        </ows:Keywords>
     19436                        <ows:WGS84BoundingBox>
     19437                                <ows:LowerCorner>3.25806 45.9225</ows:LowerCorner>
     19438                                <ows:UpperCorner>3.53233 46.2656</ows:UpperCorner>
     19439                        </ows:WGS84BoundingBox>
     19440                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38983576</ows:Identifier>
     19441                        <Style isDefault="true">
     19442                                <ows:Title>Données Brutes</ows:Title>
     19443                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19444                                <ows:Keywords>
     19445                                        <ows:Keyword>Défaut</ows:Keyword>
     19446                                </ows:Keywords>
     19447                                <ows:Identifier>normal</ows:Identifier>
     19448                                <LegendURL format="image/jpeg" height="200"
     19449                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19450                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19451                        </Style>
     19452                        <Format>image/jpeg</Format>
     19453                        <TileMatrixSetLink>
     19454                                <TileMatrixSet>PM</TileMatrixSet>
     19455                                <TileMatrixSetLimits>
     19456                                        <TileMatrixLimits>
     19457                                                <TileMatrix>0</TileMatrix>
     19458                                                <MinTileRow>0</MinTileRow>
     19459                                                <MaxTileRow>0</MaxTileRow>
     19460                                                <MinTileCol>0</MinTileCol>
     19461                                                <MaxTileCol>0</MaxTileCol>
     19462                                        </TileMatrixLimits>
     19463                                        <TileMatrixLimits>
     19464                                                <TileMatrix>1</TileMatrix>
     19465                                                <MinTileRow>0</MinTileRow>
     19466                                                <MaxTileRow>0</MaxTileRow>
     19467                                                <MinTileCol>1</MinTileCol>
     19468                                                <MaxTileCol>1</MaxTileCol>
     19469                                        </TileMatrixLimits>
     19470                                        <TileMatrixLimits>
     19471                                                <TileMatrix>10</TileMatrix>
     19472                                                <MinTileRow>363</MinTileRow>
     19473                                                <MaxTileRow>364</MaxTileRow>
     19474                                                <MinTileCol>521</MinTileCol>
     19475                                                <MaxTileCol>522</MaxTileCol>
     19476                                        </TileMatrixLimits>
     19477                                        <TileMatrixLimits>
     19478                                                <TileMatrix>11</TileMatrix>
     19479                                                <MinTileRow>726</MinTileRow>
     19480                                                <MaxTileRow>729</MaxTileRow>
     19481                                                <MinTileCol>1042</MinTileCol>
     19482                                                <MaxTileCol>1044</MaxTileCol>
     19483                                        </TileMatrixLimits>
     19484                                        <TileMatrixLimits>
     19485                                                <TileMatrix>12</TileMatrix>
     19486                                                <MinTileRow>1452</MinTileRow>
     19487                                                <MaxTileRow>1458</MaxTileRow>
     19488                                                <MinTileCol>2085</MinTileCol>
     19489                                                <MaxTileCol>2088</MaxTileCol>
     19490                                        </TileMatrixLimits>
     19491                                        <TileMatrixLimits>
     19492                                                <TileMatrix>13</TileMatrix>
     19493                                                <MinTileRow>2905</MinTileRow>
     19494                                                <MaxTileRow>2916</MaxTileRow>
     19495                                                <MinTileCol>4170</MinTileCol>
     19496                                                <MaxTileCol>4176</MaxTileCol>
     19497                                        </TileMatrixLimits>
     19498                                        <TileMatrixLimits>
     19499                                                <TileMatrix>14</TileMatrix>
     19500                                                <MinTileRow>5811</MinTileRow>
     19501                                                <MaxTileRow>5833</MaxTileRow>
     19502                                                <MinTileCol>8340</MinTileCol>
     19503                                                <MaxTileCol>8352</MaxTileCol>
     19504                                        </TileMatrixLimits>
     19505                                        <TileMatrixLimits>
     19506                                                <TileMatrix>15</TileMatrix>
     19507                                                <MinTileRow>11622</MinTileRow>
     19508                                                <MaxTileRow>11667</MaxTileRow>
     19509                                                <MinTileCol>16680</MinTileCol>
     19510                                                <MaxTileCol>16705</MaxTileCol>
     19511                                        </TileMatrixLimits>
     19512                                        <TileMatrixLimits>
     19513                                                <TileMatrix>16</TileMatrix>
     19514                                                <MinTileRow>23245</MinTileRow>
     19515                                                <MaxTileRow>23335</MaxTileRow>
     19516                                                <MinTileCol>33361</MinTileCol>
     19517                                                <MaxTileCol>33411</MaxTileCol>
     19518                                        </TileMatrixLimits>
     19519                                        <TileMatrixLimits>
     19520                                                <TileMatrix>17</TileMatrix>
     19521                                                <MinTileRow>46490</MinTileRow>
     19522                                                <MaxTileRow>46671</MaxTileRow>
     19523                                                <MinTileCol>66722</MinTileCol>
     19524                                                <MaxTileCol>66822</MaxTileCol>
     19525                                        </TileMatrixLimits>
     19526                                        <TileMatrixLimits>
     19527                                                <TileMatrix>18</TileMatrix>
     19528                                                <MinTileRow>92981</MinTileRow>
     19529                                                <MaxTileRow>93342</MaxTileRow>
     19530                                                <MinTileCol>133444</MinTileCol>
     19531                                                <MaxTileCol>133644</MaxTileCol>
     19532                                        </TileMatrixLimits>
     19533                                        <TileMatrixLimits>
     19534                                                <TileMatrix>2</TileMatrix>
     19535                                                <MinTileRow>1</MinTileRow>
     19536                                                <MaxTileRow>1</MaxTileRow>
     19537                                                <MinTileCol>2</MinTileCol>
     19538                                                <MaxTileCol>2</MaxTileCol>
     19539                                        </TileMatrixLimits>
     19540                                        <TileMatrixLimits>
     19541                                                <TileMatrix>3</TileMatrix>
     19542                                                <MinTileRow>2</MinTileRow>
     19543                                                <MaxTileRow>2</MaxTileRow>
     19544                                                <MinTileCol>4</MinTileCol>
     19545                                                <MaxTileCol>4</MaxTileCol>
     19546                                        </TileMatrixLimits>
     19547                                        <TileMatrixLimits>
     19548                                                <TileMatrix>4</TileMatrix>
     19549                                                <MinTileRow>5</MinTileRow>
     19550                                                <MaxTileRow>5</MaxTileRow>
     19551                                                <MinTileCol>8</MinTileCol>
     19552                                                <MaxTileCol>8</MaxTileCol>
     19553                                        </TileMatrixLimits>
     19554                                        <TileMatrixLimits>
     19555                                                <TileMatrix>5</TileMatrix>
     19556                                                <MinTileRow>11</MinTileRow>
     19557                                                <MaxTileRow>11</MaxTileRow>
     19558                                                <MinTileCol>16</MinTileCol>
     19559                                                <MaxTileCol>16</MaxTileCol>
     19560                                        </TileMatrixLimits>
     19561                                        <TileMatrixLimits>
     19562                                                <TileMatrix>6</TileMatrix>
     19563                                                <MinTileRow>22</MinTileRow>
     19564                                                <MaxTileRow>22</MaxTileRow>
     19565                                                <MinTileCol>32</MinTileCol>
     19566                                                <MaxTileCol>32</MaxTileCol>
     19567                                        </TileMatrixLimits>
     19568                                        <TileMatrixLimits>
     19569                                                <TileMatrix>7</TileMatrix>
     19570                                                <MinTileRow>45</MinTileRow>
     19571                                                <MaxTileRow>45</MaxTileRow>
     19572                                                <MinTileCol>65</MinTileCol>
     19573                                                <MaxTileCol>65</MaxTileCol>
     19574                                        </TileMatrixLimits>
     19575                                        <TileMatrixLimits>
     19576                                                <TileMatrix>8</TileMatrix>
     19577                                                <MinTileRow>90</MinTileRow>
     19578                                                <MaxTileRow>91</MaxTileRow>
     19579                                                <MinTileCol>130</MinTileCol>
     19580                                                <MaxTileCol>130</MaxTileCol>
     19581                                        </TileMatrixLimits>
     19582                                        <TileMatrixLimits>
     19583                                                <TileMatrix>9</TileMatrix>
     19584                                                <MinTileRow>181</MinTileRow>
     19585                                                <MaxTileRow>182</MaxTileRow>
     19586                                                <MinTileCol>260</MinTileCol>
     19587                                                <MaxTileCol>261</MaxTileCol>
     19588                                        </TileMatrixLimits>
     19589                                </TileMatrixSetLimits>
     19590                        </TileMatrixSetLink>
     19591                </Layer>
     19592                <Layer>
     19593                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19594                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19595                        <ows:Keywords>
     19596                                <ows:Keyword>Photographies</ows:Keyword>
     19597                        </ows:Keywords>
     19598                        <ows:WGS84BoundingBox>
     19599                                <ows:LowerCorner>3.64346 45.7759</ows:LowerCorner>
     19600                                <ows:UpperCorner>3.92241 46.3</ows:UpperCorner>
     19601                        </ows:WGS84BoundingBox>
     19602                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-17-38998334</ows:Identifier>
     19603                        <Style isDefault="true">
     19604                                <ows:Title>Données Brutes</ows:Title>
     19605                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19606                                <ows:Keywords>
     19607                                        <ows:Keyword>Défaut</ows:Keyword>
     19608                                </ows:Keywords>
     19609                                <ows:Identifier>normal</ows:Identifier>
     19610                                <LegendURL format="image/jpeg" height="200"
     19611                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19612                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19613                        </Style>
     19614                        <Format>image/jpeg</Format>
     19615                        <TileMatrixSetLink>
     19616                                <TileMatrixSet>PM</TileMatrixSet>
     19617                                <TileMatrixSetLimits>
     19618                                        <TileMatrixLimits>
     19619                                                <TileMatrix>0</TileMatrix>
     19620                                                <MinTileRow>0</MinTileRow>
     19621                                                <MaxTileRow>0</MaxTileRow>
     19622                                                <MinTileCol>0</MinTileCol>
     19623                                                <MaxTileCol>0</MaxTileCol>
     19624                                        </TileMatrixLimits>
     19625                                        <TileMatrixLimits>
     19626                                                <TileMatrix>1</TileMatrix>
     19627                                                <MinTileRow>0</MinTileRow>
     19628                                                <MaxTileRow>0</MaxTileRow>
     19629                                                <MinTileCol>1</MinTileCol>
     19630                                                <MaxTileCol>1</MaxTileCol>
     19631                                        </TileMatrixLimits>
     19632                                        <TileMatrixLimits>
     19633                                                <TileMatrix>10</TileMatrix>
     19634                                                <MinTileRow>363</MinTileRow>
     19635                                                <MaxTileRow>365</MaxTileRow>
     19636                                                <MinTileCol>522</MinTileCol>
     19637                                                <MaxTileCol>523</MaxTileCol>
     19638                                        </TileMatrixLimits>
     19639                                        <TileMatrixLimits>
     19640                                                <TileMatrix>11</TileMatrix>
     19641                                                <MinTileRow>726</MinTileRow>
     19642                                                <MaxTileRow>730</MaxTileRow>
     19643                                                <MinTileCol>1044</MinTileCol>
     19644                                                <MaxTileCol>1046</MaxTileCol>
     19645                                        </TileMatrixLimits>
     19646                                        <TileMatrixLimits>
     19647                                                <TileMatrix>12</TileMatrix>
     19648                                                <MinTileRow>1452</MinTileRow>
     19649                                                <MaxTileRow>1460</MaxTileRow>
     19650                                                <MinTileCol>2089</MinTileCol>
     19651                                                <MaxTileCol>2092</MaxTileCol>
     19652                                        </TileMatrixLimits>
     19653                                        <TileMatrixLimits>
     19654                                                <TileMatrix>13</TileMatrix>
     19655                                                <MinTileRow>2904</MinTileRow>
     19656                                                <MaxTileRow>2921</MaxTileRow>
     19657                                                <MinTileCol>4178</MinTileCol>
     19658                                                <MaxTileCol>4185</MaxTileCol>
     19659                                        </TileMatrixLimits>
     19660                                        <TileMatrixLimits>
     19661                                                <TileMatrix>14</TileMatrix>
     19662                                                <MinTileRow>5809</MinTileRow>
     19663                                                <MaxTileRow>5843</MaxTileRow>
     19664                                                <MinTileCol>8357</MinTileCol>
     19665                                                <MaxTileCol>8370</MaxTileCol>
     19666                                        </TileMatrixLimits>
     19667                                        <TileMatrixLimits>
     19668                                                <TileMatrix>15</TileMatrix>
     19669                                                <MinTileRow>11618</MinTileRow>
     19670                                                <MaxTileRow>11686</MaxTileRow>
     19671                                                <MinTileCol>16715</MinTileCol>
     19672                                                <MaxTileCol>16741</MaxTileCol>
     19673                                        </TileMatrixLimits>
     19674                                        <TileMatrixLimits>
     19675                                                <TileMatrix>16</TileMatrix>
     19676                                                <MinTileRow>23236</MinTileRow>
     19677                                                <MaxTileRow>23373</MaxTileRow>
     19678                                                <MinTileCol>33431</MinTileCol>
     19679                                                <MaxTileCol>33482</MaxTileCol>
     19680                                        </TileMatrixLimits>
     19681                                        <TileMatrixLimits>
     19682                                                <TileMatrix>17</TileMatrix>
     19683                                                <MinTileRow>46473</MinTileRow>
     19684                                                <MaxTileRow>46746</MaxTileRow>
     19685                                                <MinTileCol>66862</MinTileCol>
     19686                                                <MaxTileCol>66964</MaxTileCol>
     19687                                        </TileMatrixLimits>
     19688                                        <TileMatrixLimits>
     19689                                                <TileMatrix>18</TileMatrix>
     19690                                                <MinTileRow>92946</MinTileRow>
     19691                                                <MaxTileRow>93493</MaxTileRow>
     19692                                                <MinTileCol>133724</MinTileCol>
     19693                                                <MaxTileCol>133928</MaxTileCol>
     19694                                        </TileMatrixLimits>
     19695                                        <TileMatrixLimits>
     19696                                                <TileMatrix>2</TileMatrix>
     19697                                                <MinTileRow>1</MinTileRow>
     19698                                                <MaxTileRow>1</MaxTileRow>
     19699                                                <MinTileCol>2</MinTileCol>
     19700                                                <MaxTileCol>2</MaxTileCol>
     19701                                        </TileMatrixLimits>
     19702                                        <TileMatrixLimits>
     19703                                                <TileMatrix>3</TileMatrix>
     19704                                                <MinTileRow>2</MinTileRow>
     19705                                                <MaxTileRow>2</MaxTileRow>
     19706                                                <MinTileCol>4</MinTileCol>
     19707                                                <MaxTileCol>4</MaxTileCol>
     19708                                        </TileMatrixLimits>
     19709                                        <TileMatrixLimits>
     19710                                                <TileMatrix>4</TileMatrix>
     19711                                                <MinTileRow>5</MinTileRow>
     19712                                                <MaxTileRow>5</MaxTileRow>
     19713                                                <MinTileCol>8</MinTileCol>
     19714                                                <MaxTileCol>8</MaxTileCol>
     19715                                        </TileMatrixLimits>
     19716                                        <TileMatrixLimits>
     19717                                                <TileMatrix>5</TileMatrix>
     19718                                                <MinTileRow>11</MinTileRow>
     19719                                                <MaxTileRow>11</MaxTileRow>
     19720                                                <MinTileCol>16</MinTileCol>
     19721                                                <MaxTileCol>16</MaxTileCol>
     19722                                        </TileMatrixLimits>
     19723                                        <TileMatrixLimits>
     19724                                                <TileMatrix>6</TileMatrix>
     19725                                                <MinTileRow>22</MinTileRow>
     19726                                                <MaxTileRow>22</MaxTileRow>
     19727                                                <MinTileCol>32</MinTileCol>
     19728                                                <MaxTileCol>32</MaxTileCol>
     19729                                        </TileMatrixLimits>
     19730                                        <TileMatrixLimits>
     19731                                                <TileMatrix>7</TileMatrix>
     19732                                                <MinTileRow>45</MinTileRow>
     19733                                                <MaxTileRow>45</MaxTileRow>
     19734                                                <MinTileCol>65</MinTileCol>
     19735                                                <MaxTileCol>65</MaxTileCol>
     19736                                        </TileMatrixLimits>
     19737                                        <TileMatrixLimits>
     19738                                                <TileMatrix>8</TileMatrix>
     19739                                                <MinTileRow>90</MinTileRow>
     19740                                                <MaxTileRow>91</MaxTileRow>
     19741                                                <MinTileCol>130</MinTileCol>
     19742                                                <MaxTileCol>130</MaxTileCol>
     19743                                        </TileMatrixLimits>
     19744                                        <TileMatrixLimits>
     19745                                                <TileMatrix>9</TileMatrix>
     19746                                                <MinTileRow>181</MinTileRow>
     19747                                                <MaxTileRow>182</MaxTileRow>
     19748                                                <MinTileCol>261</MinTileCol>
     19749                                                <MaxTileCol>261</MaxTileCol>
     19750                                        </TileMatrixLimits>
     19751                                </TileMatrixSetLimits>
     19752                        </TileMatrixSetLink>
     19753                </Layer>
     19754                <Layer>
     19755                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19756                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19757                        <ows:Keywords>
     19758                                <ows:Keyword>Photographies</ows:Keyword>
     19759                        </ows:Keywords>
     19760                        <ows:WGS84BoundingBox>
     19761                                <ows:LowerCorner>2.80499 46.1396</ows:LowerCorner>
     19762                                <ows:UpperCorner>3.07801 46.3379</ows:UpperCorner>
     19763                        </ows:WGS84BoundingBox>
     19764                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-22-39643574</ows:Identifier>
     19765                        <Style isDefault="true">
     19766                                <ows:Title>Données Brutes</ows:Title>
     19767                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19768                                <ows:Keywords>
     19769                                        <ows:Keyword>Défaut</ows:Keyword>
     19770                                </ows:Keywords>
     19771                                <ows:Identifier>normal</ows:Identifier>
     19772                                <LegendURL format="image/jpeg" height="200"
     19773                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19774                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19775                        </Style>
     19776                        <Format>image/jpeg</Format>
     19777                        <TileMatrixSetLink>
     19778                                <TileMatrixSet>PM</TileMatrixSet>
     19779                                <TileMatrixSetLimits>
     19780                                        <TileMatrixLimits>
     19781                                                <TileMatrix>0</TileMatrix>
     19782                                                <MinTileRow>0</MinTileRow>
     19783                                                <MaxTileRow>0</MaxTileRow>
     19784                                                <MinTileCol>0</MinTileCol>
     19785                                                <MaxTileCol>0</MaxTileCol>
     19786                                        </TileMatrixLimits>
     19787                                        <TileMatrixLimits>
     19788                                                <TileMatrix>1</TileMatrix>
     19789                                                <MinTileRow>0</MinTileRow>
     19790                                                <MaxTileRow>0</MaxTileRow>
     19791                                                <MinTileCol>1</MinTileCol>
     19792                                                <MaxTileCol>1</MaxTileCol>
     19793                                        </TileMatrixLimits>
     19794                                        <TileMatrixLimits>
     19795                                                <TileMatrix>10</TileMatrix>
     19796                                                <MinTileRow>362</MinTileRow>
     19797                                                <MaxTileRow>363</MaxTileRow>
     19798                                                <MinTileCol>519</MinTileCol>
     19799                                                <MaxTileCol>520</MaxTileCol>
     19800                                        </TileMatrixLimits>
     19801                                        <TileMatrixLimits>
     19802                                                <TileMatrix>11</TileMatrix>
     19803                                                <MinTileRow>725</MinTileRow>
     19804                                                <MaxTileRow>727</MaxTileRow>
     19805                                                <MinTileCol>1039</MinTileCol>
     19806                                                <MaxTileCol>1041</MaxTileCol>
     19807                                        </TileMatrixLimits>
     19808                                        <TileMatrixLimits>
     19809                                                <TileMatrix>12</TileMatrix>
     19810                                                <MinTileRow>1451</MinTileRow>
     19811                                                <MaxTileRow>1454</MaxTileRow>
     19812                                                <MinTileCol>2079</MinTileCol>
     19813                                                <MaxTileCol>2083</MaxTileCol>
     19814                                        </TileMatrixLimits>
     19815                                        <TileMatrixLimits>
     19816                                                <TileMatrix>13</TileMatrix>
     19817                                                <MinTileRow>2903</MinTileRow>
     19818                                                <MaxTileRow>2909</MaxTileRow>
     19819                                                <MinTileCol>4159</MinTileCol>
     19820                                                <MaxTileCol>4166</MaxTileCol>
     19821                                        </TileMatrixLimits>
     19822                                        <TileMatrixLimits>
     19823                                                <TileMatrix>14</TileMatrix>
     19824                                                <MinTileRow>5806</MinTileRow>
     19825                                                <MaxTileRow>5819</MaxTileRow>
     19826                                                <MinTileCol>8319</MinTileCol>
     19827                                                <MaxTileCol>8332</MaxTileCol>
     19828                                        </TileMatrixLimits>
     19829                                        <TileMatrixLimits>
     19830                                                <TileMatrix>15</TileMatrix>
     19831                                                <MinTileRow>11613</MinTileRow>
     19832                                                <MaxTileRow>11639</MaxTileRow>
     19833                                                <MinTileCol>16639</MinTileCol>
     19834                                                <MaxTileCol>16664</MaxTileCol>
     19835                                        </TileMatrixLimits>
     19836                                        <TileMatrixLimits>
     19837                                                <TileMatrix>16</TileMatrix>
     19838                                                <MinTileRow>23226</MinTileRow>
     19839                                                <MaxTileRow>23278</MaxTileRow>
     19840                                                <MinTileCol>33278</MinTileCol>
     19841                                                <MaxTileCol>33328</MaxTileCol>
     19842                                        </TileMatrixLimits>
     19843                                        <TileMatrixLimits>
     19844                                                <TileMatrix>17</TileMatrix>
     19845                                                <MinTileRow>46452</MinTileRow>
     19846                                                <MaxTileRow>46557</MaxTileRow>
     19847                                                <MinTileCol>66557</MinTileCol>
     19848                                                <MaxTileCol>66656</MaxTileCol>
     19849                                        </TileMatrixLimits>
     19850                                        <TileMatrixLimits>
     19851                                                <TileMatrix>18</TileMatrix>
     19852                                                <MinTileRow>92905</MinTileRow>
     19853                                                <MaxTileRow>93114</MaxTileRow>
     19854                                                <MinTileCol>133114</MinTileCol>
     19855                                                <MaxTileCol>133313</MaxTileCol>
     19856                                        </TileMatrixLimits>
     19857                                        <TileMatrixLimits>
     19858                                                <TileMatrix>2</TileMatrix>
     19859                                                <MinTileRow>1</MinTileRow>
     19860                                                <MaxTileRow>1</MaxTileRow>
     19861                                                <MinTileCol>2</MinTileCol>
     19862                                                <MaxTileCol>2</MaxTileCol>
     19863                                        </TileMatrixLimits>
     19864                                        <TileMatrixLimits>
     19865                                                <TileMatrix>3</TileMatrix>
     19866                                                <MinTileRow>2</MinTileRow>
     19867                                                <MaxTileRow>2</MaxTileRow>
     19868                                                <MinTileCol>4</MinTileCol>
     19869                                                <MaxTileCol>4</MaxTileCol>
     19870                                        </TileMatrixLimits>
     19871                                        <TileMatrixLimits>
     19872                                                <TileMatrix>4</TileMatrix>
     19873                                                <MinTileRow>5</MinTileRow>
     19874                                                <MaxTileRow>5</MaxTileRow>
     19875                                                <MinTileCol>8</MinTileCol>
     19876                                                <MaxTileCol>8</MaxTileCol>
     19877                                        </TileMatrixLimits>
     19878                                        <TileMatrixLimits>
     19879                                                <TileMatrix>5</TileMatrix>
     19880                                                <MinTileRow>11</MinTileRow>
     19881                                                <MaxTileRow>11</MaxTileRow>
     19882                                                <MinTileCol>16</MinTileCol>
     19883                                                <MaxTileCol>16</MaxTileCol>
     19884                                        </TileMatrixLimits>
     19885                                        <TileMatrixLimits>
     19886                                                <TileMatrix>6</TileMatrix>
     19887                                                <MinTileRow>22</MinTileRow>
     19888                                                <MaxTileRow>22</MaxTileRow>
     19889                                                <MinTileCol>32</MinTileCol>
     19890                                                <MaxTileCol>32</MaxTileCol>
     19891                                        </TileMatrixLimits>
     19892                                        <TileMatrixLimits>
     19893                                                <TileMatrix>7</TileMatrix>
     19894                                                <MinTileRow>45</MinTileRow>
     19895                                                <MaxTileRow>45</MaxTileRow>
     19896                                                <MinTileCol>64</MinTileCol>
     19897                                                <MaxTileCol>65</MaxTileCol>
     19898                                        </TileMatrixLimits>
     19899                                        <TileMatrixLimits>
     19900                                                <TileMatrix>8</TileMatrix>
     19901                                                <MinTileRow>90</MinTileRow>
     19902                                                <MaxTileRow>90</MaxTileRow>
     19903                                                <MinTileCol>129</MinTileCol>
     19904                                                <MaxTileCol>130</MaxTileCol>
     19905                                        </TileMatrixLimits>
     19906                                        <TileMatrixLimits>
     19907                                                <TileMatrix>9</TileMatrix>
     19908                                                <MinTileRow>181</MinTileRow>
     19909                                                <MaxTileRow>181</MaxTileRow>
     19910                                                <MinTileCol>259</MinTileCol>
     19911                                                <MaxTileCol>260</MaxTileCol>
     19912                                        </TileMatrixLimits>
     19913                                </TileMatrixSetLimits>
     19914                        </TileMatrixSetLink>
     19915                </Layer>
     19916                <Layer>
     19917                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     19918                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     19919                        <ows:Keywords>
     19920                                <ows:Keyword>Photographies</ows:Keyword>
     19921                        </ows:Keywords>
     19922                        <ows:WGS84BoundingBox>
     19923                                <ows:LowerCorner>2.57357 45.4817</ows:LowerCorner>
     19924                                <ows:UpperCorner>2.85919 46.0046</ows:UpperCorner>
     19925                        </ows:WGS84BoundingBox>
     19926                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-22-39652324</ows:Identifier>
     19927                        <Style isDefault="true">
     19928                                <ows:Title>Données Brutes</ows:Title>
     19929                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     19930                                <ows:Keywords>
     19931                                        <ows:Keyword>Défaut</ows:Keyword>
     19932                                </ows:Keywords>
     19933                                <ows:Identifier>normal</ows:Identifier>
     19934                                <LegendURL format="image/jpeg" height="200"
     19935                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     19936                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     19937                        </Style>
     19938                        <Format>image/jpeg</Format>
     19939                        <TileMatrixSetLink>
     19940                                <TileMatrixSet>PM</TileMatrixSet>
     19941                                <TileMatrixSetLimits>
     19942                                        <TileMatrixLimits>
     19943                                                <TileMatrix>0</TileMatrix>
     19944                                                <MinTileRow>0</MinTileRow>
     19945                                                <MaxTileRow>0</MaxTileRow>
     19946                                                <MinTileCol>0</MinTileCol>
     19947                                                <MaxTileCol>0</MaxTileCol>
     19948                                        </TileMatrixLimits>
     19949                                        <TileMatrixLimits>
     19950                                                <TileMatrix>1</TileMatrix>
     19951                                                <MinTileRow>0</MinTileRow>
     19952                                                <MaxTileRow>0</MaxTileRow>
     19953                                                <MinTileCol>1</MinTileCol>
     19954                                                <MaxTileCol>1</MaxTileCol>
     19955                                        </TileMatrixLimits>
     19956                                        <TileMatrixLimits>
     19957                                                <TileMatrix>10</TileMatrix>
     19958                                                <MinTileRow>364</MinTileRow>
     19959                                                <MaxTileRow>366</MaxTileRow>
     19960                                                <MinTileCol>519</MinTileCol>
     19961                                                <MaxTileCol>520</MaxTileCol>
     19962                                        </TileMatrixLimits>
     19963                                        <TileMatrixLimits>
     19964                                                <TileMatrix>11</TileMatrix>
     19965                                                <MinTileRow>728</MinTileRow>
     19966                                                <MaxTileRow>732</MaxTileRow>
     19967                                                <MinTileCol>1038</MinTileCol>
     19968                                                <MaxTileCol>1040</MaxTileCol>
     19969                                        </TileMatrixLimits>
     19970                                        <TileMatrixLimits>
     19971                                                <TileMatrix>12</TileMatrix>
     19972                                                <MinTileRow>1457</MinTileRow>
     19973                                                <MaxTileRow>1465</MaxTileRow>
     19974                                                <MinTileCol>2077</MinTileCol>
     19975                                                <MaxTileCol>2080</MaxTileCol>
     19976                                        </TileMatrixLimits>
     19977                                        <TileMatrixLimits>
     19978                                                <TileMatrix>13</TileMatrix>
     19979                                                <MinTileRow>2914</MinTileRow>
     19980                                                <MaxTileRow>2931</MaxTileRow>
     19981                                                <MinTileCol>4154</MinTileCol>
     19982                                                <MaxTileCol>4161</MaxTileCol>
     19983                                        </TileMatrixLimits>
     19984                                        <TileMatrixLimits>
     19985                                                <TileMatrix>14</TileMatrix>
     19986                                                <MinTileRow>5828</MinTileRow>
     19987                                                <MaxTileRow>5862</MaxTileRow>
     19988                                                <MinTileCol>8309</MinTileCol>
     19989                                                <MaxTileCol>8322</MaxTileCol>
     19990                                        </TileMatrixLimits>
     19991                                        <TileMatrixLimits>
     19992                                                <TileMatrix>15</TileMatrix>
     19993                                                <MinTileRow>11656</MinTileRow>
     19994                                                <MaxTileRow>11725</MaxTileRow>
     19995                                                <MinTileCol>16618</MinTileCol>
     19996                                                <MaxTileCol>16644</MaxTileCol>
     19997                                        </TileMatrixLimits>
     19998                                        <TileMatrixLimits>
     19999                                                <TileMatrix>16</TileMatrix>
     20000                                                <MinTileRow>23313</MinTileRow>
     20001                                                <MaxTileRow>23450</MaxTileRow>
     20002                                                <MinTileCol>33236</MinTileCol>
     20003                                                <MaxTileCol>33288</MaxTileCol>
     20004                                        </TileMatrixLimits>
     20005                                        <TileMatrixLimits>
     20006                                                <TileMatrix>17</TileMatrix>
     20007                                                <MinTileRow>46627</MinTileRow>
     20008                                                <MaxTileRow>46900</MaxTileRow>
     20009                                                <MinTileCol>66472</MinTileCol>
     20010                                                <MaxTileCol>66577</MaxTileCol>
     20011                                        </TileMatrixLimits>
     20012                                        <TileMatrixLimits>
     20013                                                <TileMatrix>18</TileMatrix>
     20014                                                <MinTileRow>93255</MinTileRow>
     20015                                                <MaxTileRow>93801</MaxTileRow>
     20016                                                <MinTileCol>132945</MinTileCol>
     20017                                                <MaxTileCol>133154</MaxTileCol>
     20018                                        </TileMatrixLimits>
     20019                                        <TileMatrixLimits>
     20020                                                <TileMatrix>2</TileMatrix>
     20021                                                <MinTileRow>1</MinTileRow>
     20022                                                <MaxTileRow>1</MaxTileRow>
     20023                                                <MinTileCol>2</MinTileCol>
     20024                                                <MaxTileCol>2</MaxTileCol>
     20025                                        </TileMatrixLimits>
     20026                                        <TileMatrixLimits>
     20027                                                <TileMatrix>3</TileMatrix>
     20028                                                <MinTileRow>2</MinTileRow>
     20029                                                <MaxTileRow>2</MaxTileRow>
     20030                                                <MinTileCol>4</MinTileCol>
     20031                                                <MaxTileCol>4</MaxTileCol>
     20032                                        </TileMatrixLimits>
     20033                                        <TileMatrixLimits>
     20034                                                <TileMatrix>4</TileMatrix>
     20035                                                <MinTileRow>5</MinTileRow>
     20036                                                <MaxTileRow>5</MaxTileRow>
     20037                                                <MinTileCol>8</MinTileCol>
     20038                                                <MaxTileCol>8</MaxTileCol>
     20039                                        </TileMatrixLimits>
     20040                                        <TileMatrixLimits>
     20041                                                <TileMatrix>5</TileMatrix>
     20042                                                <MinTileRow>11</MinTileRow>
     20043                                                <MaxTileRow>11</MaxTileRow>
     20044                                                <MinTileCol>16</MinTileCol>
     20045                                                <MaxTileCol>16</MaxTileCol>
     20046                                        </TileMatrixLimits>
     20047                                        <TileMatrixLimits>
     20048                                                <TileMatrix>6</TileMatrix>
     20049                                                <MinTileRow>22</MinTileRow>
     20050                                                <MaxTileRow>22</MaxTileRow>
     20051                                                <MinTileCol>32</MinTileCol>
     20052                                                <MaxTileCol>32</MaxTileCol>
     20053                                        </TileMatrixLimits>
     20054                                        <TileMatrixLimits>
     20055                                                <TileMatrix>7</TileMatrix>
     20056                                                <MinTileRow>45</MinTileRow>
     20057                                                <MaxTileRow>45</MaxTileRow>
     20058                                                <MinTileCol>64</MinTileCol>
     20059                                                <MaxTileCol>65</MaxTileCol>
     20060                                        </TileMatrixLimits>
     20061                                        <TileMatrixLimits>
     20062                                                <TileMatrix>8</TileMatrix>
     20063                                                <MinTileRow>91</MinTileRow>
     20064                                                <MaxTileRow>91</MaxTileRow>
     20065                                                <MinTileCol>129</MinTileCol>
     20066                                                <MaxTileCol>130</MaxTileCol>
     20067                                        </TileMatrixLimits>
     20068                                        <TileMatrixLimits>
     20069                                                <TileMatrix>9</TileMatrix>
     20070                                                <MinTileRow>182</MinTileRow>
     20071                                                <MaxTileRow>183</MaxTileRow>
     20072                                                <MinTileCol>259</MinTileCol>
     20073                                                <MaxTileCol>260</MaxTileCol>
     20074                                        </TileMatrixLimits>
     20075                                </TileMatrixSetLimits>
     20076                        </TileMatrixSetLink>
     20077                </Layer>
     20078                <Layer>
     20079                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20080                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20081                        <ows:Keywords>
     20082                                <ows:Keyword>Photographies</ows:Keyword>
     20083                        </ows:Keywords>
     20084                        <ows:WGS84BoundingBox>
     20085                                <ows:LowerCorner>3.64346 45.7763</ows:LowerCorner>
     20086                                <ows:UpperCorner>3.86788 46.138</ows:UpperCorner>
     20087                        </ows:WGS84BoundingBox>
     20088                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39136194</ows:Identifier>
     20089                        <Style isDefault="true">
     20090                                <ows:Title>Données Brutes</ows:Title>
     20091                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20092                                <ows:Keywords>
     20093                                        <ows:Keyword>Défaut</ows:Keyword>
     20094                                </ows:Keywords>
     20095                                <ows:Identifier>normal</ows:Identifier>
     20096                                <LegendURL format="image/jpeg" height="200"
     20097                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20098                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20099                        </Style>
     20100                        <Format>image/jpeg</Format>
     20101                        <TileMatrixSetLink>
     20102                                <TileMatrixSet>PM</TileMatrixSet>
     20103                                <TileMatrixSetLimits>
     20104                                        <TileMatrixLimits>
     20105                                                <TileMatrix>0</TileMatrix>
     20106                                                <MinTileRow>0</MinTileRow>
     20107                                                <MaxTileRow>0</MaxTileRow>
     20108                                                <MinTileCol>0</MinTileCol>
     20109                                                <MaxTileCol>0</MaxTileCol>
     20110                                        </TileMatrixLimits>
     20111                                        <TileMatrixLimits>
     20112                                                <TileMatrix>1</TileMatrix>
     20113                                                <MinTileRow>0</MinTileRow>
     20114                                                <MaxTileRow>0</MaxTileRow>
     20115                                                <MinTileCol>1</MinTileCol>
     20116                                                <MaxTileCol>1</MaxTileCol>
     20117                                        </TileMatrixLimits>
     20118                                        <TileMatrixLimits>
     20119                                                <TileMatrix>10</TileMatrix>
     20120                                                <MinTileRow>363</MinTileRow>
     20121                                                <MaxTileRow>365</MaxTileRow>
     20122                                                <MinTileCol>522</MinTileCol>
     20123                                                <MaxTileCol>522</MaxTileCol>
     20124                                        </TileMatrixLimits>
     20125                                        <TileMatrixLimits>
     20126                                                <TileMatrix>11</TileMatrix>
     20127                                                <MinTileRow>727</MinTileRow>
     20128                                                <MaxTileRow>730</MaxTileRow>
     20129                                                <MinTileCol>1044</MinTileCol>
     20130                                                <MaxTileCol>1045</MaxTileCol>
     20131                                        </TileMatrixLimits>
     20132                                        <TileMatrixLimits>
     20133                                                <TileMatrix>12</TileMatrix>
     20134                                                <MinTileRow>1454</MinTileRow>
     20135                                                <MaxTileRow>1460</MaxTileRow>
     20136                                                <MinTileCol>2089</MinTileCol>
     20137                                                <MaxTileCol>2091</MaxTileCol>
     20138                                        </TileMatrixLimits>
     20139                                        <TileMatrixLimits>
     20140                                                <TileMatrix>13</TileMatrix>
     20141                                                <MinTileRow>2909</MinTileRow>
     20142                                                <MaxTileRow>2921</MaxTileRow>
     20143                                                <MinTileCol>4178</MinTileCol>
     20144                                                <MaxTileCol>4183</MaxTileCol>
     20145                                        </TileMatrixLimits>
     20146                                        <TileMatrixLimits>
     20147                                                <TileMatrix>14</TileMatrix>
     20148                                                <MinTileRow>5819</MinTileRow>
     20149                                                <MaxTileRow>5843</MaxTileRow>
     20150                                                <MinTileCol>8357</MinTileCol>
     20151                                                <MaxTileCol>8367</MaxTileCol>
     20152                                        </TileMatrixLimits>
     20153                                        <TileMatrixLimits>
     20154                                                <TileMatrix>15</TileMatrix>
     20155                                                <MinTileRow>11639</MinTileRow>
     20156                                                <MaxTileRow>11686</MaxTileRow>
     20157                                                <MinTileCol>16715</MinTileCol>
     20158                                                <MaxTileCol>16735</MaxTileCol>
     20159                                        </TileMatrixLimits>
     20160                                        <TileMatrixLimits>
     20161                                                <TileMatrix>16</TileMatrix>
     20162                                                <MinTileRow>23279</MinTileRow>
     20163                                                <MaxTileRow>23373</MaxTileRow>
     20164                                                <MinTileCol>33431</MinTileCol>
     20165                                                <MaxTileCol>33471</MaxTileCol>
     20166                                        </TileMatrixLimits>
     20167                                        <TileMatrixLimits>
     20168                                                <TileMatrix>17</TileMatrix>
     20169                                                <MinTileRow>46558</MinTileRow>
     20170                                                <MaxTileRow>46747</MaxTileRow>
     20171                                                <MinTileCol>66862</MinTileCol>
     20172                                                <MaxTileCol>66943</MaxTileCol>
     20173                                        </TileMatrixLimits>
     20174                                        <TileMatrixLimits>
     20175                                                <TileMatrix>18</TileMatrix>
     20176                                                <MinTileRow>93116</MinTileRow>
     20177                                                <MaxTileRow>93494</MaxTileRow>
     20178                                                <MinTileCol>133724</MinTileCol>
     20179                                                <MaxTileCol>133887</MaxTileCol>
     20180                                        </TileMatrixLimits>
     20181                                        <TileMatrixLimits>
     20182                                                <TileMatrix>2</TileMatrix>
     20183                                                <MinTileRow>1</MinTileRow>
     20184                                                <MaxTileRow>1</MaxTileRow>
     20185                                                <MinTileCol>2</MinTileCol>
     20186                                                <MaxTileCol>2</MaxTileCol>
     20187                                        </TileMatrixLimits>
     20188                                        <TileMatrixLimits>
     20189                                                <TileMatrix>3</TileMatrix>
     20190                                                <MinTileRow>2</MinTileRow>
     20191                                                <MaxTileRow>2</MaxTileRow>
     20192                                                <MinTileCol>4</MinTileCol>
     20193                                                <MaxTileCol>4</MaxTileCol>
     20194                                        </TileMatrixLimits>
     20195                                        <TileMatrixLimits>
     20196                                                <TileMatrix>4</TileMatrix>
     20197                                                <MinTileRow>5</MinTileRow>
     20198                                                <MaxTileRow>5</MaxTileRow>
     20199                                                <MinTileCol>8</MinTileCol>
     20200                                                <MaxTileCol>8</MaxTileCol>
     20201                                        </TileMatrixLimits>
     20202                                        <TileMatrixLimits>
     20203                                                <TileMatrix>5</TileMatrix>
     20204                                                <MinTileRow>11</MinTileRow>
     20205                                                <MaxTileRow>11</MaxTileRow>
     20206                                                <MinTileCol>16</MinTileCol>
     20207                                                <MaxTileCol>16</MaxTileCol>
     20208                                        </TileMatrixLimits>
     20209                                        <TileMatrixLimits>
     20210                                                <TileMatrix>6</TileMatrix>
     20211                                                <MinTileRow>22</MinTileRow>
     20212                                                <MaxTileRow>22</MaxTileRow>
     20213                                                <MinTileCol>32</MinTileCol>
     20214                                                <MaxTileCol>32</MaxTileCol>
     20215                                        </TileMatrixLimits>
     20216                                        <TileMatrixLimits>
     20217                                                <TileMatrix>7</TileMatrix>
     20218                                                <MinTileRow>45</MinTileRow>
     20219                                                <MaxTileRow>45</MaxTileRow>
     20220                                                <MinTileCol>65</MinTileCol>
     20221                                                <MaxTileCol>65</MaxTileCol>
     20222                                        </TileMatrixLimits>
     20223                                        <TileMatrixLimits>
     20224                                                <TileMatrix>8</TileMatrix>
     20225                                                <MinTileRow>90</MinTileRow>
     20226                                                <MaxTileRow>91</MaxTileRow>
     20227                                                <MinTileCol>130</MinTileCol>
     20228                                                <MaxTileCol>130</MaxTileCol>
     20229                                        </TileMatrixLimits>
     20230                                        <TileMatrixLimits>
     20231                                                <TileMatrix>9</TileMatrix>
     20232                                                <MinTileRow>181</MinTileRow>
     20233                                                <MaxTileRow>182</MaxTileRow>
     20234                                                <MinTileCol>261</MinTileCol>
     20235                                                <MaxTileCol>261</MaxTileCol>
     20236                                        </TileMatrixLimits>
     20237                                </TileMatrixSetLimits>
     20238                        </TileMatrixSetLink>
     20239                </Layer>
     20240                <Layer>
     20241                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20242                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20243                        <ows:Keywords>
     20244                                <ows:Keyword>Photographies</ows:Keyword>
     20245                        </ows:Keywords>
     20246                        <ows:WGS84BoundingBox>
     20247                                <ows:LowerCorner>3.25731 45.7604</ows:LowerCorner>
     20248                                <ows:UpperCorner>3.5292 45.9414</ows:UpperCorner>
     20249                        </ows:WGS84BoundingBox>
     20250                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39148073</ows:Identifier>
     20251                        <Style isDefault="true">
     20252                                <ows:Title>Données Brutes</ows:Title>
     20253                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20254                                <ows:Keywords>
     20255                                        <ows:Keyword>Défaut</ows:Keyword>
     20256                                </ows:Keywords>
     20257                                <ows:Identifier>normal</ows:Identifier>
     20258                                <LegendURL format="image/jpeg" height="200"
     20259                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20260                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20261                        </Style>
     20262                        <Format>image/jpeg</Format>
     20263                        <TileMatrixSetLink>
     20264                                <TileMatrixSet>PM</TileMatrixSet>
     20265                                <TileMatrixSetLimits>
     20266                                        <TileMatrixLimits>
     20267                                                <TileMatrix>0</TileMatrix>
     20268                                                <MinTileRow>0</MinTileRow>
     20269                                                <MaxTileRow>0</MaxTileRow>
     20270                                                <MinTileCol>0</MinTileCol>
     20271                                                <MaxTileCol>0</MaxTileCol>
     20272                                        </TileMatrixLimits>
     20273                                        <TileMatrixLimits>
     20274                                                <TileMatrix>1</TileMatrix>
     20275                                                <MinTileRow>0</MinTileRow>
     20276                                                <MaxTileRow>0</MaxTileRow>
     20277                                                <MinTileCol>1</MinTileCol>
     20278                                                <MaxTileCol>1</MaxTileCol>
     20279                                        </TileMatrixLimits>
     20280                                        <TileMatrixLimits>
     20281                                                <TileMatrix>10</TileMatrix>
     20282                                                <MinTileRow>364</MinTileRow>
     20283                                                <MaxTileRow>365</MaxTileRow>
     20284                                                <MinTileCol>521</MinTileCol>
     20285                                                <MaxTileCol>522</MaxTileCol>
     20286                                        </TileMatrixLimits>
     20287                                        <TileMatrixLimits>
     20288                                                <TileMatrix>11</TileMatrix>
     20289                                                <MinTileRow>729</MinTileRow>
     20290                                                <MaxTileRow>730</MaxTileRow>
     20291                                                <MinTileCol>1042</MinTileCol>
     20292                                                <MaxTileCol>1044</MaxTileCol>
     20293                                        </TileMatrixLimits>
     20294                                        <TileMatrixLimits>
     20295                                                <TileMatrix>12</TileMatrix>
     20296                                                <MinTileRow>1458</MinTileRow>
     20297                                                <MaxTileRow>1461</MaxTileRow>
     20298                                                <MinTileCol>2085</MinTileCol>
     20299                                                <MaxTileCol>2088</MaxTileCol>
     20300                                        </TileMatrixLimits>
     20301                                        <TileMatrixLimits>
     20302                                                <TileMatrix>13</TileMatrix>
     20303                                                <MinTileRow>2916</MinTileRow>
     20304                                                <MaxTileRow>2922</MaxTileRow>
     20305                                                <MinTileCol>4170</MinTileCol>
     20306                                                <MaxTileCol>4176</MaxTileCol>
     20307                                        </TileMatrixLimits>
     20308                                        <TileMatrixLimits>
     20309                                                <TileMatrix>14</TileMatrix>
     20310                                                <MinTileRow>5832</MinTileRow>
     20311                                                <MaxTileRow>5844</MaxTileRow>
     20312                                                <MinTileCol>8340</MinTileCol>
     20313                                                <MaxTileCol>8352</MaxTileCol>
     20314                                        </TileMatrixLimits>
     20315                                        <TileMatrixLimits>
     20316                                                <TileMatrix>15</TileMatrix>
     20317                                                <MinTileRow>11665</MinTileRow>
     20318                                                <MaxTileRow>11688</MaxTileRow>
     20319                                                <MinTileCol>16680</MinTileCol>
     20320                                                <MaxTileCol>16705</MaxTileCol>
     20321                                        </TileMatrixLimits>
     20322                                        <TileMatrixLimits>
     20323                                                <TileMatrix>16</TileMatrix>
     20324                                                <MinTileRow>23330</MinTileRow>
     20325                                                <MaxTileRow>23377</MaxTileRow>
     20326                                                <MinTileCol>33360</MinTileCol>
     20327                                                <MaxTileCol>33410</MaxTileCol>
     20328                                        </TileMatrixLimits>
     20329                                        <TileMatrixLimits>
     20330                                                <TileMatrix>17</TileMatrix>
     20331                                                <MinTileRow>46661</MinTileRow>
     20332                                                <MaxTileRow>46755</MaxTileRow>
     20333                                                <MinTileCol>66721</MinTileCol>
     20334                                                <MaxTileCol>66821</MaxTileCol>
     20335                                        </TileMatrixLimits>
     20336                                        <TileMatrixLimits>
     20337                                                <TileMatrix>18</TileMatrix>
     20338                                                <MinTileRow>93322</MinTileRow>
     20339                                                <MaxTileRow>93511</MaxTileRow>
     20340                                                <MinTileCol>133443</MinTileCol>
     20341                                                <MaxTileCol>133642</MaxTileCol>
     20342                                        </TileMatrixLimits>
     20343                                        <TileMatrixLimits>
     20344                                                <TileMatrix>2</TileMatrix>
     20345                                                <MinTileRow>1</MinTileRow>
     20346                                                <MaxTileRow>1</MaxTileRow>
     20347                                                <MinTileCol>2</MinTileCol>
     20348                                                <MaxTileCol>2</MaxTileCol>
     20349                                        </TileMatrixLimits>
     20350                                        <TileMatrixLimits>
     20351                                                <TileMatrix>3</TileMatrix>
     20352                                                <MinTileRow>2</MinTileRow>
     20353                                                <MaxTileRow>2</MaxTileRow>
     20354                                                <MinTileCol>4</MinTileCol>
     20355                                                <MaxTileCol>4</MaxTileCol>
     20356                                        </TileMatrixLimits>
     20357                                        <TileMatrixLimits>
     20358                                                <TileMatrix>4</TileMatrix>
     20359                                                <MinTileRow>5</MinTileRow>
     20360                                                <MaxTileRow>5</MaxTileRow>
     20361                                                <MinTileCol>8</MinTileCol>
     20362                                                <MaxTileCol>8</MaxTileCol>
     20363                                        </TileMatrixLimits>
     20364                                        <TileMatrixLimits>
     20365                                                <TileMatrix>5</TileMatrix>
     20366                                                <MinTileRow>11</MinTileRow>
     20367                                                <MaxTileRow>11</MaxTileRow>
     20368                                                <MinTileCol>16</MinTileCol>
     20369                                                <MaxTileCol>16</MaxTileCol>
     20370                                        </TileMatrixLimits>
     20371                                        <TileMatrixLimits>
     20372                                                <TileMatrix>6</TileMatrix>
     20373                                                <MinTileRow>22</MinTileRow>
     20374                                                <MaxTileRow>22</MaxTileRow>
     20375                                                <MinTileCol>32</MinTileCol>
     20376                                                <MaxTileCol>32</MaxTileCol>
     20377                                        </TileMatrixLimits>
     20378                                        <TileMatrixLimits>
     20379                                                <TileMatrix>7</TileMatrix>
     20380                                                <MinTileRow>45</MinTileRow>
     20381                                                <MaxTileRow>45</MaxTileRow>
     20382                                                <MinTileCol>65</MinTileCol>
     20383                                                <MaxTileCol>65</MaxTileCol>
     20384                                        </TileMatrixLimits>
     20385                                        <TileMatrixLimits>
     20386                                                <TileMatrix>8</TileMatrix>
     20387                                                <MinTileRow>91</MinTileRow>
     20388                                                <MaxTileRow>91</MaxTileRow>
     20389                                                <MinTileCol>130</MinTileCol>
     20390                                                <MaxTileCol>130</MaxTileCol>
     20391                                        </TileMatrixLimits>
     20392                                        <TileMatrixLimits>
     20393                                                <TileMatrix>9</TileMatrix>
     20394                                                <MinTileRow>182</MinTileRow>
     20395                                                <MaxTileRow>182</MaxTileRow>
     20396                                                <MinTileCol>260</MinTileCol>
     20397                                                <MaxTileCol>261</MaxTileCol>
     20398                                        </TileMatrixLimits>
     20399                                </TileMatrixSetLimits>
     20400                        </TileMatrixSetLink>
     20401                </Layer>
     20402                <Layer>
     20403                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20404                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20405                        <ows:Keywords>
     20406                                <ows:Keyword>Photographies</ows:Keyword>
     20407                        </ows:Keywords>
     20408                        <ows:WGS84BoundingBox>
     20409                                <ows:LowerCorner>3.03841 45.5</ows:LowerCorner>
     20410                                <ows:UpperCorner>3.31018 46.0137</ows:UpperCorner>
     20411                        </ows:WGS84BoundingBox>
     20412                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39158071</ows:Identifier>
     20413                        <Style isDefault="true">
     20414                                <ows:Title>Données Brutes</ows:Title>
     20415                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20416                                <ows:Keywords>
     20417                                        <ows:Keyword>Défaut</ows:Keyword>
     20418                                </ows:Keywords>
     20419                                <ows:Identifier>normal</ows:Identifier>
     20420                                <LegendURL format="image/jpeg" height="200"
     20421                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20422                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20423                        </Style>
     20424                        <Format>image/jpeg</Format>
     20425                        <TileMatrixSetLink>
     20426                                <TileMatrixSet>PM</TileMatrixSet>
     20427                                <TileMatrixSetLimits>
     20428                                        <TileMatrixLimits>
     20429                                                <TileMatrix>0</TileMatrix>
     20430                                                <MinTileRow>0</MinTileRow>
     20431                                                <MaxTileRow>0</MaxTileRow>
     20432                                                <MinTileCol>0</MinTileCol>
     20433                                                <MaxTileCol>0</MaxTileCol>
     20434                                        </TileMatrixLimits>
     20435                                        <TileMatrixLimits>
     20436                                                <TileMatrix>1</TileMatrix>
     20437                                                <MinTileRow>0</MinTileRow>
     20438                                                <MaxTileRow>0</MaxTileRow>
     20439                                                <MinTileCol>1</MinTileCol>
     20440                                                <MaxTileCol>1</MaxTileCol>
     20441                                        </TileMatrixLimits>
     20442                                        <TileMatrixLimits>
     20443                                                <TileMatrix>10</TileMatrix>
     20444                                                <MinTileRow>364</MinTileRow>
     20445                                                <MaxTileRow>366</MaxTileRow>
     20446                                                <MinTileCol>520</MinTileCol>
     20447                                                <MaxTileCol>521</MaxTileCol>
     20448                                        </TileMatrixLimits>
     20449                                        <TileMatrixLimits>
     20450                                                <TileMatrix>11</TileMatrix>
     20451                                                <MinTileRow>728</MinTileRow>
     20452                                                <MaxTileRow>732</MaxTileRow>
     20453                                                <MinTileCol>1041</MinTileCol>
     20454                                                <MaxTileCol>1042</MaxTileCol>
     20455                                        </TileMatrixLimits>
     20456                                        <TileMatrixLimits>
     20457                                                <TileMatrix>12</TileMatrix>
     20458                                                <MinTileRow>1456</MinTileRow>
     20459                                                <MaxTileRow>1465</MaxTileRow>
     20460                                                <MinTileCol>2082</MinTileCol>
     20461                                                <MaxTileCol>2085</MaxTileCol>
     20462                                        </TileMatrixLimits>
     20463                                        <TileMatrixLimits>
     20464                                                <TileMatrix>13</TileMatrix>
     20465                                                <MinTileRow>2913</MinTileRow>
     20466                                                <MaxTileRow>2930</MaxTileRow>
     20467                                                <MinTileCol>4165</MinTileCol>
     20468                                                <MaxTileCol>4171</MaxTileCol>
     20469                                        </TileMatrixLimits>
     20470                                        <TileMatrixLimits>
     20471                                                <TileMatrix>14</TileMatrix>
     20472                                                <MinTileRow>5827</MinTileRow>
     20473                                                <MaxTileRow>5861</MaxTileRow>
     20474                                                <MinTileCol>8330</MinTileCol>
     20475                                                <MaxTileCol>8342</MaxTileCol>
     20476                                        </TileMatrixLimits>
     20477                                        <TileMatrixLimits>
     20478                                                <TileMatrix>15</TileMatrix>
     20479                                                <MinTileRow>11655</MinTileRow>
     20480                                                <MaxTileRow>11722</MaxTileRow>
     20481                                                <MinTileCol>16660</MinTileCol>
     20482                                                <MaxTileCol>16685</MaxTileCol>
     20483                                        </TileMatrixLimits>
     20484                                        <TileMatrixLimits>
     20485                                                <TileMatrix>16</TileMatrix>
     20486                                                <MinTileRow>23311</MinTileRow>
     20487                                                <MaxTileRow>23445</MaxTileRow>
     20488                                                <MinTileCol>33321</MinTileCol>
     20489                                                <MaxTileCol>33370</MaxTileCol>
     20490                                        </TileMatrixLimits>
     20491                                        <TileMatrixLimits>
     20492                                                <TileMatrix>17</TileMatrix>
     20493                                                <MinTileRow>46623</MinTileRow>
     20494                                                <MaxTileRow>46891</MaxTileRow>
     20495                                                <MinTileCol>66642</MinTileCol>
     20496                                                <MaxTileCol>66741</MaxTileCol>
     20497                                        </TileMatrixLimits>
     20498                                        <TileMatrixLimits>
     20499                                                <TileMatrix>18</TileMatrix>
     20500                                                <MinTileRow>93246</MinTileRow>
     20501                                                <MaxTileRow>93782</MaxTileRow>
     20502                                                <MinTileCol>133284</MinTileCol>
     20503                                                <MaxTileCol>133482</MaxTileCol>
     20504                                        </TileMatrixLimits>
     20505                                        <TileMatrixLimits>
     20506                                                <TileMatrix>2</TileMatrix>
     20507                                                <MinTileRow>1</MinTileRow>
     20508                                                <MaxTileRow>1</MaxTileRow>
     20509                                                <MinTileCol>2</MinTileCol>
     20510                                                <MaxTileCol>2</MaxTileCol>
     20511                                        </TileMatrixLimits>
     20512                                        <TileMatrixLimits>
     20513                                                <TileMatrix>3</TileMatrix>
     20514                                                <MinTileRow>2</MinTileRow>
     20515                                                <MaxTileRow>2</MaxTileRow>
     20516                                                <MinTileCol>4</MinTileCol>
     20517                                                <MaxTileCol>4</MaxTileCol>
     20518                                        </TileMatrixLimits>
     20519                                        <TileMatrixLimits>
     20520                                                <TileMatrix>4</TileMatrix>
     20521                                                <MinTileRow>5</MinTileRow>
     20522                                                <MaxTileRow>5</MaxTileRow>
     20523                                                <MinTileCol>8</MinTileCol>
     20524                                                <MaxTileCol>8</MaxTileCol>
     20525                                        </TileMatrixLimits>
     20526                                        <TileMatrixLimits>
     20527                                                <TileMatrix>5</TileMatrix>
     20528                                                <MinTileRow>11</MinTileRow>
     20529                                                <MaxTileRow>11</MaxTileRow>
     20530                                                <MinTileCol>16</MinTileCol>
     20531                                                <MaxTileCol>16</MaxTileCol>
     20532                                        </TileMatrixLimits>
     20533                                        <TileMatrixLimits>
     20534                                                <TileMatrix>6</TileMatrix>
     20535                                                <MinTileRow>22</MinTileRow>
     20536                                                <MaxTileRow>22</MaxTileRow>
     20537                                                <MinTileCol>32</MinTileCol>
     20538                                                <MaxTileCol>32</MaxTileCol>
     20539                                        </TileMatrixLimits>
     20540                                        <TileMatrixLimits>
     20541                                                <TileMatrix>7</TileMatrix>
     20542                                                <MinTileRow>45</MinTileRow>
     20543                                                <MaxTileRow>45</MaxTileRow>
     20544                                                <MinTileCol>65</MinTileCol>
     20545                                                <MaxTileCol>65</MaxTileCol>
     20546                                        </TileMatrixLimits>
     20547                                        <TileMatrixLimits>
     20548                                                <TileMatrix>8</TileMatrix>
     20549                                                <MinTileRow>91</MinTileRow>
     20550                                                <MaxTileRow>91</MaxTileRow>
     20551                                                <MinTileCol>130</MinTileCol>
     20552                                                <MaxTileCol>130</MaxTileCol>
     20553                                        </TileMatrixLimits>
     20554                                        <TileMatrixLimits>
     20555                                                <TileMatrix>9</TileMatrix>
     20556                                                <MinTileRow>182</MinTileRow>
     20557                                                <MaxTileRow>183</MaxTileRow>
     20558                                                <MinTileCol>260</MinTileCol>
     20559                                                <MaxTileCol>260</MaxTileCol>
     20560                                        </TileMatrixLimits>
     20561                                </TileMatrixSetLimits>
     20562                        </TileMatrixSetLink>
     20563                </Layer>
     20564                <Layer>
     20565                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20566                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20567                        <ows:Keywords>
     20568                                <ows:Keyword>Photographies</ows:Keyword>
     20569                        </ows:Keywords>
     20570                        <ows:WGS84BoundingBox>
     20571                                <ows:LowerCorner>2.58404 45.977</ows:LowerCorner>
     20572                                <ows:UpperCorner>2.85793 46.3288</ows:UpperCorner>
     20573                        </ows:WGS84BoundingBox>
     20574                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39176075</ows:Identifier>
     20575                        <Style isDefault="true">
     20576                                <ows:Title>Données Brutes</ows:Title>
     20577                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20578                                <ows:Keywords>
     20579                                        <ows:Keyword>Défaut</ows:Keyword>
     20580                                </ows:Keywords>
     20581                                <ows:Identifier>normal</ows:Identifier>
     20582                                <LegendURL format="image/jpeg" height="200"
     20583                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20584                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20585                        </Style>
     20586                        <Format>image/jpeg</Format>
     20587                        <TileMatrixSetLink>
     20588                                <TileMatrixSet>PM</TileMatrixSet>
     20589                                <TileMatrixSetLimits>
     20590                                        <TileMatrixLimits>
     20591                                                <TileMatrix>0</TileMatrix>
     20592                                                <MinTileRow>0</MinTileRow>
     20593                                                <MaxTileRow>0</MaxTileRow>
     20594                                                <MinTileCol>0</MinTileCol>
     20595                                                <MaxTileCol>0</MaxTileCol>
     20596                                        </TileMatrixLimits>
     20597                                        <TileMatrixLimits>
     20598                                                <TileMatrix>1</TileMatrix>
     20599                                                <MinTileRow>0</MinTileRow>
     20600                                                <MaxTileRow>0</MaxTileRow>
     20601                                                <MinTileCol>1</MinTileCol>
     20602                                                <MaxTileCol>1</MaxTileCol>
     20603                                        </TileMatrixLimits>
     20604                                        <TileMatrixLimits>
     20605                                                <TileMatrix>10</TileMatrix>
     20606                                                <MinTileRow>362</MinTileRow>
     20607                                                <MaxTileRow>364</MaxTileRow>
     20608                                                <MinTileCol>519</MinTileCol>
     20609                                                <MaxTileCol>520</MaxTileCol>
     20610                                        </TileMatrixLimits>
     20611                                        <TileMatrixLimits>
     20612                                                <TileMatrix>11</TileMatrix>
     20613                                                <MinTileRow>725</MinTileRow>
     20614                                                <MaxTileRow>728</MaxTileRow>
     20615                                                <MinTileCol>1038</MinTileCol>
     20616                                                <MaxTileCol>1040</MaxTileCol>
     20617                                        </TileMatrixLimits>
     20618                                        <TileMatrixLimits>
     20619                                                <TileMatrix>12</TileMatrix>
     20620                                                <MinTileRow>1451</MinTileRow>
     20621                                                <MaxTileRow>1457</MaxTileRow>
     20622                                                <MinTileCol>2077</MinTileCol>
     20623                                                <MaxTileCol>2080</MaxTileCol>
     20624                                        </TileMatrixLimits>
     20625                                        <TileMatrixLimits>
     20626                                                <TileMatrix>13</TileMatrix>
     20627                                                <MinTileRow>2903</MinTileRow>
     20628                                                <MaxTileRow>2915</MaxTileRow>
     20629                                                <MinTileCol>4154</MinTileCol>
     20630                                                <MaxTileCol>4161</MaxTileCol>
     20631                                        </TileMatrixLimits>
     20632                                        <TileMatrixLimits>
     20633                                                <TileMatrix>14</TileMatrix>
     20634                                                <MinTileRow>5807</MinTileRow>
     20635                                                <MaxTileRow>5830</MaxTileRow>
     20636                                                <MinTileCol>8309</MinTileCol>
     20637                                                <MaxTileCol>8322</MaxTileCol>
     20638                                        </TileMatrixLimits>
     20639                                        <TileMatrixLimits>
     20640                                                <TileMatrix>15</TileMatrix>
     20641                                                <MinTileRow>11614</MinTileRow>
     20642                                                <MaxTileRow>11660</MaxTileRow>
     20643                                                <MinTileCol>16619</MinTileCol>
     20644                                                <MaxTileCol>16644</MaxTileCol>
     20645                                        </TileMatrixLimits>
     20646                                        <TileMatrixLimits>
     20647                                                <TileMatrix>16</TileMatrix>
     20648                                                <MinTileRow>23228</MinTileRow>
     20649                                                <MaxTileRow>23321</MaxTileRow>
     20650                                                <MinTileCol>33238</MinTileCol>
     20651                                                <MaxTileCol>33288</MaxTileCol>
     20652                                        </TileMatrixLimits>
     20653                                        <TileMatrixLimits>
     20654                                                <TileMatrix>17</TileMatrix>
     20655                                                <MinTileRow>46457</MinTileRow>
     20656                                                <MaxTileRow>46642</MaxTileRow>
     20657                                                <MinTileCol>66476</MinTileCol>
     20658                                                <MaxTileCol>66576</MaxTileCol>
     20659                                        </TileMatrixLimits>
     20660                                        <TileMatrixLimits>
     20661                                                <TileMatrix>18</TileMatrix>
     20662                                                <MinTileRow>92915</MinTileRow>
     20663                                                <MaxTileRow>93284</MaxTileRow>
     20664                                                <MinTileCol>132953</MinTileCol>
     20665                                                <MaxTileCol>133153</MaxTileCol>
     20666                                        </TileMatrixLimits>
     20667                                        <TileMatrixLimits>
     20668                                                <TileMatrix>2</TileMatrix>
     20669                                                <MinTileRow>1</MinTileRow>
     20670                                                <MaxTileRow>1</MaxTileRow>
     20671                                                <MinTileCol>2</MinTileCol>
     20672                                                <MaxTileCol>2</MaxTileCol>
     20673                                        </TileMatrixLimits>
     20674                                        <TileMatrixLimits>
     20675                                                <TileMatrix>3</TileMatrix>
     20676                                                <MinTileRow>2</MinTileRow>
     20677                                                <MaxTileRow>2</MaxTileRow>
     20678                                                <MinTileCol>4</MinTileCol>
     20679                                                <MaxTileCol>4</MaxTileCol>
     20680                                        </TileMatrixLimits>
     20681                                        <TileMatrixLimits>
     20682                                                <TileMatrix>4</TileMatrix>
     20683                                                <MinTileRow>5</MinTileRow>
     20684                                                <MaxTileRow>5</MaxTileRow>
     20685                                                <MinTileCol>8</MinTileCol>
     20686                                                <MaxTileCol>8</MaxTileCol>
     20687                                        </TileMatrixLimits>
     20688                                        <TileMatrixLimits>
     20689                                                <TileMatrix>5</TileMatrix>
     20690                                                <MinTileRow>11</MinTileRow>
     20691                                                <MaxTileRow>11</MaxTileRow>
     20692                                                <MinTileCol>16</MinTileCol>
     20693                                                <MaxTileCol>16</MaxTileCol>
     20694                                        </TileMatrixLimits>
     20695                                        <TileMatrixLimits>
     20696                                                <TileMatrix>6</TileMatrix>
     20697                                                <MinTileRow>22</MinTileRow>
     20698                                                <MaxTileRow>22</MaxTileRow>
     20699                                                <MinTileCol>32</MinTileCol>
     20700                                                <MaxTileCol>32</MaxTileCol>
     20701                                        </TileMatrixLimits>
     20702                                        <TileMatrixLimits>
     20703                                                <TileMatrix>7</TileMatrix>
     20704                                                <MinTileRow>45</MinTileRow>
     20705                                                <MaxTileRow>45</MaxTileRow>
     20706                                                <MinTileCol>64</MinTileCol>
     20707                                                <MaxTileCol>65</MaxTileCol>
     20708                                        </TileMatrixLimits>
     20709                                        <TileMatrixLimits>
     20710                                                <TileMatrix>8</TileMatrix>
     20711                                                <MinTileRow>90</MinTileRow>
     20712                                                <MaxTileRow>91</MaxTileRow>
     20713                                                <MinTileCol>129</MinTileCol>
     20714                                                <MaxTileCol>130</MaxTileCol>
     20715                                        </TileMatrixLimits>
     20716                                        <TileMatrixLimits>
     20717                                                <TileMatrix>9</TileMatrix>
     20718                                                <MinTileRow>181</MinTileRow>
     20719                                                <MaxTileRow>182</MaxTileRow>
     20720                                                <MinTileCol>259</MinTileCol>
     20721                                                <MaxTileCol>260</MaxTileCol>
     20722                                        </TileMatrixLimits>
     20723                                </TileMatrixSetLimits>
     20724                        </TileMatrixSetLink>
     20725                </Layer>
     20726                <Layer>
     20727                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20728                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20729                        <ows:Keywords>
     20730                                <ows:Keyword>Photographies</ows:Keyword>
     20731                        </ows:Keywords>
     20732                        <ows:WGS84BoundingBox>
     20733                                <ows:LowerCorner>2.80614 45.5003</ows:LowerCorner>
     20734                                <ows:UpperCorner>3.07755 46.0137</ows:UpperCorner>
     20735                        </ows:WGS84BoundingBox>
     20736                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-08-23-39187826</ows:Identifier>
     20737                        <Style isDefault="true">
     20738                                <ows:Title>Données Brutes</ows:Title>
     20739                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20740                                <ows:Keywords>
     20741                                        <ows:Keyword>Défaut</ows:Keyword>
     20742                                </ows:Keywords>
     20743                                <ows:Identifier>normal</ows:Identifier>
     20744                                <LegendURL format="image/jpeg" height="200"
     20745                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20746                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20747                        </Style>
     20748                        <Format>image/jpeg</Format>
     20749                        <TileMatrixSetLink>
     20750                                <TileMatrixSet>PM</TileMatrixSet>
     20751                                <TileMatrixSetLimits>
     20752                                        <TileMatrixLimits>
     20753                                                <TileMatrix>0</TileMatrix>
     20754                                                <MinTileRow>0</MinTileRow>
     20755                                                <MaxTileRow>0</MaxTileRow>
     20756                                                <MinTileCol>0</MinTileCol>
     20757                                                <MaxTileCol>0</MaxTileCol>
     20758                                        </TileMatrixLimits>
     20759                                        <TileMatrixLimits>
     20760                                                <TileMatrix>1</TileMatrix>
     20761                                                <MinTileRow>0</MinTileRow>
     20762                                                <MaxTileRow>0</MaxTileRow>
     20763                                                <MinTileCol>1</MinTileCol>
     20764                                                <MaxTileCol>1</MaxTileCol>
     20765                                        </TileMatrixLimits>
     20766                                        <TileMatrixLimits>
     20767                                                <TileMatrix>10</TileMatrix>
     20768                                                <MinTileRow>364</MinTileRow>
     20769                                                <MaxTileRow>366</MaxTileRow>
     20770                                                <MinTileCol>519</MinTileCol>
     20771                                                <MaxTileCol>520</MaxTileCol>
     20772                                        </TileMatrixLimits>
     20773                                        <TileMatrixLimits>
     20774                                                <TileMatrix>11</TileMatrix>
     20775                                                <MinTileRow>728</MinTileRow>
     20776                                                <MaxTileRow>732</MaxTileRow>
     20777                                                <MinTileCol>1039</MinTileCol>
     20778                                                <MaxTileCol>1041</MaxTileCol>
     20779                                        </TileMatrixLimits>
     20780                                        <TileMatrixLimits>
     20781                                                <TileMatrix>12</TileMatrix>
     20782                                                <MinTileRow>1456</MinTileRow>
     20783                                                <MaxTileRow>1465</MaxTileRow>
     20784                                                <MinTileCol>2079</MinTileCol>
     20785                                                <MaxTileCol>2083</MaxTileCol>
     20786                                        </TileMatrixLimits>
     20787                                        <TileMatrixLimits>
     20788                                                <TileMatrix>13</TileMatrix>
     20789                                                <MinTileRow>2913</MinTileRow>
     20790                                                <MaxTileRow>2930</MaxTileRow>
     20791                                                <MinTileCol>4159</MinTileCol>
     20792                                                <MaxTileCol>4166</MaxTileCol>
     20793                                        </TileMatrixLimits>
     20794                                        <TileMatrixLimits>
     20795                                                <TileMatrix>14</TileMatrix>
     20796                                                <MinTileRow>5827</MinTileRow>
     20797                                                <MaxTileRow>5861</MaxTileRow>
     20798                                                <MinTileCol>8319</MinTileCol>
     20799                                                <MaxTileCol>8332</MaxTileCol>
     20800                                        </TileMatrixLimits>
     20801                                        <TileMatrixLimits>
     20802                                                <TileMatrix>15</TileMatrix>
     20803                                                <MinTileRow>11655</MinTileRow>
     20804                                                <MaxTileRow>11722</MaxTileRow>
     20805                                                <MinTileCol>16639</MinTileCol>
     20806                                                <MaxTileCol>16664</MaxTileCol>
     20807                                        </TileMatrixLimits>
     20808                                        <TileMatrixLimits>
     20809                                                <TileMatrix>16</TileMatrix>
     20810                                                <MinTileRow>23311</MinTileRow>
     20811                                                <MaxTileRow>23445</MaxTileRow>
     20812                                                <MinTileCol>33278</MinTileCol>
     20813                                                <MaxTileCol>33328</MaxTileCol>
     20814                                        </TileMatrixLimits>
     20815                                        <TileMatrixLimits>
     20816                                                <TileMatrix>17</TileMatrix>
     20817                                                <MinTileRow>46623</MinTileRow>
     20818                                                <MaxTileRow>46891</MaxTileRow>
     20819                                                <MinTileCol>66557</MinTileCol>
     20820                                                <MaxTileCol>66656</MaxTileCol>
     20821                                        </TileMatrixLimits>
     20822                                        <TileMatrixLimits>
     20823                                                <TileMatrix>18</TileMatrix>
     20824                                                <MinTileRow>93246</MinTileRow>
     20825                                                <MaxTileRow>93782</MaxTileRow>
     20826                                                <MinTileCol>133115</MinTileCol>
     20827                                                <MaxTileCol>133313</MaxTileCol>
     20828                                        </TileMatrixLimits>
     20829                                        <TileMatrixLimits>
     20830                                                <TileMatrix>2</TileMatrix>
     20831                                                <MinTileRow>1</MinTileRow>
     20832                                                <MaxTileRow>1</MaxTileRow>
     20833                                                <MinTileCol>2</MinTileCol>
     20834                                                <MaxTileCol>2</MaxTileCol>
     20835                                        </TileMatrixLimits>
     20836                                        <TileMatrixLimits>
     20837                                                <TileMatrix>3</TileMatrix>
     20838                                                <MinTileRow>2</MinTileRow>
     20839                                                <MaxTileRow>2</MaxTileRow>
     20840                                                <MinTileCol>4</MinTileCol>
     20841                                                <MaxTileCol>4</MaxTileCol>
     20842                                        </TileMatrixLimits>
     20843                                        <TileMatrixLimits>
     20844                                                <TileMatrix>4</TileMatrix>
     20845                                                <MinTileRow>5</MinTileRow>
     20846                                                <MaxTileRow>5</MaxTileRow>
     20847                                                <MinTileCol>8</MinTileCol>
     20848                                                <MaxTileCol>8</MaxTileCol>
     20849                                        </TileMatrixLimits>
     20850                                        <TileMatrixLimits>
     20851                                                <TileMatrix>5</TileMatrix>
     20852                                                <MinTileRow>11</MinTileRow>
     20853                                                <MaxTileRow>11</MaxTileRow>
     20854                                                <MinTileCol>16</MinTileCol>
     20855                                                <MaxTileCol>16</MaxTileCol>
     20856                                        </TileMatrixLimits>
     20857                                        <TileMatrixLimits>
     20858                                                <TileMatrix>6</TileMatrix>
     20859                                                <MinTileRow>22</MinTileRow>
     20860                                                <MaxTileRow>22</MaxTileRow>
     20861                                                <MinTileCol>32</MinTileCol>
     20862                                                <MaxTileCol>32</MaxTileCol>
     20863                                        </TileMatrixLimits>
     20864                                        <TileMatrixLimits>
     20865                                                <TileMatrix>7</TileMatrix>
     20866                                                <MinTileRow>45</MinTileRow>
     20867                                                <MaxTileRow>45</MaxTileRow>
     20868                                                <MinTileCol>64</MinTileCol>
     20869                                                <MaxTileCol>65</MaxTileCol>
     20870                                        </TileMatrixLimits>
     20871                                        <TileMatrixLimits>
     20872                                                <TileMatrix>8</TileMatrix>
     20873                                                <MinTileRow>91</MinTileRow>
     20874                                                <MaxTileRow>91</MaxTileRow>
     20875                                                <MinTileCol>129</MinTileCol>
     20876                                                <MaxTileCol>130</MaxTileCol>
     20877                                        </TileMatrixLimits>
     20878                                        <TileMatrixLimits>
     20879                                                <TileMatrix>9</TileMatrix>
     20880                                                <MinTileRow>182</MinTileRow>
     20881                                                <MaxTileRow>183</MaxTileRow>
     20882                                                <MinTileCol>259</MinTileCol>
     20883                                                <MaxTileCol>260</MaxTileCol>
     20884                                        </TileMatrixLimits>
     20885                                </TileMatrixSetLimits>
     20886                        </TileMatrixSetLink>
     20887                </Layer>
     20888                <Layer>
     20889                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     20890                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     20891                        <ows:Keywords>
     20892                                <ows:Keyword>Photographies</ows:Keyword>
     20893                        </ows:Keywords>
     20894                        <ows:WGS84BoundingBox>
     20895                                <ows:LowerCorner>3.70379 45.4601</ows:LowerCorner>
     20896                                <ows:UpperCorner>3.99155 45.8134</ows:UpperCorner>
     20897                        </ows:WGS84BoundingBox>
     20898                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39176824</ows:Identifier>
     20899                        <Style isDefault="true">
     20900                                <ows:Title>Données Brutes</ows:Title>
     20901                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     20902                                <ows:Keywords>
     20903                                        <ows:Keyword>Défaut</ows:Keyword>
     20904                                </ows:Keywords>
     20905                                <ows:Identifier>normal</ows:Identifier>
     20906                                <LegendURL format="image/jpeg" height="200"
     20907                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     20908                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     20909                        </Style>
     20910                        <Format>image/jpeg</Format>
     20911                        <TileMatrixSetLink>
     20912                                <TileMatrixSet>PM</TileMatrixSet>
     20913                                <TileMatrixSetLimits>
     20914                                        <TileMatrixLimits>
     20915                                                <TileMatrix>0</TileMatrix>
     20916                                                <MinTileRow>0</MinTileRow>
     20917                                                <MaxTileRow>0</MaxTileRow>
     20918                                                <MinTileCol>0</MinTileCol>
     20919                                                <MaxTileCol>0</MaxTileCol>
     20920                                        </TileMatrixLimits>
     20921                                        <TileMatrixLimits>
     20922                                                <TileMatrix>1</TileMatrix>
     20923                                                <MinTileRow>0</MinTileRow>
     20924                                                <MaxTileRow>0</MaxTileRow>
     20925                                                <MinTileCol>1</MinTileCol>
     20926                                                <MaxTileCol>1</MaxTileCol>
     20927                                        </TileMatrixLimits>
     20928                                        <TileMatrixLimits>
     20929                                                <TileMatrix>10</TileMatrix>
     20930                                                <MinTileRow>365</MinTileRow>
     20931                                                <MaxTileRow>366</MaxTileRow>
     20932                                                <MinTileCol>522</MinTileCol>
     20933                                                <MaxTileCol>523</MaxTileCol>
     20934                                        </TileMatrixLimits>
     20935                                        <TileMatrixLimits>
     20936                                                <TileMatrix>11</TileMatrix>
     20937                                                <MinTileRow>730</MinTileRow>
     20938                                                <MaxTileRow>733</MaxTileRow>
     20939                                                <MinTileCol>1045</MinTileCol>
     20940                                                <MaxTileCol>1046</MaxTileCol>
     20941                                        </TileMatrixLimits>
     20942                                        <TileMatrixLimits>
     20943                                                <TileMatrix>12</TileMatrix>
     20944                                                <MinTileRow>1460</MinTileRow>
     20945                                                <MaxTileRow>1466</MaxTileRow>
     20946                                                <MinTileCol>2090</MinTileCol>
     20947                                                <MaxTileCol>2093</MaxTileCol>
     20948                                        </TileMatrixLimits>
     20949                                        <TileMatrixLimits>
     20950                                                <TileMatrix>13</TileMatrix>
     20951                                                <MinTileRow>2920</MinTileRow>
     20952                                                <MaxTileRow>2932</MaxTileRow>
     20953                                                <MinTileCol>4180</MinTileCol>
     20954                                                <MaxTileCol>4186</MaxTileCol>
     20955                                        </TileMatrixLimits>
     20956                                        <TileMatrixLimits>
     20957                                                <TileMatrix>14</TileMatrix>
     20958                                                <MinTileRow>5841</MinTileRow>
     20959                                                <MaxTileRow>5864</MaxTileRow>
     20960                                                <MinTileCol>8360</MinTileCol>
     20961                                                <MaxTileCol>8373</MaxTileCol>
     20962                                        </TileMatrixLimits>
     20963                                        <TileMatrixLimits>
     20964                                                <TileMatrix>15</TileMatrix>
     20965                                                <MinTileRow>11682</MinTileRow>
     20966                                                <MaxTileRow>11728</MaxTileRow>
     20967                                                <MinTileCol>16721</MinTileCol>
     20968                                                <MaxTileCol>16746</MaxTileCol>
     20969                                        </TileMatrixLimits>
     20970                                        <TileMatrixLimits>
     20971                                                <TileMatrix>16</TileMatrix>
     20972                                                <MinTileRow>23364</MinTileRow>
     20973                                                <MaxTileRow>23456</MaxTileRow>
     20974                                                <MinTileCol>33442</MinTileCol>
     20975                                                <MaxTileCol>33493</MaxTileCol>
     20976                                        </TileMatrixLimits>
     20977                                        <TileMatrixLimits>
     20978                                                <TileMatrix>17</TileMatrix>
     20979                                                <MinTileRow>46728</MinTileRow>
     20980                                                <MaxTileRow>46912</MaxTileRow>
     20981                                                <MinTileCol>66884</MinTileCol>
     20982                                                <MaxTileCol>66987</MaxTileCol>
     20983                                        </TileMatrixLimits>
     20984                                        <TileMatrixLimits>
     20985                                                <TileMatrix>18</TileMatrix>
     20986                                                <MinTileRow>93456</MinTileRow>
     20987                                                <MaxTileRow>93824</MaxTileRow>
     20988                                                <MinTileCol>133768</MinTileCol>
     20989                                                <MaxTileCol>133975</MaxTileCol>
     20990                                        </TileMatrixLimits>
     20991                                        <TileMatrixLimits>
     20992                                                <TileMatrix>2</TileMatrix>
     20993                                                <MinTileRow>1</MinTileRow>
     20994                                                <MaxTileRow>1</MaxTileRow>
     20995                                                <MinTileCol>2</MinTileCol>
     20996                                                <MaxTileCol>2</MaxTileCol>
     20997                                        </TileMatrixLimits>
     20998                                        <TileMatrixLimits>
     20999                                                <TileMatrix>3</TileMatrix>
     21000                                                <MinTileRow>2</MinTileRow>
     21001                                                <MaxTileRow>2</MaxTileRow>
     21002                                                <MinTileCol>4</MinTileCol>
     21003                                                <MaxTileCol>4</MaxTileCol>
     21004                                        </TileMatrixLimits>
     21005                                        <TileMatrixLimits>
     21006                                                <TileMatrix>4</TileMatrix>
     21007                                                <MinTileRow>5</MinTileRow>
     21008                                                <MaxTileRow>5</MaxTileRow>
     21009                                                <MinTileCol>8</MinTileCol>
     21010                                                <MaxTileCol>8</MaxTileCol>
     21011                                        </TileMatrixLimits>
     21012                                        <TileMatrixLimits>
     21013                                                <TileMatrix>5</TileMatrix>
     21014                                                <MinTileRow>11</MinTileRow>
     21015                                                <MaxTileRow>11</MaxTileRow>
     21016                                                <MinTileCol>16</MinTileCol>
     21017                                                <MaxTileCol>16</MaxTileCol>
     21018                                        </TileMatrixLimits>
     21019                                        <TileMatrixLimits>
     21020                                                <TileMatrix>6</TileMatrix>
     21021                                                <MinTileRow>22</MinTileRow>
     21022                                                <MaxTileRow>22</MaxTileRow>
     21023                                                <MinTileCol>32</MinTileCol>
     21024                                                <MaxTileCol>32</MaxTileCol>
     21025                                        </TileMatrixLimits>
     21026                                        <TileMatrixLimits>
     21027                                                <TileMatrix>7</TileMatrix>
     21028                                                <MinTileRow>45</MinTileRow>
     21029                                                <MaxTileRow>45</MaxTileRow>
     21030                                                <MinTileCol>65</MinTileCol>
     21031                                                <MaxTileCol>65</MaxTileCol>
     21032                                        </TileMatrixLimits>
     21033                                        <TileMatrixLimits>
     21034                                                <TileMatrix>8</TileMatrix>
     21035                                                <MinTileRow>91</MinTileRow>
     21036                                                <MaxTileRow>91</MaxTileRow>
     21037                                                <MinTileCol>130</MinTileCol>
     21038                                                <MaxTileCol>130</MaxTileCol>
     21039                                        </TileMatrixLimits>
     21040                                        <TileMatrixLimits>
     21041                                                <TileMatrix>9</TileMatrix>
     21042                                                <MinTileRow>182</MinTileRow>
     21043                                                <MaxTileRow>183</MaxTileRow>
     21044                                                <MinTileCol>261</MinTileCol>
     21045                                                <MaxTileCol>261</MaxTileCol>
     21046                                        </TileMatrixLimits>
     21047                                </TileMatrixSetLimits>
     21048                        </TileMatrixSetLink>
     21049                </Layer>
     21050                <Layer>
     21051                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21052                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21053                        <ows:Keywords>
     21054                                <ows:Keyword>Photographies</ows:Keyword>
     21055                        </ows:Keywords>
     21056                        <ows:WGS84BoundingBox>
     21057                                <ows:LowerCorner>3.07657 45.3108</ows:LowerCorner>
     21058                                <ows:UpperCorner>3.34652 45.6265</ows:UpperCorner>
     21059                        </ows:WGS84BoundingBox>
     21060                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39189451</ows:Identifier>
     21061                        <Style isDefault="true">
     21062                                <ows:Title>Données Brutes</ows:Title>
     21063                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21064                                <ows:Keywords>
     21065                                        <ows:Keyword>Défaut</ows:Keyword>
     21066                                </ows:Keywords>
     21067                                <ows:Identifier>normal</ows:Identifier>
     21068                                <LegendURL format="image/jpeg" height="200"
     21069                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21070                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21071                        </Style>
     21072                        <Format>image/jpeg</Format>
     21073                        <TileMatrixSetLink>
     21074                                <TileMatrixSet>PM</TileMatrixSet>
     21075                                <TileMatrixSetLimits>
     21076                                        <TileMatrixLimits>
     21077                                                <TileMatrix>0</TileMatrix>
     21078                                                <MinTileRow>0</MinTileRow>
     21079                                                <MaxTileRow>0</MaxTileRow>
     21080                                                <MinTileCol>0</MinTileCol>
     21081                                                <MaxTileCol>0</MaxTileCol>
     21082                                        </TileMatrixLimits>
     21083                                        <TileMatrixLimits>
     21084                                                <TileMatrix>1</TileMatrix>
     21085                                                <MinTileRow>0</MinTileRow>
     21086                                                <MaxTileRow>0</MaxTileRow>
     21087                                                <MinTileCol>1</MinTileCol>
     21088                                                <MaxTileCol>1</MaxTileCol>
     21089                                        </TileMatrixLimits>
     21090                                        <TileMatrixLimits>
     21091                                                <TileMatrix>10</TileMatrix>
     21092                                                <MinTileRow>365</MinTileRow>
     21093                                                <MaxTileRow>367</MaxTileRow>
     21094                                                <MinTileCol>520</MinTileCol>
     21095                                                <MaxTileCol>521</MaxTileCol>
     21096                                        </TileMatrixLimits>
     21097                                        <TileMatrixLimits>
     21098                                                <TileMatrix>11</TileMatrix>
     21099                                                <MinTileRow>731</MinTileRow>
     21100                                                <MaxTileRow>734</MaxTileRow>
     21101                                                <MinTileCol>1041</MinTileCol>
     21102                                                <MaxTileCol>1043</MaxTileCol>
     21103                                        </TileMatrixLimits>
     21104                                        <TileMatrixLimits>
     21105                                                <TileMatrix>12</TileMatrix>
     21106                                                <MinTileRow>1463</MinTileRow>
     21107                                                <MaxTileRow>1468</MaxTileRow>
     21108                                                <MinTileCol>2083</MinTileCol>
     21109                                                <MaxTileCol>2086</MaxTileCol>
     21110                                        </TileMatrixLimits>
     21111                                        <TileMatrixLimits>
     21112                                                <TileMatrix>13</TileMatrix>
     21113                                                <MinTileRow>2926</MinTileRow>
     21114                                                <MaxTileRow>2936</MaxTileRow>
     21115                                                <MinTileCol>4166</MinTileCol>
     21116                                                <MaxTileCol>4172</MaxTileCol>
     21117                                        </TileMatrixLimits>
     21118                                        <TileMatrixLimits>
     21119                                                <TileMatrix>14</TileMatrix>
     21120                                                <MinTileRow>5853</MinTileRow>
     21121                                                <MaxTileRow>5873</MaxTileRow>
     21122                                                <MinTileCol>8332</MinTileCol>
     21123                                                <MaxTileCol>8344</MaxTileCol>
     21124                                        </TileMatrixLimits>
     21125                                        <TileMatrixLimits>
     21126                                                <TileMatrix>15</TileMatrix>
     21127                                                <MinTileRow>11706</MinTileRow>
     21128                                                <MaxTileRow>11747</MaxTileRow>
     21129                                                <MinTileCol>16664</MinTileCol>
     21130                                                <MaxTileCol>16688</MaxTileCol>
     21131                                        </TileMatrixLimits>
     21132                                        <TileMatrixLimits>
     21133                                                <TileMatrix>16</TileMatrix>
     21134                                                <MinTileRow>23412</MinTileRow>
     21135                                                <MaxTileRow>23494</MaxTileRow>
     21136                                                <MinTileCol>33328</MinTileCol>
     21137                                                <MaxTileCol>33377</MaxTileCol>
     21138                                        </TileMatrixLimits>
     21139                                        <TileMatrixLimits>
     21140                                                <TileMatrix>17</TileMatrix>
     21141                                                <MinTileRow>46825</MinTileRow>
     21142                                                <MaxTileRow>46989</MaxTileRow>
     21143                                                <MinTileCol>66656</MinTileCol>
     21144                                                <MaxTileCol>66754</MaxTileCol>
     21145                                        </TileMatrixLimits>
     21146                                        <TileMatrixLimits>
     21147                                                <TileMatrix>18</TileMatrix>
     21148                                                <MinTileRow>93651</MinTileRow>
     21149                                                <MaxTileRow>93978</MaxTileRow>
     21150                                                <MinTileCol>133312</MinTileCol>
     21151                                                <MaxTileCol>133509</MaxTileCol>
     21152                                        </TileMatrixLimits>
     21153                                        <TileMatrixLimits>
     21154                                                <TileMatrix>2</TileMatrix>
     21155                                                <MinTileRow>1</MinTileRow>
     21156                                                <MaxTileRow>1</MaxTileRow>
     21157                                                <MinTileCol>2</MinTileCol>
     21158                                                <MaxTileCol>2</MaxTileCol>
     21159                                        </TileMatrixLimits>
     21160                                        <TileMatrixLimits>
     21161                                                <TileMatrix>3</TileMatrix>
     21162                                                <MinTileRow>2</MinTileRow>
     21163                                                <MaxTileRow>2</MaxTileRow>
     21164                                                <MinTileCol>4</MinTileCol>
     21165                                                <MaxTileCol>4</MaxTileCol>
     21166                                        </TileMatrixLimits>
     21167                                        <TileMatrixLimits>
     21168                                                <TileMatrix>4</TileMatrix>
     21169                                                <MinTileRow>5</MinTileRow>
     21170                                                <MaxTileRow>5</MaxTileRow>
     21171                                                <MinTileCol>8</MinTileCol>
     21172                                                <MaxTileCol>8</MaxTileCol>
     21173                                        </TileMatrixLimits>
     21174                                        <TileMatrixLimits>
     21175                                                <TileMatrix>5</TileMatrix>
     21176                                                <MinTileRow>11</MinTileRow>
     21177                                                <MaxTileRow>11</MaxTileRow>
     21178                                                <MinTileCol>16</MinTileCol>
     21179                                                <MaxTileCol>16</MaxTileCol>
     21180                                        </TileMatrixLimits>
     21181                                        <TileMatrixLimits>
     21182                                                <TileMatrix>6</TileMatrix>
     21183                                                <MinTileRow>22</MinTileRow>
     21184                                                <MaxTileRow>22</MaxTileRow>
     21185                                                <MinTileCol>32</MinTileCol>
     21186                                                <MaxTileCol>32</MaxTileCol>
     21187                                        </TileMatrixLimits>
     21188                                        <TileMatrixLimits>
     21189                                                <TileMatrix>7</TileMatrix>
     21190                                                <MinTileRow>45</MinTileRow>
     21191                                                <MaxTileRow>45</MaxTileRow>
     21192                                                <MinTileCol>65</MinTileCol>
     21193                                                <MaxTileCol>65</MaxTileCol>
     21194                                        </TileMatrixLimits>
     21195                                        <TileMatrixLimits>
     21196                                                <TileMatrix>8</TileMatrix>
     21197                                                <MinTileRow>91</MinTileRow>
     21198                                                <MaxTileRow>91</MaxTileRow>
     21199                                                <MinTileCol>130</MinTileCol>
     21200                                                <MaxTileCol>130</MaxTileCol>
     21201                                        </TileMatrixLimits>
     21202                                        <TileMatrixLimits>
     21203                                                <TileMatrix>9</TileMatrix>
     21204                                                <MinTileRow>182</MinTileRow>
     21205                                                <MaxTileRow>183</MaxTileRow>
     21206                                                <MinTileCol>260</MinTileCol>
     21207                                                <MaxTileCol>260</MaxTileCol>
     21208                                        </TileMatrixLimits>
     21209                                </TileMatrixSetLimits>
     21210                        </TileMatrixSetLink>
     21211                </Layer>
     21212                <Layer>
     21213                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21214                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21215                        <ows:Keywords>
     21216                                <ows:Keyword>Photographies</ows:Keyword>
     21217                        </ows:Keywords>
     21218                        <ows:WGS84BoundingBox>
     21219                                <ows:LowerCorner>2.62794 45.4188</ows:LowerCorner>
     21220                                <ows:UpperCorner>2.89771 45.6085</ows:UpperCorner>
     21221                        </ows:WGS84BoundingBox>
     21222                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39202200</ows:Identifier>
     21223                        <Style isDefault="true">
     21224                                <ows:Title>Données Brutes</ows:Title>
     21225                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21226                                <ows:Keywords>
     21227                                        <ows:Keyword>Défaut</ows:Keyword>
     21228                                </ows:Keywords>
     21229                                <ows:Identifier>normal</ows:Identifier>
     21230                                <LegendURL format="image/jpeg" height="200"
     21231                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21232                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21233                        </Style>
     21234                        <Format>image/jpeg</Format>
     21235                        <TileMatrixSetLink>
     21236                                <TileMatrixSet>PM</TileMatrixSet>
     21237                                <TileMatrixSetLimits>
     21238                                        <TileMatrixLimits>
     21239                                                <TileMatrix>0</TileMatrix>
     21240                                                <MinTileRow>0</MinTileRow>
     21241                                                <MaxTileRow>0</MaxTileRow>
     21242                                                <MinTileCol>0</MinTileCol>
     21243                                                <MaxTileCol>0</MaxTileCol>
     21244                                        </TileMatrixLimits>
     21245                                        <TileMatrixLimits>
     21246                                                <TileMatrix>1</TileMatrix>
     21247                                                <MinTileRow>0</MinTileRow>
     21248                                                <MaxTileRow>0</MaxTileRow>
     21249                                                <MinTileCol>1</MinTileCol>
     21250                                                <MaxTileCol>1</MaxTileCol>
     21251                                        </TileMatrixLimits>
     21252                                        <TileMatrixLimits>
     21253                                                <TileMatrix>10</TileMatrix>
     21254                                                <MinTileRow>365</MinTileRow>
     21255                                                <MaxTileRow>366</MaxTileRow>
     21256                                                <MinTileCol>519</MinTileCol>
     21257                                                <MaxTileCol>520</MaxTileCol>
     21258                                        </TileMatrixLimits>
     21259                                        <TileMatrixLimits>
     21260                                                <TileMatrix>11</TileMatrix>
     21261                                                <MinTileRow>731</MinTileRow>
     21262                                                <MaxTileRow>733</MaxTileRow>
     21263                                                <MinTileCol>1038</MinTileCol>
     21264                                                <MaxTileCol>1040</MaxTileCol>
     21265                                        </TileMatrixLimits>
     21266                                        <TileMatrixLimits>
     21267                                                <TileMatrix>12</TileMatrix>
     21268                                                <MinTileRow>1463</MinTileRow>
     21269                                                <MaxTileRow>1466</MaxTileRow>
     21270                                                <MinTileCol>2077</MinTileCol>
     21271                                                <MaxTileCol>2080</MaxTileCol>
     21272                                        </TileMatrixLimits>
     21273                                        <TileMatrixLimits>
     21274                                                <TileMatrix>13</TileMatrix>
     21275                                                <MinTileRow>2927</MinTileRow>
     21276                                                <MaxTileRow>2933</MaxTileRow>
     21277                                                <MinTileCol>4155</MinTileCol>
     21278                                                <MaxTileCol>4161</MaxTileCol>
     21279                                        </TileMatrixLimits>
     21280                                        <TileMatrixLimits>
     21281                                                <TileMatrix>14</TileMatrix>
     21282                                                <MinTileRow>5854</MinTileRow>
     21283                                                <MaxTileRow>5866</MaxTileRow>
     21284                                                <MinTileCol>8311</MinTileCol>
     21285                                                <MaxTileCol>8323</MaxTileCol>
     21286                                        </TileMatrixLimits>
     21287                                        <TileMatrixLimits>
     21288                                                <TileMatrix>15</TileMatrix>
     21289                                                <MinTileRow>11708</MinTileRow>
     21290                                                <MaxTileRow>11733</MaxTileRow>
     21291                                                <MinTileCol>16623</MinTileCol>
     21292                                                <MaxTileCol>16647</MaxTileCol>
     21293                                        </TileMatrixLimits>
     21294                                        <TileMatrixLimits>
     21295                                                <TileMatrix>16</TileMatrix>
     21296                                                <MinTileRow>23417</MinTileRow>
     21297                                                <MaxTileRow>23466</MaxTileRow>
     21298                                                <MinTileCol>33246</MinTileCol>
     21299                                                <MaxTileCol>33295</MaxTileCol>
     21300                                        </TileMatrixLimits>
     21301                                        <TileMatrixLimits>
     21302                                                <TileMatrix>17</TileMatrix>
     21303                                                <MinTileRow>46834</MinTileRow>
     21304                                                <MaxTileRow>46933</MaxTileRow>
     21305                                                <MinTileCol>66492</MinTileCol>
     21306                                                <MaxTileCol>66591</MaxTileCol>
     21307                                        </TileMatrixLimits>
     21308                                        <TileMatrixLimits>
     21309                                                <TileMatrix>18</TileMatrix>
     21310                                                <MinTileRow>93669</MinTileRow>
     21311                                                <MaxTileRow>93866</MaxTileRow>
     21312                                                <MinTileCol>132985</MinTileCol>
     21313                                                <MaxTileCol>133182</MaxTileCol>
     21314                                        </TileMatrixLimits>
     21315                                        <TileMatrixLimits>
     21316                                                <TileMatrix>2</TileMatrix>
     21317                                                <MinTileRow>1</MinTileRow>
     21318                                                <MaxTileRow>1</MaxTileRow>
     21319                                                <MinTileCol>2</MinTileCol>
     21320                                                <MaxTileCol>2</MaxTileCol>
     21321                                        </TileMatrixLimits>
     21322                                        <TileMatrixLimits>
     21323                                                <TileMatrix>3</TileMatrix>
     21324                                                <MinTileRow>2</MinTileRow>
     21325                                                <MaxTileRow>2</MaxTileRow>
     21326                                                <MinTileCol>4</MinTileCol>
     21327                                                <MaxTileCol>4</MaxTileCol>
     21328                                        </TileMatrixLimits>
     21329                                        <TileMatrixLimits>
     21330                                                <TileMatrix>4</TileMatrix>
     21331                                                <MinTileRow>5</MinTileRow>
     21332                                                <MaxTileRow>5</MaxTileRow>
     21333                                                <MinTileCol>8</MinTileCol>
     21334                                                <MaxTileCol>8</MaxTileCol>
     21335                                        </TileMatrixLimits>
     21336                                        <TileMatrixLimits>
     21337                                                <TileMatrix>5</TileMatrix>
     21338                                                <MinTileRow>11</MinTileRow>
     21339                                                <MaxTileRow>11</MaxTileRow>
     21340                                                <MinTileCol>16</MinTileCol>
     21341                                                <MaxTileCol>16</MaxTileCol>
     21342                                        </TileMatrixLimits>
     21343                                        <TileMatrixLimits>
     21344                                                <TileMatrix>6</TileMatrix>
     21345                                                <MinTileRow>22</MinTileRow>
     21346                                                <MaxTileRow>22</MaxTileRow>
     21347                                                <MinTileCol>32</MinTileCol>
     21348                                                <MaxTileCol>32</MaxTileCol>
     21349                                        </TileMatrixLimits>
     21350                                        <TileMatrixLimits>
     21351                                                <TileMatrix>7</TileMatrix>
     21352                                                <MinTileRow>45</MinTileRow>
     21353                                                <MaxTileRow>45</MaxTileRow>
     21354                                                <MinTileCol>64</MinTileCol>
     21355                                                <MaxTileCol>65</MaxTileCol>
     21356                                        </TileMatrixLimits>
     21357                                        <TileMatrixLimits>
     21358                                                <TileMatrix>8</TileMatrix>
     21359                                                <MinTileRow>91</MinTileRow>
     21360                                                <MaxTileRow>91</MaxTileRow>
     21361                                                <MinTileCol>129</MinTileCol>
     21362                                                <MaxTileCol>130</MaxTileCol>
     21363                                        </TileMatrixLimits>
     21364                                        <TileMatrixLimits>
     21365                                                <TileMatrix>9</TileMatrix>
     21366                                                <MinTileRow>182</MinTileRow>
     21367                                                <MaxTileRow>183</MaxTileRow>
     21368                                                <MinTileCol>259</MinTileCol>
     21369                                                <MaxTileCol>260</MaxTileCol>
     21370                                        </TileMatrixLimits>
     21371                                </TileMatrixSetLimits>
     21372                        </TileMatrixSetLink>
     21373                </Layer>
     21374                <Layer>
     21375                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21376                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21377                        <ows:Keywords>
     21378                                <ows:Keyword>Photographies</ows:Keyword>
     21379                        </ows:Keywords>
     21380                        <ows:WGS84BoundingBox>
     21381                                <ows:LowerCorner>2.85885 45.2753</ows:LowerCorner>
     21382                                <ows:UpperCorner>3.12832 45.6175</ows:UpperCorner>
     21383                        </ows:WGS84BoundingBox>
     21384                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-05-39212324</ows:Identifier>
     21385                        <Style isDefault="true">
     21386                                <ows:Title>Données Brutes</ows:Title>
     21387                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21388                                <ows:Keywords>
     21389                                        <ows:Keyword>Défaut</ows:Keyword>
     21390                                </ows:Keywords>
     21391                                <ows:Identifier>normal</ows:Identifier>
     21392                                <LegendURL format="image/jpeg" height="200"
     21393                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21394                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21395                        </Style>
     21396                        <Format>image/jpeg</Format>
     21397                        <TileMatrixSetLink>
     21398                                <TileMatrixSet>PM</TileMatrixSet>
     21399                                <TileMatrixSetLimits>
     21400                                        <TileMatrixLimits>
     21401                                                <TileMatrix>0</TileMatrix>
     21402                                                <MinTileRow>0</MinTileRow>
     21403                                                <MaxTileRow>0</MaxTileRow>
     21404                                                <MinTileCol>0</MinTileCol>
     21405                                                <MaxTileCol>0</MaxTileCol>
     21406                                        </TileMatrixLimits>
     21407                                        <TileMatrixLimits>
     21408                                                <TileMatrix>1</TileMatrix>
     21409                                                <MinTileRow>0</MinTileRow>
     21410                                                <MaxTileRow>0</MaxTileRow>
     21411                                                <MinTileCol>1</MinTileCol>
     21412                                                <MaxTileCol>1</MaxTileCol>
     21413                                        </TileMatrixLimits>
     21414                                        <TileMatrixLimits>
     21415                                                <TileMatrix>10</TileMatrix>
     21416                                                <MinTileRow>365</MinTileRow>
     21417                                                <MaxTileRow>367</MaxTileRow>
     21418                                                <MinTileCol>520</MinTileCol>
     21419                                                <MaxTileCol>520</MaxTileCol>
     21420                                        </TileMatrixLimits>
     21421                                        <TileMatrixLimits>
     21422                                                <TileMatrix>11</TileMatrix>
     21423                                                <MinTileRow>731</MinTileRow>
     21424                                                <MaxTileRow>734</MaxTileRow>
     21425                                                <MinTileCol>1040</MinTileCol>
     21426                                                <MaxTileCol>1041</MaxTileCol>
     21427                                        </TileMatrixLimits>
     21428                                        <TileMatrixLimits>
     21429                                                <TileMatrix>12</TileMatrix>
     21430                                                <MinTileRow>1463</MinTileRow>
     21431                                                <MaxTileRow>1468</MaxTileRow>
     21432                                                <MinTileCol>2080</MinTileCol>
     21433                                                <MaxTileCol>2083</MaxTileCol>
     21434                                        </TileMatrixLimits>
     21435                                        <TileMatrixLimits>
     21436                                                <TileMatrix>13</TileMatrix>
     21437                                                <MinTileRow>2926</MinTileRow>
     21438                                                <MaxTileRow>2937</MaxTileRow>
     21439                                                <MinTileCol>4161</MinTileCol>
     21440                                                <MaxTileCol>4167</MaxTileCol>
     21441                                        </TileMatrixLimits>
     21442                                        <TileMatrixLimits>
     21443                                                <TileMatrix>14</TileMatrix>
     21444                                                <MinTileRow>5853</MinTileRow>
     21445                                                <MaxTileRow>5875</MaxTileRow>
     21446                                                <MinTileCol>8322</MinTileCol>
     21447                                                <MaxTileCol>8334</MaxTileCol>
     21448                                        </TileMatrixLimits>
     21449                                        <TileMatrixLimits>
     21450                                                <TileMatrix>15</TileMatrix>
     21451                                                <MinTileRow>11707</MinTileRow>
     21452                                                <MaxTileRow>11751</MaxTileRow>
     21453                                                <MinTileCol>16644</MinTileCol>
     21454                                                <MaxTileCol>16668</MaxTileCol>
     21455                                        </TileMatrixLimits>
     21456                                        <TileMatrixLimits>
     21457                                                <TileMatrix>16</TileMatrix>
     21458                                                <MinTileRow>23415</MinTileRow>
     21459                                                <MaxTileRow>23503</MaxTileRow>
     21460                                                <MinTileCol>33288</MinTileCol>
     21461                                                <MaxTileCol>33337</MaxTileCol>
     21462                                        </TileMatrixLimits>
     21463                                        <TileMatrixLimits>
     21464                                                <TileMatrix>17</TileMatrix>
     21465                                                <MinTileRow>46830</MinTileRow>
     21466                                                <MaxTileRow>47007</MaxTileRow>
     21467                                                <MinTileCol>66576</MinTileCol>
     21468                                                <MaxTileCol>66675</MaxTileCol>
     21469                                        </TileMatrixLimits>
     21470                                        <TileMatrixLimits>
     21471                                                <TileMatrix>18</TileMatrix>
     21472                                                <MinTileRow>93660</MinTileRow>
     21473                                                <MaxTileRow>94015</MaxTileRow>
     21474                                                <MinTileCol>133153</MinTileCol>
     21475                                                <MaxTileCol>133350</MaxTileCol>
     21476                                        </TileMatrixLimits>
     21477                                        <TileMatrixLimits>
     21478                                                <TileMatrix>2</TileMatrix>
     21479                                                <MinTileRow>1</MinTileRow>
     21480                                                <MaxTileRow>1</MaxTileRow>
     21481                                                <MinTileCol>2</MinTileCol>
     21482                                                <MaxTileCol>2</MaxTileCol>
     21483                                        </TileMatrixLimits>
     21484                                        <TileMatrixLimits>
     21485                                                <TileMatrix>3</TileMatrix>
     21486                                                <MinTileRow>2</MinTileRow>
     21487                                                <MaxTileRow>2</MaxTileRow>
     21488                                                <MinTileCol>4</MinTileCol>
     21489                                                <MaxTileCol>4</MaxTileCol>
     21490                                        </TileMatrixLimits>
     21491                                        <TileMatrixLimits>
     21492                                                <TileMatrix>4</TileMatrix>
     21493                                                <MinTileRow>5</MinTileRow>
     21494                                                <MaxTileRow>5</MaxTileRow>
     21495                                                <MinTileCol>8</MinTileCol>
     21496                                                <MaxTileCol>8</MaxTileCol>
     21497                                        </TileMatrixLimits>
     21498                                        <TileMatrixLimits>
     21499                                                <TileMatrix>5</TileMatrix>
     21500                                                <MinTileRow>11</MinTileRow>
     21501                                                <MaxTileRow>11</MaxTileRow>
     21502                                                <MinTileCol>16</MinTileCol>
     21503                                                <MaxTileCol>16</MaxTileCol>
     21504                                        </TileMatrixLimits>
     21505                                        <TileMatrixLimits>
     21506                                                <TileMatrix>6</TileMatrix>
     21507                                                <MinTileRow>22</MinTileRow>
     21508                                                <MaxTileRow>22</MaxTileRow>
     21509                                                <MinTileCol>32</MinTileCol>
     21510                                                <MaxTileCol>32</MaxTileCol>
     21511                                        </TileMatrixLimits>
     21512                                        <TileMatrixLimits>
     21513                                                <TileMatrix>7</TileMatrix>
     21514                                                <MinTileRow>45</MinTileRow>
     21515                                                <MaxTileRow>45</MaxTileRow>
     21516                                                <MinTileCol>65</MinTileCol>
     21517                                                <MaxTileCol>65</MaxTileCol>
     21518                                        </TileMatrixLimits>
     21519                                        <TileMatrixLimits>
     21520                                                <TileMatrix>8</TileMatrix>
     21521                                                <MinTileRow>91</MinTileRow>
     21522                                                <MaxTileRow>91</MaxTileRow>
     21523                                                <MinTileCol>130</MinTileCol>
     21524                                                <MaxTileCol>130</MaxTileCol>
     21525                                        </TileMatrixLimits>
     21526                                        <TileMatrixLimits>
     21527                                                <TileMatrix>9</TileMatrix>
     21528                                                <MinTileRow>182</MinTileRow>
     21529                                                <MaxTileRow>183</MaxTileRow>
     21530                                                <MinTileCol>260</MinTileCol>
     21531                                                <MaxTileCol>260</MaxTileCol>
     21532                                        </TileMatrixLimits>
     21533                                </TileMatrixSetLimits>
     21534                        </TileMatrixSetLink>
     21535                </Layer>
     21536                <Layer>
     21537                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21538                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21539                        <ows:Keywords>
     21540                                <ows:Keyword>Photographies</ows:Keyword>
     21541                        </ows:Keywords>
     21542                        <ows:WGS84BoundingBox>
     21543                                <ows:LowerCorner>2.26908 46.1915</ows:LowerCorner>
     21544                                <ows:UpperCorner>2.55914 46.5532</ows:UpperCorner>
     21545                        </ows:WGS84BoundingBox>
     21546                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-23-39823569</ows:Identifier>
     21547                        <Style isDefault="true">
     21548                                <ows:Title>Données Brutes</ows:Title>
     21549                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21550                                <ows:Keywords>
     21551                                        <ows:Keyword>Défaut</ows:Keyword>
     21552                                </ows:Keywords>
     21553                                <ows:Identifier>normal</ows:Identifier>
     21554                                <LegendURL format="image/jpeg" height="200"
     21555                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21556                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21557                        </Style>
     21558                        <Format>image/jpeg</Format>
     21559                        <TileMatrixSetLink>
     21560                                <TileMatrixSet>PM</TileMatrixSet>
     21561                                <TileMatrixSetLimits>
     21562                                        <TileMatrixLimits>
     21563                                                <TileMatrix>0</TileMatrix>
     21564                                                <MinTileRow>0</MinTileRow>
     21565                                                <MaxTileRow>0</MaxTileRow>
     21566                                                <MinTileCol>0</MinTileCol>
     21567                                                <MaxTileCol>0</MaxTileCol>
     21568                                        </TileMatrixLimits>
     21569                                        <TileMatrixLimits>
     21570                                                <TileMatrix>1</TileMatrix>
     21571                                                <MinTileRow>0</MinTileRow>
     21572                                                <MaxTileRow>0</MaxTileRow>
     21573                                                <MinTileCol>1</MinTileCol>
     21574                                                <MaxTileCol>1</MaxTileCol>
     21575                                        </TileMatrixLimits>
     21576                                        <TileMatrixLimits>
     21577                                                <TileMatrix>10</TileMatrix>
     21578                                                <MinTileRow>362</MinTileRow>
     21579                                                <MaxTileRow>363</MaxTileRow>
     21580                                                <MinTileCol>518</MinTileCol>
     21581                                                <MaxTileCol>519</MaxTileCol>
     21582                                        </TileMatrixLimits>
     21583                                        <TileMatrixLimits>
     21584                                                <TileMatrix>11</TileMatrix>
     21585                                                <MinTileRow>724</MinTileRow>
     21586                                                <MaxTileRow>727</MaxTileRow>
     21587                                                <MinTileCol>1036</MinTileCol>
     21588                                                <MaxTileCol>1038</MaxTileCol>
     21589                                        </TileMatrixLimits>
     21590                                        <TileMatrixLimits>
     21591                                                <TileMatrix>12</TileMatrix>
     21592                                                <MinTileRow>1448</MinTileRow>
     21593                                                <MaxTileRow>1454</MaxTileRow>
     21594                                                <MinTileCol>2073</MinTileCol>
     21595                                                <MaxTileCol>2077</MaxTileCol>
     21596                                        </TileMatrixLimits>
     21597                                        <TileMatrixLimits>
     21598                                                <TileMatrix>13</TileMatrix>
     21599                                                <MinTileRow>2896</MinTileRow>
     21600                                                <MaxTileRow>2908</MaxTileRow>
     21601                                                <MinTileCol>4147</MinTileCol>
     21602                                                <MaxTileCol>4154</MaxTileCol>
     21603                                        </TileMatrixLimits>
     21604                                        <TileMatrixLimits>
     21605                                                <TileMatrix>14</TileMatrix>
     21606                                                <MinTileRow>5792</MinTileRow>
     21607                                                <MaxTileRow>5816</MaxTileRow>
     21608                                                <MinTileCol>8295</MinTileCol>
     21609                                                <MaxTileCol>8308</MaxTileCol>
     21610                                        </TileMatrixLimits>
     21611                                        <TileMatrixLimits>
     21612                                                <TileMatrix>15</TileMatrix>
     21613                                                <MinTileRow>11584</MinTileRow>
     21614                                                <MaxTileRow>11632</MaxTileRow>
     21615                                                <MinTileCol>16590</MinTileCol>
     21616                                                <MaxTileCol>16616</MaxTileCol>
     21617                                        </TileMatrixLimits>
     21618                                        <TileMatrixLimits>
     21619                                                <TileMatrix>16</TileMatrix>
     21620                                                <MinTileRow>23169</MinTileRow>
     21621                                                <MaxTileRow>23264</MaxTileRow>
     21622                                                <MinTileCol>33181</MinTileCol>
     21623                                                <MaxTileCol>33233</MaxTileCol>
     21624                                        </TileMatrixLimits>
     21625                                        <TileMatrixLimits>
     21626                                                <TileMatrix>17</TileMatrix>
     21627                                                <MinTileRow>46339</MinTileRow>
     21628                                                <MaxTileRow>46529</MaxTileRow>
     21629                                                <MinTileCol>66362</MinTileCol>
     21630                                                <MaxTileCol>66467</MaxTileCol>
     21631                                        </TileMatrixLimits>
     21632                                        <TileMatrixLimits>
     21633                                                <TileMatrix>18</TileMatrix>
     21634                                                <MinTileRow>92678</MinTileRow>
     21635                                                <MaxTileRow>93058</MaxTileRow>
     21636                                                <MinTileCol>132725</MinTileCol>
     21637                                                <MaxTileCol>132935</MaxTileCol>
     21638                                        </TileMatrixLimits>
     21639                                        <TileMatrixLimits>
     21640                                                <TileMatrix>2</TileMatrix>
     21641                                                <MinTileRow>1</MinTileRow>
     21642                                                <MaxTileRow>1</MaxTileRow>
     21643                                                <MinTileCol>2</MinTileCol>
     21644                                                <MaxTileCol>2</MaxTileCol>
     21645                                        </TileMatrixLimits>
     21646                                        <TileMatrixLimits>
     21647                                                <TileMatrix>3</TileMatrix>
     21648                                                <MinTileRow>2</MinTileRow>
     21649                                                <MaxTileRow>2</MaxTileRow>
     21650                                                <MinTileCol>4</MinTileCol>
     21651                                                <MaxTileCol>4</MaxTileCol>
     21652                                        </TileMatrixLimits>
     21653                                        <TileMatrixLimits>
     21654                                                <TileMatrix>4</TileMatrix>
     21655                                                <MinTileRow>5</MinTileRow>
     21656                                                <MaxTileRow>5</MaxTileRow>
     21657                                                <MinTileCol>8</MinTileCol>
     21658                                                <MaxTileCol>8</MaxTileCol>
     21659                                        </TileMatrixLimits>
     21660                                        <TileMatrixLimits>
     21661                                                <TileMatrix>5</TileMatrix>
     21662                                                <MinTileRow>11</MinTileRow>
     21663                                                <MaxTileRow>11</MaxTileRow>
     21664                                                <MinTileCol>16</MinTileCol>
     21665                                                <MaxTileCol>16</MaxTileCol>
     21666                                        </TileMatrixLimits>
     21667                                        <TileMatrixLimits>
     21668                                                <TileMatrix>6</TileMatrix>
     21669                                                <MinTileRow>22</MinTileRow>
     21670                                                <MaxTileRow>22</MaxTileRow>
     21671                                                <MinTileCol>32</MinTileCol>
     21672                                                <MaxTileCol>32</MaxTileCol>
     21673                                        </TileMatrixLimits>
     21674                                        <TileMatrixLimits>
     21675                                                <TileMatrix>7</TileMatrix>
     21676                                                <MinTileRow>45</MinTileRow>
     21677                                                <MaxTileRow>45</MaxTileRow>
     21678                                                <MinTileCol>64</MinTileCol>
     21679                                                <MaxTileCol>64</MaxTileCol>
     21680                                        </TileMatrixLimits>
     21681                                        <TileMatrixLimits>
     21682                                                <TileMatrix>8</TileMatrix>
     21683                                                <MinTileRow>90</MinTileRow>
     21684                                                <MaxTileRow>90</MaxTileRow>
     21685                                                <MinTileCol>129</MinTileCol>
     21686                                                <MaxTileCol>129</MaxTileCol>
     21687                                        </TileMatrixLimits>
     21688                                        <TileMatrixLimits>
     21689                                                <TileMatrix>9</TileMatrix>
     21690                                                <MinTileRow>181</MinTileRow>
     21691                                                <MaxTileRow>181</MaxTileRow>
     21692                                                <MinTileCol>259</MinTileCol>
     21693                                                <MaxTileCol>259</MaxTileCol>
     21694                                        </TileMatrixLimits>
     21695                                </TileMatrixSetLimits>
     21696                        </TileMatrixSetLink>
     21697                </Layer>
     21698                <Layer>
     21699                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21700                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21701                        <ows:Keywords>
     21702                                <ows:Keyword>Photographies</ows:Keyword>
     21703                        </ows:Keywords>
     21704                        <ows:WGS84BoundingBox>
     21705                                <ows:LowerCorner>3.47757 45.9391</ows:LowerCorner>
     21706                                <ows:UpperCorner>3.76652 46.3009</ows:UpperCorner>
     21707                        </ows:WGS84BoundingBox>
     21708                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39401449</ows:Identifier>
     21709                        <Style isDefault="true">
     21710                                <ows:Title>Données Brutes</ows:Title>
     21711                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21712                                <ows:Keywords>
     21713                                        <ows:Keyword>Défaut</ows:Keyword>
     21714                                </ows:Keywords>
     21715                                <ows:Identifier>normal</ows:Identifier>
     21716                                <LegendURL format="image/jpeg" height="200"
     21717                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21718                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21719                        </Style>
     21720                        <Format>image/jpeg</Format>
     21721                        <TileMatrixSetLink>
     21722                                <TileMatrixSet>PM</TileMatrixSet>
     21723                                <TileMatrixSetLimits>
     21724                                        <TileMatrixLimits>
     21725                                                <TileMatrix>0</TileMatrix>
     21726                                                <MinTileRow>0</MinTileRow>
     21727                                                <MaxTileRow>0</MaxTileRow>
     21728                                                <MinTileCol>0</MinTileCol>
     21729                                                <MaxTileCol>0</MaxTileCol>
     21730                                        </TileMatrixLimits>
     21731                                        <TileMatrixLimits>
     21732                                                <TileMatrix>1</TileMatrix>
     21733                                                <MinTileRow>0</MinTileRow>
     21734                                                <MaxTileRow>0</MaxTileRow>
     21735                                                <MinTileCol>1</MinTileCol>
     21736                                                <MaxTileCol>1</MaxTileCol>
     21737                                        </TileMatrixLimits>
     21738                                        <TileMatrixLimits>
     21739                                                <TileMatrix>10</TileMatrix>
     21740                                                <MinTileRow>363</MinTileRow>
     21741                                                <MaxTileRow>364</MaxTileRow>
     21742                                                <MinTileCol>521</MinTileCol>
     21743                                                <MaxTileCol>522</MaxTileCol>
     21744                                        </TileMatrixLimits>
     21745                                        <TileMatrixLimits>
     21746                                                <TileMatrix>11</TileMatrix>
     21747                                                <MinTileRow>726</MinTileRow>
     21748                                                <MaxTileRow>729</MaxTileRow>
     21749                                                <MinTileCol>1043</MinTileCol>
     21750                                                <MaxTileCol>1045</MaxTileCol>
     21751                                        </TileMatrixLimits>
     21752                                        <TileMatrixLimits>
     21753                                                <TileMatrix>12</TileMatrix>
     21754                                                <MinTileRow>1452</MinTileRow>
     21755                                                <MaxTileRow>1458</MaxTileRow>
     21756                                                <MinTileCol>2087</MinTileCol>
     21757                                                <MaxTileCol>2090</MaxTileCol>
     21758                                        </TileMatrixLimits>
     21759                                        <TileMatrixLimits>
     21760                                                <TileMatrix>13</TileMatrix>
     21761                                                <MinTileRow>2904</MinTileRow>
     21762                                                <MaxTileRow>2916</MaxTileRow>
     21763                                                <MinTileCol>4175</MinTileCol>
     21764                                                <MaxTileCol>4181</MaxTileCol>
     21765                                        </TileMatrixLimits>
     21766                                        <TileMatrixLimits>
     21767                                                <TileMatrix>14</TileMatrix>
     21768                                                <MinTileRow>5809</MinTileRow>
     21769                                                <MaxTileRow>5832</MaxTileRow>
     21770                                                <MinTileCol>8350</MinTileCol>
     21771                                                <MaxTileCol>8363</MaxTileCol>
     21772                                        </TileMatrixLimits>
     21773                                        <TileMatrixLimits>
     21774                                                <TileMatrix>15</TileMatrix>
     21775                                                <MinTileRow>11618</MinTileRow>
     21776                                                <MaxTileRow>11665</MaxTileRow>
     21777                                                <MinTileCol>16700</MinTileCol>
     21778                                                <MaxTileCol>16726</MaxTileCol>
     21779                                        </TileMatrixLimits>
     21780                                        <TileMatrixLimits>
     21781                                                <TileMatrix>16</TileMatrix>
     21782                                                <MinTileRow>23236</MinTileRow>
     21783                                                <MaxTileRow>23331</MaxTileRow>
     21784                                                <MinTileCol>33401</MinTileCol>
     21785                                                <MaxTileCol>33452</MaxTileCol>
     21786                                        </TileMatrixLimits>
     21787                                        <TileMatrixLimits>
     21788                                                <TileMatrix>17</TileMatrix>
     21789                                                <MinTileRow>46472</MinTileRow>
     21790                                                <MaxTileRow>46662</MaxTileRow>
     21791                                                <MinTileCol>66802</MinTileCol>
     21792                                                <MaxTileCol>66905</MaxTileCol>
     21793                                        </TileMatrixLimits>
     21794                                        <TileMatrixLimits>
     21795                                                <TileMatrix>18</TileMatrix>
     21796                                                <MinTileRow>92944</MinTileRow>
     21797                                                <MaxTileRow>93324</MaxTileRow>
     21798                                                <MinTileCol>133604</MinTileCol>
     21799                                                <MaxTileCol>133811</MaxTileCol>
     21800                                        </TileMatrixLimits>
     21801                                        <TileMatrixLimits>
     21802                                                <TileMatrix>2</TileMatrix>
     21803                                                <MinTileRow>1</MinTileRow>
     21804                                                <MaxTileRow>1</MaxTileRow>
     21805                                                <MinTileCol>2</MinTileCol>
     21806                                                <MaxTileCol>2</MaxTileCol>
     21807                                        </TileMatrixLimits>
     21808                                        <TileMatrixLimits>
     21809                                                <TileMatrix>3</TileMatrix>
     21810                                                <MinTileRow>2</MinTileRow>
     21811                                                <MaxTileRow>2</MaxTileRow>
     21812                                                <MinTileCol>4</MinTileCol>
     21813                                                <MaxTileCol>4</MaxTileCol>
     21814                                        </TileMatrixLimits>
     21815                                        <TileMatrixLimits>
     21816                                                <TileMatrix>4</TileMatrix>
     21817                                                <MinTileRow>5</MinTileRow>
     21818                                                <MaxTileRow>5</MaxTileRow>
     21819                                                <MinTileCol>8</MinTileCol>
     21820                                                <MaxTileCol>8</MaxTileCol>
     21821                                        </TileMatrixLimits>
     21822                                        <TileMatrixLimits>
     21823                                                <TileMatrix>5</TileMatrix>
     21824                                                <MinTileRow>11</MinTileRow>
     21825                                                <MaxTileRow>11</MaxTileRow>
     21826                                                <MinTileCol>16</MinTileCol>
     21827                                                <MaxTileCol>16</MaxTileCol>
     21828                                        </TileMatrixLimits>
     21829                                        <TileMatrixLimits>
     21830                                                <TileMatrix>6</TileMatrix>
     21831                                                <MinTileRow>22</MinTileRow>
     21832                                                <MaxTileRow>22</MaxTileRow>
     21833                                                <MinTileCol>32</MinTileCol>
     21834                                                <MaxTileCol>32</MaxTileCol>
     21835                                        </TileMatrixLimits>
     21836                                        <TileMatrixLimits>
     21837                                                <TileMatrix>7</TileMatrix>
     21838                                                <MinTileRow>45</MinTileRow>
     21839                                                <MaxTileRow>45</MaxTileRow>
     21840                                                <MinTileCol>65</MinTileCol>
     21841                                                <MaxTileCol>65</MaxTileCol>
     21842                                        </TileMatrixLimits>
     21843                                        <TileMatrixLimits>
     21844                                                <TileMatrix>8</TileMatrix>
     21845                                                <MinTileRow>90</MinTileRow>
     21846                                                <MaxTileRow>91</MaxTileRow>
     21847                                                <MinTileCol>130</MinTileCol>
     21848                                                <MaxTileCol>130</MaxTileCol>
     21849                                        </TileMatrixLimits>
     21850                                        <TileMatrixLimits>
     21851                                                <TileMatrix>9</TileMatrix>
     21852                                                <MinTileRow>181</MinTileRow>
     21853                                                <MaxTileRow>182</MaxTileRow>
     21854                                                <MinTileCol>260</MinTileCol>
     21855                                                <MaxTileCol>261</MaxTileCol>
     21856                                        </TileMatrixLimits>
     21857                                </TileMatrixSetLimits>
     21858                        </TileMatrixSetLink>
     21859                </Layer>
     21860                <Layer>
     21861                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     21862                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     21863                        <ows:Keywords>
     21864                                <ows:Keyword>Photographies</ows:Keyword>
     21865                        </ows:Keywords>
     21866                        <ows:WGS84BoundingBox>
     21867                                <ows:LowerCorner>3.02584 45.9863</ows:LowerCorner>
     21868                                <ows:UpperCorner>3.3111 46.1758</ows:UpperCorner>
     21869                        </ows:WGS84BoundingBox>
     21870                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39414451</ows:Identifier>
     21871                        <Style isDefault="true">
     21872                                <ows:Title>Données Brutes</ows:Title>
     21873                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     21874                                <ows:Keywords>
     21875                                        <ows:Keyword>Défaut</ows:Keyword>
     21876                                </ows:Keywords>
     21877                                <ows:Identifier>normal</ows:Identifier>
     21878                                <LegendURL format="image/jpeg" height="200"
     21879                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     21880                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     21881                        </Style>
     21882                        <Format>image/jpeg</Format>
     21883                        <TileMatrixSetLink>
     21884                                <TileMatrixSet>PM</TileMatrixSet>
     21885                                <TileMatrixSetLimits>
     21886                                        <TileMatrixLimits>
     21887                                                <TileMatrix>0</TileMatrix>
     21888                                                <MinTileRow>0</MinTileRow>
     21889                                                <MaxTileRow>0</MaxTileRow>
     21890                                                <MinTileCol>0</MinTileCol>
     21891                                                <MaxTileCol>0</MaxTileCol>
     21892                                        </TileMatrixLimits>
     21893                                        <TileMatrixLimits>
     21894                                                <TileMatrix>1</TileMatrix>
     21895                                                <MinTileRow>0</MinTileRow>
     21896                                                <MaxTileRow>0</MaxTileRow>
     21897                                                <MinTileCol>1</MinTileCol>
     21898                                                <MaxTileCol>1</MaxTileCol>
     21899                                        </TileMatrixLimits>
     21900                                        <TileMatrixLimits>
     21901                                                <TileMatrix>10</TileMatrix>
     21902                                                <MinTileRow>363</MinTileRow>
     21903                                                <MaxTileRow>364</MaxTileRow>
     21904                                                <MinTileCol>520</MinTileCol>
     21905                                                <MaxTileCol>521</MaxTileCol>
     21906                                        </TileMatrixLimits>
     21907                                        <TileMatrixLimits>
     21908                                                <TileMatrix>11</TileMatrix>
     21909                                                <MinTileRow>727</MinTileRow>
     21910                                                <MaxTileRow>728</MaxTileRow>
     21911                                                <MinTileCol>1041</MinTileCol>
     21912                                                <MaxTileCol>1042</MaxTileCol>
     21913                                        </TileMatrixLimits>
     21914                                        <TileMatrixLimits>
     21915                                                <TileMatrix>12</TileMatrix>
     21916                                                <MinTileRow>1454</MinTileRow>
     21917                                                <MaxTileRow>1457</MaxTileRow>
     21918                                                <MinTileCol>2082</MinTileCol>
     21919                                                <MaxTileCol>2085</MaxTileCol>
     21920                                        </TileMatrixLimits>
     21921                                        <TileMatrixLimits>
     21922                                                <TileMatrix>13</TileMatrix>
     21923                                                <MinTileRow>2908</MinTileRow>
     21924                                                <MaxTileRow>2914</MaxTileRow>
     21925                                                <MinTileCol>4164</MinTileCol>
     21926                                                <MaxTileCol>4171</MaxTileCol>
     21927                                        </TileMatrixLimits>
     21928                                        <TileMatrixLimits>
     21929                                                <TileMatrix>14</TileMatrix>
     21930                                                <MinTileRow>5817</MinTileRow>
     21931                                                <MaxTileRow>5829</MaxTileRow>
     21932                                                <MinTileCol>8329</MinTileCol>
     21933                                                <MaxTileCol>8342</MaxTileCol>
     21934                                        </TileMatrixLimits>
     21935                                        <TileMatrixLimits>
     21936                                                <TileMatrix>15</TileMatrix>
     21937                                                <MinTileRow>11634</MinTileRow>
     21938                                                <MaxTileRow>11659</MaxTileRow>
     21939                                                <MinTileCol>16659</MinTileCol>
     21940                                                <MaxTileCol>16685</MaxTileCol>
     21941                                        </TileMatrixLimits>
     21942                                        <TileMatrixLimits>
     21943                                                <TileMatrix>16</TileMatrix>
     21944                                                <MinTileRow>23269</MinTileRow>
     21945                                                <MaxTileRow>23318</MaxTileRow>
     21946                                                <MinTileCol>33318</MinTileCol>
     21947                                                <MaxTileCol>33370</MaxTileCol>
     21948                                        </TileMatrixLimits>
     21949                                        <TileMatrixLimits>
     21950                                                <TileMatrix>17</TileMatrix>
     21951                                                <MinTileRow>46538</MinTileRow>
     21952                                                <MaxTileRow>46637</MaxTileRow>
     21953                                                <MinTileCol>66637</MinTileCol>
     21954                                                <MaxTileCol>66741</MaxTileCol>
     21955                                        </TileMatrixLimits>
     21956                                        <TileMatrixLimits>
     21957                                                <TileMatrix>18</TileMatrix>
     21958                                                <MinTileRow>93076</MinTileRow>
     21959                                                <MaxTileRow>93275</MaxTileRow>
     21960                                                <MinTileCol>133275</MinTileCol>
     21961                                                <MaxTileCol>133483</MaxTileCol>
     21962                                        </TileMatrixLimits>
     21963                                        <TileMatrixLimits>
     21964                                                <TileMatrix>2</TileMatrix>
     21965                                                <MinTileRow>1</MinTileRow>
     21966                                                <MaxTileRow>1</MaxTileRow>
     21967                                                <MinTileCol>2</MinTileCol>
     21968                                                <MaxTileCol>2</MaxTileCol>
     21969                                        </TileMatrixLimits>
     21970                                        <TileMatrixLimits>
     21971                                                <TileMatrix>3</TileMatrix>
     21972                                                <MinTileRow>2</MinTileRow>
     21973                                                <MaxTileRow>2</MaxTileRow>
     21974                                                <MinTileCol>4</MinTileCol>
     21975                                                <MaxTileCol>4</MaxTileCol>
     21976                                        </TileMatrixLimits>
     21977                                        <TileMatrixLimits>
     21978                                                <TileMatrix>4</TileMatrix>
     21979                                                <MinTileRow>5</MinTileRow>
     21980                                                <MaxTileRow>5</MaxTileRow>
     21981                                                <MinTileCol>8</MinTileCol>
     21982                                                <MaxTileCol>8</MaxTileCol>
     21983                                        </TileMatrixLimits>
     21984                                        <TileMatrixLimits>
     21985                                                <TileMatrix>5</TileMatrix>
     21986                                                <MinTileRow>11</MinTileRow>
     21987                                                <MaxTileRow>11</MaxTileRow>
     21988                                                <MinTileCol>16</MinTileCol>
     21989                                                <MaxTileCol>16</MaxTileCol>
     21990                                        </TileMatrixLimits>
     21991                                        <TileMatrixLimits>
     21992                                                <TileMatrix>6</TileMatrix>
     21993                                                <MinTileRow>22</MinTileRow>
     21994                                                <MaxTileRow>22</MaxTileRow>
     21995                                                <MinTileCol>32</MinTileCol>
     21996                                                <MaxTileCol>32</MaxTileCol>
     21997                                        </TileMatrixLimits>
     21998                                        <TileMatrixLimits>
     21999                                                <TileMatrix>7</TileMatrix>
     22000                                                <MinTileRow>45</MinTileRow>
     22001                                                <MaxTileRow>45</MaxTileRow>
     22002                                                <MinTileCol>65</MinTileCol>
     22003                                                <MaxTileCol>65</MaxTileCol>
     22004                                        </TileMatrixLimits>
     22005                                        <TileMatrixLimits>
     22006                                                <TileMatrix>8</TileMatrix>
     22007                                                <MinTileRow>90</MinTileRow>
     22008                                                <MaxTileRow>91</MaxTileRow>
     22009                                                <MinTileCol>130</MinTileCol>
     22010                                                <MaxTileCol>130</MaxTileCol>
     22011                                        </TileMatrixLimits>
     22012                                        <TileMatrixLimits>
     22013                                                <TileMatrix>9</TileMatrix>
     22014                                                <MinTileRow>181</MinTileRow>
     22015                                                <MaxTileRow>182</MaxTileRow>
     22016                                                <MinTileCol>260</MinTileCol>
     22017                                                <MaxTileCol>260</MaxTileCol>
     22018                                        </TileMatrixLimits>
     22019                                </TileMatrixSetLimits>
     22020                        </TileMatrixSetLink>
     22021                </Layer>
     22022                <Layer>
     22023                        <ows:Title>Orthophotographies Geosud de DEPARTEMENT03-63</ows:Title>
     22024                        <ows:Abstract>Orthophotographies satellites de DEPARTEMENT03-63 issues du projet Geosud.</ows:Abstract>
     22025                        <ows:Keywords>
     22026                                <ows:Keyword>Photographies</ows:Keyword>
     22027                        </ows:Keywords>
     22028                        <ows:WGS84BoundingBox>
     22029                                <ows:LowerCorner>2.4355 45.418</ows:LowerCorner>
     22030                                <ows:UpperCorner>2.68035 45.6081</ows:UpperCorner>
     22031                        </ows:WGS84BoundingBox>
     22032                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_DEPARTEMENT03-63-2013-09-24-39423701</ows:Identifier>
     22033                        <Style isDefault="true">
     22034                                <ows:Title>Données Brutes</ows:Title>
     22035                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22036                                <ows:Keywords>
     22037                                        <ows:Keyword>Défaut</ows:Keyword>
     22038                                </ows:Keywords>
     22039                                <ows:Identifier>normal</ows:Identifier>
     22040                                <LegendURL format="image/jpeg" height="200"
     22041                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22042                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22043                        </Style>
     22044                        <Format>image/jpeg</Format>
     22045                        <TileMatrixSetLink>
     22046                                <TileMatrixSet>PM</TileMatrixSet>
     22047                                <TileMatrixSetLimits>
     22048                                        <TileMatrixLimits>
     22049                                                <TileMatrix>0</TileMatrix>
     22050                                                <MinTileRow>0</MinTileRow>
     22051                                                <MaxTileRow>0</MaxTileRow>
     22052                                                <MinTileCol>0</MinTileCol>
     22053                                                <MaxTileCol>0</MaxTileCol>
     22054                                        </TileMatrixLimits>
     22055                                        <TileMatrixLimits>
     22056                                                <TileMatrix>1</TileMatrix>
     22057                                                <MinTileRow>0</MinTileRow>
     22058                                                <MaxTileRow>0</MaxTileRow>
     22059                                                <MinTileCol>1</MinTileCol>
     22060                                                <MaxTileCol>1</MaxTileCol>
     22061                                        </TileMatrixLimits>
     22062                                        <TileMatrixLimits>
     22063                                                <TileMatrix>10</TileMatrix>
     22064                                                <MinTileRow>365</MinTileRow>
     22065                                                <MaxTileRow>366</MaxTileRow>
     22066                                                <MinTileCol>518</MinTileCol>
     22067                                                <MaxTileCol>519</MaxTileCol>
     22068                                        </TileMatrixLimits>
     22069                                        <TileMatrixLimits>
     22070                                                <TileMatrix>11</TileMatrix>
     22071                                                <MinTileRow>731</MinTileRow>
     22072                                                <MaxTileRow>733</MaxTileRow>
     22073                                                <MinTileCol>1037</MinTileCol>
     22074                                                <MaxTileCol>1039</MaxTileCol>
     22075                                        </TileMatrixLimits>
     22076                                        <TileMatrixLimits>
     22077                                                <TileMatrix>12</TileMatrix>
     22078                                                <MinTileRow>1463</MinTileRow>
     22079                                                <MaxTileRow>1466</MaxTileRow>
     22080                                                <MinTileCol>2075</MinTileCol>
     22081                                                <MaxTileCol>2078</MaxTileCol>
     22082                                        </TileMatrixLimits>
     22083                                        <TileMatrixLimits>
     22084                                                <TileMatrix>13</TileMatrix>
     22085                                                <MinTileRow>2927</MinTileRow>
     22086                                                <MaxTileRow>2933</MaxTileRow>
     22087                                                <MinTileCol>4151</MinTileCol>
     22088                                                <MaxTileCol>4156</MaxTileCol>
     22089                                        </TileMatrixLimits>
     22090                                        <TileMatrixLimits>
     22091                                                <TileMatrix>14</TileMatrix>
     22092                                                <MinTileRow>5854</MinTileRow>
     22093                                                <MaxTileRow>5866</MaxTileRow>
     22094                                                <MinTileCol>8302</MinTileCol>
     22095                                                <MaxTileCol>8313</MaxTileCol>
     22096                                        </TileMatrixLimits>
     22097                                        <TileMatrixLimits>
     22098                                                <TileMatrix>15</TileMatrix>
     22099                                                <MinTileRow>11708</MinTileRow>
     22100                                                <MaxTileRow>11733</MaxTileRow>
     22101                                                <MinTileCol>16605</MinTileCol>
     22102                                                <MaxTileCol>16627</MaxTileCol>
     22103                                        </TileMatrixLimits>
     22104                                        <TileMatrixLimits>
     22105                                                <TileMatrix>16</TileMatrix>
     22106                                                <MinTileRow>23417</MinTileRow>
     22107                                                <MaxTileRow>23466</MaxTileRow>
     22108                                                <MinTileCol>33211</MinTileCol>
     22109                                                <MaxTileCol>33255</MaxTileCol>
     22110                                        </TileMatrixLimits>
     22111                                        <TileMatrixLimits>
     22112                                                <TileMatrix>17</TileMatrix>
     22113                                                <MinTileRow>46835</MinTileRow>
     22114                                                <MaxTileRow>46933</MaxTileRow>
     22115                                                <MinTileCol>66422</MinTileCol>
     22116                                                <MaxTileCol>66511</MaxTileCol>
     22117                                        </TileMatrixLimits>
     22118                                        <TileMatrixLimits>
     22119                                                <TileMatrix>18</TileMatrix>
     22120                                                <MinTileRow>93670</MinTileRow>
     22121                                                <MaxTileRow>93866</MaxTileRow>
     22122                                                <MinTileCol>132845</MinTileCol>
     22123                                                <MaxTileCol>133023</MaxTileCol>
     22124                                        </TileMatrixLimits>
     22125                                        <TileMatrixLimits>
     22126                                                <TileMatrix>2</TileMatrix>
     22127                                                <MinTileRow>1</MinTileRow>
     22128                                                <MaxTileRow>1</MaxTileRow>
     22129                                                <MinTileCol>2</MinTileCol>
     22130                                                <MaxTileCol>2</MaxTileCol>
     22131                                        </TileMatrixLimits>
     22132                                        <TileMatrixLimits>
     22133                                                <TileMatrix>3</TileMatrix>
     22134                                                <MinTileRow>2</MinTileRow>
     22135                                                <MaxTileRow>2</MaxTileRow>
     22136                                                <MinTileCol>4</MinTileCol>
     22137                                                <MaxTileCol>4</MaxTileCol>
     22138                                        </TileMatrixLimits>
     22139                                        <TileMatrixLimits>
     22140                                                <TileMatrix>4</TileMatrix>
     22141                                                <MinTileRow>5</MinTileRow>
     22142                                                <MaxTileRow>5</MaxTileRow>
     22143                                                <MinTileCol>8</MinTileCol>
     22144                                                <MaxTileCol>8</MaxTileCol>
     22145                                        </TileMatrixLimits>
     22146                                        <TileMatrixLimits>
     22147                                                <TileMatrix>5</TileMatrix>
     22148                                                <MinTileRow>11</MinTileRow>
     22149                                                <MaxTileRow>11</MaxTileRow>
     22150                                                <MinTileCol>16</MinTileCol>
     22151                                                <MaxTileCol>16</MaxTileCol>
     22152                                        </TileMatrixLimits>
     22153                                        <TileMatrixLimits>
     22154                                                <TileMatrix>6</TileMatrix>
     22155                                                <MinTileRow>22</MinTileRow>
     22156                                                <MaxTileRow>22</MaxTileRow>
     22157                                                <MinTileCol>32</MinTileCol>
     22158                                                <MaxTileCol>32</MaxTileCol>
     22159                                        </TileMatrixLimits>
     22160                                        <TileMatrixLimits>
     22161                                                <TileMatrix>7</TileMatrix>
     22162                                                <MinTileRow>45</MinTileRow>
     22163                                                <MaxTileRow>45</MaxTileRow>
     22164                                                <MinTileCol>64</MinTileCol>
     22165                                                <MaxTileCol>64</MaxTileCol>
     22166                                        </TileMatrixLimits>
     22167                                        <TileMatrixLimits>
     22168                                                <TileMatrix>8</TileMatrix>
     22169                                                <MinTileRow>91</MinTileRow>
     22170                                                <MaxTileRow>91</MaxTileRow>
     22171                                                <MinTileCol>129</MinTileCol>
     22172                                                <MaxTileCol>129</MaxTileCol>
     22173                                        </TileMatrixLimits>
     22174                                        <TileMatrixLimits>
     22175                                                <TileMatrix>9</TileMatrix>
     22176                                                <MinTileRow>182</MinTileRow>
     22177                                                <MaxTileRow>183</MaxTileRow>
     22178                                                <MinTileCol>259</MinTileCol>
     22179                                                <MaxTileCol>259</MaxTileCol>
     22180                                        </TileMatrixLimits>
     22181                                </TileMatrixSetLimits>
     22182                        </TileMatrixSetLink>
     22183                </Layer>
     22184                <Layer>
     22185                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22186                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22187                        <ows:Keywords>
     22188                                <ows:Keyword>Photographies</ows:Keyword>
     22189                        </ows:Keywords>
     22190                        <ows:WGS84BoundingBox>
     22191                                <ows:LowerCorner>1.85183 43.3612</ows:LowerCorner>
     22192                                <ows:UpperCorner>2.17386 44.0568</ows:UpperCorner>
     22193                        </ows:WGS84BoundingBox>
     22194                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-17-38464575</ows:Identifier>
     22195                        <Style isDefault="true">
     22196                                <ows:Title>Données Brutes</ows:Title>
     22197                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22198                                <ows:Keywords>
     22199                                        <ows:Keyword>Défaut</ows:Keyword>
     22200                                </ows:Keywords>
     22201                                <ows:Identifier>normal</ows:Identifier>
     22202                                <LegendURL format="image/jpeg" height="200"
     22203                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22204                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22205                        </Style>
     22206                        <Format>image/jpeg</Format>
     22207                        <TileMatrixSetLink>
     22208                                <TileMatrixSet>PM</TileMatrixSet>
     22209                                <TileMatrixSetLimits>
     22210                                        <TileMatrixLimits>
     22211                                                <TileMatrix>0</TileMatrix>
     22212                                                <MinTileRow>0</MinTileRow>
     22213                                                <MaxTileRow>0</MaxTileRow>
     22214                                                <MinTileCol>0</MinTileCol>
     22215                                                <MaxTileCol>0</MaxTileCol>
     22216                                        </TileMatrixLimits>
     22217                                        <TileMatrixLimits>
     22218                                                <TileMatrix>1</TileMatrix>
     22219                                                <MinTileRow>0</MinTileRow>
     22220                                                <MaxTileRow>0</MaxTileRow>
     22221                                                <MinTileCol>1</MinTileCol>
     22222                                                <MaxTileCol>1</MaxTileCol>
     22223                                        </TileMatrixLimits>
     22224                                        <TileMatrixLimits>
     22225                                                <TileMatrix>10</TileMatrix>
     22226                                                <MinTileRow>372</MinTileRow>
     22227                                                <MaxTileRow>374</MaxTileRow>
     22228                                                <MinTileCol>517</MinTileCol>
     22229                                                <MaxTileCol>518</MaxTileCol>
     22230                                        </TileMatrixLimits>
     22231                                        <TileMatrixLimits>
     22232                                                <TileMatrix>11</TileMatrix>
     22233                                                <MinTileRow>744</MinTileRow>
     22234                                                <MaxTileRow>749</MaxTileRow>
     22235                                                <MinTileCol>1034</MinTileCol>
     22236                                                <MaxTileCol>1036</MaxTileCol>
     22237                                        </TileMatrixLimits>
     22238                                        <TileMatrixLimits>
     22239                                                <TileMatrix>12</TileMatrix>
     22240                                                <MinTileRow>1488</MinTileRow>
     22241                                                <MaxTileRow>1499</MaxTileRow>
     22242                                                <MinTileCol>2069</MinTileCol>
     22243                                                <MaxTileCol>2072</MaxTileCol>
     22244                                        </TileMatrixLimits>
     22245                                        <TileMatrixLimits>
     22246                                                <TileMatrix>13</TileMatrix>
     22247                                                <MinTileRow>2977</MinTileRow>
     22248                                                <MaxTileRow>2998</MaxTileRow>
     22249                                                <MinTileCol>4138</MinTileCol>
     22250                                                <MaxTileCol>4145</MaxTileCol>
     22251                                        </TileMatrixLimits>
     22252                                        <TileMatrixLimits>
     22253                                                <TileMatrix>14</TileMatrix>
     22254                                                <MinTileRow>5954</MinTileRow>
     22255                                                <MaxTileRow>5997</MaxTileRow>
     22256                                                <MinTileCol>8276</MinTileCol>
     22257                                                <MaxTileCol>8290</MaxTileCol>
     22258                                        </TileMatrixLimits>
     22259                                        <TileMatrixLimits>
     22260                                                <TileMatrix>15</TileMatrix>
     22261                                                <MinTileRow>11908</MinTileRow>
     22262                                                <MaxTileRow>11995</MaxTileRow>
     22263                                                <MinTileCol>16552</MinTileCol>
     22264                                                <MaxTileCol>16581</MaxTileCol>
     22265                                        </TileMatrixLimits>
     22266                                        <TileMatrixLimits>
     22267                                                <TileMatrix>16</TileMatrix>
     22268                                                <MinTileRow>23816</MinTileRow>
     22269                                                <MaxTileRow>23990</MaxTileRow>
     22270                                                <MinTileCol>33105</MinTileCol>
     22271                                                <MaxTileCol>33162</MaxTileCol>
     22272                                        </TileMatrixLimits>
     22273                                        <TileMatrixLimits>
     22274                                                <TileMatrix>17</TileMatrix>
     22275                                                <MinTileRow>47632</MinTileRow>
     22276                                                <MaxTileRow>47981</MaxTileRow>
     22277                                                <MinTileCol>66211</MinTileCol>
     22278                                                <MaxTileCol>66325</MaxTileCol>
     22279                                        </TileMatrixLimits>
     22280                                        <TileMatrixLimits>
     22281                                                <TileMatrix>18</TileMatrix>
     22282                                                <MinTileRow>95264</MinTileRow>
     22283                                                <MaxTileRow>95962</MaxTileRow>
     22284                                                <MinTileCol>132423</MinTileCol>
     22285                                                <MaxTileCol>132650</MaxTileCol>
     22286                                        </TileMatrixLimits>
     22287                                        <TileMatrixLimits>
     22288                                                <TileMatrix>2</TileMatrix>
     22289                                                <MinTileRow>1</MinTileRow>
     22290                                                <MaxTileRow>1</MaxTileRow>
     22291                                                <MinTileCol>2</MinTileCol>
     22292                                                <MaxTileCol>2</MaxTileCol>
     22293                                        </TileMatrixLimits>
     22294                                        <TileMatrixLimits>
     22295                                                <TileMatrix>3</TileMatrix>
     22296                                                <MinTileRow>2</MinTileRow>
     22297                                                <MaxTileRow>2</MaxTileRow>
     22298                                                <MinTileCol>4</MinTileCol>
     22299                                                <MaxTileCol>4</MaxTileCol>
     22300                                        </TileMatrixLimits>
     22301                                        <TileMatrixLimits>
     22302                                                <TileMatrix>4</TileMatrix>
     22303                                                <MinTileRow>5</MinTileRow>
     22304                                                <MaxTileRow>5</MaxTileRow>
     22305                                                <MinTileCol>8</MinTileCol>
     22306                                                <MaxTileCol>8</MaxTileCol>
     22307                                        </TileMatrixLimits>
     22308                                        <TileMatrixLimits>
     22309                                                <TileMatrix>5</TileMatrix>
     22310                                                <MinTileRow>11</MinTileRow>
     22311                                                <MaxTileRow>11</MaxTileRow>
     22312                                                <MinTileCol>16</MinTileCol>
     22313                                                <MaxTileCol>16</MaxTileCol>
     22314                                        </TileMatrixLimits>
     22315                                        <TileMatrixLimits>
     22316                                                <TileMatrix>6</TileMatrix>
     22317                                                <MinTileRow>23</MinTileRow>
     22318                                                <MaxTileRow>23</MaxTileRow>
     22319                                                <MinTileCol>32</MinTileCol>
     22320                                                <MaxTileCol>32</MaxTileCol>
     22321                                        </TileMatrixLimits>
     22322                                        <TileMatrixLimits>
     22323                                                <TileMatrix>7</TileMatrix>
     22324                                                <MinTileRow>46</MinTileRow>
     22325                                                <MaxTileRow>46</MaxTileRow>
     22326                                                <MinTileCol>64</MinTileCol>
     22327                                                <MaxTileCol>64</MaxTileCol>
     22328                                        </TileMatrixLimits>
     22329                                        <TileMatrixLimits>
     22330                                                <TileMatrix>8</TileMatrix>
     22331                                                <MinTileRow>93</MinTileRow>
     22332                                                <MaxTileRow>93</MaxTileRow>
     22333                                                <MinTileCol>129</MinTileCol>
     22334                                                <MaxTileCol>129</MaxTileCol>
     22335                                        </TileMatrixLimits>
     22336                                        <TileMatrixLimits>
     22337                                                <TileMatrix>9</TileMatrix>
     22338                                                <MinTileRow>186</MinTileRow>
     22339                                                <MaxTileRow>187</MaxTileRow>
     22340                                                <MinTileCol>258</MinTileCol>
     22341                                                <MaxTileCol>259</MaxTileCol>
     22342                                        </TileMatrixLimits>
     22343                                </TileMatrixSetLimits>
     22344                        </TileMatrixSetLink>
     22345                </Layer>
     22346                <Layer>
     22347                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22348                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22349                        <ows:Keywords>
     22350                                <ows:Keyword>Photographies</ows:Keyword>
     22351                        </ows:Keywords>
     22352                        <ows:WGS84BoundingBox>
     22353                                <ows:LowerCorner>1.62462 42.9539</ows:LowerCorner>
     22354                                <ows:UpperCorner>1.98373 44.1631</ows:UpperCorner>
     22355                        </ows:WGS84BoundingBox>
     22356                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-17-38485324</ows:Identifier>
     22357                        <Style isDefault="true">
     22358                                <ows:Title>Données Brutes</ows:Title>
     22359                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22360                                <ows:Keywords>
     22361                                        <ows:Keyword>Défaut</ows:Keyword>
     22362                                </ows:Keywords>
     22363                                <ows:Identifier>normal</ows:Identifier>
     22364                                <LegendURL format="image/jpeg" height="200"
     22365                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22366                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22367                        </Style>
     22368                        <Format>image/jpeg</Format>
     22369                        <TileMatrixSetLink>
     22370                                <TileMatrixSet>PM</TileMatrixSet>
     22371                                <TileMatrixSetLimits>
     22372                                        <TileMatrixLimits>
     22373                                                <TileMatrix>0</TileMatrix>
     22374                                                <MinTileRow>0</MinTileRow>
     22375                                                <MaxTileRow>0</MaxTileRow>
     22376                                                <MinTileCol>0</MinTileCol>
     22377                                                <MaxTileCol>0</MaxTileCol>
     22378                                        </TileMatrixLimits>
     22379                                        <TileMatrixLimits>
     22380                                                <TileMatrix>1</TileMatrix>
     22381                                                <MinTileRow>0</MinTileRow>
     22382                                                <MaxTileRow>0</MaxTileRow>
     22383                                                <MinTileCol>1</MinTileCol>
     22384                                                <MaxTileCol>1</MaxTileCol>
     22385                                        </TileMatrixLimits>
     22386                                        <TileMatrixLimits>
     22387                                                <TileMatrix>10</TileMatrix>
     22388                                                <MinTileRow>371</MinTileRow>
     22389                                                <MaxTileRow>376</MaxTileRow>
     22390                                                <MinTileCol>516</MinTileCol>
     22391                                                <MaxTileCol>517</MaxTileCol>
     22392                                        </TileMatrixLimits>
     22393                                        <TileMatrixLimits>
     22394                                                <TileMatrix>11</TileMatrix>
     22395                                                <MinTileRow>743</MinTileRow>
     22396                                                <MaxTileRow>752</MaxTileRow>
     22397                                                <MinTileCol>1033</MinTileCol>
     22398                                                <MaxTileCol>1035</MaxTileCol>
     22399                                        </TileMatrixLimits>
     22400                                        <TileMatrixLimits>
     22401                                                <TileMatrix>12</TileMatrix>
     22402                                                <MinTileRow>1486</MinTileRow>
     22403                                                <MaxTileRow>1505</MaxTileRow>
     22404                                                <MinTileCol>2066</MinTileCol>
     22405                                                <MaxTileCol>2070</MaxTileCol>
     22406                                        </TileMatrixLimits>
     22407                                        <TileMatrixLimits>
     22408                                                <TileMatrix>13</TileMatrix>
     22409                                                <MinTileRow>2973</MinTileRow>
     22410                                                <MaxTileRow>3011</MaxTileRow>
     22411                                                <MinTileCol>4133</MinTileCol>
     22412                                                <MaxTileCol>4140</MaxTileCol>
     22413                                        </TileMatrixLimits>
     22414                                        <TileMatrixLimits>
     22415                                                <TileMatrix>14</TileMatrix>
     22416                                                <MinTileRow>5947</MinTileRow>
     22417                                                <MaxTileRow>6023</MaxTileRow>
     22418                                                <MinTileCol>8266</MinTileCol>
     22419                                                <MaxTileCol>8281</MaxTileCol>
     22420                                        </TileMatrixLimits>
     22421                                        <TileMatrixLimits>
     22422                                                <TileMatrix>15</TileMatrix>
     22423                                                <MinTileRow>11894</MinTileRow>
     22424                                                <MaxTileRow>12046</MaxTileRow>
     22425                                                <MinTileCol>16532</MinTileCol>
     22426                                                <MaxTileCol>16562</MaxTileCol>
     22427                                        </TileMatrixLimits>
     22428                                        <TileMatrixLimits>
     22429                                                <TileMatrix>16</TileMatrix>
     22430                                                <MinTileRow>23789</MinTileRow>
     22431                                                <MaxTileRow>24092</MaxTileRow>
     22432                                                <MinTileCol>33065</MinTileCol>
     22433                                                <MaxTileCol>33125</MaxTileCol>
     22434                                        </TileMatrixLimits>
     22435                                        <TileMatrixLimits>
     22436                                                <TileMatrix>17</TileMatrix>
     22437                                                <MinTileRow>47579</MinTileRow>
     22438                                                <MaxTileRow>48184</MaxTileRow>
     22439                                                <MinTileCol>66131</MinTileCol>
     22440                                                <MaxTileCol>66250</MaxTileCol>
     22441                                        </TileMatrixLimits>
     22442                                        <TileMatrixLimits>
     22443                                                <TileMatrix>18</TileMatrix>
     22444                                                <MinTileRow>95158</MinTileRow>
     22445                                                <MaxTileRow>96368</MaxTileRow>
     22446                                                <MinTileCol>132263</MinTileCol>
     22447                                                <MaxTileCol>132501</MaxTileCol>
     22448                                        </TileMatrixLimits>
     22449                                        <TileMatrixLimits>
     22450                                                <TileMatrix>2</TileMatrix>
     22451                                                <MinTileRow>1</MinTileRow>
     22452                                                <MaxTileRow>1</MaxTileRow>
     22453                                                <MinTileCol>2</MinTileCol>
     22454                                                <MaxTileCol>2</MaxTileCol>
     22455                                        </TileMatrixLimits>
     22456                                        <TileMatrixLimits>
     22457                                                <TileMatrix>3</TileMatrix>
     22458                                                <MinTileRow>2</MinTileRow>
     22459                                                <MaxTileRow>2</MaxTileRow>
     22460                                                <MinTileCol>4</MinTileCol>
     22461                                                <MaxTileCol>4</MaxTileCol>
     22462                                        </TileMatrixLimits>
     22463                                        <TileMatrixLimits>
     22464                                                <TileMatrix>4</TileMatrix>
     22465                                                <MinTileRow>5</MinTileRow>
     22466                                                <MaxTileRow>5</MaxTileRow>
     22467                                                <MinTileCol>8</MinTileCol>
     22468                                                <MaxTileCol>8</MaxTileCol>
     22469                                        </TileMatrixLimits>
     22470                                        <TileMatrixLimits>
     22471                                                <TileMatrix>5</TileMatrix>
     22472                                                <MinTileRow>11</MinTileRow>
     22473                                                <MaxTileRow>11</MaxTileRow>
     22474                                                <MinTileCol>16</MinTileCol>
     22475                                                <MaxTileCol>16</MaxTileCol>
     22476                                        </TileMatrixLimits>
     22477                                        <TileMatrixLimits>
     22478                                                <TileMatrix>6</TileMatrix>
     22479                                                <MinTileRow>23</MinTileRow>
     22480                                                <MaxTileRow>23</MaxTileRow>
     22481                                                <MinTileCol>32</MinTileCol>
     22482                                                <MaxTileCol>32</MaxTileCol>
     22483                                        </TileMatrixLimits>
     22484                                        <TileMatrixLimits>
     22485                                                <TileMatrix>7</TileMatrix>
     22486                                                <MinTileRow>46</MinTileRow>
     22487                                                <MaxTileRow>47</MaxTileRow>
     22488                                                <MinTileCol>64</MinTileCol>
     22489                                                <MaxTileCol>64</MaxTileCol>
     22490                                        </TileMatrixLimits>
     22491                                        <TileMatrixLimits>
     22492                                                <TileMatrix>8</TileMatrix>
     22493                                                <MinTileRow>92</MinTileRow>
     22494                                                <MaxTileRow>94</MaxTileRow>
     22495                                                <MinTileCol>129</MinTileCol>
     22496                                                <MaxTileCol>129</MaxTileCol>
     22497                                        </TileMatrixLimits>
     22498                                        <TileMatrixLimits>
     22499                                                <TileMatrix>9</TileMatrix>
     22500                                                <MinTileRow>185</MinTileRow>
     22501                                                <MaxTileRow>188</MaxTileRow>
     22502                                                <MinTileCol>258</MinTileCol>
     22503                                                <MaxTileCol>258</MaxTileCol>
     22504                                        </TileMatrixLimits>
     22505                                </TileMatrixSetLimits>
     22506                        </TileMatrixSetLink>
     22507                </Layer>
     22508                <Layer>
     22509                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22510                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22511                        <ows:Keywords>
     22512                                <ows:Keyword>Photographies</ows:Keyword>
     22513                        </ows:Keywords>
     22514                        <ows:WGS84BoundingBox>
     22515                                <ows:LowerCorner>1.23023 43.7488</ows:LowerCorner>
     22516                                <ows:UpperCorner>1.53505 43.9781</ows:UpperCorner>
     22517                        </ows:WGS84BoundingBox>
     22518                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-02-20-40028825</ows:Identifier>
     22519                        <Style isDefault="true">
     22520                                <ows:Title>Données Brutes</ows:Title>
     22521                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22522                                <ows:Keywords>
     22523                                        <ows:Keyword>Défaut</ows:Keyword>
     22524                                </ows:Keywords>
     22525                                <ows:Identifier>normal</ows:Identifier>
     22526                                <LegendURL format="image/jpeg" height="200"
     22527                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22528                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22529                        </Style>
     22530                        <Format>image/jpeg</Format>
     22531                        <TileMatrixSetLink>
     22532                                <TileMatrixSet>PM</TileMatrixSet>
     22533                                <TileMatrixSetLimits>
     22534                                        <TileMatrixLimits>
     22535                                                <TileMatrix>0</TileMatrix>
     22536                                                <MinTileRow>0</MinTileRow>
     22537                                                <MaxTileRow>0</MaxTileRow>
     22538                                                <MinTileCol>0</MinTileCol>
     22539                                                <MaxTileCol>0</MaxTileCol>
     22540                                        </TileMatrixLimits>
     22541                                        <TileMatrixLimits>
     22542                                                <TileMatrix>1</TileMatrix>
     22543                                                <MinTileRow>0</MinTileRow>
     22544                                                <MaxTileRow>0</MaxTileRow>
     22545                                                <MinTileCol>1</MinTileCol>
     22546                                                <MaxTileCol>1</MaxTileCol>
     22547                                        </TileMatrixLimits>
     22548                                        <TileMatrixLimits>
     22549                                                <TileMatrix>10</TileMatrix>
     22550                                                <MinTileRow>372</MinTileRow>
     22551                                                <MaxTileRow>373</MaxTileRow>
     22552                                                <MinTileCol>515</MinTileCol>
     22553                                                <MaxTileCol>516</MaxTileCol>
     22554                                        </TileMatrixLimits>
     22555                                        <TileMatrixLimits>
     22556                                                <TileMatrix>11</TileMatrix>
     22557                                                <MinTileRow>744</MinTileRow>
     22558                                                <MaxTileRow>746</MaxTileRow>
     22559                                                <MinTileCol>1031</MinTileCol>
     22560                                                <MaxTileCol>1032</MaxTileCol>
     22561                                        </TileMatrixLimits>
     22562                                        <TileMatrixLimits>
     22563                                                <TileMatrix>12</TileMatrix>
     22564                                                <MinTileRow>1489</MinTileRow>
     22565                                                <MaxTileRow>1493</MaxTileRow>
     22566                                                <MinTileCol>2062</MinTileCol>
     22567                                                <MaxTileCol>2065</MaxTileCol>
     22568                                        </TileMatrixLimits>
     22569                                        <TileMatrixLimits>
     22570                                                <TileMatrix>13</TileMatrix>
     22571                                                <MinTileRow>2979</MinTileRow>
     22572                                                <MaxTileRow>2986</MaxTileRow>
     22573                                                <MinTileCol>4124</MinTileCol>
     22574                                                <MaxTileCol>4130</MaxTileCol>
     22575                                        </TileMatrixLimits>
     22576                                        <TileMatrixLimits>
     22577                                                <TileMatrix>14</TileMatrix>
     22578                                                <MinTileRow>5959</MinTileRow>
     22579                                                <MaxTileRow>5973</MaxTileRow>
     22580                                                <MinTileCol>8248</MinTileCol>
     22581                                                <MaxTileCol>8261</MaxTileCol>
     22582                                        </TileMatrixLimits>
     22583                                        <TileMatrixLimits>
     22584                                                <TileMatrix>15</TileMatrix>
     22585                                                <MinTileRow>11918</MinTileRow>
     22586                                                <MaxTileRow>11946</MaxTileRow>
     22587                                                <MinTileCol>16496</MinTileCol>
     22588                                                <MaxTileCol>16523</MaxTileCol>
     22589                                        </TileMatrixLimits>
     22590                                        <TileMatrixLimits>
     22591                                                <TileMatrix>16</TileMatrix>
     22592                                                <MinTileRow>23836</MinTileRow>
     22593                                                <MaxTileRow>23892</MaxTileRow>
     22594                                                <MinTileCol>32992</MinTileCol>
     22595                                                <MaxTileCol>33046</MaxTileCol>
     22596                                        </TileMatrixLimits>
     22597                                        <TileMatrixLimits>
     22598                                                <TileMatrix>17</TileMatrix>
     22599                                                <MinTileRow>47672</MinTileRow>
     22600                                                <MaxTileRow>47785</MaxTileRow>
     22601                                                <MinTileCol>65984</MinTileCol>
     22602                                                <MaxTileCol>66093</MaxTileCol>
     22603                                        </TileMatrixLimits>
     22604                                        <TileMatrixLimits>
     22605                                                <TileMatrix>18</TileMatrix>
     22606                                                <MinTileRow>95345</MinTileRow>
     22607                                                <MaxTileRow>95571</MaxTileRow>
     22608                                                <MinTileCol>131968</MinTileCol>
     22609                                                <MaxTileCol>132186</MaxTileCol>
     22610                                        </TileMatrixLimits>
     22611                                        <TileMatrixLimits>
     22612                                                <TileMatrix>2</TileMatrix>
     22613                                                <MinTileRow>1</MinTileRow>
     22614                                                <MaxTileRow>1</MaxTileRow>
     22615                                                <MinTileCol>2</MinTileCol>
     22616                                                <MaxTileCol>2</MaxTileCol>
     22617                                        </TileMatrixLimits>
     22618                                        <TileMatrixLimits>
     22619                                                <TileMatrix>3</TileMatrix>
     22620                                                <MinTileRow>2</MinTileRow>
     22621                                                <MaxTileRow>2</MaxTileRow>
     22622                                                <MinTileCol>4</MinTileCol>
     22623                                                <MaxTileCol>4</MaxTileCol>
     22624                                        </TileMatrixLimits>
     22625                                        <TileMatrixLimits>
     22626                                                <TileMatrix>4</TileMatrix>
     22627                                                <MinTileRow>5</MinTileRow>
     22628                                                <MaxTileRow>5</MaxTileRow>
     22629                                                <MinTileCol>8</MinTileCol>
     22630                                                <MaxTileCol>8</MaxTileCol>
     22631                                        </TileMatrixLimits>
     22632                                        <TileMatrixLimits>
     22633                                                <TileMatrix>5</TileMatrix>
     22634                                                <MinTileRow>11</MinTileRow>
     22635                                                <MaxTileRow>11</MaxTileRow>
     22636                                                <MinTileCol>16</MinTileCol>
     22637                                                <MaxTileCol>16</MaxTileCol>
     22638                                        </TileMatrixLimits>
     22639                                        <TileMatrixLimits>
     22640                                                <TileMatrix>6</TileMatrix>
     22641                                                <MinTileRow>23</MinTileRow>
     22642                                                <MaxTileRow>23</MaxTileRow>
     22643                                                <MinTileCol>32</MinTileCol>
     22644                                                <MaxTileCol>32</MaxTileCol>
     22645                                        </TileMatrixLimits>
     22646                                        <TileMatrixLimits>
     22647                                                <TileMatrix>7</TileMatrix>
     22648                                                <MinTileRow>46</MinTileRow>
     22649                                                <MaxTileRow>46</MaxTileRow>
     22650                                                <MinTileCol>64</MinTileCol>
     22651                                                <MaxTileCol>64</MaxTileCol>
     22652                                        </TileMatrixLimits>
     22653                                        <TileMatrixLimits>
     22654                                                <TileMatrix>8</TileMatrix>
     22655                                                <MinTileRow>93</MinTileRow>
     22656                                                <MaxTileRow>93</MaxTileRow>
     22657                                                <MinTileCol>128</MinTileCol>
     22658                                                <MaxTileCol>129</MaxTileCol>
     22659                                        </TileMatrixLimits>
     22660                                        <TileMatrixLimits>
     22661                                                <TileMatrix>9</TileMatrix>
     22662                                                <MinTileRow>186</MinTileRow>
     22663                                                <MaxTileRow>186</MaxTileRow>
     22664                                                <MinTileCol>257</MinTileCol>
     22665                                                <MaxTileCol>258</MaxTileCol>
     22666                                        </TileMatrixLimits>
     22667                                </TileMatrixSetLimits>
     22668                        </TileMatrixSetLink>
     22669                </Layer>
     22670                <Layer>
     22671                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22672                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22673                        <ows:Keywords>
     22674                                <ows:Keyword>Photographies</ows:Keyword>
     22675                        </ows:Keywords>
     22676                        <ows:WGS84BoundingBox>
     22677                                <ows:LowerCorner>1.4179 43.0139</ows:LowerCorner>
     22678                                <ows:UpperCorner>1.74977 43.5038</ows:UpperCorner>
     22679                        </ows:WGS84BoundingBox>
     22680                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-04-10-38499949</ows:Identifier>
     22681                        <Style isDefault="true">
     22682                                <ows:Title>Données Brutes</ows:Title>
     22683                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22684                                <ows:Keywords>
     22685                                        <ows:Keyword>Défaut</ows:Keyword>
     22686                                </ows:Keywords>
     22687                                <ows:Identifier>normal</ows:Identifier>
     22688                                <LegendURL format="image/jpeg" height="200"
     22689                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22690                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22691                        </Style>
     22692                        <Format>image/jpeg</Format>
     22693                        <TileMatrixSetLink>
     22694                                <TileMatrixSet>PM</TileMatrixSet>
     22695                                <TileMatrixSetLimits>
     22696                                        <TileMatrixLimits>
     22697                                                <TileMatrix>0</TileMatrix>
     22698                                                <MinTileRow>0</MinTileRow>
     22699                                                <MaxTileRow>0</MaxTileRow>
     22700                                                <MinTileCol>0</MinTileCol>
     22701                                                <MaxTileCol>0</MaxTileCol>
     22702                                        </TileMatrixLimits>
     22703                                        <TileMatrixLimits>
     22704                                                <TileMatrix>1</TileMatrix>
     22705                                                <MinTileRow>0</MinTileRow>
     22706                                                <MaxTileRow>0</MaxTileRow>
     22707                                                <MinTileCol>1</MinTileCol>
     22708                                                <MaxTileCol>1</MaxTileCol>
     22709                                        </TileMatrixLimits>
     22710                                        <TileMatrixLimits>
     22711                                                <TileMatrix>10</TileMatrix>
     22712                                                <MinTileRow>374</MinTileRow>
     22713                                                <MaxTileRow>376</MaxTileRow>
     22714                                                <MinTileCol>516</MinTileCol>
     22715                                                <MaxTileCol>516</MaxTileCol>
     22716                                        </TileMatrixLimits>
     22717                                        <TileMatrixLimits>
     22718                                                <TileMatrix>11</TileMatrix>
     22719                                                <MinTileRow>748</MinTileRow>
     22720                                                <MaxTileRow>752</MaxTileRow>
     22721                                                <MinTileCol>1032</MinTileCol>
     22722                                                <MaxTileCol>1033</MaxTileCol>
     22723                                        </TileMatrixLimits>
     22724                                        <TileMatrixLimits>
     22725                                                <TileMatrix>12</TileMatrix>
     22726                                                <MinTileRow>1497</MinTileRow>
     22727                                                <MaxTileRow>1504</MaxTileRow>
     22728                                                <MinTileCol>2064</MinTileCol>
     22729                                                <MaxTileCol>2067</MaxTileCol>
     22730                                        </TileMatrixLimits>
     22731                                        <TileMatrixLimits>
     22732                                                <TileMatrix>13</TileMatrix>
     22733                                                <MinTileRow>2994</MinTileRow>
     22734                                                <MaxTileRow>3009</MaxTileRow>
     22735                                                <MinTileCol>4128</MinTileCol>
     22736                                                <MaxTileCol>4135</MaxTileCol>
     22737                                        </TileMatrixLimits>
     22738                                        <TileMatrixLimits>
     22739                                                <TileMatrix>14</TileMatrix>
     22740                                                <MinTileRow>5988</MinTileRow>
     22741                                                <MaxTileRow>6019</MaxTileRow>
     22742                                                <MinTileCol>8256</MinTileCol>
     22743                                                <MaxTileCol>8271</MaxTileCol>
     22744                                        </TileMatrixLimits>
     22745                                        <TileMatrixLimits>
     22746                                                <TileMatrix>15</TileMatrix>
     22747                                                <MinTileRow>11977</MinTileRow>
     22748                                                <MaxTileRow>12038</MaxTileRow>
     22749                                                <MinTileCol>16513</MinTileCol>
     22750                                                <MaxTileCol>16542</MaxTileCol>
     22751                                        </TileMatrixLimits>
     22752                                        <TileMatrixLimits>
     22753                                                <TileMatrix>16</TileMatrix>
     22754                                                <MinTileRow>23955</MinTileRow>
     22755                                                <MaxTileRow>24076</MaxTileRow>
     22756                                                <MinTileCol>33027</MinTileCol>
     22757                                                <MaxTileCol>33084</MaxTileCol>
     22758                                        </TileMatrixLimits>
     22759                                        <TileMatrixLimits>
     22760                                                <TileMatrix>17</TileMatrix>
     22761                                                <MinTileRow>47911</MinTileRow>
     22762                                                <MaxTileRow>48153</MaxTileRow>
     22763                                                <MinTileCol>66054</MinTileCol>
     22764                                                <MaxTileCol>66169</MaxTileCol>
     22765                                        </TileMatrixLimits>
     22766                                        <TileMatrixLimits>
     22767                                                <TileMatrix>18</TileMatrix>
     22768                                                <MinTileRow>95823</MinTileRow>
     22769                                                <MaxTileRow>96307</MaxTileRow>
     22770                                                <MinTileCol>132109</MinTileCol>
     22771                                                <MaxTileCol>132339</MaxTileCol>
     22772                                        </TileMatrixLimits>
     22773                                        <TileMatrixLimits>
     22774                                                <TileMatrix>2</TileMatrix>
     22775                                                <MinTileRow>1</MinTileRow>
     22776                                                <MaxTileRow>1</MaxTileRow>
     22777                                                <MinTileCol>2</MinTileCol>
     22778                                                <MaxTileCol>2</MaxTileCol>
     22779                                        </TileMatrixLimits>
     22780                                        <TileMatrixLimits>
     22781                                                <TileMatrix>3</TileMatrix>
     22782                                                <MinTileRow>2</MinTileRow>
     22783                                                <MaxTileRow>2</MaxTileRow>
     22784                                                <MinTileCol>4</MinTileCol>
     22785                                                <MaxTileCol>4</MaxTileCol>
     22786                                        </TileMatrixLimits>
     22787                                        <TileMatrixLimits>
     22788                                                <TileMatrix>4</TileMatrix>
     22789                                                <MinTileRow>5</MinTileRow>
     22790                                                <MaxTileRow>5</MaxTileRow>
     22791                                                <MinTileCol>8</MinTileCol>
     22792                                                <MaxTileCol>8</MaxTileCol>
     22793                                        </TileMatrixLimits>
     22794                                        <TileMatrixLimits>
     22795                                                <TileMatrix>5</TileMatrix>
     22796                                                <MinTileRow>11</MinTileRow>
     22797                                                <MaxTileRow>11</MaxTileRow>
     22798                                                <MinTileCol>16</MinTileCol>
     22799                                                <MaxTileCol>16</MaxTileCol>
     22800                                        </TileMatrixLimits>
     22801                                        <TileMatrixLimits>
     22802                                                <TileMatrix>6</TileMatrix>
     22803                                                <MinTileRow>23</MinTileRow>
     22804                                                <MaxTileRow>23</MaxTileRow>
     22805                                                <MinTileCol>32</MinTileCol>
     22806                                                <MaxTileCol>32</MaxTileCol>
     22807                                        </TileMatrixLimits>
     22808                                        <TileMatrixLimits>
     22809                                                <TileMatrix>7</TileMatrix>
     22810                                                <MinTileRow>46</MinTileRow>
     22811                                                <MaxTileRow>47</MaxTileRow>
     22812                                                <MinTileCol>64</MinTileCol>
     22813                                                <MaxTileCol>64</MaxTileCol>
     22814                                        </TileMatrixLimits>
     22815                                        <TileMatrixLimits>
     22816                                                <TileMatrix>8</TileMatrix>
     22817                                                <MinTileRow>93</MinTileRow>
     22818                                                <MaxTileRow>94</MaxTileRow>
     22819                                                <MinTileCol>129</MinTileCol>
     22820                                                <MaxTileCol>129</MaxTileCol>
     22821                                        </TileMatrixLimits>
     22822                                        <TileMatrixLimits>
     22823                                                <TileMatrix>9</TileMatrix>
     22824                                                <MinTileRow>187</MinTileRow>
     22825                                                <MaxTileRow>188</MaxTileRow>
     22826                                                <MinTileCol>258</MinTileCol>
     22827                                                <MaxTileCol>258</MaxTileCol>
     22828                                        </TileMatrixLimits>
     22829                                </TileMatrixSetLimits>
     22830                        </TileMatrixSetLink>
     22831                </Layer>
     22832                <Layer>
     22833                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22834                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22835                        <ows:Keywords>
     22836                                <ows:Keyword>Photographies</ows:Keyword>
     22837                        </ows:Keywords>
     22838                        <ows:WGS84BoundingBox>
     22839                                <ows:LowerCorner>1.21344 43.1096</ows:LowerCorner>
     22840                                <ows:UpperCorner>1.5144 43.3209</ows:UpperCorner>
     22841                        </ows:WGS84BoundingBox>
     22842                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-04-16-38761827</ows:Identifier>
     22843                        <Style isDefault="true">
     22844                                <ows:Title>Données Brutes</ows:Title>
     22845                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     22846                                <ows:Keywords>
     22847                                        <ows:Keyword>Défaut</ows:Keyword>
     22848                                </ows:Keywords>
     22849                                <ows:Identifier>normal</ows:Identifier>
     22850                                <LegendURL format="image/jpeg" height="200"
     22851                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     22852                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     22853                        </Style>
     22854                        <Format>image/jpeg</Format>
     22855                        <TileMatrixSetLink>
     22856                                <TileMatrixSet>PM</TileMatrixSet>
     22857                                <TileMatrixSetLimits>
     22858                                        <TileMatrixLimits>
     22859                                                <TileMatrix>0</TileMatrix>
     22860                                                <MinTileRow>0</MinTileRow>
     22861                                                <MaxTileRow>0</MaxTileRow>
     22862                                                <MinTileCol>0</MinTileCol>
     22863                                                <MaxTileCol>0</MaxTileCol>
     22864                                        </TileMatrixLimits>
     22865                                        <TileMatrixLimits>
     22866                                                <TileMatrix>1</TileMatrix>
     22867                                                <MinTileRow>0</MinTileRow>
     22868                                                <MaxTileRow>0</MaxTileRow>
     22869                                                <MinTileCol>1</MinTileCol>
     22870                                                <MaxTileCol>1</MaxTileCol>
     22871                                        </TileMatrixLimits>
     22872                                        <TileMatrixLimits>
     22873                                                <TileMatrix>10</TileMatrix>
     22874                                                <MinTileRow>375</MinTileRow>
     22875                                                <MaxTileRow>375</MaxTileRow>
     22876                                                <MinTileCol>515</MinTileCol>
     22877                                                <MaxTileCol>516</MaxTileCol>
     22878                                        </TileMatrixLimits>
     22879                                        <TileMatrixLimits>
     22880                                                <TileMatrix>11</TileMatrix>
     22881                                                <MinTileRow>750</MinTileRow>
     22882                                                <MaxTileRow>751</MaxTileRow>
     22883                                                <MinTileCol>1030</MinTileCol>
     22884                                                <MaxTileCol>1032</MaxTileCol>
     22885                                        </TileMatrixLimits>
     22886                                        <TileMatrixLimits>
     22887                                                <TileMatrix>12</TileMatrix>
     22888                                                <MinTileRow>1500</MinTileRow>
     22889                                                <MaxTileRow>1503</MaxTileRow>
     22890                                                <MinTileCol>2061</MinTileCol>
     22891                                                <MaxTileCol>2065</MaxTileCol>
     22892                                        </TileMatrixLimits>
     22893                                        <TileMatrixLimits>
     22894                                                <TileMatrix>13</TileMatrix>
     22895                                                <MinTileRow>3000</MinTileRow>
     22896                                                <MaxTileRow>3006</MaxTileRow>
     22897                                                <MinTileCol>4123</MinTileCol>
     22898                                                <MaxTileCol>4130</MaxTileCol>
     22899                                        </TileMatrixLimits>
     22900                                        <TileMatrixLimits>
     22901                                                <TileMatrix>14</TileMatrix>
     22902                                                <MinTileRow>6000</MinTileRow>
     22903                                                <MaxTileRow>6013</MaxTileRow>
     22904                                                <MinTileCol>8247</MinTileCol>
     22905                                                <MaxTileCol>8260</MaxTileCol>
     22906                                        </TileMatrixLimits>
     22907                                        <TileMatrixLimits>
     22908                                                <TileMatrix>15</TileMatrix>
     22909                                                <MinTileRow>12000</MinTileRow>
     22910                                                <MaxTileRow>12026</MaxTileRow>
     22911                                                <MinTileCol>16494</MinTileCol>
     22912                                                <MaxTileCol>16521</MaxTileCol>
     22913                                        </TileMatrixLimits>
     22914                                        <TileMatrixLimits>
     22915                                                <TileMatrix>16</TileMatrix>
     22916                                                <MinTileRow>24001</MinTileRow>
     22917                                                <MaxTileRow>24053</MaxTileRow>
     22918                                                <MinTileCol>32989</MinTileCol>
     22919                                                <MaxTileCol>33043</MaxTileCol>
     22920                                        </TileMatrixLimits>
     22921                                        <TileMatrixLimits>
     22922                                                <TileMatrix>17</TileMatrix>
     22923                                                <MinTileRow>48003</MinTileRow>
     22924                                                <MaxTileRow>48106</MaxTileRow>
     22925                                                <MinTileCol>65978</MinTileCol>
     22926                                                <MaxTileCol>66087</MaxTileCol>
     22927                                        </TileMatrixLimits>
     22928                                        <TileMatrixLimits>
     22929                                                <TileMatrix>18</TileMatrix>
     22930                                                <MinTileRow>96006</MinTileRow>
     22931                                                <MaxTileRow>96213</MaxTileRow>
     22932                                                <MinTileCol>131957</MinTileCol>
     22933                                                <MaxTileCol>132174</MaxTileCol>
     22934                                        </TileMatrixLimits>
     22935                                        <TileMatrixLimits>
     22936                                                <TileMatrix>2</TileMatrix>
     22937                                                <MinTileRow>1</MinTileRow>
     22938                                                <MaxTileRow>1</MaxTileRow>
     22939                                                <MinTileCol>2</MinTileCol>
     22940                                                <MaxTileCol>2</MaxTileCol>
     22941                                        </TileMatrixLimits>
     22942                                        <TileMatrixLimits>
     22943                                                <TileMatrix>3</TileMatrix>
     22944                                                <MinTileRow>2</MinTileRow>
     22945                                                <MaxTileRow>2</MaxTileRow>
     22946                                                <MinTileCol>4</MinTileCol>
     22947                                                <MaxTileCol>4</MaxTileCol>
     22948                                        </TileMatrixLimits>
     22949                                        <TileMatrixLimits>
     22950                                                <TileMatrix>4</TileMatrix>
     22951                                                <MinTileRow>5</MinTileRow>
     22952                                                <MaxTileRow>5</MaxTileRow>
     22953                                                <MinTileCol>8</MinTileCol>
     22954                                                <MaxTileCol>8</MaxTileCol>
     22955                                        </TileMatrixLimits>
     22956                                        <TileMatrixLimits>
     22957                                                <TileMatrix>5</TileMatrix>
     22958                                                <MinTileRow>11</MinTileRow>
     22959                                                <MaxTileRow>11</MaxTileRow>
     22960                                                <MinTileCol>16</MinTileCol>
     22961                                                <MaxTileCol>16</MaxTileCol>
     22962                                        </TileMatrixLimits>
     22963                                        <TileMatrixLimits>
     22964                                                <TileMatrix>6</TileMatrix>
     22965                                                <MinTileRow>23</MinTileRow>
     22966                                                <MaxTileRow>23</MaxTileRow>
     22967                                                <MinTileCol>32</MinTileCol>
     22968                                                <MaxTileCol>32</MaxTileCol>
     22969                                        </TileMatrixLimits>
     22970                                        <TileMatrixLimits>
     22971                                                <TileMatrix>7</TileMatrix>
     22972                                                <MinTileRow>46</MinTileRow>
     22973                                                <MaxTileRow>46</MaxTileRow>
     22974                                                <MinTileCol>64</MinTileCol>
     22975                                                <MaxTileCol>64</MaxTileCol>
     22976                                        </TileMatrixLimits>
     22977                                        <TileMatrixLimits>
     22978                                                <TileMatrix>8</TileMatrix>
     22979                                                <MinTileRow>93</MinTileRow>
     22980                                                <MaxTileRow>93</MaxTileRow>
     22981                                                <MinTileCol>128</MinTileCol>
     22982                                                <MaxTileCol>129</MaxTileCol>
     22983                                        </TileMatrixLimits>
     22984                                        <TileMatrixLimits>
     22985                                                <TileMatrix>9</TileMatrix>
     22986                                                <MinTileRow>187</MinTileRow>
     22987                                                <MaxTileRow>187</MaxTileRow>
     22988                                                <MinTileCol>257</MinTileCol>
     22989                                                <MaxTileCol>258</MaxTileCol>
     22990                                        </TileMatrixLimits>
     22991                                </TileMatrixSetLimits>
     22992                        </TileMatrixSetLink>
     22993                </Layer>
     22994                <Layer>
     22995                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     22996                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     22997                        <ows:Keywords>
     22998                                <ows:Keyword>Photographies</ows:Keyword>
     22999                        </ows:Keywords>
     23000                        <ows:WGS84BoundingBox>
     23001                                <ows:LowerCorner>1.2231 43.4337</ows:LowerCorner>
     23002                                <ows:UpperCorner>1.50604 43.8066</ows:UpperCorner>
     23003                        </ows:WGS84BoundingBox>
     23004                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-05-05-38995450</ows:Identifier>
     23005                        <Style isDefault="true">
     23006                                <ows:Title>Données Brutes</ows:Title>
     23007                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23008                                <ows:Keywords>
     23009                                        <ows:Keyword>Défaut</ows:Keyword>
     23010                                </ows:Keywords>
     23011                                <ows:Identifier>normal</ows:Identifier>
     23012                                <LegendURL format="image/jpeg" height="200"
     23013                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23014                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23015                        </Style>
     23016                        <Format>image/jpeg</Format>
     23017                        <TileMatrixSetLink>
     23018                                <TileMatrixSet>PM</TileMatrixSet>
     23019                                <TileMatrixSetLimits>
     23020                                        <TileMatrixLimits>
     23021                                                <TileMatrix>0</TileMatrix>
     23022                                                <MinTileRow>0</MinTileRow>
     23023                                                <MaxTileRow>0</MaxTileRow>
     23024                                                <MinTileCol>0</MinTileCol>
     23025                                                <MaxTileCol>0</MaxTileCol>
     23026                                        </TileMatrixLimits>
     23027                                        <TileMatrixLimits>
     23028                                                <TileMatrix>1</TileMatrix>
     23029                                                <MinTileRow>0</MinTileRow>
     23030                                                <MaxTileRow>0</MaxTileRow>
     23031                                                <MinTileCol>1</MinTileCol>
     23032                                                <MaxTileCol>1</MaxTileCol>
     23033                                        </TileMatrixLimits>
     23034                                        <TileMatrixLimits>
     23035                                                <TileMatrix>10</TileMatrix>
     23036                                                <MinTileRow>373</MinTileRow>
     23037                                                <MaxTileRow>374</MaxTileRow>
     23038                                                <MinTileCol>515</MinTileCol>
     23039                                                <MaxTileCol>516</MaxTileCol>
     23040                                        </TileMatrixLimits>
     23041                                        <TileMatrixLimits>
     23042                                                <TileMatrix>11</TileMatrix>
     23043                                                <MinTileRow>746</MinTileRow>
     23044                                                <MaxTileRow>749</MaxTileRow>
     23045                                                <MinTileCol>1030</MinTileCol>
     23046                                                <MaxTileCol>1032</MaxTileCol>
     23047                                        </TileMatrixLimits>
     23048                                        <TileMatrixLimits>
     23049                                                <TileMatrix>12</TileMatrix>
     23050                                                <MinTileRow>1492</MinTileRow>
     23051                                                <MaxTileRow>1498</MaxTileRow>
     23052                                                <MinTileCol>2061</MinTileCol>
     23053                                                <MaxTileCol>2065</MaxTileCol>
     23054                                        </TileMatrixLimits>
     23055                                        <TileMatrixLimits>
     23056                                                <TileMatrix>13</TileMatrix>
     23057                                                <MinTileRow>2984</MinTileRow>
     23058                                                <MaxTileRow>2996</MaxTileRow>
     23059                                                <MinTileCol>4123</MinTileCol>
     23060                                                <MaxTileCol>4130</MaxTileCol>
     23061                                        </TileMatrixLimits>
     23062                                        <TileMatrixLimits>
     23063                                                <TileMatrix>14</TileMatrix>
     23064                                                <MinTileRow>5969</MinTileRow>
     23065                                                <MaxTileRow>5993</MaxTileRow>
     23066                                                <MinTileCol>8247</MinTileCol>
     23067                                                <MaxTileCol>8260</MaxTileCol>
     23068                                        </TileMatrixLimits>
     23069                                        <TileMatrixLimits>
     23070                                                <TileMatrix>15</TileMatrix>
     23071                                                <MinTileRow>11939</MinTileRow>
     23072                                                <MaxTileRow>11986</MaxTileRow>
     23073                                                <MinTileCol>16495</MinTileCol>
     23074                                                <MaxTileCol>16521</MaxTileCol>
     23075                                        </TileMatrixLimits>
     23076                                        <TileMatrixLimits>
     23077                                                <TileMatrix>16</TileMatrix>
     23078                                                <MinTileRow>23879</MinTileRow>
     23079                                                <MaxTileRow>23972</MaxTileRow>
     23080                                                <MinTileCol>32990</MinTileCol>
     23081                                                <MaxTileCol>33042</MaxTileCol>
     23082                                        </TileMatrixLimits>
     23083                                        <TileMatrixLimits>
     23084                                                <TileMatrix>17</TileMatrix>
     23085                                                <MinTileRow>47759</MinTileRow>
     23086                                                <MaxTileRow>47944</MaxTileRow>
     23087                                                <MinTileCol>65981</MinTileCol>
     23088                                                <MaxTileCol>66084</MaxTileCol>
     23089                                        </TileMatrixLimits>
     23090                                        <TileMatrixLimits>
     23091                                                <TileMatrix>18</TileMatrix>
     23092                                                <MinTileRow>95518</MinTileRow>
     23093                                                <MaxTileRow>95888</MaxTileRow>
     23094                                                <MinTileCol>131962</MinTileCol>
     23095                                                <MaxTileCol>132168</MaxTileCol>
     23096                                        </TileMatrixLimits>
     23097                                        <TileMatrixLimits>
     23098                                                <TileMatrix>2</TileMatrix>
     23099                                                <MinTileRow>1</MinTileRow>
     23100                                                <MaxTileRow>1</MaxTileRow>
     23101                                                <MinTileCol>2</MinTileCol>
     23102                                                <MaxTileCol>2</MaxTileCol>
     23103                                        </TileMatrixLimits>
     23104                                        <TileMatrixLimits>
     23105                                                <TileMatrix>3</TileMatrix>
     23106                                                <MinTileRow>2</MinTileRow>
     23107                                                <MaxTileRow>2</MaxTileRow>
     23108                                                <MinTileCol>4</MinTileCol>
     23109                                                <MaxTileCol>4</MaxTileCol>
     23110                                        </TileMatrixLimits>
     23111                                        <TileMatrixLimits>
     23112                                                <TileMatrix>4</TileMatrix>
     23113                                                <MinTileRow>5</MinTileRow>
     23114                                                <MaxTileRow>5</MaxTileRow>
     23115                                                <MinTileCol>8</MinTileCol>
     23116                                                <MaxTileCol>8</MaxTileCol>
     23117                                        </TileMatrixLimits>
     23118                                        <TileMatrixLimits>
     23119                                                <TileMatrix>5</TileMatrix>
     23120                                                <MinTileRow>11</MinTileRow>
     23121                                                <MaxTileRow>11</MaxTileRow>
     23122                                                <MinTileCol>16</MinTileCol>
     23123                                                <MaxTileCol>16</MaxTileCol>
     23124                                        </TileMatrixLimits>
     23125                                        <TileMatrixLimits>
     23126                                                <TileMatrix>6</TileMatrix>
     23127                                                <MinTileRow>23</MinTileRow>
     23128                                                <MaxTileRow>23</MaxTileRow>
     23129                                                <MinTileCol>32</MinTileCol>
     23130                                                <MaxTileCol>32</MaxTileCol>
     23131                                        </TileMatrixLimits>
     23132                                        <TileMatrixLimits>
     23133                                                <TileMatrix>7</TileMatrix>
     23134                                                <MinTileRow>46</MinTileRow>
     23135                                                <MaxTileRow>46</MaxTileRow>
     23136                                                <MinTileCol>64</MinTileCol>
     23137                                                <MaxTileCol>64</MaxTileCol>
     23138                                        </TileMatrixLimits>
     23139                                        <TileMatrixLimits>
     23140                                                <TileMatrix>8</TileMatrix>
     23141                                                <MinTileRow>93</MinTileRow>
     23142                                                <MaxTileRow>93</MaxTileRow>
     23143                                                <MinTileCol>128</MinTileCol>
     23144                                                <MaxTileCol>129</MaxTileCol>
     23145                                        </TileMatrixLimits>
     23146                                        <TileMatrixLimits>
     23147                                                <TileMatrix>9</TileMatrix>
     23148                                                <MinTileRow>186</MinTileRow>
     23149                                                <MaxTileRow>187</MaxTileRow>
     23150                                                <MinTileCol>257</MinTileCol>
     23151                                                <MaxTileCol>258</MaxTileCol>
     23152                                        </TileMatrixLimits>
     23153                                </TileMatrixSetLimits>
     23154                        </TileMatrixSetLink>
     23155                </Layer>
     23156                <Layer>
     23157                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23158                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23159                        <ows:Keywords>
     23160                                <ows:Keyword>Photographies</ows:Keyword>
     23161                        </ows:Keywords>
     23162                        <ows:WGS84BoundingBox>
     23163                                <ows:LowerCorner>1.43491 43.122</ows:LowerCorner>
     23164                                <ows:UpperCorner>1.72288 43.3326</ows:UpperCorner>
     23165                        </ows:WGS84BoundingBox>
     23166                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-05-05-39032325</ows:Identifier>
     23167                        <Style isDefault="true">
     23168                                <ows:Title>Données Brutes</ows:Title>
     23169                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23170                                <ows:Keywords>
     23171                                        <ows:Keyword>Défaut</ows:Keyword>
     23172                                </ows:Keywords>
     23173                                <ows:Identifier>normal</ows:Identifier>
     23174                                <LegendURL format="image/jpeg" height="200"
     23175                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23176                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23177                        </Style>
     23178                        <Format>image/jpeg</Format>
     23179                        <TileMatrixSetLink>
     23180                                <TileMatrixSet>PM</TileMatrixSet>
     23181                                <TileMatrixSetLimits>
     23182                                        <TileMatrixLimits>
     23183                                                <TileMatrix>0</TileMatrix>
     23184                                                <MinTileRow>0</MinTileRow>
     23185                                                <MaxTileRow>0</MaxTileRow>
     23186                                                <MinTileCol>0</MinTileCol>
     23187                                                <MaxTileCol>0</MaxTileCol>
     23188                                        </TileMatrixLimits>
     23189                                        <TileMatrixLimits>
     23190                                                <TileMatrix>1</TileMatrix>
     23191                                                <MinTileRow>0</MinTileRow>
     23192                                                <MaxTileRow>0</MaxTileRow>
     23193                                                <MinTileCol>1</MinTileCol>
     23194                                                <MaxTileCol>1</MaxTileCol>
     23195                                        </TileMatrixLimits>
     23196                                        <TileMatrixLimits>
     23197                                                <TileMatrix>10</TileMatrix>
     23198                                                <MinTileRow>374</MinTileRow>
     23199                                                <MaxTileRow>375</MaxTileRow>
     23200                                                <MinTileCol>516</MinTileCol>
     23201                                                <MaxTileCol>516</MaxTileCol>
     23202                                        </TileMatrixLimits>
     23203                                        <TileMatrixLimits>
     23204                                                <TileMatrix>11</TileMatrix>
     23205                                                <MinTileRow>749</MinTileRow>
     23206                                                <MaxTileRow>751</MaxTileRow>
     23207                                                <MinTileCol>1032</MinTileCol>
     23208                                                <MaxTileCol>1033</MaxTileCol>
     23209                                        </TileMatrixLimits>
     23210                                        <TileMatrixLimits>
     23211                                                <TileMatrix>12</TileMatrix>
     23212                                                <MinTileRow>1499</MinTileRow>
     23213                                                <MaxTileRow>1503</MaxTileRow>
     23214                                                <MinTileCol>2064</MinTileCol>
     23215                                                <MaxTileCol>2067</MaxTileCol>
     23216                                        </TileMatrixLimits>
     23217                                        <TileMatrixLimits>
     23218                                                <TileMatrix>13</TileMatrix>
     23219                                                <MinTileRow>2999</MinTileRow>
     23220                                                <MaxTileRow>3006</MaxTileRow>
     23221                                                <MinTileCol>4128</MinTileCol>
     23222                                                <MaxTileCol>4135</MaxTileCol>
     23223                                        </TileMatrixLimits>
     23224                                        <TileMatrixLimits>
     23225                                                <TileMatrix>14</TileMatrix>
     23226                                                <MinTileRow>5999</MinTileRow>
     23227                                                <MaxTileRow>6012</MaxTileRow>
     23228                                                <MinTileCol>8257</MinTileCol>
     23229                                                <MaxTileCol>8270</MaxTileCol>
     23230                                        </TileMatrixLimits>
     23231                                        <TileMatrixLimits>
     23232                                                <TileMatrix>15</TileMatrix>
     23233                                                <MinTileRow>11999</MinTileRow>
     23234                                                <MaxTileRow>12025</MaxTileRow>
     23235                                                <MinTileCol>16514</MinTileCol>
     23236                                                <MaxTileCol>16540</MaxTileCol>
     23237                                        </TileMatrixLimits>
     23238                                        <TileMatrixLimits>
     23239                                                <TileMatrix>16</TileMatrix>
     23240                                                <MinTileRow>23998</MinTileRow>
     23241                                                <MaxTileRow>24050</MaxTileRow>
     23242                                                <MinTileCol>33029</MinTileCol>
     23243                                                <MaxTileCol>33081</MaxTileCol>
     23244                                        </TileMatrixLimits>
     23245                                        <TileMatrixLimits>
     23246                                                <TileMatrix>17</TileMatrix>
     23247                                                <MinTileRow>47996</MinTileRow>
     23248                                                <MaxTileRow>48101</MaxTileRow>
     23249                                                <MinTileCol>66058</MinTileCol>
     23250                                                <MaxTileCol>66163</MaxTileCol>
     23251                                        </TileMatrixLimits>
     23252                                        <TileMatrixLimits>
     23253                                                <TileMatrix>18</TileMatrix>
     23254                                                <MinTileRow>95993</MinTileRow>
     23255                                                <MaxTileRow>96202</MaxTileRow>
     23256                                                <MinTileCol>132116</MinTileCol>
     23257                                                <MaxTileCol>132326</MaxTileCol>
     23258                                        </TileMatrixLimits>
     23259                                        <TileMatrixLimits>
     23260                                                <TileMatrix>2</TileMatrix>
     23261                                                <MinTileRow>1</MinTileRow>
     23262                                                <MaxTileRow>1</MaxTileRow>
     23263                                                <MinTileCol>2</MinTileCol>
     23264                                                <MaxTileCol>2</MaxTileCol>
     23265                                        </TileMatrixLimits>
     23266                                        <TileMatrixLimits>
     23267                                                <TileMatrix>3</TileMatrix>
     23268                                                <MinTileRow>2</MinTileRow>
     23269                                                <MaxTileRow>2</MaxTileRow>
     23270                                                <MinTileCol>4</MinTileCol>
     23271                                                <MaxTileCol>4</MaxTileCol>
     23272                                        </TileMatrixLimits>
     23273                                        <TileMatrixLimits>
     23274                                                <TileMatrix>4</TileMatrix>
     23275                                                <MinTileRow>5</MinTileRow>
     23276                                                <MaxTileRow>5</MaxTileRow>
     23277                                                <MinTileCol>8</MinTileCol>
     23278                                                <MaxTileCol>8</MaxTileCol>
     23279                                        </TileMatrixLimits>
     23280                                        <TileMatrixLimits>
     23281                                                <TileMatrix>5</TileMatrix>
     23282                                                <MinTileRow>11</MinTileRow>
     23283                                                <MaxTileRow>11</MaxTileRow>
     23284                                                <MinTileCol>16</MinTileCol>
     23285                                                <MaxTileCol>16</MaxTileCol>
     23286                                        </TileMatrixLimits>
     23287                                        <TileMatrixLimits>
     23288                                                <TileMatrix>6</TileMatrix>
     23289                                                <MinTileRow>23</MinTileRow>
     23290                                                <MaxTileRow>23</MaxTileRow>
     23291                                                <MinTileCol>32</MinTileCol>
     23292                                                <MaxTileCol>32</MaxTileCol>
     23293                                        </TileMatrixLimits>
     23294                                        <TileMatrixLimits>
     23295                                                <TileMatrix>7</TileMatrix>
     23296                                                <MinTileRow>46</MinTileRow>
     23297                                                <MaxTileRow>46</MaxTileRow>
     23298                                                <MinTileCol>64</MinTileCol>
     23299                                                <MaxTileCol>64</MaxTileCol>
     23300                                        </TileMatrixLimits>
     23301                                        <TileMatrixLimits>
     23302                                                <TileMatrix>8</TileMatrix>
     23303                                                <MinTileRow>93</MinTileRow>
     23304                                                <MaxTileRow>93</MaxTileRow>
     23305                                                <MinTileCol>129</MinTileCol>
     23306                                                <MaxTileCol>129</MaxTileCol>
     23307                                        </TileMatrixLimits>
     23308                                        <TileMatrixLimits>
     23309                                                <TileMatrix>9</TileMatrix>
     23310                                                <MinTileRow>187</MinTileRow>
     23311                                                <MaxTileRow>187</MaxTileRow>
     23312                                                <MinTileCol>258</MinTileCol>
     23313                                                <MaxTileCol>258</MaxTileCol>
     23314                                        </TileMatrixLimits>
     23315                                </TileMatrixSetLimits>
     23316                        </TileMatrixSetLink>
     23317                </Layer>
     23318                <Layer>
     23319                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23320                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23321                        <ows:Keywords>
     23322                                <ows:Keyword>Photographies</ows:Keyword>
     23323                        </ows:Keywords>
     23324                        <ows:WGS84BoundingBox>
     23325                                <ows:LowerCorner>1.66002 43.5209</ows:LowerCorner>
     23326                                <ows:UpperCorner>1.94898 43.7219</ows:UpperCorner>
     23327                        </ows:WGS84BoundingBox>
     23328                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-05-39684199</ows:Identifier>
     23329                        <Style isDefault="true">
     23330                                <ows:Title>Données Brutes</ows:Title>
     23331                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23332                                <ows:Keywords>
     23333                                        <ows:Keyword>Défaut</ows:Keyword>
     23334                                </ows:Keywords>
     23335                                <ows:Identifier>normal</ows:Identifier>
     23336                                <LegendURL format="image/jpeg" height="200"
     23337                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23338                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23339                        </Style>
     23340                        <Format>image/jpeg</Format>
     23341                        <TileMatrixSetLink>
     23342                                <TileMatrixSet>PM</TileMatrixSet>
     23343                                <TileMatrixSetLimits>
     23344                                        <TileMatrixLimits>
     23345                                                <TileMatrix>0</TileMatrix>
     23346                                                <MinTileRow>0</MinTileRow>
     23347                                                <MaxTileRow>0</MaxTileRow>
     23348                                                <MinTileCol>0</MinTileCol>
     23349                                                <MaxTileCol>0</MaxTileCol>
     23350                                        </TileMatrixLimits>
     23351                                        <TileMatrixLimits>
     23352                                                <TileMatrix>1</TileMatrix>
     23353                                                <MinTileRow>0</MinTileRow>
     23354                                                <MaxTileRow>0</MaxTileRow>
     23355                                                <MinTileCol>1</MinTileCol>
     23356                                                <MaxTileCol>1</MaxTileCol>
     23357                                        </TileMatrixLimits>
     23358                                        <TileMatrixLimits>
     23359                                                <TileMatrix>10</TileMatrix>
     23360                                                <MinTileRow>373</MinTileRow>
     23361                                                <MaxTileRow>374</MaxTileRow>
     23362                                                <MinTileCol>516</MinTileCol>
     23363                                                <MaxTileCol>517</MaxTileCol>
     23364                                        </TileMatrixLimits>
     23365                                        <TileMatrixLimits>
     23366                                                <TileMatrix>11</TileMatrix>
     23367                                                <MinTileRow>746</MinTileRow>
     23368                                                <MaxTileRow>748</MaxTileRow>
     23369                                                <MinTileCol>1033</MinTileCol>
     23370                                                <MaxTileCol>1035</MaxTileCol>
     23371                                        </TileMatrixLimits>
     23372                                        <TileMatrixLimits>
     23373                                                <TileMatrix>12</TileMatrix>
     23374                                                <MinTileRow>1493</MinTileRow>
     23375                                                <MaxTileRow>1496</MaxTileRow>
     23376                                                <MinTileCol>2066</MinTileCol>
     23377                                                <MaxTileCol>2070</MaxTileCol>
     23378                                        </TileMatrixLimits>
     23379                                        <TileMatrixLimits>
     23380                                                <TileMatrix>13</TileMatrix>
     23381                                                <MinTileRow>2987</MinTileRow>
     23382                                                <MaxTileRow>2993</MaxTileRow>
     23383                                                <MinTileCol>4133</MinTileCol>
     23384                                                <MaxTileCol>4140</MaxTileCol>
     23385                                        </TileMatrixLimits>
     23386                                        <TileMatrixLimits>
     23387                                                <TileMatrix>14</TileMatrix>
     23388                                                <MinTileRow>5975</MinTileRow>
     23389                                                <MaxTileRow>5987</MaxTileRow>
     23390                                                <MinTileCol>8267</MinTileCol>
     23391                                                <MaxTileCol>8280</MaxTileCol>
     23392                                        </TileMatrixLimits>
     23393                                        <TileMatrixLimits>
     23394                                                <TileMatrix>15</TileMatrix>
     23395                                                <MinTileRow>11950</MinTileRow>
     23396                                                <MaxTileRow>11975</MaxTileRow>
     23397                                                <MinTileCol>16535</MinTileCol>
     23398                                                <MaxTileCol>16561</MaxTileCol>
     23399                                        </TileMatrixLimits>
     23400                                        <TileMatrixLimits>
     23401                                                <TileMatrix>16</TileMatrix>
     23402                                                <MinTileRow>23900</MinTileRow>
     23403                                                <MaxTileRow>23950</MaxTileRow>
     23404                                                <MinTileCol>33070</MinTileCol>
     23405                                                <MaxTileCol>33122</MaxTileCol>
     23406                                        </TileMatrixLimits>
     23407                                        <TileMatrixLimits>
     23408                                                <TileMatrix>17</TileMatrix>
     23409                                                <MinTileRow>47800</MinTileRow>
     23410                                                <MaxTileRow>47901</MaxTileRow>
     23411                                                <MinTileCol>66141</MinTileCol>
     23412                                                <MaxTileCol>66245</MaxTileCol>
     23413                                        </TileMatrixLimits>
     23414                                        <TileMatrixLimits>
     23415                                                <TileMatrix>18</TileMatrix>
     23416                                                <MinTileRow>95601</MinTileRow>
     23417                                                <MaxTileRow>95803</MaxTileRow>
     23418                                                <MinTileCol>132282</MinTileCol>
     23419                                                <MaxTileCol>132491</MaxTileCol>
     23420                                        </TileMatrixLimits>
     23421                                        <TileMatrixLimits>
     23422                                                <TileMatrix>2</TileMatrix>
     23423                                                <MinTileRow>1</MinTileRow>
     23424                                                <MaxTileRow>1</MaxTileRow>
     23425                                                <MinTileCol>2</MinTileCol>
     23426                                                <MaxTileCol>2</MaxTileCol>
     23427                                        </TileMatrixLimits>
     23428                                        <TileMatrixLimits>
     23429                                                <TileMatrix>3</TileMatrix>
     23430                                                <MinTileRow>2</MinTileRow>
     23431                                                <MaxTileRow>2</MaxTileRow>
     23432                                                <MinTileCol>4</MinTileCol>
     23433                                                <MaxTileCol>4</MaxTileCol>
     23434                                        </TileMatrixLimits>
     23435                                        <TileMatrixLimits>
     23436                                                <TileMatrix>4</TileMatrix>
     23437                                                <MinTileRow>5</MinTileRow>
     23438                                                <MaxTileRow>5</MaxTileRow>
     23439                                                <MinTileCol>8</MinTileCol>
     23440                                                <MaxTileCol>8</MaxTileCol>
     23441                                        </TileMatrixLimits>
     23442                                        <TileMatrixLimits>
     23443                                                <TileMatrix>5</TileMatrix>
     23444                                                <MinTileRow>11</MinTileRow>
     23445                                                <MaxTileRow>11</MaxTileRow>
     23446                                                <MinTileCol>16</MinTileCol>
     23447                                                <MaxTileCol>16</MaxTileCol>
     23448                                        </TileMatrixLimits>
     23449                                        <TileMatrixLimits>
     23450                                                <TileMatrix>6</TileMatrix>
     23451                                                <MinTileRow>23</MinTileRow>
     23452                                                <MaxTileRow>23</MaxTileRow>
     23453                                                <MinTileCol>32</MinTileCol>
     23454                                                <MaxTileCol>32</MaxTileCol>
     23455                                        </TileMatrixLimits>
     23456                                        <TileMatrixLimits>
     23457                                                <TileMatrix>7</TileMatrix>
     23458                                                <MinTileRow>46</MinTileRow>
     23459                                                <MaxTileRow>46</MaxTileRow>
     23460                                                <MinTileCol>64</MinTileCol>
     23461                                                <MaxTileCol>64</MaxTileCol>
     23462                                        </TileMatrixLimits>
     23463                                        <TileMatrixLimits>
     23464                                                <TileMatrix>8</TileMatrix>
     23465                                                <MinTileRow>93</MinTileRow>
     23466                                                <MaxTileRow>93</MaxTileRow>
     23467                                                <MinTileCol>129</MinTileCol>
     23468                                                <MaxTileCol>129</MaxTileCol>
     23469                                        </TileMatrixLimits>
     23470                                        <TileMatrixLimits>
     23471                                                <TileMatrix>9</TileMatrix>
     23472                                                <MinTileRow>186</MinTileRow>
     23473                                                <MaxTileRow>187</MaxTileRow>
     23474                                                <MinTileCol>258</MinTileCol>
     23475                                                <MaxTileCol>258</MaxTileCol>
     23476                                        </TileMatrixLimits>
     23477                                </TileMatrixSetLimits>
     23478                        </TileMatrixSetLink>
     23479                </Layer>
     23480                <Layer>
     23481                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23482                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23483                        <ows:Keywords>
     23484                                <ows:Keyword>Photographies</ows:Keyword>
     23485                        </ows:Keywords>
     23486                        <ows:WGS84BoundingBox>
     23487                                <ows:LowerCorner>1.83497 43.4419</ows:LowerCorner>
     23488                                <ows:UpperCorner>2.12331 43.6605</ows:UpperCorner>
     23489                        </ows:WGS84BoundingBox>
     23490                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-05-39692949</ows:Identifier>
     23491                        <Style isDefault="true">
     23492                                <ows:Title>Données Brutes</ows:Title>
     23493                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23494                                <ows:Keywords>
     23495                                        <ows:Keyword>Défaut</ows:Keyword>
     23496                                </ows:Keywords>
     23497                                <ows:Identifier>normal</ows:Identifier>
     23498                                <LegendURL format="image/jpeg" height="200"
     23499                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23500                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23501                        </Style>
     23502                        <Format>image/jpeg</Format>
     23503                        <TileMatrixSetLink>
     23504                                <TileMatrixSet>PM</TileMatrixSet>
     23505                                <TileMatrixSetLimits>
     23506                                        <TileMatrixLimits>
     23507                                                <TileMatrix>0</TileMatrix>
     23508                                                <MinTileRow>0</MinTileRow>
     23509                                                <MaxTileRow>0</MaxTileRow>
     23510                                                <MinTileCol>0</MinTileCol>
     23511                                                <MaxTileCol>0</MaxTileCol>
     23512                                        </TileMatrixLimits>
     23513                                        <TileMatrixLimits>
     23514                                                <TileMatrix>1</TileMatrix>
     23515                                                <MinTileRow>0</MinTileRow>
     23516                                                <MaxTileRow>0</MaxTileRow>
     23517                                                <MinTileCol>1</MinTileCol>
     23518                                                <MaxTileCol>1</MaxTileCol>
     23519                                        </TileMatrixLimits>
     23520                                        <TileMatrixLimits>
     23521                                                <TileMatrix>10</TileMatrix>
     23522                                                <MinTileRow>373</MinTileRow>
     23523                                                <MaxTileRow>374</MaxTileRow>
     23524                                                <MinTileCol>517</MinTileCol>
     23525                                                <MaxTileCol>518</MaxTileCol>
     23526                                        </TileMatrixLimits>
     23527                                        <TileMatrixLimits>
     23528                                                <TileMatrix>11</TileMatrix>
     23529                                                <MinTileRow>747</MinTileRow>
     23530                                                <MaxTileRow>749</MaxTileRow>
     23531                                                <MinTileCol>1034</MinTileCol>
     23532                                                <MaxTileCol>1036</MaxTileCol>
     23533                                        </TileMatrixLimits>
     23534                                        <TileMatrixLimits>
     23535                                                <TileMatrix>12</TileMatrix>
     23536                                                <MinTileRow>1494</MinTileRow>
     23537                                                <MaxTileRow>1498</MaxTileRow>
     23538                                                <MinTileCol>2068</MinTileCol>
     23539                                                <MaxTileCol>2072</MaxTileCol>
     23540                                        </TileMatrixLimits>
     23541                                        <TileMatrixLimits>
     23542                                                <TileMatrix>13</TileMatrix>
     23543                                                <MinTileRow>2989</MinTileRow>
     23544                                                <MaxTileRow>2996</MaxTileRow>
     23545                                                <MinTileCol>4137</MinTileCol>
     23546                                                <MaxTileCol>4144</MaxTileCol>
     23547                                        </TileMatrixLimits>
     23548                                        <TileMatrixLimits>
     23549                                                <TileMatrix>14</TileMatrix>
     23550                                                <MinTileRow>5978</MinTileRow>
     23551                                                <MaxTileRow>5992</MaxTileRow>
     23552                                                <MinTileCol>8275</MinTileCol>
     23553                                                <MaxTileCol>8288</MaxTileCol>
     23554                                        </TileMatrixLimits>
     23555                                        <TileMatrixLimits>
     23556                                                <TileMatrix>15</TileMatrix>
     23557                                                <MinTileRow>11957</MinTileRow>
     23558                                                <MaxTileRow>11985</MaxTileRow>
     23559                                                <MinTileCol>16551</MinTileCol>
     23560                                                <MaxTileCol>16577</MaxTileCol>
     23561                                        </TileMatrixLimits>
     23562                                        <TileMatrixLimits>
     23563                                                <TileMatrix>16</TileMatrix>
     23564                                                <MinTileRow>23915</MinTileRow>
     23565                                                <MaxTileRow>23970</MaxTileRow>
     23566                                                <MinTileCol>33102</MinTileCol>
     23567                                                <MaxTileCol>33154</MaxTileCol>
     23568                                        </TileMatrixLimits>
     23569                                        <TileMatrixLimits>
     23570                                                <TileMatrix>17</TileMatrix>
     23571                                                <MinTileRow>47831</MinTileRow>
     23572                                                <MaxTileRow>47941</MaxTileRow>
     23573                                                <MinTileCol>66204</MinTileCol>
     23574                                                <MaxTileCol>66309</MaxTileCol>
     23575                                        </TileMatrixLimits>
     23576                                        <TileMatrixLimits>
     23577                                                <TileMatrix>18</TileMatrix>
     23578                                                <MinTileRow>95663</MinTileRow>
     23579                                                <MaxTileRow>95883</MaxTileRow>
     23580                                                <MinTileCol>132408</MinTileCol>
     23581                                                <MaxTileCol>132618</MaxTileCol>
     23582                                        </TileMatrixLimits>
     23583                                        <TileMatrixLimits>
     23584                                                <TileMatrix>2</TileMatrix>
     23585                                                <MinTileRow>1</MinTileRow>
     23586                                                <MaxTileRow>1</MaxTileRow>
     23587                                                <MinTileCol>2</MinTileCol>
     23588                                                <MaxTileCol>2</MaxTileCol>
     23589                                        </TileMatrixLimits>
     23590                                        <TileMatrixLimits>
     23591                                                <TileMatrix>3</TileMatrix>
     23592                                                <MinTileRow>2</MinTileRow>
     23593                                                <MaxTileRow>2</MaxTileRow>
     23594                                                <MinTileCol>4</MinTileCol>
     23595                                                <MaxTileCol>4</MaxTileCol>
     23596                                        </TileMatrixLimits>
     23597                                        <TileMatrixLimits>
     23598                                                <TileMatrix>4</TileMatrix>
     23599                                                <MinTileRow>5</MinTileRow>
     23600                                                <MaxTileRow>5</MaxTileRow>
     23601                                                <MinTileCol>8</MinTileCol>
     23602                                                <MaxTileCol>8</MaxTileCol>
     23603                                        </TileMatrixLimits>
     23604                                        <TileMatrixLimits>
     23605                                                <TileMatrix>5</TileMatrix>
     23606                                                <MinTileRow>11</MinTileRow>
     23607                                                <MaxTileRow>11</MaxTileRow>
     23608                                                <MinTileCol>16</MinTileCol>
     23609                                                <MaxTileCol>16</MaxTileCol>
     23610                                        </TileMatrixLimits>
     23611                                        <TileMatrixLimits>
     23612                                                <TileMatrix>6</TileMatrix>
     23613                                                <MinTileRow>23</MinTileRow>
     23614                                                <MaxTileRow>23</MaxTileRow>
     23615                                                <MinTileCol>32</MinTileCol>
     23616                                                <MaxTileCol>32</MaxTileCol>
     23617                                        </TileMatrixLimits>
     23618                                        <TileMatrixLimits>
     23619                                                <TileMatrix>7</TileMatrix>
     23620                                                <MinTileRow>46</MinTileRow>
     23621                                                <MaxTileRow>46</MaxTileRow>
     23622                                                <MinTileCol>64</MinTileCol>
     23623                                                <MaxTileCol>64</MaxTileCol>
     23624                                        </TileMatrixLimits>
     23625                                        <TileMatrixLimits>
     23626                                                <TileMatrix>8</TileMatrix>
     23627                                                <MinTileRow>93</MinTileRow>
     23628                                                <MaxTileRow>93</MaxTileRow>
     23629                                                <MinTileCol>129</MinTileCol>
     23630                                                <MaxTileCol>129</MaxTileCol>
     23631                                        </TileMatrixLimits>
     23632                                        <TileMatrixLimits>
     23633                                                <TileMatrix>9</TileMatrix>
     23634                                                <MinTileRow>186</MinTileRow>
     23635                                                <MaxTileRow>187</MaxTileRow>
     23636                                                <MinTileCol>258</MinTileCol>
     23637                                                <MaxTileCol>259</MaxTileCol>
     23638                                        </TileMatrixLimits>
     23639                                </TileMatrixSetLimits>
     23640                        </TileMatrixSetLink>
     23641                </Layer>
     23642                <Layer>
     23643                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23644                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23645                        <ows:Keywords>
     23646                                <ows:Keyword>Photographies</ows:Keyword>
     23647                        </ows:Keywords>
     23648                        <ows:WGS84BoundingBox>
     23649                                <ows:LowerCorner>1.61432 43.1155</ows:LowerCorner>
     23650                                <ows:UpperCorner>1.90723 43.5595</ows:UpperCorner>
     23651                        </ows:WGS84BoundingBox>
     23652                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-06-12-39404950</ows:Identifier>
     23653                        <Style isDefault="true">
     23654                                <ows:Title>Données Brutes</ows:Title>
     23655                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23656                                <ows:Keywords>
     23657                                        <ows:Keyword>Défaut</ows:Keyword>
     23658                                </ows:Keywords>
     23659                                <ows:Identifier>normal</ows:Identifier>
     23660                                <LegendURL format="image/jpeg" height="200"
     23661                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23662                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23663                        </Style>
     23664                        <Format>image/jpeg</Format>
     23665                        <TileMatrixSetLink>
     23666                                <TileMatrixSet>PM</TileMatrixSet>
     23667                                <TileMatrixSetLimits>
     23668                                        <TileMatrixLimits>
     23669                                                <TileMatrix>0</TileMatrix>
     23670                                                <MinTileRow>0</MinTileRow>
     23671                                                <MaxTileRow>0</MaxTileRow>
     23672                                                <MinTileCol>0</MinTileCol>
     23673                                                <MaxTileCol>0</MaxTileCol>
     23674                                        </TileMatrixLimits>
     23675                                        <TileMatrixLimits>
     23676                                                <TileMatrix>1</TileMatrix>
     23677                                                <MinTileRow>0</MinTileRow>
     23678                                                <MaxTileRow>0</MaxTileRow>
     23679                                                <MinTileCol>1</MinTileCol>
     23680                                                <MaxTileCol>1</MaxTileCol>
     23681                                        </TileMatrixLimits>
     23682                                        <TileMatrixLimits>
     23683                                                <TileMatrix>10</TileMatrix>
     23684                                                <MinTileRow>374</MinTileRow>
     23685                                                <MaxTileRow>375</MaxTileRow>
     23686                                                <MinTileCol>516</MinTileCol>
     23687                                                <MaxTileCol>517</MaxTileCol>
     23688                                        </TileMatrixLimits>
     23689                                        <TileMatrixLimits>
     23690                                                <TileMatrix>11</TileMatrix>
     23691                                                <MinTileRow>748</MinTileRow>
     23692                                                <MaxTileRow>751</MaxTileRow>
     23693                                                <MinTileCol>1033</MinTileCol>
     23694                                                <MaxTileCol>1034</MaxTileCol>
     23695                                        </TileMatrixLimits>
     23696                                        <TileMatrixLimits>
     23697                                                <TileMatrix>12</TileMatrix>
     23698                                                <MinTileRow>1496</MinTileRow>
     23699                                                <MaxTileRow>1503</MaxTileRow>
     23700                                                <MinTileCol>2066</MinTileCol>
     23701                                                <MaxTileCol>2069</MaxTileCol>
     23702                                        </TileMatrixLimits>
     23703                                        <TileMatrixLimits>
     23704                                                <TileMatrix>13</TileMatrix>
     23705                                                <MinTileRow>2992</MinTileRow>
     23706                                                <MaxTileRow>3006</MaxTileRow>
     23707                                                <MinTileCol>4132</MinTileCol>
     23708                                                <MaxTileCol>4139</MaxTileCol>
     23709                                        </TileMatrixLimits>
     23710                                        <TileMatrixLimits>
     23711                                                <TileMatrix>14</TileMatrix>
     23712                                                <MinTileRow>5985</MinTileRow>
     23713                                                <MaxTileRow>6013</MaxTileRow>
     23714                                                <MinTileCol>8265</MinTileCol>
     23715                                                <MaxTileCol>8278</MaxTileCol>
     23716                                        </TileMatrixLimits>
     23717                                        <TileMatrixLimits>
     23718                                                <TileMatrix>15</TileMatrix>
     23719                                                <MinTileRow>11970</MinTileRow>
     23720                                                <MaxTileRow>12026</MaxTileRow>
     23721                                                <MinTileCol>16531</MinTileCol>
     23722                                                <MaxTileCol>16557</MaxTileCol>
     23723                                        </TileMatrixLimits>
     23724                                        <TileMatrixLimits>
     23725                                                <TileMatrix>16</TileMatrix>
     23726                                                <MinTileRow>23941</MinTileRow>
     23727                                                <MaxTileRow>24052</MaxTileRow>
     23728                                                <MinTileCol>33063</MinTileCol>
     23729                                                <MaxTileCol>33114</MaxTileCol>
     23730                                        </TileMatrixLimits>
     23731                                        <TileMatrixLimits>
     23732                                                <TileMatrix>17</TileMatrix>
     23733                                                <MinTileRow>47882</MinTileRow>
     23734                                                <MaxTileRow>48104</MaxTileRow>
     23735                                                <MinTileCol>66126</MinTileCol>
     23736                                                <MaxTileCol>66229</MaxTileCol>
     23737                                        </TileMatrixLimits>
     23738                                        <TileMatrixLimits>
     23739                                                <TileMatrix>18</TileMatrix>
     23740                                                <MinTileRow>95765</MinTileRow>
     23741                                                <MaxTileRow>96209</MaxTileRow>
     23742                                                <MinTileCol>132253</MinTileCol>
     23743                                                <MaxTileCol>132458</MaxTileCol>
     23744                                        </TileMatrixLimits>
     23745                                        <TileMatrixLimits>
     23746                                                <TileMatrix>2</TileMatrix>
     23747                                                <MinTileRow>1</MinTileRow>
     23748                                                <MaxTileRow>1</MaxTileRow>
     23749                                                <MinTileCol>2</MinTileCol>
     23750                                                <MaxTileCol>2</MaxTileCol>
     23751                                        </TileMatrixLimits>
     23752                                        <TileMatrixLimits>
     23753                                                <TileMatrix>3</TileMatrix>
     23754                                                <MinTileRow>2</MinTileRow>
     23755                                                <MaxTileRow>2</MaxTileRow>
     23756                                                <MinTileCol>4</MinTileCol>
     23757                                                <MaxTileCol>4</MaxTileCol>
     23758                                        </TileMatrixLimits>
     23759                                        <TileMatrixLimits>
     23760                                                <TileMatrix>4</TileMatrix>
     23761                                                <MinTileRow>5</MinTileRow>
     23762                                                <MaxTileRow>5</MaxTileRow>
     23763                                                <MinTileCol>8</MinTileCol>
     23764                                                <MaxTileCol>8</MaxTileCol>
     23765                                        </TileMatrixLimits>
     23766                                        <TileMatrixLimits>
     23767                                                <TileMatrix>5</TileMatrix>
     23768                                                <MinTileRow>11</MinTileRow>
     23769                                                <MaxTileRow>11</MaxTileRow>
     23770                                                <MinTileCol>16</MinTileCol>
     23771                                                <MaxTileCol>16</MaxTileCol>
     23772                                        </TileMatrixLimits>
     23773                                        <TileMatrixLimits>
     23774                                                <TileMatrix>6</TileMatrix>
     23775                                                <MinTileRow>23</MinTileRow>
     23776                                                <MaxTileRow>23</MaxTileRow>
     23777                                                <MinTileCol>32</MinTileCol>
     23778                                                <MaxTileCol>32</MaxTileCol>
     23779                                        </TileMatrixLimits>
     23780                                        <TileMatrixLimits>
     23781                                                <TileMatrix>7</TileMatrix>
     23782                                                <MinTileRow>46</MinTileRow>
     23783                                                <MaxTileRow>46</MaxTileRow>
     23784                                                <MinTileCol>64</MinTileCol>
     23785                                                <MaxTileCol>64</MaxTileCol>
     23786                                        </TileMatrixLimits>
     23787                                        <TileMatrixLimits>
     23788                                                <TileMatrix>8</TileMatrix>
     23789                                                <MinTileRow>93</MinTileRow>
     23790                                                <MaxTileRow>93</MaxTileRow>
     23791                                                <MinTileCol>129</MinTileCol>
     23792                                                <MaxTileCol>129</MaxTileCol>
     23793                                        </TileMatrixLimits>
     23794                                        <TileMatrixLimits>
     23795                                                <TileMatrix>9</TileMatrix>
     23796                                                <MinTileRow>187</MinTileRow>
     23797                                                <MaxTileRow>187</MaxTileRow>
     23798                                                <MinTileCol>258</MinTileCol>
     23799                                                <MaxTileCol>258</MaxTileCol>
     23800                                        </TileMatrixLimits>
     23801                                </TileMatrixSetLimits>
     23802                        </TileMatrixSetLink>
     23803                </Layer>
     23804                <Layer>
     23805                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23806                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23807                        <ows:Keywords>
     23808                                <ows:Keyword>Photographies</ows:Keyword>
     23809                        </ows:Keywords>
     23810                        <ows:WGS84BoundingBox>
     23811                                <ows:LowerCorner>1.23339 43.2808</ows:LowerCorner>
     23812                                <ows:UpperCorner>1.49769 43.4736</ows:UpperCorner>
     23813                        </ows:WGS84BoundingBox>
     23814                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-02-39189074</ows:Identifier>
     23815                        <Style isDefault="true">
     23816                                <ows:Title>Données Brutes</ows:Title>
     23817                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23818                                <ows:Keywords>
     23819                                        <ows:Keyword>Défaut</ows:Keyword>
     23820                                </ows:Keywords>
     23821                                <ows:Identifier>normal</ows:Identifier>
     23822                                <LegendURL format="image/jpeg" height="200"
     23823                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23824                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23825                        </Style>
     23826                        <Format>image/jpeg</Format>
     23827                        <TileMatrixSetLink>
     23828                                <TileMatrixSet>PM</TileMatrixSet>
     23829                                <TileMatrixSetLimits>
     23830                                        <TileMatrixLimits>
     23831                                                <TileMatrix>0</TileMatrix>
     23832                                                <MinTileRow>0</MinTileRow>
     23833                                                <MaxTileRow>0</MaxTileRow>
     23834                                                <MinTileCol>0</MinTileCol>
     23835                                                <MaxTileCol>0</MaxTileCol>
     23836                                        </TileMatrixLimits>
     23837                                        <TileMatrixLimits>
     23838                                                <TileMatrix>1</TileMatrix>
     23839                                                <MinTileRow>0</MinTileRow>
     23840                                                <MaxTileRow>0</MaxTileRow>
     23841                                                <MinTileCol>1</MinTileCol>
     23842                                                <MaxTileCol>1</MaxTileCol>
     23843                                        </TileMatrixLimits>
     23844                                        <TileMatrixLimits>
     23845                                                <TileMatrix>10</TileMatrix>
     23846                                                <MinTileRow>374</MinTileRow>
     23847                                                <MaxTileRow>375</MaxTileRow>
     23848                                                <MinTileCol>515</MinTileCol>
     23849                                                <MaxTileCol>516</MaxTileCol>
     23850                                        </TileMatrixLimits>
     23851                                        <TileMatrixLimits>
     23852                                                <TileMatrix>11</TileMatrix>
     23853                                                <MinTileRow>748</MinTileRow>
     23854                                                <MaxTileRow>750</MaxTileRow>
     23855                                                <MinTileCol>1031</MinTileCol>
     23856                                                <MaxTileCol>1032</MaxTileCol>
     23857                                        </TileMatrixLimits>
     23858                                        <TileMatrixLimits>
     23859                                                <TileMatrix>12</TileMatrix>
     23860                                                <MinTileRow>1497</MinTileRow>
     23861                                                <MaxTileRow>1500</MaxTileRow>
     23862                                                <MinTileCol>2062</MinTileCol>
     23863                                                <MaxTileCol>2065</MaxTileCol>
     23864                                        </TileMatrixLimits>
     23865                                        <TileMatrixLimits>
     23866                                                <TileMatrix>13</TileMatrix>
     23867                                                <MinTileRow>2995</MinTileRow>
     23868                                                <MaxTileRow>3001</MaxTileRow>
     23869                                                <MinTileCol>4124</MinTileCol>
     23870                                                <MaxTileCol>4130</MaxTileCol>
     23871                                        </TileMatrixLimits>
     23872                                        <TileMatrixLimits>
     23873                                                <TileMatrix>14</TileMatrix>
     23874                                                <MinTileRow>5990</MinTileRow>
     23875                                                <MaxTileRow>6002</MaxTileRow>
     23876                                                <MinTileCol>8248</MinTileCol>
     23877                                                <MaxTileCol>8260</MaxTileCol>
     23878                                        </TileMatrixLimits>
     23879                                        <TileMatrixLimits>
     23880                                                <TileMatrix>15</TileMatrix>
     23881                                                <MinTileRow>11981</MinTileRow>
     23882                                                <MaxTileRow>12005</MaxTileRow>
     23883                                                <MinTileCol>16496</MinTileCol>
     23884                                                <MaxTileCol>16520</MaxTileCol>
     23885                                        </TileMatrixLimits>
     23886                                        <TileMatrixLimits>
     23887                                                <TileMatrix>16</TileMatrix>
     23888                                                <MinTileRow>23962</MinTileRow>
     23889                                                <MaxTileRow>24011</MaxTileRow>
     23890                                                <MinTileCol>32992</MinTileCol>
     23891                                                <MaxTileCol>33040</MaxTileCol>
     23892                                        </TileMatrixLimits>
     23893                                        <TileMatrixLimits>
     23894                                                <TileMatrix>17</TileMatrix>
     23895                                                <MinTileRow>47925</MinTileRow>
     23896                                                <MaxTileRow>48022</MaxTileRow>
     23897                                                <MinTileCol>65984</MinTileCol>
     23898                                                <MaxTileCol>66081</MaxTileCol>
     23899                                        </TileMatrixLimits>
     23900                                        <TileMatrixLimits>
     23901                                                <TileMatrix>18</TileMatrix>
     23902                                                <MinTileRow>95851</MinTileRow>
     23903                                                <MaxTileRow>96044</MaxTileRow>
     23904                                                <MinTileCol>131969</MinTileCol>
     23905                                                <MaxTileCol>132162</MaxTileCol>
     23906                                        </TileMatrixLimits>
     23907                                        <TileMatrixLimits>
     23908                                                <TileMatrix>2</TileMatrix>
     23909                                                <MinTileRow>1</MinTileRow>
     23910                                                <MaxTileRow>1</MaxTileRow>
     23911                                                <MinTileCol>2</MinTileCol>
     23912                                                <MaxTileCol>2</MaxTileCol>
     23913                                        </TileMatrixLimits>
     23914                                        <TileMatrixLimits>
     23915                                                <TileMatrix>3</TileMatrix>
     23916                                                <MinTileRow>2</MinTileRow>
     23917                                                <MaxTileRow>2</MaxTileRow>
     23918                                                <MinTileCol>4</MinTileCol>
     23919                                                <MaxTileCol>4</MaxTileCol>
     23920                                        </TileMatrixLimits>
     23921                                        <TileMatrixLimits>
     23922                                                <TileMatrix>4</TileMatrix>
     23923                                                <MinTileRow>5</MinTileRow>
     23924                                                <MaxTileRow>5</MaxTileRow>
     23925                                                <MinTileCol>8</MinTileCol>
     23926                                                <MaxTileCol>8</MaxTileCol>
     23927                                        </TileMatrixLimits>
     23928                                        <TileMatrixLimits>
     23929                                                <TileMatrix>5</TileMatrix>
     23930                                                <MinTileRow>11</MinTileRow>
     23931                                                <MaxTileRow>11</MaxTileRow>
     23932                                                <MinTileCol>16</MinTileCol>
     23933                                                <MaxTileCol>16</MaxTileCol>
     23934                                        </TileMatrixLimits>
     23935                                        <TileMatrixLimits>
     23936                                                <TileMatrix>6</TileMatrix>
     23937                                                <MinTileRow>23</MinTileRow>
     23938                                                <MaxTileRow>23</MaxTileRow>
     23939                                                <MinTileCol>32</MinTileCol>
     23940                                                <MaxTileCol>32</MaxTileCol>
     23941                                        </TileMatrixLimits>
     23942                                        <TileMatrixLimits>
     23943                                                <TileMatrix>7</TileMatrix>
     23944                                                <MinTileRow>46</MinTileRow>
     23945                                                <MaxTileRow>46</MaxTileRow>
     23946                                                <MinTileCol>64</MinTileCol>
     23947                                                <MaxTileCol>64</MaxTileCol>
     23948                                        </TileMatrixLimits>
     23949                                        <TileMatrixLimits>
     23950                                                <TileMatrix>8</TileMatrix>
     23951                                                <MinTileRow>93</MinTileRow>
     23952                                                <MaxTileRow>93</MaxTileRow>
     23953                                                <MinTileCol>128</MinTileCol>
     23954                                                <MaxTileCol>129</MaxTileCol>
     23955                                        </TileMatrixLimits>
     23956                                        <TileMatrixLimits>
     23957                                                <TileMatrix>9</TileMatrix>
     23958                                                <MinTileRow>187</MinTileRow>
     23959                                                <MaxTileRow>187</MaxTileRow>
     23960                                                <MinTileCol>257</MinTileCol>
     23961                                                <MaxTileCol>258</MaxTileCol>
     23962                                        </TileMatrixLimits>
     23963                                </TileMatrixSetLimits>
     23964                        </TileMatrixSetLink>
     23965                </Layer>
     23966                <Layer>
     23967                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     23968                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     23969                        <ows:Keywords>
     23970                                <ows:Keyword>Photographies</ows:Keyword>
     23971                        </ows:Keywords>
     23972                        <ows:WGS84BoundingBox>
     23973                                <ows:LowerCorner>1.42959 43.4459</ows:LowerCorner>
     23974                                <ows:UpperCorner>1.72804 43.9805</ows:UpperCorner>
     23975                        </ows:WGS84BoundingBox>
     23976                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-09-38958697</ows:Identifier>
     23977                        <Style isDefault="true">
     23978                                <ows:Title>Données Brutes</ows:Title>
     23979                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     23980                                <ows:Keywords>
     23981                                        <ows:Keyword>Défaut</ows:Keyword>
     23982                                </ows:Keywords>
     23983                                <ows:Identifier>normal</ows:Identifier>
     23984                                <LegendURL format="image/jpeg" height="200"
     23985                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     23986                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     23987                        </Style>
     23988                        <Format>image/jpeg</Format>
     23989                        <TileMatrixSetLink>
     23990                                <TileMatrixSet>PM</TileMatrixSet>
     23991                                <TileMatrixSetLimits>
     23992                                        <TileMatrixLimits>
     23993                                                <TileMatrix>0</TileMatrix>
     23994                                                <MinTileRow>0</MinTileRow>
     23995                                                <MaxTileRow>0</MaxTileRow>
     23996                                                <MinTileCol>0</MinTileCol>
     23997                                                <MaxTileCol>0</MaxTileCol>
     23998                                        </TileMatrixLimits>
     23999                                        <TileMatrixLimits>
     24000                                                <TileMatrix>1</TileMatrix>
     24001                                                <MinTileRow>0</MinTileRow>
     24002                                                <MaxTileRow>0</MaxTileRow>
     24003                                                <MinTileCol>1</MinTileCol>
     24004                                                <MaxTileCol>1</MaxTileCol>
     24005                                        </TileMatrixLimits>
     24006                                        <TileMatrixLimits>
     24007                                                <TileMatrix>10</TileMatrix>
     24008                                                <MinTileRow>372</MinTileRow>
     24009                                                <MaxTileRow>374</MaxTileRow>
     24010                                                <MinTileCol>516</MinTileCol>
     24011                                                <MaxTileCol>516</MaxTileCol>
     24012                                        </TileMatrixLimits>
     24013                                        <TileMatrixLimits>
     24014                                                <TileMatrix>11</TileMatrix>
     24015                                                <MinTileRow>744</MinTileRow>
     24016                                                <MaxTileRow>749</MaxTileRow>
     24017                                                <MinTileCol>1032</MinTileCol>
     24018                                                <MaxTileCol>1033</MaxTileCol>
     24019                                        </TileMatrixLimits>
     24020                                        <TileMatrixLimits>
     24021                                                <TileMatrix>12</TileMatrix>
     24022                                                <MinTileRow>1489</MinTileRow>
     24023                                                <MaxTileRow>1498</MaxTileRow>
     24024                                                <MinTileCol>2064</MinTileCol>
     24025                                                <MaxTileCol>2067</MaxTileCol>
     24026                                        </TileMatrixLimits>
     24027                                        <TileMatrixLimits>
     24028                                                <TileMatrix>13</TileMatrix>
     24029                                                <MinTileRow>2979</MinTileRow>
     24030                                                <MaxTileRow>2996</MaxTileRow>
     24031                                                <MinTileCol>4128</MinTileCol>
     24032                                                <MaxTileCol>4135</MaxTileCol>
     24033                                        </TileMatrixLimits>
     24034                                        <TileMatrixLimits>
     24035                                                <TileMatrix>14</TileMatrix>
     24036                                                <MinTileRow>5958</MinTileRow>
     24037                                                <MaxTileRow>5992</MaxTileRow>
     24038                                                <MinTileCol>8257</MinTileCol>
     24039                                                <MaxTileCol>8270</MaxTileCol>
     24040                                        </TileMatrixLimits>
     24041                                        <TileMatrixLimits>
     24042                                                <TileMatrix>15</TileMatrix>
     24043                                                <MinTileRow>11917</MinTileRow>
     24044                                                <MaxTileRow>11984</MaxTileRow>
     24045                                                <MinTileCol>16515</MinTileCol>
     24046                                                <MaxTileCol>16540</MaxTileCol>
     24047                                        </TileMatrixLimits>
     24048                                        <TileMatrixLimits>
     24049                                                <TileMatrix>16</TileMatrix>
     24050                                                <MinTileRow>23835</MinTileRow>
     24051                                                <MaxTileRow>23969</MaxTileRow>
     24052                                                <MinTileCol>33030</MinTileCol>
     24053                                                <MaxTileCol>33081</MaxTileCol>
     24054                                        </TileMatrixLimits>
     24055                                        <TileMatrixLimits>
     24056                                                <TileMatrix>17</TileMatrix>
     24057                                                <MinTileRow>47671</MinTileRow>
     24058                                                <MaxTileRow>47938</MaxTileRow>
     24059                                                <MinTileCol>66060</MinTileCol>
     24060                                                <MaxTileCol>66163</MaxTileCol>
     24061                                        </TileMatrixLimits>
     24062                                        <TileMatrixLimits>
     24063                                                <TileMatrix>18</TileMatrix>
     24064                                                <MinTileRow>95342</MinTileRow>
     24065                                                <MaxTileRow>95876</MaxTileRow>
     24066                                                <MinTileCol>132120</MinTileCol>
     24067                                                <MaxTileCol>132326</MaxTileCol>
     24068                                        </TileMatrixLimits>
     24069                                        <TileMatrixLimits>
     24070                                                <TileMatrix>2</TileMatrix>
     24071                                                <MinTileRow>1</MinTileRow>
     24072                                                <MaxTileRow>1</MaxTileRow>
     24073                                                <MinTileCol>2</MinTileCol>
     24074                                                <MaxTileCol>2</MaxTileCol>
     24075                                        </TileMatrixLimits>
     24076                                        <TileMatrixLimits>
     24077                                                <TileMatrix>3</TileMatrix>
     24078                                                <MinTileRow>2</MinTileRow>
     24079                                                <MaxTileRow>2</MaxTileRow>
     24080                                                <MinTileCol>4</MinTileCol>
     24081                                                <MaxTileCol>4</MaxTileCol>
     24082                                        </TileMatrixLimits>
     24083                                        <TileMatrixLimits>
     24084                                                <TileMatrix>4</TileMatrix>
     24085                                                <MinTileRow>5</MinTileRow>
     24086                                                <MaxTileRow>5</MaxTileRow>
     24087                                                <MinTileCol>8</MinTileCol>
     24088                                                <MaxTileCol>8</MaxTileCol>
     24089                                        </TileMatrixLimits>
     24090                                        <TileMatrixLimits>
     24091                                                <TileMatrix>5</TileMatrix>
     24092                                                <MinTileRow>11</MinTileRow>
     24093                                                <MaxTileRow>11</MaxTileRow>
     24094                                                <MinTileCol>16</MinTileCol>
     24095                                                <MaxTileCol>16</MaxTileCol>
     24096                                        </TileMatrixLimits>
     24097                                        <TileMatrixLimits>
     24098                                                <TileMatrix>6</TileMatrix>
     24099                                                <MinTileRow>23</MinTileRow>
     24100                                                <MaxTileRow>23</MaxTileRow>
     24101                                                <MinTileCol>32</MinTileCol>
     24102                                                <MaxTileCol>32</MaxTileCol>
     24103                                        </TileMatrixLimits>
     24104                                        <TileMatrixLimits>
     24105                                                <TileMatrix>7</TileMatrix>
     24106                                                <MinTileRow>46</MinTileRow>
     24107                                                <MaxTileRow>46</MaxTileRow>
     24108                                                <MinTileCol>64</MinTileCol>
     24109                                                <MaxTileCol>64</MaxTileCol>
     24110                                        </TileMatrixLimits>
     24111                                        <TileMatrixLimits>
     24112                                                <TileMatrix>8</TileMatrix>
     24113                                                <MinTileRow>93</MinTileRow>
     24114                                                <MaxTileRow>93</MaxTileRow>
     24115                                                <MinTileCol>129</MinTileCol>
     24116                                                <MaxTileCol>129</MaxTileCol>
     24117                                        </TileMatrixLimits>
     24118                                        <TileMatrixLimits>
     24119                                                <TileMatrix>9</TileMatrix>
     24120                                                <MinTileRow>186</MinTileRow>
     24121                                                <MaxTileRow>187</MaxTileRow>
     24122                                                <MinTileCol>258</MinTileCol>
     24123                                                <MaxTileCol>258</MaxTileCol>
     24124                                        </TileMatrixLimits>
     24125                                </TileMatrixSetLimits>
     24126                        </TileMatrixSetLink>
     24127                </Layer>
     24128                <Layer>
     24129                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     24130                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     24131                        <ows:Keywords>
     24132                                <ows:Keyword>Photographies</ows:Keyword>
     24133                        </ows:Keywords>
     24134                        <ows:WGS84BoundingBox>
     24135                                <ows:LowerCorner>0.760919 43.0022</ows:LowerCorner>
     24136                                <ows:UpperCorner>1.05134 43.2325</ows:UpperCorner>
     24137                        </ows:WGS84BoundingBox>
     24138                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-22-39053199</ows:Identifier>
     24139                        <Style isDefault="true">
     24140                                <ows:Title>Données Brutes</ows:Title>
     24141                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24142                                <ows:Keywords>
     24143                                        <ows:Keyword>Défaut</ows:Keyword>
     24144                                </ows:Keywords>
     24145                                <ows:Identifier>normal</ows:Identifier>
     24146                                <LegendURL format="image/jpeg" height="200"
     24147                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24148                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24149                        </Style>
     24150                        <Format>image/jpeg</Format>
     24151                        <TileMatrixSetLink>
     24152                                <TileMatrixSet>PM</TileMatrixSet>
     24153                                <TileMatrixSetLimits>
     24154                                        <TileMatrixLimits>
     24155                                                <TileMatrix>0</TileMatrix>
     24156                                                <MinTileRow>0</MinTileRow>
     24157                                                <MaxTileRow>0</MaxTileRow>
     24158                                                <MinTileCol>0</MinTileCol>
     24159                                                <MaxTileCol>0</MaxTileCol>
     24160                                        </TileMatrixLimits>
     24161                                        <TileMatrixLimits>
     24162                                                <TileMatrix>1</TileMatrix>
     24163                                                <MinTileRow>0</MinTileRow>
     24164                                                <MaxTileRow>0</MaxTileRow>
     24165                                                <MinTileCol>1</MinTileCol>
     24166                                                <MaxTileCol>1</MaxTileCol>
     24167                                        </TileMatrixLimits>
     24168                                        <TileMatrixLimits>
     24169                                                <TileMatrix>10</TileMatrix>
     24170                                                <MinTileRow>375</MinTileRow>
     24171                                                <MaxTileRow>376</MaxTileRow>
     24172                                                <MinTileCol>514</MinTileCol>
     24173                                                <MaxTileCol>514</MaxTileCol>
     24174                                        </TileMatrixLimits>
     24175                                        <TileMatrixLimits>
     24176                                                <TileMatrix>11</TileMatrix>
     24177                                                <MinTileRow>750</MinTileRow>
     24178                                                <MaxTileRow>752</MaxTileRow>
     24179                                                <MinTileCol>1028</MinTileCol>
     24180                                                <MaxTileCol>1029</MaxTileCol>
     24181                                        </TileMatrixLimits>
     24182                                        <TileMatrixLimits>
     24183                                                <TileMatrix>12</TileMatrix>
     24184                                                <MinTileRow>1501</MinTileRow>
     24185                                                <MaxTileRow>1504</MaxTileRow>
     24186                                                <MinTileCol>2056</MinTileCol>
     24187                                                <MaxTileCol>2059</MaxTileCol>
     24188                                        </TileMatrixLimits>
     24189                                        <TileMatrixLimits>
     24190                                                <TileMatrix>13</TileMatrix>
     24191                                                <MinTileRow>3003</MinTileRow>
     24192                                                <MaxTileRow>3009</MaxTileRow>
     24193                                                <MinTileCol>4113</MinTileCol>
     24194                                                <MaxTileCol>4119</MaxTileCol>
     24195                                        </TileMatrixLimits>
     24196                                        <TileMatrixLimits>
     24197                                                <TileMatrix>14</TileMatrix>
     24198                                                <MinTileRow>6006</MinTileRow>
     24199                                                <MaxTileRow>6019</MaxTileRow>
     24200                                                <MinTileCol>8226</MinTileCol>
     24201                                                <MaxTileCol>8239</MaxTileCol>
     24202                                        </TileMatrixLimits>
     24203                                        <TileMatrixLimits>
     24204                                                <TileMatrix>15</TileMatrix>
     24205                                                <MinTileRow>12012</MinTileRow>
     24206                                                <MaxTileRow>12039</MaxTileRow>
     24207                                                <MinTileCol>16453</MinTileCol>
     24208                                                <MaxTileCol>16479</MaxTileCol>
     24209                                        </TileMatrixLimits>
     24210                                        <TileMatrixLimits>
     24211                                                <TileMatrix>16</TileMatrix>
     24212                                                <MinTileRow>24024</MinTileRow>
     24213                                                <MaxTileRow>24079</MaxTileRow>
     24214                                                <MinTileCol>32906</MinTileCol>
     24215                                                <MaxTileCol>32958</MaxTileCol>
     24216                                        </TileMatrixLimits>
     24217                                        <TileMatrixLimits>
     24218                                                <TileMatrix>17</TileMatrix>
     24219                                                <MinTileRow>48048</MinTileRow>
     24220                                                <MaxTileRow>48159</MaxTileRow>
     24221                                                <MinTileCol>65812</MinTileCol>
     24222                                                <MaxTileCol>65917</MaxTileCol>
     24223                                        </TileMatrixLimits>
     24224                                        <TileMatrixLimits>
     24225                                                <TileMatrix>18</TileMatrix>
     24226                                                <MinTileRow>96097</MinTileRow>
     24227                                                <MaxTileRow>96318</MaxTileRow>
     24228                                                <MinTileCol>131625</MinTileCol>
     24229                                                <MaxTileCol>131835</MaxTileCol>
     24230                                        </TileMatrixLimits>
     24231                                        <TileMatrixLimits>
     24232                                                <TileMatrix>2</TileMatrix>
     24233                                                <MinTileRow>1</MinTileRow>
     24234                                                <MaxTileRow>1</MaxTileRow>
     24235                                                <MinTileCol>2</MinTileCol>
     24236                                                <MaxTileCol>2</MaxTileCol>
     24237                                        </TileMatrixLimits>
     24238                                        <TileMatrixLimits>
     24239                                                <TileMatrix>3</TileMatrix>
     24240                                                <MinTileRow>2</MinTileRow>
     24241                                                <MaxTileRow>2</MaxTileRow>
     24242                                                <MinTileCol>4</MinTileCol>
     24243                                                <MaxTileCol>4</MaxTileCol>
     24244                                        </TileMatrixLimits>
     24245                                        <TileMatrixLimits>
     24246                                                <TileMatrix>4</TileMatrix>
     24247                                                <MinTileRow>5</MinTileRow>
     24248                                                <MaxTileRow>5</MaxTileRow>
     24249                                                <MinTileCol>8</MinTileCol>
     24250                                                <MaxTileCol>8</MaxTileCol>
     24251                                        </TileMatrixLimits>
     24252                                        <TileMatrixLimits>
     24253                                                <TileMatrix>5</TileMatrix>
     24254                                                <MinTileRow>11</MinTileRow>
     24255                                                <MaxTileRow>11</MaxTileRow>
     24256                                                <MinTileCol>16</MinTileCol>
     24257                                                <MaxTileCol>16</MaxTileCol>
     24258                                        </TileMatrixLimits>
     24259                                        <TileMatrixLimits>
     24260                                                <TileMatrix>6</TileMatrix>
     24261                                                <MinTileRow>23</MinTileRow>
     24262                                                <MaxTileRow>23</MaxTileRow>
     24263                                                <MinTileCol>32</MinTileCol>
     24264                                                <MaxTileCol>32</MaxTileCol>
     24265                                        </TileMatrixLimits>
     24266                                        <TileMatrixLimits>
     24267                                                <TileMatrix>7</TileMatrix>
     24268                                                <MinTileRow>46</MinTileRow>
     24269                                                <MaxTileRow>47</MaxTileRow>
     24270                                                <MinTileCol>64</MinTileCol>
     24271                                                <MaxTileCol>64</MaxTileCol>
     24272                                        </TileMatrixLimits>
     24273                                        <TileMatrixLimits>
     24274                                                <TileMatrix>8</TileMatrix>
     24275                                                <MinTileRow>93</MinTileRow>
     24276                                                <MaxTileRow>94</MaxTileRow>
     24277                                                <MinTileCol>128</MinTileCol>
     24278                                                <MaxTileCol>128</MaxTileCol>
     24279                                        </TileMatrixLimits>
     24280                                        <TileMatrixLimits>
     24281                                                <TileMatrix>9</TileMatrix>
     24282                                                <MinTileRow>187</MinTileRow>
     24283                                                <MaxTileRow>188</MaxTileRow>
     24284                                                <MinTileCol>257</MinTileCol>
     24285                                                <MaxTileCol>257</MaxTileCol>
     24286                                        </TileMatrixLimits>
     24287                                </TileMatrixSetLimits>
     24288                        </TileMatrixSetLink>
     24289                </Layer>
     24290                <Layer>
     24291                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     24292                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     24293                        <ows:Keywords>
     24294                                <ows:Keyword>Photographies</ows:Keyword>
     24295                        </ows:Keywords>
     24296                        <ows:WGS84BoundingBox>
     24297                                <ows:LowerCorner>0.980115 43.1329</ows:LowerCorner>
     24298                                <ows:UpperCorner>1.31723 44.0017</ows:UpperCorner>
     24299                        </ows:WGS84BoundingBox>
     24300                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-07-26-40067944</ows:Identifier>
     24301                        <Style isDefault="true">
     24302                                <ows:Title>Données Brutes</ows:Title>
     24303                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24304                                <ows:Keywords>
     24305                                        <ows:Keyword>Défaut</ows:Keyword>
     24306                                </ows:Keywords>
     24307                                <ows:Identifier>normal</ows:Identifier>
     24308                                <LegendURL format="image/jpeg" height="200"
     24309                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24310                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24311                        </Style>
     24312                        <Format>image/jpeg</Format>
     24313                        <TileMatrixSetLink>
     24314                                <TileMatrixSet>PM</TileMatrixSet>
     24315                                <TileMatrixSetLimits>
     24316                                        <TileMatrixLimits>
     24317                                                <TileMatrix>0</TileMatrix>
     24318                                                <MinTileRow>0</MinTileRow>
     24319                                                <MaxTileRow>0</MaxTileRow>
     24320                                                <MinTileCol>0</MinTileCol>
     24321                                                <MaxTileCol>0</MaxTileCol>
     24322                                        </TileMatrixLimits>
     24323                                        <TileMatrixLimits>
     24324                                                <TileMatrix>1</TileMatrix>
     24325                                                <MinTileRow>0</MinTileRow>
     24326                                                <MaxTileRow>0</MaxTileRow>
     24327                                                <MinTileCol>1</MinTileCol>
     24328                                                <MaxTileCol>1</MaxTileCol>
     24329                                        </TileMatrixLimits>
     24330                                        <TileMatrixLimits>
     24331                                                <TileMatrix>10</TileMatrix>
     24332                                                <MinTileRow>372</MinTileRow>
     24333                                                <MaxTileRow>375</MaxTileRow>
     24334                                                <MinTileCol>514</MinTileCol>
     24335                                                <MaxTileCol>515</MaxTileCol>
     24336                                        </TileMatrixLimits>
     24337                                        <TileMatrixLimits>
     24338                                                <TileMatrix>11</TileMatrix>
     24339                                                <MinTileRow>744</MinTileRow>
     24340                                                <MaxTileRow>751</MaxTileRow>
     24341                                                <MinTileCol>1029</MinTileCol>
     24342                                                <MaxTileCol>1031</MaxTileCol>
     24343                                        </TileMatrixLimits>
     24344                                        <TileMatrixLimits>
     24345                                                <TileMatrix>12</TileMatrix>
     24346                                                <MinTileRow>1489</MinTileRow>
     24347                                                <MaxTileRow>1502</MaxTileRow>
     24348                                                <MinTileCol>2059</MinTileCol>
     24349                                                <MaxTileCol>2062</MaxTileCol>
     24350                                        </TileMatrixLimits>
     24351                                        <TileMatrixLimits>
     24352                                                <TileMatrix>13</TileMatrix>
     24353                                                <MinTileRow>2978</MinTileRow>
     24354                                                <MaxTileRow>3005</MaxTileRow>
     24355                                                <MinTileCol>4118</MinTileCol>
     24356                                                <MaxTileCol>4125</MaxTileCol>
     24357                                        </TileMatrixLimits>
     24358                                        <TileMatrixLimits>
     24359                                                <TileMatrix>14</TileMatrix>
     24360                                                <MinTileRow>5957</MinTileRow>
     24361                                                <MaxTileRow>6011</MaxTileRow>
     24362                                                <MinTileCol>8237</MinTileCol>
     24363                                                <MaxTileCol>8251</MaxTileCol>
     24364                                        </TileMatrixLimits>
     24365                                        <TileMatrixLimits>
     24366                                                <TileMatrix>15</TileMatrix>
     24367                                                <MinTileRow>11915</MinTileRow>
     24368                                                <MaxTileRow>12023</MaxTileRow>
     24369                                                <MinTileCol>16475</MinTileCol>
     24370                                                <MaxTileCol>16502</MaxTileCol>
     24371                                        </TileMatrixLimits>
     24372                                        <TileMatrixLimits>
     24373                                                <TileMatrix>16</TileMatrix>
     24374                                                <MinTileRow>23830</MinTileRow>
     24375                                                <MaxTileRow>24047</MaxTileRow>
     24376                                                <MinTileCol>32950</MinTileCol>
     24377                                                <MaxTileCol>33004</MaxTileCol>
     24378                                        </TileMatrixLimits>
     24379                                        <TileMatrixLimits>
     24380                                                <TileMatrix>17</TileMatrix>
     24381                                                <MinTileRow>47660</MinTileRow>
     24382                                                <MaxTileRow>48094</MaxTileRow>
     24383                                                <MinTileCol>65900</MinTileCol>
     24384                                                <MaxTileCol>66008</MaxTileCol>
     24385                                        </TileMatrixLimits>
     24386                                        <TileMatrixLimits>
     24387                                                <TileMatrix>18</TileMatrix>
     24388                                                <MinTileRow>95321</MinTileRow>
     24389                                                <MaxTileRow>96188</MaxTileRow>
     24390                                                <MinTileCol>131801</MinTileCol>
     24391                                                <MaxTileCol>132017</MaxTileCol>
     24392                                        </TileMatrixLimits>
     24393                                        <TileMatrixLimits>
     24394                                                <TileMatrix>2</TileMatrix>
     24395                                                <MinTileRow>1</MinTileRow>
     24396                                                <MaxTileRow>1</MaxTileRow>
     24397                                                <MinTileCol>2</MinTileCol>
     24398                                                <MaxTileCol>2</MaxTileCol>
     24399                                        </TileMatrixLimits>
     24400                                        <TileMatrixLimits>
     24401                                                <TileMatrix>3</TileMatrix>
     24402                                                <MinTileRow>2</MinTileRow>
     24403                                                <MaxTileRow>2</MaxTileRow>
     24404                                                <MinTileCol>4</MinTileCol>
     24405                                                <MaxTileCol>4</MaxTileCol>
     24406                                        </TileMatrixLimits>
     24407                                        <TileMatrixLimits>
     24408                                                <TileMatrix>4</TileMatrix>
     24409                                                <MinTileRow>5</MinTileRow>
     24410                                                <MaxTileRow>5</MaxTileRow>
     24411                                                <MinTileCol>8</MinTileCol>
     24412                                                <MaxTileCol>8</MaxTileCol>
     24413                                        </TileMatrixLimits>
     24414                                        <TileMatrixLimits>
     24415                                                <TileMatrix>5</TileMatrix>
     24416                                                <MinTileRow>11</MinTileRow>
     24417                                                <MaxTileRow>11</MaxTileRow>
     24418                                                <MinTileCol>16</MinTileCol>
     24419                                                <MaxTileCol>16</MaxTileCol>
     24420                                        </TileMatrixLimits>
     24421                                        <TileMatrixLimits>
     24422                                                <TileMatrix>6</TileMatrix>
     24423                                                <MinTileRow>23</MinTileRow>
     24424                                                <MaxTileRow>23</MaxTileRow>
     24425                                                <MinTileCol>32</MinTileCol>
     24426                                                <MaxTileCol>32</MaxTileCol>
     24427                                        </TileMatrixLimits>
     24428                                        <TileMatrixLimits>
     24429                                                <TileMatrix>7</TileMatrix>
     24430                                                <MinTileRow>46</MinTileRow>
     24431                                                <MaxTileRow>46</MaxTileRow>
     24432                                                <MinTileCol>64</MinTileCol>
     24433                                                <MaxTileCol>64</MaxTileCol>
     24434                                        </TileMatrixLimits>
     24435                                        <TileMatrixLimits>
     24436                                                <TileMatrix>8</TileMatrix>
     24437                                                <MinTileRow>93</MinTileRow>
     24438                                                <MaxTileRow>93</MaxTileRow>
     24439                                                <MinTileCol>128</MinTileCol>
     24440                                                <MaxTileCol>128</MaxTileCol>
     24441                                        </TileMatrixLimits>
     24442                                        <TileMatrixLimits>
     24443                                                <TileMatrix>9</TileMatrix>
     24444                                                <MinTileRow>186</MinTileRow>
     24445                                                <MaxTileRow>187</MaxTileRow>
     24446                                                <MinTileCol>257</MinTileCol>
     24447                                                <MaxTileCol>257</MaxTileCol>
     24448                                        </TileMatrixLimits>
     24449                                </TileMatrixSetLimits>
     24450                        </TileMatrixSetLink>
     24451                </Layer>
     24452                <Layer>
     24453                        <ows:Title>Orthophotographies Geosud de Departement-31 2013</ows:Title>
     24454                        <ows:Abstract>Orthophotographies satellites du Departement-31 issues du projet Geosud.</ows:Abstract>
     24455                        <ows:Keywords>
     24456                                <ows:Keyword>Photographies</ows:Keyword>
     24457                        </ows:Keywords>
     24458                        <ows:WGS84BoundingBox>
     24459                                <ows:LowerCorner>0.767907 43.4705</ows:LowerCorner>
     24460                                <ows:UpperCorner>1.08489 44.0069</ows:UpperCorner>
     24461                        </ows:WGS84BoundingBox>
     24462                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Departement-31-2013-08-02-39888571</ows:Identifier>
     24463                        <Style isDefault="true">
     24464                                <ows:Title>Données Brutes</ows:Title>
     24465                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24466                                <ows:Keywords>
     24467                                        <ows:Keyword>Défaut</ows:Keyword>
     24468                                </ows:Keywords>
     24469                                <ows:Identifier>normal</ows:Identifier>
     24470                                <LegendURL format="image/jpeg" height="200"
     24471                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24472                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24473                        </Style>
     24474                        <Format>image/jpeg</Format>
     24475                        <TileMatrixSetLink>
     24476                                <TileMatrixSet>PM</TileMatrixSet>
     24477                                <TileMatrixSetLimits>
     24478                                        <TileMatrixLimits>
     24479                                                <TileMatrix>0</TileMatrix>
     24480                                                <MinTileRow>0</MinTileRow>
     24481                                                <MaxTileRow>0</MaxTileRow>
     24482                                                <MinTileCol>0</MinTileCol>
     24483                                                <MaxTileCol>0</MaxTileCol>
     24484                                        </TileMatrixLimits>
     24485                                        <TileMatrixLimits>
     24486                                                <TileMatrix>1</TileMatrix>
     24487                                                <MinTileRow>0</MinTileRow>
     24488                                                <MaxTileRow>0</MaxTileRow>
     24489                                                <MinTileCol>1</MinTileCol>
     24490                                                <MaxTileCol>1</MaxTileCol>
     24491                                        </TileMatrixLimits>
     24492                                        <TileMatrixLimits>
     24493                                                <TileMatrix>10</TileMatrix>
     24494                                                <MinTileRow>372</MinTileRow>
     24495                                                <MaxTileRow>374</MaxTileRow>
     24496                                                <MinTileCol>514</MinTileCol>
     24497                                                <MaxTileCol>515</MaxTileCol>
     24498                                        </TileMatrixLimits>
     24499                                        <TileMatrixLimits>
     24500                                                <TileMatrix>11</TileMatrix>
     24501                                                <MinTileRow>744</MinTileRow>
     24502                                                <MaxTileRow>748</MaxTileRow>
     24503                                                <MinTileCol>1028</MinTileCol>
     24504                                                <MaxTileCol>1030</MaxTileCol>
     24505                                        </TileMatrixLimits>
     24506                                        <TileMatrixLimits>
     24507                                                <TileMatrix>12</TileMatrix>
     24508                                                <MinTileRow>1489</MinTileRow>
     24509                                                <MaxTileRow>1497</MaxTileRow>
     24510                                                <MinTileCol>2056</MinTileCol>
     24511                                                <MaxTileCol>2060</MaxTileCol>
     24512                                        </TileMatrixLimits>
     24513                                        <TileMatrixLimits>
     24514                                                <TileMatrix>13</TileMatrix>
     24515                                                <MinTileRow>2978</MinTileRow>
     24516                                                <MaxTileRow>2995</MaxTileRow>
     24517                                                <MinTileCol>4113</MinTileCol>
     24518                                                <MaxTileCol>4120</MaxTileCol>
     24519                                        </TileMatrixLimits>
     24520                                        <TileMatrixLimits>
     24521                                                <TileMatrix>14</TileMatrix>
     24522                                                <MinTileRow>5957</MinTileRow>
     24523                                                <MaxTileRow>5990</MaxTileRow>
     24524                                                <MinTileCol>8227</MinTileCol>
     24525                                                <MaxTileCol>8241</MaxTileCol>
     24526                                        </TileMatrixLimits>
     24527                                        <TileMatrixLimits>
     24528                                                <TileMatrix>15</TileMatrix>
     24529                                                <MinTileRow>11914</MinTileRow>
     24530                                                <MaxTileRow>11981</MaxTileRow>
     24531                                                <MinTileCol>16455</MinTileCol>
     24532                                                <MaxTileCol>16482</MaxTileCol>
     24533                                        </TileMatrixLimits>
     24534                                        <TileMatrixLimits>
     24535                                                <TileMatrix>16</TileMatrix>
     24536                                                <MinTileRow>23828</MinTileRow>
     24537                                                <MaxTileRow>23963</MaxTileRow>
     24538                                                <MinTileCol>32911</MinTileCol>
     24539                                                <MaxTileCol>32964</MaxTileCol>
     24540                                        </TileMatrixLimits>
     24541                                        <TileMatrixLimits>
     24542                                                <TileMatrix>17</TileMatrix>
     24543                                                <MinTileRow>47656</MinTileRow>
     24544                                                <MaxTileRow>47927</MaxTileRow>
     24545                                                <MinTileCol>65822</MinTileCol>
     24546                                                <MaxTileCol>65929</MaxTileCol>
     24547                                        </TileMatrixLimits>
     24548                                        <TileMatrixLimits>
     24549                                                <TileMatrix>18</TileMatrix>
     24550                                                <MinTileRow>95313</MinTileRow>
     24551                                                <MaxTileRow>95854</MaxTileRow>
     24552                                                <MinTileCol>131644</MinTileCol>
     24553                                                <MaxTileCol>131858</MaxTileCol>
     24554                                        </TileMatrixLimits>
     24555                                        <TileMatrixLimits>
     24556                                                <TileMatrix>2</TileMatrix>
     24557                                                <MinTileRow>1</MinTileRow>
     24558                                                <MaxTileRow>1</MaxTileRow>
     24559                                                <MinTileCol>2</MinTileCol>
     24560                                                <MaxTileCol>2</MaxTileCol>
     24561                                        </TileMatrixLimits>
     24562                                        <TileMatrixLimits>
     24563                                                <TileMatrix>3</TileMatrix>
     24564                                                <MinTileRow>2</MinTileRow>
     24565                                                <MaxTileRow>2</MaxTileRow>
     24566                                                <MinTileCol>4</MinTileCol>
     24567                                                <MaxTileCol>4</MaxTileCol>
     24568                                        </TileMatrixLimits>
     24569                                        <TileMatrixLimits>
     24570                                                <TileMatrix>4</TileMatrix>
     24571                                                <MinTileRow>5</MinTileRow>
     24572                                                <MaxTileRow>5</MaxTileRow>
     24573                                                <MinTileCol>8</MinTileCol>
     24574                                                <MaxTileCol>8</MaxTileCol>
     24575                                        </TileMatrixLimits>
     24576                                        <TileMatrixLimits>
     24577                                                <TileMatrix>5</TileMatrix>
     24578                                                <MinTileRow>11</MinTileRow>
     24579                                                <MaxTileRow>11</MaxTileRow>
     24580                                                <MinTileCol>16</MinTileCol>
     24581                                                <MaxTileCol>16</MaxTileCol>
     24582                                        </TileMatrixLimits>
     24583                                        <TileMatrixLimits>
     24584                                                <TileMatrix>6</TileMatrix>
     24585                                                <MinTileRow>23</MinTileRow>
     24586                                                <MaxTileRow>23</MaxTileRow>
     24587                                                <MinTileCol>32</MinTileCol>
     24588                                                <MaxTileCol>32</MaxTileCol>
     24589                                        </TileMatrixLimits>
     24590                                        <TileMatrixLimits>
     24591                                                <TileMatrix>7</TileMatrix>
     24592                                                <MinTileRow>46</MinTileRow>
     24593                                                <MaxTileRow>46</MaxTileRow>
     24594                                                <MinTileCol>64</MinTileCol>
     24595                                                <MaxTileCol>64</MaxTileCol>
     24596                                        </TileMatrixLimits>
     24597                                        <TileMatrixLimits>
     24598                                                <TileMatrix>8</TileMatrix>
     24599                                                <MinTileRow>93</MinTileRow>
     24600                                                <MaxTileRow>93</MaxTileRow>
     24601                                                <MinTileCol>128</MinTileCol>
     24602                                                <MaxTileCol>128</MaxTileCol>
     24603                                        </TileMatrixLimits>
     24604                                        <TileMatrixLimits>
     24605                                                <TileMatrix>9</TileMatrix>
     24606                                                <MinTileRow>186</MinTileRow>
     24607                                                <MaxTileRow>187</MaxTileRow>
     24608                                                <MinTileCol>257</MinTileCol>
     24609                                                <MaxTileCol>257</MaxTileCol>
     24610                                        </TileMatrixLimits>
     24611                                </TileMatrixSetLimits>
     24612                        </TileMatrixSetLink>
     24613                </Layer>
     24614                <Layer>
     24615                        <ows:Title>Orthophotographies Geosud de EVREUX 2014</ows:Title>
     24616                        <ows:Abstract>Orthophotographies satellites de EVREUX issues du projet Geosud.</ows:Abstract>
     24617                        <ows:Keywords>
     24618                                <ows:Keyword>Photographies</ows:Keyword>
     24619                        </ows:Keywords>
     24620                        <ows:WGS84BoundingBox>
     24621                                <ows:LowerCorner>0.973172 48.913</ows:LowerCorner>
     24622                                <ows:UpperCorner>1.26697 49.1062</ows:UpperCorner>
     24623                        </ows:WGS84BoundingBox>
     24624                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_EVREUX-2014-09-16-39571428</ows:Identifier>
     24625                        <Style isDefault="true">
     24626                                <ows:Title>Données Brutes</ows:Title>
     24627                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24628                                <ows:Keywords>
     24629                                        <ows:Keyword>Défaut</ows:Keyword>
     24630                                </ows:Keywords>
     24631                                <ows:Identifier>normal</ows:Identifier>
     24632                                <LegendURL format="image/jpeg" height="200"
     24633                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24634                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24635                        </Style>
     24636                        <Format>image/jpeg</Format>
     24637                        <TileMatrixSetLink>
     24638                                <TileMatrixSet>PM</TileMatrixSet>
     24639                                <TileMatrixSetLimits>
     24640                                        <TileMatrixLimits>
     24641                                                <TileMatrix>0</TileMatrix>
     24642                                                <MinTileRow>0</MinTileRow>
     24643                                                <MaxTileRow>0</MaxTileRow>
     24644                                                <MinTileCol>0</MinTileCol>
     24645                                                <MaxTileCol>0</MaxTileCol>
     24646                                        </TileMatrixLimits>
     24647                                        <TileMatrixLimits>
     24648                                                <TileMatrix>1</TileMatrix>
     24649                                                <MinTileRow>0</MinTileRow>
     24650                                                <MaxTileRow>0</MaxTileRow>
     24651                                                <MinTileCol>1</MinTileCol>
     24652                                                <MaxTileCol>1</MaxTileCol>
     24653                                        </TileMatrixLimits>
     24654                                        <TileMatrixLimits>
     24655                                                <TileMatrix>10</TileMatrix>
     24656                                                <MinTileRow>351</MinTileRow>
     24657                                                <MaxTileRow>352</MaxTileRow>
     24658                                                <MinTileCol>514</MinTileCol>
     24659                                                <MaxTileCol>515</MaxTileCol>
     24660                                        </TileMatrixLimits>
     24661                                        <TileMatrixLimits>
     24662                                                <TileMatrix>11</TileMatrix>
     24663                                                <MinTileRow>702</MinTileRow>
     24664                                                <MaxTileRow>704</MaxTileRow>
     24665                                                <MinTileCol>1029</MinTileCol>
     24666                                                <MaxTileCol>1031</MaxTileCol>
     24667                                        </TileMatrixLimits>
     24668                                        <TileMatrixLimits>
     24669                                                <TileMatrix>12</TileMatrix>
     24670                                                <MinTileRow>1404</MinTileRow>
     24671                                                <MaxTileRow>1408</MaxTileRow>
     24672                                                <MinTileCol>2059</MinTileCol>
     24673                                                <MaxTileCol>2062</MaxTileCol>
     24674                                        </TileMatrixLimits>
     24675                                        <TileMatrixLimits>
     24676                                                <TileMatrix>13</TileMatrix>
     24677                                                <MinTileRow>2809</MinTileRow>
     24678                                                <MaxTileRow>2816</MaxTileRow>
     24679                                                <MinTileCol>4118</MinTileCol>
     24680                                                <MaxTileCol>4124</MaxTileCol>
     24681                                        </TileMatrixLimits>
     24682                                        <TileMatrixLimits>
     24683                                                <TileMatrix>14</TileMatrix>
     24684                                                <MinTileRow>5619</MinTileRow>
     24685                                                <MaxTileRow>5632</MaxTileRow>
     24686                                                <MinTileCol>8236</MinTileCol>
     24687                                                <MaxTileCol>8249</MaxTileCol>
     24688                                        </TileMatrixLimits>
     24689                                        <TileMatrixLimits>
     24690                                                <TileMatrix>15</TileMatrix>
     24691                                                <MinTileRow>11238</MinTileRow>
     24692                                                <MaxTileRow>11265</MaxTileRow>
     24693                                                <MinTileCol>16472</MinTileCol>
     24694                                                <MaxTileCol>16499</MaxTileCol>
     24695                                        </TileMatrixLimits>
     24696                                        <TileMatrixLimits>
     24697                                                <TileMatrix>16</TileMatrix>
     24698                                                <MinTileRow>22477</MinTileRow>
     24699                                                <MaxTileRow>22530</MaxTileRow>
     24700                                                <MinTileCol>32945</MinTileCol>
     24701                                                <MaxTileCol>32998</MaxTileCol>
     24702                                        </TileMatrixLimits>
     24703                                        <TileMatrixLimits>
     24704                                                <TileMatrix>17</TileMatrix>
     24705                                                <MinTileRow>44954</MinTileRow>
     24706                                                <MaxTileRow>45061</MaxTileRow>
     24707                                                <MinTileCol>65891</MinTileCol>
     24708                                                <MaxTileCol>65997</MaxTileCol>
     24709                                        </TileMatrixLimits>
     24710                                        <TileMatrixLimits>
     24711                                                <TileMatrix>18</TileMatrix>
     24712                                                <MinTileRow>89908</MinTileRow>
     24713                                                <MaxTileRow>90122</MaxTileRow>
     24714                                                <MinTileCol>131782</MinTileCol>
     24715                                                <MaxTileCol>131994</MaxTileCol>
     24716                                        </TileMatrixLimits>
     24717                                        <TileMatrixLimits>
     24718                                                <TileMatrix>2</TileMatrix>
     24719                                                <MinTileRow>1</MinTileRow>
     24720                                                <MaxTileRow>1</MaxTileRow>
     24721                                                <MinTileCol>2</MinTileCol>
     24722                                                <MaxTileCol>2</MaxTileCol>
     24723                                        </TileMatrixLimits>
     24724                                        <TileMatrixLimits>
     24725                                                <TileMatrix>3</TileMatrix>
     24726                                                <MinTileRow>2</MinTileRow>
     24727                                                <MaxTileRow>2</MaxTileRow>
     24728                                                <MinTileCol>4</MinTileCol>
     24729                                                <MaxTileCol>4</MaxTileCol>
     24730                                        </TileMatrixLimits>
     24731                                        <TileMatrixLimits>
     24732                                                <TileMatrix>4</TileMatrix>
     24733                                                <MinTileRow>5</MinTileRow>
     24734                                                <MaxTileRow>5</MaxTileRow>
     24735                                                <MinTileCol>8</MinTileCol>
     24736                                                <MaxTileCol>8</MaxTileCol>
     24737                                        </TileMatrixLimits>
     24738                                        <TileMatrixLimits>
     24739                                                <TileMatrix>5</TileMatrix>
     24740                                                <MinTileRow>10</MinTileRow>
     24741                                                <MaxTileRow>11</MaxTileRow>
     24742                                                <MinTileCol>16</MinTileCol>
     24743                                                <MaxTileCol>16</MaxTileCol>
     24744                                        </TileMatrixLimits>
     24745                                        <TileMatrixLimits>
     24746                                                <TileMatrix>6</TileMatrix>
     24747                                                <MinTileRow>21</MinTileRow>
     24748                                                <MaxTileRow>22</MaxTileRow>
     24749                                                <MinTileCol>32</MinTileCol>
     24750                                                <MaxTileCol>32</MaxTileCol>
     24751                                        </TileMatrixLimits>
     24752                                        <TileMatrixLimits>
     24753                                                <TileMatrix>7</TileMatrix>
     24754                                                <MinTileRow>43</MinTileRow>
     24755                                                <MaxTileRow>44</MaxTileRow>
     24756                                                <MinTileCol>64</MinTileCol>
     24757                                                <MaxTileCol>64</MaxTileCol>
     24758                                        </TileMatrixLimits>
     24759                                        <TileMatrixLimits>
     24760                                                <TileMatrix>8</TileMatrix>
     24761                                                <MinTileRow>87</MinTileRow>
     24762                                                <MaxTileRow>88</MaxTileRow>
     24763                                                <MinTileCol>128</MinTileCol>
     24764                                                <MaxTileCol>128</MaxTileCol>
     24765                                        </TileMatrixLimits>
     24766                                        <TileMatrixLimits>
     24767                                                <TileMatrix>9</TileMatrix>
     24768                                                <MinTileRow>175</MinTileRow>
     24769                                                <MaxTileRow>176</MaxTileRow>
     24770                                                <MinTileCol>257</MinTileCol>
     24771                                                <MaxTileCol>257</MaxTileCol>
     24772                                        </TileMatrixLimits>
     24773                                </TileMatrixSetLimits>
     24774                        </TileMatrixSetLink>
     24775                </Layer>
     24776                <Layer>
     24777                        <ows:Title>Orthophotographies Geosud de FRANCHE-COMTE 2014</ows:Title>
     24778                        <ows:Abstract>Orthophotographies satellites de FRANCHE-COMTE issues du projet Geosud.</ows:Abstract>
     24779                        <ows:Keywords>
     24780                                <ows:Keyword>Photographies</ows:Keyword>
     24781                        </ows:Keywords>
     24782                        <ows:WGS84BoundingBox>
     24783                                <ows:LowerCorner>5.20696 46.2001</ows:LowerCorner>
     24784                                <ows:UpperCorner>7.21284 48.0605</ows:UpperCorner>
     24785                        </ows:WGS84BoundingBox>
     24786                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_FRANCHE-COMTE-2014</ows:Identifier>
     24787                        <Style isDefault="true">
     24788                                <ows:Title>Données Brutes</ows:Title>
     24789                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24790                                <ows:Keywords>
     24791                                        <ows:Keyword>Défaut</ows:Keyword>
     24792                                </ows:Keywords>
     24793                                <ows:Identifier>normal</ows:Identifier>
     24794                                <LegendURL format="image/jpeg" height="200"
     24795                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24796                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24797                        </Style>
     24798                        <Format>image/jpeg</Format>
     24799                        <TileMatrixSetLink>
     24800                                <TileMatrixSet>PM</TileMatrixSet>
     24801                                <TileMatrixSetLimits>
     24802                                        <TileMatrixLimits>
     24803                                                <TileMatrix>0</TileMatrix>
     24804                                                <MinTileRow>0</MinTileRow>
     24805                                                <MaxTileRow>0</MaxTileRow>
     24806                                                <MinTileCol>0</MinTileCol>
     24807                                                <MaxTileCol>0</MaxTileCol>
     24808                                        </TileMatrixLimits>
     24809                                        <TileMatrixLimits>
     24810                                                <TileMatrix>1</TileMatrix>
     24811                                                <MinTileRow>0</MinTileRow>
     24812                                                <MaxTileRow>0</MaxTileRow>
     24813                                                <MinTileCol>1</MinTileCol>
     24814                                                <MaxTileCol>1</MaxTileCol>
     24815                                        </TileMatrixLimits>
     24816                                        <TileMatrixLimits>
     24817                                                <TileMatrix>10</TileMatrix>
     24818                                                <MinTileRow>355</MinTileRow>
     24819                                                <MaxTileRow>363</MaxTileRow>
     24820                                                <MinTileCol>526</MinTileCol>
     24821                                                <MaxTileCol>532</MaxTileCol>
     24822                                        </TileMatrixLimits>
     24823                                        <TileMatrixLimits>
     24824                                                <TileMatrix>11</TileMatrix>
     24825                                                <MinTileRow>711</MinTileRow>
     24826                                                <MaxTileRow>726</MaxTileRow>
     24827                                                <MinTileCol>1053</MinTileCol>
     24828                                                <MaxTileCol>1064</MaxTileCol>
     24829                                        </TileMatrixLimits>
     24830                                        <TileMatrixLimits>
     24831                                                <TileMatrix>12</TileMatrix>
     24832                                                <MinTileRow>1423</MinTileRow>
     24833                                                <MaxTileRow>1453</MaxTileRow>
     24834                                                <MinTileCol>2107</MinTileCol>
     24835                                                <MaxTileCol>2129</MaxTileCol>
     24836                                        </TileMatrixLimits>
     24837                                        <TileMatrixLimits>
     24838                                                <TileMatrix>13</TileMatrix>
     24839                                                <MinTileRow>2846</MinTileRow>
     24840                                                <MaxTileRow>2906</MaxTileRow>
     24841                                                <MinTileCol>4215</MinTileCol>
     24842                                                <MaxTileCol>4259</MaxTileCol>
     24843                                        </TileMatrixLimits>
     24844                                        <TileMatrixLimits>
     24845                                                <TileMatrix>14</TileMatrix>
     24846                                                <MinTileRow>5692</MinTileRow>
     24847                                                <MaxTileRow>5813</MaxTileRow>
     24848                                                <MinTileCol>8430</MinTileCol>
     24849                                                <MaxTileCol>8518</MaxTileCol>
     24850                                        </TileMatrixLimits>
     24851                                        <TileMatrixLimits>
     24852                                                <TileMatrix>15</TileMatrix>
     24853                                                <MinTileRow>11384</MinTileRow>
     24854                                                <MaxTileRow>11626</MaxTileRow>
     24855                                                <MinTileCol>16860</MinTileCol>
     24856                                                <MaxTileCol>17037</MaxTileCol>
     24857                                        </TileMatrixLimits>
     24858                                        <TileMatrixLimits>
     24859                                                <TileMatrix>16</TileMatrix>
     24860                                                <MinTileRow>22769</MinTileRow>
     24861                                                <MaxTileRow>23253</MaxTileRow>
     24862                                                <MinTileCol>33720</MinTileCol>
     24863                                                <MaxTileCol>34074</MaxTileCol>
     24864                                        </TileMatrixLimits>
     24865                                        <TileMatrixLimits>
     24866                                                <TileMatrix>17</TileMatrix>
     24867                                                <MinTileRow>45539</MinTileRow>
     24868                                                <MaxTileRow>46506</MaxTileRow>
     24869                                                <MinTileCol>67441</MinTileCol>
     24870                                                <MaxTileCol>68149</MaxTileCol>
     24871                                        </TileMatrixLimits>
     24872                                        <TileMatrixLimits>
     24873                                                <TileMatrix>2</TileMatrix>
     24874                                                <MinTileRow>1</MinTileRow>
     24875                                                <MaxTileRow>1</MaxTileRow>
     24876                                                <MinTileCol>2</MinTileCol>
     24877                                                <MaxTileCol>2</MaxTileCol>
     24878                                        </TileMatrixLimits>
     24879                                        <TileMatrixLimits>
     24880                                                <TileMatrix>3</TileMatrix>
     24881                                                <MinTileRow>2</MinTileRow>
     24882                                                <MaxTileRow>2</MaxTileRow>
     24883                                                <MinTileCol>4</MinTileCol>
     24884                                                <MaxTileCol>4</MaxTileCol>
     24885                                        </TileMatrixLimits>
     24886                                        <TileMatrixLimits>
     24887                                                <TileMatrix>4</TileMatrix>
     24888                                                <MinTileRow>5</MinTileRow>
     24889                                                <MaxTileRow>5</MaxTileRow>
     24890                                                <MinTileCol>8</MinTileCol>
     24891                                                <MaxTileCol>8</MaxTileCol>
     24892                                        </TileMatrixLimits>
     24893                                        <TileMatrixLimits>
     24894                                                <TileMatrix>5</TileMatrix>
     24895                                                <MinTileRow>11</MinTileRow>
     24896                                                <MaxTileRow>11</MaxTileRow>
     24897                                                <MinTileCol>16</MinTileCol>
     24898                                                <MaxTileCol>16</MaxTileCol>
     24899                                        </TileMatrixLimits>
     24900                                        <TileMatrixLimits>
     24901                                                <TileMatrix>6</TileMatrix>
     24902                                                <MinTileRow>22</MinTileRow>
     24903                                                <MaxTileRow>22</MaxTileRow>
     24904                                                <MinTileCol>32</MinTileCol>
     24905                                                <MaxTileCol>33</MaxTileCol>
     24906                                        </TileMatrixLimits>
     24907                                        <TileMatrixLimits>
     24908                                                <TileMatrix>7</TileMatrix>
     24909                                                <MinTileRow>44</MinTileRow>
     24910                                                <MaxTileRow>45</MaxTileRow>
     24911                                                <MinTileCol>65</MinTileCol>
     24912                                                <MaxTileCol>66</MaxTileCol>
     24913                                        </TileMatrixLimits>
     24914                                        <TileMatrixLimits>
     24915                                                <TileMatrix>8</TileMatrix>
     24916                                                <MinTileRow>88</MinTileRow>
     24917                                                <MaxTileRow>90</MaxTileRow>
     24918                                                <MinTileCol>131</MinTileCol>
     24919                                                <MaxTileCol>133</MaxTileCol>
     24920                                        </TileMatrixLimits>
     24921                                        <TileMatrixLimits>
     24922                                                <TileMatrix>9</TileMatrix>
     24923                                                <MinTileRow>177</MinTileRow>
     24924                                                <MaxTileRow>181</MaxTileRow>
     24925                                                <MinTileCol>263</MinTileCol>
     24926                                                <MaxTileCol>266</MaxTileCol>
     24927                                        </TileMatrixLimits>
     24928                                </TileMatrixSetLimits>
     24929                        </TileMatrixSetLink>
     24930                </Layer>
     24931                <Layer>
     24932                        <ows:Title>Orthophotographies Geosud de GEX-GENEVE 2014</ows:Title>
     24933                        <ows:Abstract>Orthophotographies satellites de GEX-GENEVE issues du projet Geosud.</ows:Abstract>
     24934                        <ows:Keywords>
     24935                                <ows:Keyword>Photographies</ows:Keyword>
     24936                        </ows:Keywords>
     24937                        <ows:WGS84BoundingBox>
     24938                                <ows:LowerCorner>5.93299 46.2211</ows:LowerCorner>
     24939                                <ows:UpperCorner>6.20438 46.435</ows:UpperCorner>
     24940                        </ows:WGS84BoundingBox>
     24941                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_GEX-GENEVE-2014-06-07-38242406</ows:Identifier>
     24942                        <Style isDefault="true">
     24943                                <ows:Title>Données Brutes</ows:Title>
     24944                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     24945                                <ows:Keywords>
     24946                                        <ows:Keyword>Défaut</ows:Keyword>
     24947                                </ows:Keywords>
     24948                                <ows:Identifier>normal</ows:Identifier>
     24949                                <LegendURL format="image/jpeg" height="200"
     24950                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     24951                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     24952                        </Style>
     24953                        <Format>image/jpeg</Format>
     24954                        <TileMatrixSetLink>
     24955                                <TileMatrixSet>PM</TileMatrixSet>
     24956                                <TileMatrixSetLimits>
     24957                                        <TileMatrixLimits>
     24958                                                <TileMatrix>0</TileMatrix>
     24959                                                <MinTileRow>0</MinTileRow>
     24960                                                <MaxTileRow>0</MaxTileRow>
     24961                                                <MinTileCol>0</MinTileCol>
     24962                                                <MaxTileCol>0</MaxTileCol>
     24963                                        </TileMatrixLimits>
     24964                                        <TileMatrixLimits>
     24965                                                <TileMatrix>1</TileMatrix>
     24966                                                <MinTileRow>0</MinTileRow>
     24967                                                <MaxTileRow>0</MaxTileRow>
     24968                                                <MinTileCol>1</MinTileCol>
     24969                                                <MaxTileCol>1</MaxTileCol>
     24970                                        </TileMatrixLimits>
     24971                                        <TileMatrixLimits>
     24972                                                <TileMatrix>10</TileMatrix>
     24973                                                <MinTileRow>362</MinTileRow>
     24974                                                <MaxTileRow>363</MaxTileRow>
     24975                                                <MinTileCol>528</MinTileCol>
     24976                                                <MaxTileCol>529</MaxTileCol>
     24977                                        </TileMatrixLimits>
     24978                                        <TileMatrixLimits>
     24979                                                <TileMatrix>11</TileMatrix>
     24980                                                <MinTileRow>725</MinTileRow>
     24981                                                <MaxTileRow>726</MaxTileRow>
     24982                                                <MinTileCol>1057</MinTileCol>
     24983                                                <MaxTileCol>1059</MaxTileCol>
     24984                                        </TileMatrixLimits>
     24985                                        <TileMatrixLimits>
     24986                                                <TileMatrix>12</TileMatrix>
     24987                                                <MinTileRow>1450</MinTileRow>
     24988                                                <MaxTileRow>1453</MaxTileRow>
     24989                                                <MinTileCol>2115</MinTileCol>
     24990                                                <MaxTileCol>2118</MaxTileCol>
     24991                                        </TileMatrixLimits>
     24992                                        <TileMatrixLimits>
     24993                                                <TileMatrix>13</TileMatrix>
     24994                                                <MinTileRow>2900</MinTileRow>
     24995                                                <MaxTileRow>2907</MaxTileRow>
     24996                                                <MinTileCol>4231</MinTileCol>
     24997                                                <MaxTileCol>4237</MaxTileCol>
     24998                                        </TileMatrixLimits>
     24999                                        <TileMatrixLimits>
     25000                                                <TileMatrix>14</TileMatrix>
     25001                                                <MinTileRow>5800</MinTileRow>
     25002                                                <MaxTileRow>5814</MaxTileRow>
     25003                                                <MinTileCol>8462</MinTileCol>
     25004                                                <MaxTileCol>8474</MaxTileCol>
     25005                                        </TileMatrixLimits>
     25006                                        <TileMatrixLimits>
     25007                                                <TileMatrix>15</TileMatrix>
     25008                                                <MinTileRow>11600</MinTileRow>
     25009                                                <MaxTileRow>11628</MaxTileRow>
     25010                                                <MinTileCol>16924</MinTileCol>
     25011                                                <MaxTileCol>16948</MaxTileCol>
     25012                                        </TileMatrixLimits>
     25013                                        <TileMatrixLimits>
     25014                                                <TileMatrix>16</TileMatrix>
     25015                                                <MinTileRow>23200</MinTileRow>
     25016                                                <MaxTileRow>23257</MaxTileRow>
     25017                                                <MinTileCol>33848</MinTileCol>
     25018                                                <MaxTileCol>33897</MaxTileCol>
     25019                                        </TileMatrixLimits>
     25020                                        <TileMatrixLimits>
     25021                                                <TileMatrix>17</TileMatrix>
     25022                                                <MinTileRow>46401</MinTileRow>
     25023                                                <MaxTileRow>46514</MaxTileRow>
     25024                                                <MinTileCol>67696</MinTileCol>
     25025                                                <MaxTileCol>67795</MaxTileCol>
     25026                                        </TileMatrixLimits>
     25027                                        <TileMatrixLimits>
     25028                                                <TileMatrix>18</TileMatrix>
     25029                                                <MinTileRow>92802</MinTileRow>
     25030                                                <MaxTileRow>93028</MaxTileRow>
     25031                                                <MinTileCol>135392</MinTileCol>
     25032                                                <MaxTileCol>135590</MaxTileCol>
     25033                                        </TileMatrixLimits>
     25034                                        <TileMatrixLimits>
     25035                                                <TileMatrix>2</TileMatrix>
     25036                                                <MinTileRow>1</MinTileRow>
     25037                                                <MaxTileRow>1</MaxTileRow>
     25038                                                <MinTileCol>2</MinTileCol>
     25039                                                <MaxTileCol>2</MaxTileCol>
     25040                                        </TileMatrixLimits>
     25041                                        <TileMatrixLimits>
     25042                                                <TileMatrix>3</TileMatrix>
     25043                                                <MinTileRow>2</MinTileRow>
     25044                                                <MaxTileRow>2</MaxTileRow>
     25045                                                <MinTileCol>4</MinTileCol>
     25046                                                <MaxTileCol>4</MaxTileCol>
     25047                                        </TileMatrixLimits>
     25048                                        <TileMatrixLimits>
     25049                                                <TileMatrix>4</TileMatrix>
     25050                                                <MinTileRow>5</MinTileRow>
     25051                                                <MaxTileRow>5</MaxTileRow>
     25052                                                <MinTileCol>8</MinTileCol>
     25053                                                <MaxTileCol>8</MaxTileCol>
     25054                                        </TileMatrixLimits>
     25055                                        <TileMatrixLimits>
     25056                                                <TileMatrix>5</TileMatrix>
     25057                                                <MinTileRow>11</MinTileRow>
     25058                                                <MaxTileRow>11</MaxTileRow>
     25059                                                <MinTileCol>16</MinTileCol>
     25060                                                <MaxTileCol>16</MaxTileCol>
     25061                                        </TileMatrixLimits>
     25062                                        <TileMatrixLimits>
     25063                                                <TileMatrix>6</TileMatrix>
     25064                                                <MinTileRow>22</MinTileRow>
     25065                                                <MaxTileRow>22</MaxTileRow>
     25066                                                <MinTileCol>33</MinTileCol>
     25067                                                <MaxTileCol>33</MaxTileCol>
     25068                                        </TileMatrixLimits>
     25069                                        <TileMatrixLimits>
     25070                                                <TileMatrix>7</TileMatrix>
     25071                                                <MinTileRow>45</MinTileRow>
     25072                                                <MaxTileRow>45</MaxTileRow>
     25073                                                <MinTileCol>66</MinTileCol>
     25074                                                <MaxTileCol>66</MaxTileCol>
     25075                                        </TileMatrixLimits>
     25076                                        <TileMatrixLimits>
     25077                                                <TileMatrix>8</TileMatrix>
     25078                                                <MinTileRow>90</MinTileRow>
     25079                                                <MaxTileRow>90</MaxTileRow>
     25080                                                <MinTileCol>132</MinTileCol>
     25081                                                <MaxTileCol>132</MaxTileCol>
     25082                                        </TileMatrixLimits>
     25083                                        <TileMatrixLimits>
     25084                                                <TileMatrix>9</TileMatrix>
     25085                                                <MinTileRow>181</MinTileRow>
     25086                                                <MaxTileRow>181</MaxTileRow>
     25087                                                <MinTileCol>264</MinTileCol>
     25088                                                <MaxTileCol>264</MaxTileCol>
     25089                                        </TileMatrixLimits>
     25090                                </TileMatrixSetLimits>
     25091                        </TileMatrixSetLink>
     25092                </Layer>
     25093                <Layer>
     25094                        <ows:Title>Orthophotographies Geosud de GRENOBLE 2014</ows:Title>
     25095                        <ows:Abstract>Orthophotographies Geosud de GRENOBLE 2014</ows:Abstract>
     25096                        <ows:Keywords>
     25097                                <ows:Keyword>Photographies</ows:Keyword>
     25098                        </ows:Keywords>
     25099                        <ows:WGS84BoundingBox>
     25100                                <ows:LowerCorner>5.59191 45.0499</ows:LowerCorner>
     25101                                <ows:UpperCorner>5.85638 45.2631</ows:UpperCorner>
     25102                        </ows:WGS84BoundingBox>
     25103                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_GRENOBLE-2014-10-28-38276402</ows:Identifier>
     25104                        <Style isDefault="true">
     25105                                <ows:Title>Données Brutes</ows:Title>
     25106                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25107                                <ows:Keywords>
     25108                                        <ows:Keyword>Défaut</ows:Keyword>
     25109                                </ows:Keywords>
     25110                                <ows:Identifier>normal</ows:Identifier>
     25111                                <LegendURL format="image/jpeg" height="200"
     25112                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25113                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25114                        </Style>
     25115                        <Format>image/jpeg</Format>
     25116                        <TileMatrixSetLink>
     25117                                <TileMatrixSet>PM</TileMatrixSet>
     25118                                <TileMatrixSetLimits>
     25119                                        <TileMatrixLimits>
     25120                                                <TileMatrix>0</TileMatrix>
     25121                                                <MinTileRow>0</MinTileRow>
     25122                                                <MaxTileRow>0</MaxTileRow>
     25123                                                <MinTileCol>0</MinTileCol>
     25124                                                <MaxTileCol>0</MaxTileCol>
     25125                                        </TileMatrixLimits>
     25126                                        <TileMatrixLimits>
     25127                                                <TileMatrix>1</TileMatrix>
     25128                                                <MinTileRow>0</MinTileRow>
     25129                                                <MaxTileRow>0</MaxTileRow>
     25130                                                <MinTileCol>1</MinTileCol>
     25131                                                <MaxTileCol>1</MaxTileCol>
     25132                                        </TileMatrixLimits>
     25133                                        <TileMatrixLimits>
     25134                                                <TileMatrix>10</TileMatrix>
     25135                                                <MinTileRow>367</MinTileRow>
     25136                                                <MaxTileRow>368</MaxTileRow>
     25137                                                <MinTileCol>527</MinTileCol>
     25138                                                <MaxTileCol>528</MaxTileCol>
     25139                                        </TileMatrixLimits>
     25140                                        <TileMatrixLimits>
     25141                                                <TileMatrix>11</TileMatrix>
     25142                                                <MinTileRow>734</MinTileRow>
     25143                                                <MaxTileRow>736</MaxTileRow>
     25144                                                <MinTileCol>1055</MinTileCol>
     25145                                                <MaxTileCol>1057</MaxTileCol>
     25146                                        </TileMatrixLimits>
     25147                                        <TileMatrixLimits>
     25148                                                <TileMatrix>12</TileMatrix>
     25149                                                <MinTileRow>1469</MinTileRow>
     25150                                                <MaxTileRow>1472</MaxTileRow>
     25151                                                <MinTileCol>2111</MinTileCol>
     25152                                                <MaxTileCol>2114</MaxTileCol>
     25153                                        </TileMatrixLimits>
     25154                                        <TileMatrixLimits>
     25155                                                <TileMatrix>13</TileMatrix>
     25156                                                <MinTileRow>2938</MinTileRow>
     25157                                                <MaxTileRow>2945</MaxTileRow>
     25158                                                <MinTileCol>4223</MinTileCol>
     25159                                                <MaxTileCol>4229</MaxTileCol>
     25160                                        </TileMatrixLimits>
     25161                                        <TileMatrixLimits>
     25162                                                <TileMatrix>14</TileMatrix>
     25163                                                <MinTileRow>5876</MinTileRow>
     25164                                                <MaxTileRow>5890</MaxTileRow>
     25165                                                <MinTileCol>8446</MinTileCol>
     25166                                                <MaxTileCol>8458</MaxTileCol>
     25167                                        </TileMatrixLimits>
     25168                                        <TileMatrixLimits>
     25169                                                <TileMatrix>15</TileMatrix>
     25170                                                <MinTileRow>11753</MinTileRow>
     25171                                                <MaxTileRow>11781</MaxTileRow>
     25172                                                <MinTileCol>16892</MinTileCol>
     25173                                                <MaxTileCol>16917</MaxTileCol>
     25174                                        </TileMatrixLimits>
     25175                                        <TileMatrixLimits>
     25176                                                <TileMatrix>16</TileMatrix>
     25177                                                <MinTileRow>23507</MinTileRow>
     25178                                                <MaxTileRow>23562</MaxTileRow>
     25179                                                <MinTileCol>33785</MinTileCol>
     25180                                                <MaxTileCol>33834</MaxTileCol>
     25181                                        </TileMatrixLimits>
     25182                                        <TileMatrixLimits>
     25183                                                <TileMatrix>17</TileMatrix>
     25184                                                <MinTileRow>47014</MinTileRow>
     25185                                                <MaxTileRow>47124</MaxTileRow>
     25186                                                <MinTileCol>67571</MinTileCol>
     25187                                                <MaxTileCol>67668</MaxTileCol>
     25188                                        </TileMatrixLimits>
     25189                                        <TileMatrixLimits>
     25190                                                <TileMatrix>18</TileMatrix>
     25191                                                <MinTileRow>94028</MinTileRow>
     25192                                                <MaxTileRow>94248</MaxTileRow>
     25193                                                <MinTileCol>135143</MinTileCol>
     25194                                                <MaxTileCol>135336</MaxTileCol>
     25195                                        </TileMatrixLimits>
     25196                                        <TileMatrixLimits>
     25197                                                <TileMatrix>2</TileMatrix>
     25198                                                <MinTileRow>1</MinTileRow>
     25199                                                <MaxTileRow>1</MaxTileRow>
     25200                                                <MinTileCol>2</MinTileCol>
     25201                                                <MaxTileCol>2</MaxTileCol>
     25202                                        </TileMatrixLimits>
     25203                                        <TileMatrixLimits>
     25204                                                <TileMatrix>3</TileMatrix>
     25205                                                <MinTileRow>2</MinTileRow>
     25206                                                <MaxTileRow>2</MaxTileRow>
     25207                                                <MinTileCol>4</MinTileCol>
     25208                                                <MaxTileCol>4</MaxTileCol>
     25209                                        </TileMatrixLimits>
     25210                                        <TileMatrixLimits>
     25211                                                <TileMatrix>4</TileMatrix>
     25212                                                <MinTileRow>5</MinTileRow>
     25213                                                <MaxTileRow>5</MaxTileRow>
     25214                                                <MinTileCol>8</MinTileCol>
     25215                                                <MaxTileCol>8</MaxTileCol>
     25216                                        </TileMatrixLimits>
     25217                                        <TileMatrixLimits>
     25218                                                <TileMatrix>5</TileMatrix>
     25219                                                <MinTileRow>11</MinTileRow>
     25220                                                <MaxTileRow>11</MaxTileRow>
     25221                                                <MinTileCol>16</MinTileCol>
     25222                                                <MaxTileCol>16</MaxTileCol>
     25223                                        </TileMatrixLimits>
     25224                                        <TileMatrixLimits>
     25225                                                <TileMatrix>6</TileMatrix>
     25226                                                <MinTileRow>22</MinTileRow>
     25227                                                <MaxTileRow>23</MaxTileRow>
     25228                                                <MinTileCol>32</MinTileCol>
     25229                                                <MaxTileCol>33</MaxTileCol>
     25230                                        </TileMatrixLimits>
     25231                                        <TileMatrixLimits>
     25232                                                <TileMatrix>7</TileMatrix>
     25233                                                <MinTileRow>45</MinTileRow>
     25234                                                <MaxTileRow>46</MaxTileRow>
     25235                                                <MinTileCol>65</MinTileCol>
     25236                                                <MaxTileCol>66</MaxTileCol>
     25237                                        </TileMatrixLimits>
     25238                                        <TileMatrixLimits>
     25239                                                <TileMatrix>8</TileMatrix>
     25240                                                <MinTileRow>91</MinTileRow>
     25241                                                <MaxTileRow>92</MaxTileRow>
     25242                                                <MinTileCol>131</MinTileCol>
     25243                                                <MaxTileCol>132</MaxTileCol>
     25244                                        </TileMatrixLimits>
     25245                                        <TileMatrixLimits>
     25246                                                <TileMatrix>9</TileMatrix>
     25247                                                <MinTileRow>183</MinTileRow>
     25248                                                <MaxTileRow>184</MaxTileRow>
     25249                                                <MinTileCol>263</MinTileCol>
     25250                                                <MaxTileCol>264</MaxTileCol>
     25251                                        </TileMatrixLimits>
     25252                                </TileMatrixSetLimits>
     25253                        </TileMatrixSetLink>
     25254                </Layer>
     25255                <Layer>
     25256                        <ows:Title>Orthophotographies Geosud de HAUTE-NORMANDIE 2014</ows:Title>
     25257                        <ows:Abstract>Orthophotographies satellites de HAUTE-NORMANDIE issues du projet Geosud.</ows:Abstract>
     25258                        <ows:Keywords>
     25259                                <ows:Keyword>Photographies</ows:Keyword>
     25260                        </ows:Keywords>
     25261                        <ows:WGS84BoundingBox>
     25262                                <ows:LowerCorner>0.0141291 48.6248</ows:LowerCorner>
     25263                                <ows:UpperCorner>1.84598 50.0836</ows:UpperCorner>
     25264                        </ows:WGS84BoundingBox>
     25265                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_HAUTE-NORMANDIE-2014</ows:Identifier>
     25266                        <Style isDefault="true">
     25267                                <ows:Title>Données Brutes</ows:Title>
     25268                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25269                                <ows:Keywords>
     25270                                        <ows:Keyword>Défaut</ows:Keyword>
     25271                                </ows:Keywords>
     25272                                <ows:Identifier>normal</ows:Identifier>
     25273                                <LegendURL format="image/jpeg" height="200"
     25274                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25275                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25276                        </Style>
     25277                        <Format>image/jpeg</Format>
     25278                        <TileMatrixSetLink>
     25279                                <TileMatrixSet>PM</TileMatrixSet>
     25280                                <TileMatrixSetLimits>
     25281                                        <TileMatrixLimits>
     25282                                                <TileMatrix>0</TileMatrix>
     25283                                                <MinTileRow>0</MinTileRow>
     25284                                                <MaxTileRow>0</MaxTileRow>
     25285                                                <MinTileCol>0</MinTileCol>
     25286                                                <MaxTileCol>0</MaxTileCol>
     25287                                        </TileMatrixLimits>
     25288                                        <TileMatrixLimits>
     25289                                                <TileMatrix>1</TileMatrix>
     25290                                                <MinTileRow>0</MinTileRow>
     25291                                                <MaxTileRow>0</MaxTileRow>
     25292                                                <MinTileCol>1</MinTileCol>
     25293                                                <MaxTileCol>1</MaxTileCol>
     25294                                        </TileMatrixLimits>
     25295                                        <TileMatrixLimits>
     25296                                                <TileMatrix>10</TileMatrix>
     25297                                                <MinTileRow>346</MinTileRow>
     25298                                                <MaxTileRow>353</MaxTileRow>
     25299                                                <MinTileCol>512</MinTileCol>
     25300                                                <MaxTileCol>517</MaxTileCol>
     25301                                        </TileMatrixLimits>
     25302                                        <TileMatrixLimits>
     25303                                                <TileMatrix>11</TileMatrix>
     25304                                                <MinTileRow>693</MinTileRow>
     25305                                                <MaxTileRow>706</MaxTileRow>
     25306                                                <MinTileCol>1024</MinTileCol>
     25307                                                <MaxTileCol>1034</MaxTileCol>
     25308                                        </TileMatrixLimits>
     25309                                        <TileMatrixLimits>
     25310                                                <TileMatrix>12</TileMatrix>
     25311                                                <MinTileRow>1387</MinTileRow>
     25312                                                <MaxTileRow>1412</MaxTileRow>
     25313                                                <MinTileCol>2048</MinTileCol>
     25314                                                <MaxTileCol>2068</MaxTileCol>
     25315                                        </TileMatrixLimits>
     25316                                        <TileMatrixLimits>
     25317                                                <TileMatrix>13</TileMatrix>
     25318                                                <MinTileRow>2775</MinTileRow>
     25319                                                <MaxTileRow>2825</MaxTileRow>
     25320                                                <MinTileCol>4096</MinTileCol>
     25321                                                <MaxTileCol>4137</MaxTileCol>
     25322                                        </TileMatrixLimits>
     25323                                        <TileMatrixLimits>
     25324                                                <TileMatrix>14</TileMatrix>
     25325                                                <MinTileRow>5550</MinTileRow>
     25326                                                <MaxTileRow>5651</MaxTileRow>
     25327                                                <MinTileCol>8193</MinTileCol>
     25328                                                <MaxTileCol>8275</MaxTileCol>
     25329                                        </TileMatrixLimits>
     25330                                        <TileMatrixLimits>
     25331                                                <TileMatrix>15</TileMatrix>
     25332                                                <MinTileRow>11101</MinTileRow>
     25333                                                <MaxTileRow>11303</MaxTileRow>
     25334                                                <MinTileCol>16387</MinTileCol>
     25335                                                <MaxTileCol>16550</MaxTileCol>
     25336                                        </TileMatrixLimits>
     25337                                        <TileMatrixLimits>
     25338                                                <TileMatrix>16</TileMatrix>
     25339                                                <MinTileRow>22203</MinTileRow>
     25340                                                <MaxTileRow>22606</MaxTileRow>
     25341                                                <MinTileCol>32775</MinTileCol>
     25342                                                <MaxTileCol>33101</MaxTileCol>
     25343                                        </TileMatrixLimits>
     25344                                        <TileMatrixLimits>
     25345                                                <TileMatrix>17</TileMatrix>
     25346                                                <MinTileRow>44407</MinTileRow>
     25347                                                <MaxTileRow>45212</MaxTileRow>
     25348                                                <MinTileCol>65550</MinTileCol>
     25349                                                <MaxTileCol>66203</MaxTileCol>
     25350                                        </TileMatrixLimits>
     25351                                        <TileMatrixLimits>
     25352                                                <TileMatrix>2</TileMatrix>
     25353                                                <MinTileRow>1</MinTileRow>
     25354                                                <MaxTileRow>1</MaxTileRow>
     25355                                                <MinTileCol>2</MinTileCol>
     25356                                                <MaxTileCol>2</MaxTileCol>
     25357                                        </TileMatrixLimits>
     25358                                        <TileMatrixLimits>
     25359                                                <TileMatrix>3</TileMatrix>
     25360                                                <MinTileRow>2</MinTileRow>
     25361                                                <MaxTileRow>2</MaxTileRow>
     25362                                                <MinTileCol>4</MinTileCol>
     25363                                                <MaxTileCol>4</MaxTileCol>
     25364                                        </TileMatrixLimits>
     25365                                        <TileMatrixLimits>
     25366                                                <TileMatrix>4</TileMatrix>
     25367                                                <MinTileRow>5</MinTileRow>
     25368                                                <MaxTileRow>5</MaxTileRow>
     25369                                                <MinTileCol>8</MinTileCol>
     25370                                                <MaxTileCol>8</MaxTileCol>
     25371                                        </TileMatrixLimits>
     25372                                        <TileMatrixLimits>
     25373                                                <TileMatrix>5</TileMatrix>
     25374                                                <MinTileRow>10</MinTileRow>
     25375                                                <MaxTileRow>11</MaxTileRow>
     25376                                                <MinTileCol>16</MinTileCol>
     25377                                                <MaxTileCol>16</MaxTileCol>
     25378                                        </TileMatrixLimits>
     25379                                        <TileMatrixLimits>
     25380                                                <TileMatrix>6</TileMatrix>
     25381                                                <MinTileRow>21</MinTileRow>
     25382                                                <MaxTileRow>22</MaxTileRow>
     25383                                                <MinTileCol>32</MinTileCol>
     25384                                                <MaxTileCol>32</MaxTileCol>
     25385                                        </TileMatrixLimits>
     25386                                        <TileMatrixLimits>
     25387                                                <TileMatrix>7</TileMatrix>
     25388                                                <MinTileRow>43</MinTileRow>
     25389                                                <MaxTileRow>44</MaxTileRow>
     25390                                                <MinTileCol>64</MinTileCol>
     25391                                                <MaxTileCol>64</MaxTileCol>
     25392                                        </TileMatrixLimits>
     25393                                        <TileMatrixLimits>
     25394                                                <TileMatrix>8</TileMatrix>
     25395                                                <MinTileRow>86</MinTileRow>
     25396                                                <MaxTileRow>88</MaxTileRow>
     25397                                                <MinTileCol>128</MinTileCol>
     25398                                                <MaxTileCol>129</MaxTileCol>
     25399                                        </TileMatrixLimits>
     25400                                        <TileMatrixLimits>
     25401                                                <TileMatrix>9</TileMatrix>
     25402                                                <MinTileRow>173</MinTileRow>
     25403                                                <MaxTileRow>176</MaxTileRow>
     25404                                                <MinTileCol>256</MinTileCol>
     25405                                                <MaxTileCol>258</MaxTileCol>
     25406                                        </TileMatrixLimits>
     25407                                </TileMatrixSetLimits>
     25408                        </TileMatrixSetLink>
     25409                </Layer>
     25410                <Layer>
     25411                        <ows:Title>Orthophotographies Geosud de ILE-DE-FRANCE 2014</ows:Title>
     25412                        <ows:Abstract>Orthophotographies satellites de ILE-DE-FRANCE issues du projet Geosud.</ows:Abstract>
     25413                        <ows:Keywords>
     25414                                <ows:Keyword>Photographies</ows:Keyword>
     25415                        </ows:Keywords>
     25416                        <ows:WGS84BoundingBox>
     25417                                <ows:LowerCorner>1.42085 48.0833</ows:LowerCorner>
     25418                                <ows:UpperCorner>3.76905 49.2512</ows:UpperCorner>
     25419                        </ows:WGS84BoundingBox>
     25420                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ILE-DE-FRANCE-2014</ows:Identifier>
     25421                        <Style isDefault="true">
     25422                                <ows:Title>Données Brutes</ows:Title>
     25423                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25424                                <ows:Keywords>
     25425                                        <ows:Keyword>Défaut</ows:Keyword>
     25426                                </ows:Keywords>
     25427                                <ows:Identifier>normal</ows:Identifier>
     25428                                <LegendURL format="image/jpeg" height="200"
     25429                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25430                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25431                        </Style>
     25432                        <Format>image/jpeg</Format>
     25433                        <TileMatrixSetLink>
     25434                                <TileMatrixSet>PM</TileMatrixSet>
     25435                                <TileMatrixSetLimits>
     25436                                        <TileMatrixLimits>
     25437                                                <TileMatrix>0</TileMatrix>
     25438                                                <MinTileRow>0</MinTileRow>
     25439                                                <MaxTileRow>0</MaxTileRow>
     25440                                                <MinTileCol>0</MinTileCol>
     25441                                                <MaxTileCol>0</MaxTileCol>
     25442                                        </TileMatrixLimits>
     25443                                        <TileMatrixLimits>
     25444                                                <TileMatrix>1</TileMatrix>
     25445                                                <MinTileRow>0</MinTileRow>
     25446                                                <MaxTileRow>0</MaxTileRow>
     25447                                                <MinTileCol>1</MinTileCol>
     25448                                                <MaxTileCol>1</MaxTileCol>
     25449                                        </TileMatrixLimits>
     25450                                        <TileMatrixLimits>
     25451                                                <TileMatrix>10</TileMatrix>
     25452                                                <MinTileRow>350</MinTileRow>
     25453                                                <MaxTileRow>355</MaxTileRow>
     25454                                                <MinTileCol>516</MinTileCol>
     25455                                                <MaxTileCol>522</MaxTileCol>
     25456                                        </TileMatrixLimits>
     25457                                        <TileMatrixLimits>
     25458                                                <TileMatrix>11</TileMatrix>
     25459                                                <MinTileRow>701</MinTileRow>
     25460                                                <MaxTileRow>711</MaxTileRow>
     25461                                                <MinTileCol>1032</MinTileCol>
     25462                                                <MaxTileCol>1045</MaxTileCol>
     25463                                        </TileMatrixLimits>
     25464                                        <TileMatrixLimits>
     25465                                                <TileMatrix>12</TileMatrix>
     25466                                                <MinTileRow>1402</MinTileRow>
     25467                                                <MaxTileRow>1422</MaxTileRow>
     25468                                                <MinTileCol>2064</MinTileCol>
     25469                                                <MaxTileCol>2090</MaxTileCol>
     25470                                        </TileMatrixLimits>
     25471                                        <TileMatrixLimits>
     25472                                                <TileMatrix>13</TileMatrix>
     25473                                                <MinTileRow>2804</MinTileRow>
     25474                                                <MaxTileRow>2844</MaxTileRow>
     25475                                                <MinTileCol>4128</MinTileCol>
     25476                                                <MaxTileCol>4181</MaxTileCol>
     25477                                        </TileMatrixLimits>
     25478                                        <TileMatrixLimits>
     25479                                                <TileMatrix>14</TileMatrix>
     25480                                                <MinTileRow>5609</MinTileRow>
     25481                                                <MaxTileRow>5688</MaxTileRow>
     25482                                                <MinTileCol>8256</MinTileCol>
     25483                                                <MaxTileCol>8363</MaxTileCol>
     25484                                        </TileMatrixLimits>
     25485                                        <TileMatrixLimits>
     25486                                                <TileMatrix>15</TileMatrix>
     25487                                                <MinTileRow>11218</MinTileRow>
     25488                                                <MaxTileRow>11377</MaxTileRow>
     25489                                                <MinTileCol>16513</MinTileCol>
     25490                                                <MaxTileCol>16726</MaxTileCol>
     25491                                        </TileMatrixLimits>
     25492                                        <TileMatrixLimits>
     25493                                                <TileMatrix>16</TileMatrix>
     25494                                                <MinTileRow>22437</MinTileRow>
     25495                                                <MaxTileRow>22755</MaxTileRow>
     25496                                                <MinTileCol>33027</MinTileCol>
     25497                                                <MaxTileCol>33453</MaxTileCol>
     25498                                        </TileMatrixLimits>
     25499                                        <TileMatrixLimits>
     25500                                                <TileMatrix>17</TileMatrix>
     25501                                                <MinTileRow>44875</MinTileRow>
     25502                                                <MaxTileRow>45511</MaxTileRow>
     25503                                                <MinTileCol>66054</MinTileCol>
     25504                                                <MaxTileCol>66907</MaxTileCol>
     25505                                        </TileMatrixLimits>
     25506                                        <TileMatrixLimits>
     25507                                                <TileMatrix>2</TileMatrix>
     25508                                                <MinTileRow>1</MinTileRow>
     25509                                                <MaxTileRow>1</MaxTileRow>
     25510                                                <MinTileCol>2</MinTileCol>
     25511                                                <MaxTileCol>2</MaxTileCol>
     25512                                        </TileMatrixLimits>
     25513                                        <TileMatrixLimits>
     25514                                                <TileMatrix>3</TileMatrix>
     25515                                                <MinTileRow>2</MinTileRow>
     25516                                                <MaxTileRow>2</MaxTileRow>
     25517                                                <MinTileCol>4</MinTileCol>
     25518                                                <MaxTileCol>4</MaxTileCol>
     25519                                        </TileMatrixLimits>
     25520                                        <TileMatrixLimits>
     25521                                                <TileMatrix>4</TileMatrix>
     25522                                                <MinTileRow>5</MinTileRow>
     25523                                                <MaxTileRow>5</MaxTileRow>
     25524                                                <MinTileCol>8</MinTileCol>
     25525                                                <MaxTileCol>8</MaxTileCol>
     25526                                        </TileMatrixLimits>
     25527                                        <TileMatrixLimits>
     25528                                                <TileMatrix>5</TileMatrix>
     25529                                                <MinTileRow>10</MinTileRow>
     25530                                                <MaxTileRow>11</MaxTileRow>
     25531                                                <MinTileCol>16</MinTileCol>
     25532                                                <MaxTileCol>16</MaxTileCol>
     25533                                        </TileMatrixLimits>
     25534                                        <TileMatrixLimits>
     25535                                                <TileMatrix>6</TileMatrix>
     25536                                                <MinTileRow>21</MinTileRow>
     25537                                                <MaxTileRow>22</MaxTileRow>
     25538                                                <MinTileCol>32</MinTileCol>
     25539                                                <MaxTileCol>32</MaxTileCol>
     25540                                        </TileMatrixLimits>
     25541                                        <TileMatrixLimits>
     25542                                                <TileMatrix>7</TileMatrix>
     25543                                                <MinTileRow>43</MinTileRow>
     25544                                                <MaxTileRow>44</MaxTileRow>
     25545                                                <MinTileCol>64</MinTileCol>
     25546                                                <MaxTileCol>65</MaxTileCol>
     25547                                        </TileMatrixLimits>
     25548                                        <TileMatrixLimits>
     25549                                                <TileMatrix>8</TileMatrix>
     25550                                                <MinTileRow>87</MinTileRow>
     25551                                                <MaxTileRow>88</MaxTileRow>
     25552                                                <MinTileCol>129</MinTileCol>
     25553                                                <MaxTileCol>130</MaxTileCol>
     25554                                        </TileMatrixLimits>
     25555                                        <TileMatrixLimits>
     25556                                                <TileMatrix>9</TileMatrix>
     25557                                                <MinTileRow>175</MinTileRow>
     25558                                                <MaxTileRow>177</MaxTileRow>
     25559                                                <MinTileCol>258</MinTileCol>
     25560                                                <MaxTileCol>261</MaxTileCol>
     25561                                        </TileMatrixLimits>
     25562                                </TileMatrixSetLimits>
     25563                        </TileMatrixSetLink>
     25564                </Layer>
     25565                <Layer>
     25566                        <ows:Title>Orthophotographies Geosud de KOUROU 2013</ows:Title>
     25567                        <ows:Abstract>Orthophotographies satellites de KOUROU issues du projet Geosud.</ows:Abstract>
     25568                        <ows:Keywords>
     25569                                <ows:Keyword>Photographies</ows:Keyword>
     25570                        </ows:Keywords>
     25571                        <ows:WGS84BoundingBox>
     25572                                <ows:LowerCorner>-52.7504 5.06398</ows:LowerCorner>
     25573                                <ows:UpperCorner>-52.5696 5.25435</ows:UpperCorner>
     25574                        </ows:WGS84BoundingBox>
     25575                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_KOUROU-2013-10-10-50575509</ows:Identifier>
     25576                        <Style isDefault="true">
     25577                                <ows:Title>Données Brutes</ows:Title>
     25578                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25579                                <ows:Keywords>
     25580                                        <ows:Keyword>Défaut</ows:Keyword>
     25581                                </ows:Keywords>
     25582                                <ows:Identifier>normal</ows:Identifier>
     25583                                <LegendURL format="image/jpeg" height="200"
     25584                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25585                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25586                        </Style>
     25587                        <Format>image/jpeg</Format>
     25588                        <TileMatrixSetLink>
     25589                                <TileMatrixSet>PM</TileMatrixSet>
     25590                                <TileMatrixSetLimits>
     25591                                        <TileMatrixLimits>
     25592                                                <TileMatrix>0</TileMatrix>
     25593                                                <MinTileRow>0</MinTileRow>
     25594                                                <MaxTileRow>0</MaxTileRow>
     25595                                                <MinTileCol>0</MinTileCol>
     25596                                                <MaxTileCol>0</MaxTileCol>
     25597                                        </TileMatrixLimits>
     25598                                        <TileMatrixLimits>
     25599                                                <TileMatrix>1</TileMatrix>
     25600                                                <MinTileRow>0</MinTileRow>
     25601                                                <MaxTileRow>0</MaxTileRow>
     25602                                                <MinTileCol>0</MinTileCol>
     25603                                                <MaxTileCol>0</MaxTileCol>
     25604                                        </TileMatrixLimits>
     25605                                        <TileMatrixLimits>
     25606                                                <TileMatrix>10</TileMatrix>
     25607                                                <MinTileRow>497</MinTileRow>
     25608                                                <MaxTileRow>497</MaxTileRow>
     25609                                                <MinTileCol>361</MinTileCol>
     25610                                                <MaxTileCol>362</MaxTileCol>
     25611                                        </TileMatrixLimits>
     25612                                        <TileMatrixLimits>
     25613                                                <TileMatrix>11</TileMatrix>
     25614                                                <MinTileRow>994</MinTileRow>
     25615                                                <MaxTileRow>995</MaxTileRow>
     25616                                                <MinTileCol>723</MinTileCol>
     25617                                                <MaxTileCol>724</MaxTileCol>
     25618                                        </TileMatrixLimits>
     25619                                        <TileMatrixLimits>
     25620                                                <TileMatrix>12</TileMatrix>
     25621                                                <MinTileRow>1988</MinTileRow>
     25622                                                <MaxTileRow>1990</MaxTileRow>
     25623                                                <MinTileCol>1447</MinTileCol>
     25624                                                <MaxTileCol>1449</MaxTileCol>
     25625                                        </TileMatrixLimits>
     25626                                        <TileMatrixLimits>
     25627                                                <TileMatrix>13</TileMatrix>
     25628                                                <MinTileRow>3976</MinTileRow>
     25629                                                <MaxTileRow>3980</MaxTileRow>
     25630                                                <MinTileCol>2895</MinTileCol>
     25631                                                <MaxTileCol>2899</MaxTileCol>
     25632                                        </TileMatrixLimits>
     25633                                        <TileMatrixLimits>
     25634                                                <TileMatrix>14</TileMatrix>
     25635                                                <MinTileRow>7952</MinTileRow>
     25636                                                <MaxTileRow>7961</MaxTileRow>
     25637                                                <MinTileCol>5791</MinTileCol>
     25638                                                <MaxTileCol>5799</MaxTileCol>
     25639                                        </TileMatrixLimits>
     25640                                        <TileMatrixLimits>
     25641                                                <TileMatrix>15</TileMatrix>
     25642                                                <MinTileRow>15905</MinTileRow>
     25643                                                <MaxTileRow>15922</MaxTileRow>
     25644                                                <MinTileCol>11582</MinTileCol>
     25645                                                <MaxTileCol>11599</MaxTileCol>
     25646                                        </TileMatrixLimits>
     25647                                        <TileMatrixLimits>
     25648                                                <TileMatrix>16</TileMatrix>
     25649                                                <MinTileRow>31810</MinTileRow>
     25650                                                <MaxTileRow>31844</MaxTileRow>
     25651                                                <MinTileCol>23165</MinTileCol>
     25652                                                <MaxTileCol>23198</MaxTileCol>
     25653                                        </TileMatrixLimits>
     25654                                        <TileMatrixLimits>
     25655                                                <TileMatrix>17</TileMatrix>
     25656                                                <MinTileRow>63620</MinTileRow>
     25657                                                <MaxTileRow>63689</MaxTileRow>
     25658                                                <MinTileCol>46330</MinTileCol>
     25659                                                <MaxTileCol>46396</MaxTileCol>
     25660                                        </TileMatrixLimits>
     25661                                        <TileMatrixLimits>
     25662                                                <TileMatrix>18</TileMatrix>
     25663                                                <MinTileRow>127240</MinTileRow>
     25664                                                <MaxTileRow>127379</MaxTileRow>
     25665                                                <MinTileCol>92660</MinTileCol>
     25666                                                <MaxTileCol>92792</MaxTileCol>
     25667                                        </TileMatrixLimits>
     25668                                        <TileMatrixLimits>
     25669                                                <TileMatrix>2</TileMatrix>
     25670                                                <MinTileRow>1</MinTileRow>
     25671                                                <MaxTileRow>1</MaxTileRow>
     25672                                                <MinTileCol>1</MinTileCol>
     25673                                                <MaxTileCol>1</MaxTileCol>
     25674                                        </TileMatrixLimits>
     25675                                        <TileMatrixLimits>
     25676                                                <TileMatrix>3</TileMatrix>
     25677                                                <MinTileRow>3</MinTileRow>
     25678                                                <MaxTileRow>3</MaxTileRow>
     25679                                                <MinTileCol>2</MinTileCol>
     25680                                                <MaxTileCol>2</MaxTileCol>
     25681                                        </TileMatrixLimits>
     25682                                        <TileMatrixLimits>
     25683                                                <TileMatrix>4</TileMatrix>
     25684                                                <MinTileRow>7</MinTileRow>
     25685                                                <MaxTileRow>7</MaxTileRow>
     25686                                                <MinTileCol>5</MinTileCol>
     25687                                                <MaxTileCol>5</MaxTileCol>
     25688                                        </TileMatrixLimits>
     25689                                        <TileMatrixLimits>
     25690                                                <TileMatrix>5</TileMatrix>
     25691                                                <MinTileRow>15</MinTileRow>
     25692                                                <MaxTileRow>15</MaxTileRow>
     25693                                                <MinTileCol>11</MinTileCol>
     25694                                                <MaxTileCol>11</MaxTileCol>
     25695                                        </TileMatrixLimits>
     25696                                        <TileMatrixLimits>
     25697                                                <TileMatrix>6</TileMatrix>
     25698                                                <MinTileRow>31</MinTileRow>
     25699                                                <MaxTileRow>31</MaxTileRow>
     25700                                                <MinTileCol>22</MinTileCol>
     25701                                                <MaxTileCol>22</MaxTileCol>
     25702                                        </TileMatrixLimits>
     25703                                        <TileMatrixLimits>
     25704                                                <TileMatrix>7</TileMatrix>
     25705                                                <MinTileRow>62</MinTileRow>
     25706                                                <MaxTileRow>62</MaxTileRow>
     25707                                                <MinTileCol>45</MinTileCol>
     25708                                                <MaxTileCol>45</MaxTileCol>
     25709                                        </TileMatrixLimits>
     25710                                        <TileMatrixLimits>
     25711                                                <TileMatrix>8</TileMatrix>
     25712                                                <MinTileRow>124</MinTileRow>
     25713                                                <MaxTileRow>124</MaxTileRow>
     25714                                                <MinTileCol>90</MinTileCol>
     25715                                                <MaxTileCol>90</MaxTileCol>
     25716                                        </TileMatrixLimits>
     25717                                        <TileMatrixLimits>
     25718                                                <TileMatrix>9</TileMatrix>
     25719                                                <MinTileRow>248</MinTileRow>
     25720                                                <MaxTileRow>248</MaxTileRow>
     25721                                                <MinTileCol>180</MinTileCol>
     25722                                                <MaxTileCol>181</MaxTileCol>
     25723                                        </TileMatrixLimits>
     25724                                </TileMatrixSetLimits>
     25725                        </TileMatrixSetLink>
     25726                </Layer>
     25727                <Layer>
     25728                        <ows:Title>Orthophotographies Geosud de KOUROU 2013</ows:Title>
     25729                        <ows:Abstract>Orthophotographies satellites de KOUROU issues du projet Geosud.</ows:Abstract>
     25730                        <ows:Keywords>
     25731                                <ows:Keyword>Photographies</ows:Keyword>
     25732                        </ows:Keywords>
     25733                        <ows:WGS84BoundingBox>
     25734                                <ows:LowerCorner>-52.7504 5.06398</ows:LowerCorner>
     25735                                <ows:UpperCorner>-52.5696 5.25435</ows:UpperCorner>
     25736                        </ows:WGS84BoundingBox>
     25737                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_KOUROU-2013-10-10-50599498</ows:Identifier>
     25738                        <Style isDefault="true">
     25739                                <ows:Title>Données Brutes</ows:Title>
     25740                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25741                                <ows:Keywords>
     25742                                        <ows:Keyword>Défaut</ows:Keyword>
     25743                                </ows:Keywords>
     25744                                <ows:Identifier>normal</ows:Identifier>
     25745                                <LegendURL format="image/jpeg" height="200"
     25746                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25747                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25748                        </Style>
     25749                        <Format>image/jpeg</Format>
     25750                        <TileMatrixSetLink>
     25751                                <TileMatrixSet>PM</TileMatrixSet>
     25752                                <TileMatrixSetLimits>
     25753                                        <TileMatrixLimits>
     25754                                                <TileMatrix>0</TileMatrix>
     25755                                                <MinTileRow>0</MinTileRow>
     25756                                                <MaxTileRow>0</MaxTileRow>
     25757                                                <MinTileCol>0</MinTileCol>
     25758                                                <MaxTileCol>0</MaxTileCol>
     25759                                        </TileMatrixLimits>
     25760                                        <TileMatrixLimits>
     25761                                                <TileMatrix>1</TileMatrix>
     25762                                                <MinTileRow>0</MinTileRow>
     25763                                                <MaxTileRow>0</MaxTileRow>
     25764                                                <MinTileCol>0</MinTileCol>
     25765                                                <MaxTileCol>0</MaxTileCol>
     25766                                        </TileMatrixLimits>
     25767                                        <TileMatrixLimits>
     25768                                                <TileMatrix>10</TileMatrix>
     25769                                                <MinTileRow>497</MinTileRow>
     25770                                                <MaxTileRow>497</MaxTileRow>
     25771                                                <MinTileCol>361</MinTileCol>
     25772                                                <MaxTileCol>362</MaxTileCol>
     25773                                        </TileMatrixLimits>
     25774                                        <TileMatrixLimits>
     25775                                                <TileMatrix>11</TileMatrix>
     25776                                                <MinTileRow>994</MinTileRow>
     25777                                                <MaxTileRow>995</MaxTileRow>
     25778                                                <MinTileCol>723</MinTileCol>
     25779                                                <MaxTileCol>724</MaxTileCol>
     25780                                        </TileMatrixLimits>
     25781                                        <TileMatrixLimits>
     25782                                                <TileMatrix>12</TileMatrix>
     25783                                                <MinTileRow>1988</MinTileRow>
     25784                                                <MaxTileRow>1990</MaxTileRow>
     25785                                                <MinTileCol>1447</MinTileCol>
     25786                                                <MaxTileCol>1449</MaxTileCol>
     25787                                        </TileMatrixLimits>
     25788                                        <TileMatrixLimits>
     25789                                                <TileMatrix>13</TileMatrix>
     25790                                                <MinTileRow>3976</MinTileRow>
     25791                                                <MaxTileRow>3980</MaxTileRow>
     25792                                                <MinTileCol>2895</MinTileCol>
     25793                                                <MaxTileCol>2899</MaxTileCol>
     25794                                        </TileMatrixLimits>
     25795                                        <TileMatrixLimits>
     25796                                                <TileMatrix>14</TileMatrix>
     25797                                                <MinTileRow>7952</MinTileRow>
     25798                                                <MaxTileRow>7961</MaxTileRow>
     25799                                                <MinTileCol>5791</MinTileCol>
     25800                                                <MaxTileCol>5799</MaxTileCol>
     25801                                        </TileMatrixLimits>
     25802                                        <TileMatrixLimits>
     25803                                                <TileMatrix>15</TileMatrix>
     25804                                                <MinTileRow>15905</MinTileRow>
     25805                                                <MaxTileRow>15922</MaxTileRow>
     25806                                                <MinTileCol>11582</MinTileCol>
     25807                                                <MaxTileCol>11599</MaxTileCol>
     25808                                        </TileMatrixLimits>
     25809                                        <TileMatrixLimits>
     25810                                                <TileMatrix>16</TileMatrix>
     25811                                                <MinTileRow>31810</MinTileRow>
     25812                                                <MaxTileRow>31844</MaxTileRow>
     25813                                                <MinTileCol>23165</MinTileCol>
     25814                                                <MaxTileCol>23198</MaxTileCol>
     25815                                        </TileMatrixLimits>
     25816                                        <TileMatrixLimits>
     25817                                                <TileMatrix>17</TileMatrix>
     25818                                                <MinTileRow>63620</MinTileRow>
     25819                                                <MaxTileRow>63689</MaxTileRow>
     25820                                                <MinTileCol>46330</MinTileCol>
     25821                                                <MaxTileCol>46396</MaxTileCol>
     25822                                        </TileMatrixLimits>
     25823                                        <TileMatrixLimits>
     25824                                                <TileMatrix>18</TileMatrix>
     25825                                                <MinTileRow>127240</MinTileRow>
     25826                                                <MaxTileRow>127379</MaxTileRow>
     25827                                                <MinTileCol>92660</MinTileCol>
     25828                                                <MaxTileCol>92792</MaxTileCol>
     25829                                        </TileMatrixLimits>
     25830                                        <TileMatrixLimits>
     25831                                                <TileMatrix>2</TileMatrix>
     25832                                                <MinTileRow>1</MinTileRow>
     25833                                                <MaxTileRow>1</MaxTileRow>
     25834                                                <MinTileCol>1</MinTileCol>
     25835                                                <MaxTileCol>1</MaxTileCol>
     25836                                        </TileMatrixLimits>
     25837                                        <TileMatrixLimits>
     25838                                                <TileMatrix>3</TileMatrix>
     25839                                                <MinTileRow>3</MinTileRow>
     25840                                                <MaxTileRow>3</MaxTileRow>
     25841                                                <MinTileCol>2</MinTileCol>
     25842                                                <MaxTileCol>2</MaxTileCol>
     25843                                        </TileMatrixLimits>
     25844                                        <TileMatrixLimits>
     25845                                                <TileMatrix>4</TileMatrix>
     25846                                                <MinTileRow>7</MinTileRow>
     25847                                                <MaxTileRow>7</MaxTileRow>
     25848                                                <MinTileCol>5</MinTileCol>
     25849                                                <MaxTileCol>5</MaxTileCol>
     25850                                        </TileMatrixLimits>
     25851                                        <TileMatrixLimits>
     25852                                                <TileMatrix>5</TileMatrix>
     25853                                                <MinTileRow>15</MinTileRow>
     25854                                                <MaxTileRow>15</MaxTileRow>
     25855                                                <MinTileCol>11</MinTileCol>
     25856                                                <MaxTileCol>11</MaxTileCol>
     25857                                        </TileMatrixLimits>
     25858                                        <TileMatrixLimits>
     25859                                                <TileMatrix>6</TileMatrix>
     25860                                                <MinTileRow>31</MinTileRow>
     25861                                                <MaxTileRow>31</MaxTileRow>
     25862                                                <MinTileCol>22</MinTileCol>
     25863                                                <MaxTileCol>22</MaxTileCol>
     25864                                        </TileMatrixLimits>
     25865                                        <TileMatrixLimits>
     25866                                                <TileMatrix>7</TileMatrix>
     25867                                                <MinTileRow>62</MinTileRow>
     25868                                                <MaxTileRow>62</MaxTileRow>
     25869                                                <MinTileCol>45</MinTileCol>
     25870                                                <MaxTileCol>45</MaxTileCol>
     25871                                        </TileMatrixLimits>
     25872                                        <TileMatrixLimits>
     25873                                                <TileMatrix>8</TileMatrix>
     25874                                                <MinTileRow>124</MinTileRow>
     25875                                                <MaxTileRow>124</MaxTileRow>
     25876                                                <MinTileCol>90</MinTileCol>
     25877                                                <MaxTileCol>90</MaxTileCol>
     25878                                        </TileMatrixLimits>
     25879                                        <TileMatrixLimits>
     25880                                                <TileMatrix>9</TileMatrix>
     25881                                                <MinTileRow>248</MinTileRow>
     25882                                                <MaxTileRow>248</MaxTileRow>
     25883                                                <MinTileCol>180</MinTileCol>
     25884                                                <MaxTileCol>181</MaxTileCol>
     25885                                        </TileMatrixLimits>
     25886                                </TileMatrixSetLimits>
     25887                        </TileMatrixSetLink>
     25888                </Layer>
     25889                <Layer>
     25890                        <ows:Title>Orthophotographies Geosud de LANGUEDOC-ROUSSILLON 2014</ows:Title>
     25891                        <ows:Abstract>Orthophotographies satellites de LANGUEDOC-ROUSSILLON issues du projet Geosud.</ows:Abstract>
     25892                        <ows:Keywords>
     25893                                <ows:Keyword>Photographies</ows:Keyword>
     25894                        </ows:Keywords>
     25895                        <ows:WGS84BoundingBox>
     25896                                <ows:LowerCorner>1.61586 42.2998</ows:LowerCorner>
     25897                                <ows:UpperCorner>4.89191 45.0326</ows:UpperCorner>
     25898                        </ows:WGS84BoundingBox>
     25899                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANGUEDOC-ROUSSILLON-2014</ows:Identifier>
     25900                        <Style isDefault="true">
     25901                                <ows:Title>Données Brutes</ows:Title>
     25902                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     25903                                <ows:Keywords>
     25904                                        <ows:Keyword>Défaut</ows:Keyword>
     25905                                </ows:Keywords>
     25906                                <ows:Identifier>normal</ows:Identifier>
     25907                                <LegendURL format="image/jpeg" height="200"
     25908                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     25909                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     25910                        </Style>
     25911                        <Format>image/jpeg</Format>
     25912                        <TileMatrixSetLink>
     25913                                <TileMatrixSet>PM</TileMatrixSet>
     25914                                <TileMatrixSetLimits>
     25915                                        <TileMatrixLimits>
     25916                                                <TileMatrix>0</TileMatrix>
     25917                                                <MinTileRow>0</MinTileRow>
     25918                                                <MaxTileRow>0</MaxTileRow>
     25919                                                <MinTileCol>0</MinTileCol>
     25920                                                <MaxTileCol>0</MaxTileCol>
     25921                                        </TileMatrixLimits>
     25922                                        <TileMatrixLimits>
     25923                                                <TileMatrix>1</TileMatrix>
     25924                                                <MinTileRow>0</MinTileRow>
     25925                                                <MaxTileRow>0</MaxTileRow>
     25926                                                <MinTileCol>1</MinTileCol>
     25927                                                <MaxTileCol>1</MaxTileCol>
     25928                                        </TileMatrixLimits>
     25929                                        <TileMatrixLimits>
     25930                                                <TileMatrix>10</TileMatrix>
     25931                                                <MinTileRow>368</MinTileRow>
     25932                                                <MaxTileRow>378</MaxTileRow>
     25933                                                <MinTileCol>516</MinTileCol>
     25934                                                <MaxTileCol>525</MaxTileCol>
     25935                                        </TileMatrixLimits>
     25936                                        <TileMatrixLimits>
     25937                                                <TileMatrix>11</TileMatrix>
     25938                                                <MinTileRow>736</MinTileRow>
     25939                                                <MaxTileRow>757</MaxTileRow>
     25940                                                <MinTileCol>1033</MinTileCol>
     25941                                                <MaxTileCol>1051</MaxTileCol>
     25942                                        </TileMatrixLimits>
     25943                                        <TileMatrixLimits>
     25944                                                <TileMatrix>12</TileMatrix>
     25945                                                <MinTileRow>1472</MinTileRow>
     25946                                                <MaxTileRow>1515</MaxTileRow>
     25947                                                <MinTileCol>2066</MinTileCol>
     25948                                                <MaxTileCol>2103</MaxTileCol>
     25949                                        </TileMatrixLimits>
     25950                                        <TileMatrixLimits>
     25951                                                <TileMatrix>13</TileMatrix>
     25952                                                <MinTileRow>2945</MinTileRow>
     25953                                                <MaxTileRow>3031</MaxTileRow>
     25954                                                <MinTileCol>4133</MinTileCol>
     25955                                                <MaxTileCol>4206</MaxTileCol>
     25956                                        </TileMatrixLimits>
     25957                                        <TileMatrixLimits>
     25958                                                <TileMatrix>14</TileMatrix>
     25959                                                <MinTileRow>5891</MinTileRow>
     25960                                                <MaxTileRow>6062</MaxTileRow>
     25961                                                <MinTileCol>8267</MinTileCol>
     25962                                                <MaxTileCol>8413</MaxTileCol>
     25963                                        </TileMatrixLimits>
     25964                                        <TileMatrixLimits>
     25965                                                <TileMatrix>15</TileMatrix>
     25966                                                <MinTileRow>11782</MinTileRow>
     25967                                                <MaxTileRow>12125</MaxTileRow>
     25968                                                <MinTileCol>16534</MinTileCol>
     25969                                                <MaxTileCol>16826</MaxTileCol>
     25970                                        </TileMatrixLimits>
     25971                                        <TileMatrixLimits>
     25972                                                <TileMatrix>16</TileMatrix>
     25973                                                <MinTileRow>23564</MinTileRow>
     25974                                                <MaxTileRow>24251</MaxTileRow>
     25975                                                <MinTileCol>33069</MinTileCol>
     25976                                                <MaxTileCol>33652</MaxTileCol>
     25977                                        </TileMatrixLimits>
     25978                                        <TileMatrixLimits>
     25979                                                <TileMatrix>17</TileMatrix>
     25980                                                <MinTileRow>47128</MinTileRow>
     25981                                                <MaxTileRow>48502</MaxTileRow>
     25982                                                <MinTileCol>66139</MinTileCol>
     25983                                                <MaxTileCol>67305</MaxTileCol>
     25984                                        </TileMatrixLimits>
     25985                                        <TileMatrixLimits>
     25986                                                <TileMatrix>2</TileMatrix>
     25987                                                <MinTileRow>1</MinTileRow>
     25988                                                <MaxTileRow>1</MaxTileRow>
     25989                                                <MinTileCol>2</MinTileCol>
     25990                                                <MaxTileCol>2</MaxTileCol>
     25991                                        </TileMatrixLimits>
     25992                                        <TileMatrixLimits>
     25993                                                <TileMatrix>3</TileMatrix>
     25994                                                <MinTileRow>2</MinTileRow>
     25995                                                <MaxTileRow>2</MaxTileRow>
     25996                                                <MinTileCol>4</MinTileCol>
     25997                                                <MaxTileCol>4</MaxTileCol>
     25998                                        </TileMatrixLimits>
     25999                                        <TileMatrixLimits>
     26000                                                <TileMatrix>4</TileMatrix>
     26001                                                <MinTileRow>5</MinTileRow>
     26002                                                <MaxTileRow>5</MaxTileRow>
     26003                                                <MinTileCol>8</MinTileCol>
     26004                                                <MaxTileCol>8</MaxTileCol>
     26005                                        </TileMatrixLimits>
     26006                                        <TileMatrixLimits>
     26007                                                <TileMatrix>5</TileMatrix>
     26008                                                <MinTileRow>11</MinTileRow>
     26009                                                <MaxTileRow>11</MaxTileRow>
     26010                                                <MinTileCol>16</MinTileCol>
     26011                                                <MaxTileCol>16</MaxTileCol>
     26012                                        </TileMatrixLimits>
     26013                                        <TileMatrixLimits>
     26014                                                <TileMatrix>6</TileMatrix>
     26015                                                <MinTileRow>23</MinTileRow>
     26016                                                <MaxTileRow>23</MaxTileRow>
     26017                                                <MinTileCol>32</MinTileCol>
     26018                                                <MaxTileCol>32</MaxTileCol>
     26019                                        </TileMatrixLimits>
     26020                                        <TileMatrixLimits>
     26021                                                <TileMatrix>7</TileMatrix>
     26022                                                <MinTileRow>46</MinTileRow>
     26023                                                <MaxTileRow>47</MaxTileRow>
     26024                                                <MinTileCol>64</MinTileCol>
     26025                                                <MaxTileCol>65</MaxTileCol>
     26026                                        </TileMatrixLimits>
     26027                                        <TileMatrixLimits>
     26028                                                <TileMatrix>8</TileMatrix>
     26029                                                <MinTileRow>92</MinTileRow>
     26030                                                <MaxTileRow>94</MaxTileRow>
     26031                                                <MinTileCol>129</MinTileCol>
     26032                                                <MaxTileCol>131</MaxTileCol>
     26033                                        </TileMatrixLimits>
     26034                                        <TileMatrixLimits>
     26035                                                <TileMatrix>9</TileMatrix>
     26036                                                <MinTileRow>184</MinTileRow>
     26037                                                <MaxTileRow>189</MaxTileRow>
     26038                                                <MinTileCol>258</MinTileCol>
     26039                                                <MaxTileCol>262</MaxTileCol>
     26040                                        </TileMatrixLimits>
     26041                                </TileMatrixSetLimits>
     26042                        </TileMatrixSetLink>
     26043                </Layer>
     26044                <Layer>
     26045                        <ows:Title>Orthophotographies Geosud de Lannion</ows:Title>
     26046                        <ows:Abstract>Orthophotographies satellites de Lannion issues du projet Geosud.</ows:Abstract>
     26047                        <ows:Keywords>
     26048                                <ows:Keyword>Photographies</ows:Keyword>
     26049                        </ows:Keywords>
     26050                        <ows:WGS84BoundingBox>
     26051                                <ows:LowerCorner>-3.63112 48.6481</ows:LowerCorner>
     26052                                <ows:UpperCorner>-3.29371 48.8712</ows:UpperCorner>
     26053                        </ows:WGS84BoundingBox>
     26054                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANNION-2013-07-10-41354194</ows:Identifier>
     26055                        <Style isDefault="true">
     26056                                <ows:Title>Données Brutes</ows:Title>
     26057                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26058                                <ows:Keywords>
     26059                                        <ows:Keyword>Défaut</ows:Keyword>
     26060                                </ows:Keywords>
     26061                                <ows:Identifier>normal</ows:Identifier>
     26062                                <LegendURL format="image/jpeg" height="200"
     26063                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26064                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26065                        </Style>
     26066                        <Format>image/jpeg</Format>
     26067                        <TileMatrixSetLink>
     26068                                <TileMatrixSet>PM</TileMatrixSet>
     26069                                <TileMatrixSetLimits>
     26070                                        <TileMatrixLimits>
     26071                                                <TileMatrix>0</TileMatrix>
     26072                                                <MinTileRow>0</MinTileRow>
     26073                                                <MaxTileRow>0</MaxTileRow>
     26074                                                <MinTileCol>0</MinTileCol>
     26075                                                <MaxTileCol>0</MaxTileCol>
     26076                                        </TileMatrixLimits>
     26077                                        <TileMatrixLimits>
     26078                                                <TileMatrix>1</TileMatrix>
     26079                                                <MinTileRow>0</MinTileRow>
     26080                                                <MaxTileRow>0</MaxTileRow>
     26081                                                <MinTileCol>0</MinTileCol>
     26082                                                <MaxTileCol>0</MaxTileCol>
     26083                                        </TileMatrixLimits>
     26084                                        <TileMatrixLimits>
     26085                                                <TileMatrix>10</TileMatrix>
     26086                                                <MinTileRow>352</MinTileRow>
     26087                                                <MaxTileRow>353</MaxTileRow>
     26088                                                <MinTileCol>501</MinTileCol>
     26089                                                <MaxTileCol>502</MaxTileCol>
     26090                                        </TileMatrixLimits>
     26091                                        <TileMatrixLimits>
     26092                                                <TileMatrix>11</TileMatrix>
     26093                                                <MinTileRow>704</MinTileRow>
     26094                                                <MaxTileRow>706</MaxTileRow>
     26095                                                <MinTileCol>1003</MinTileCol>
     26096                                                <MaxTileCol>1005</MaxTileCol>
     26097                                        </TileMatrixLimits>
     26098                                        <TileMatrixLimits>
     26099                                                <TileMatrix>12</TileMatrix>
     26100                                                <MinTileRow>1409</MinTileRow>
     26101                                                <MaxTileRow>1412</MaxTileRow>
     26102                                                <MinTileCol>2006</MinTileCol>
     26103                                                <MaxTileCol>2010</MaxTileCol>
     26104                                        </TileMatrixLimits>
     26105                                        <TileMatrixLimits>
     26106                                                <TileMatrix>13</TileMatrix>
     26107                                                <MinTileRow>2818</MinTileRow>
     26108                                                <MaxTileRow>2825</MaxTileRow>
     26109                                                <MinTileCol>4013</MinTileCol>
     26110                                                <MaxTileCol>4020</MaxTileCol>
     26111                                        </TileMatrixLimits>
     26112                                        <TileMatrixLimits>
     26113                                                <TileMatrix>14</TileMatrix>
     26114                                                <MinTileRow>5636</MinTileRow>
     26115                                                <MaxTileRow>5650</MaxTileRow>
     26116                                                <MinTileCol>8027</MinTileCol>
     26117                                                <MaxTileCol>8041</MaxTileCol>
     26118                                        </TileMatrixLimits>
     26119                                        <TileMatrixLimits>
     26120                                                <TileMatrix>15</TileMatrix>
     26121                                                <MinTileRow>11272</MinTileRow>
     26122                                                <MaxTileRow>11300</MaxTileRow>
     26123                                                <MinTileCol>16054</MinTileCol>
     26124                                                <MaxTileCol>16082</MaxTileCol>
     26125                                        </TileMatrixLimits>
     26126                                        <TileMatrixLimits>
     26127                                                <TileMatrix>16</TileMatrix>
     26128                                                <MinTileRow>22544</MinTileRow>
     26129                                                <MaxTileRow>22600</MaxTileRow>
     26130                                                <MinTileCol>32109</MinTileCol>
     26131                                                <MaxTileCol>32165</MaxTileCol>
     26132                                        </TileMatrixLimits>
     26133                                        <TileMatrixLimits>
     26134                                                <TileMatrix>17</TileMatrix>
     26135                                                <MinTileRow>45089</MinTileRow>
     26136                                                <MaxTileRow>45201</MaxTileRow>
     26137                                                <MinTileCol>64218</MinTileCol>
     26138                                                <MaxTileCol>64331</MaxTileCol>
     26139                                        </TileMatrixLimits>
     26140                                        <TileMatrixLimits>
     26141                                                <TileMatrix>18</TileMatrix>
     26142                                                <MinTileRow>90179</MinTileRow>
     26143                                                <MaxTileRow>90403</MaxTileRow>
     26144                                                <MinTileCol>128436</MinTileCol>
     26145                                                <MaxTileCol>128663</MaxTileCol>
     26146                                        </TileMatrixLimits>
     26147                                        <TileMatrixLimits>
     26148                                                <TileMatrix>2</TileMatrix>
     26149                                                <MinTileRow>1</MinTileRow>
     26150                                                <MaxTileRow>1</MaxTileRow>
     26151                                                <MinTileCol>1</MinTileCol>
     26152                                                <MaxTileCol>1</MaxTileCol>
     26153                                        </TileMatrixLimits>
     26154                                        <TileMatrixLimits>
     26155                                                <TileMatrix>3</TileMatrix>
     26156                                                <MinTileRow>2</MinTileRow>
     26157                                                <MaxTileRow>2</MaxTileRow>
     26158                                                <MinTileCol>3</MinTileCol>
     26159                                                <MaxTileCol>3</MaxTileCol>
     26160                                        </TileMatrixLimits>
     26161                                        <TileMatrixLimits>
     26162                                                <TileMatrix>4</TileMatrix>
     26163                                                <MinTileRow>5</MinTileRow>
     26164                                                <MaxTileRow>5</MaxTileRow>
     26165                                                <MinTileCol>7</MinTileCol>
     26166                                                <MaxTileCol>7</MaxTileCol>
     26167                                        </TileMatrixLimits>
     26168                                        <TileMatrixLimits>
     26169                                                <TileMatrix>5</TileMatrix>
     26170                                                <MinTileRow>11</MinTileRow>
     26171                                                <MaxTileRow>11</MaxTileRow>
     26172                                                <MinTileCol>15</MinTileCol>
     26173                                                <MaxTileCol>15</MaxTileCol>
     26174                                        </TileMatrixLimits>
     26175                                        <TileMatrixLimits>
     26176                                                <TileMatrix>6</TileMatrix>
     26177                                                <MinTileRow>22</MinTileRow>
     26178                                                <MaxTileRow>22</MaxTileRow>
     26179                                                <MinTileCol>31</MinTileCol>
     26180                                                <MaxTileCol>31</MaxTileCol>
     26181                                        </TileMatrixLimits>
     26182                                        <TileMatrixLimits>
     26183                                                <TileMatrix>7</TileMatrix>
     26184                                                <MinTileRow>44</MinTileRow>
     26185                                                <MaxTileRow>44</MaxTileRow>
     26186                                                <MinTileCol>62</MinTileCol>
     26187                                                <MaxTileCol>62</MaxTileCol>
     26188                                        </TileMatrixLimits>
     26189                                        <TileMatrixLimits>
     26190                                                <TileMatrix>8</TileMatrix>
     26191                                                <MinTileRow>88</MinTileRow>
     26192                                                <MaxTileRow>88</MaxTileRow>
     26193                                                <MinTileCol>125</MinTileCol>
     26194                                                <MaxTileCol>125</MaxTileCol>
     26195                                        </TileMatrixLimits>
     26196                                        <TileMatrixLimits>
     26197                                                <TileMatrix>9</TileMatrix>
     26198                                                <MinTileRow>176</MinTileRow>
     26199                                                <MaxTileRow>176</MaxTileRow>
     26200                                                <MinTileCol>250</MinTileCol>
     26201                                                <MaxTileCol>251</MaxTileCol>
     26202                                        </TileMatrixLimits>
     26203                                </TileMatrixSetLimits>
     26204                        </TileMatrixSetLink>
     26205                </Layer>
     26206                <Layer>
     26207                        <ows:Title>Orthophotographies Geosud de LANNION</ows:Title>
     26208                        <ows:Abstract>Orthophotographies satellites de LANNION-2014 issues du projet Geosud.</ows:Abstract>
     26209                        <ows:Keywords>
     26210                                <ows:Keyword>Photographies</ows:Keyword>
     26211                        </ows:Keywords>
     26212                        <ows:WGS84BoundingBox>
     26213                                <ows:LowerCorner>-3.63112 48.6481</ows:LowerCorner>
     26214                                <ows:UpperCorner>-3.29371 48.8712</ows:UpperCorner>
     26215                        </ows:WGS84BoundingBox>
     26216                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LANNION-2014-03-08-41106819</ows:Identifier>
     26217                        <Style isDefault="true">
     26218                                <ows:Title>Données Brutes</ows:Title>
     26219                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26220                                <ows:Keywords>
     26221                                        <ows:Keyword>Défaut</ows:Keyword>
     26222                                </ows:Keywords>
     26223                                <ows:Identifier>normal</ows:Identifier>
     26224                                <LegendURL format="image/jpeg" height="200"
     26225                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26226                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26227                        </Style>
     26228                        <Format>image/jpeg</Format>
     26229                        <TileMatrixSetLink>
     26230                                <TileMatrixSet>PM</TileMatrixSet>
     26231                                <TileMatrixSetLimits>
     26232                                        <TileMatrixLimits>
     26233                                                <TileMatrix>0</TileMatrix>
     26234                                                <MinTileRow>0</MinTileRow>
     26235                                                <MaxTileRow>0</MaxTileRow>
     26236                                                <MinTileCol>0</MinTileCol>
     26237                                                <MaxTileCol>0</MaxTileCol>
     26238                                        </TileMatrixLimits>
     26239                                        <TileMatrixLimits>
     26240                                                <TileMatrix>1</TileMatrix>
     26241                                                <MinTileRow>0</MinTileRow>
     26242                                                <MaxTileRow>0</MaxTileRow>
     26243                                                <MinTileCol>0</MinTileCol>
     26244                                                <MaxTileCol>0</MaxTileCol>
     26245                                        </TileMatrixLimits>
     26246                                        <TileMatrixLimits>
     26247                                                <TileMatrix>10</TileMatrix>
     26248                                                <MinTileRow>352</MinTileRow>
     26249                                                <MaxTileRow>353</MaxTileRow>
     26250                                                <MinTileCol>501</MinTileCol>
     26251                                                <MaxTileCol>502</MaxTileCol>
     26252                                        </TileMatrixLimits>
     26253                                        <TileMatrixLimits>
     26254                                                <TileMatrix>11</TileMatrix>
     26255                                                <MinTileRow>704</MinTileRow>
     26256                                                <MaxTileRow>706</MaxTileRow>
     26257                                                <MinTileCol>1003</MinTileCol>
     26258                                                <MaxTileCol>1005</MaxTileCol>
     26259                                        </TileMatrixLimits>
     26260                                        <TileMatrixLimits>
     26261                                                <TileMatrix>12</TileMatrix>
     26262                                                <MinTileRow>1409</MinTileRow>
     26263                                                <MaxTileRow>1412</MaxTileRow>
     26264                                                <MinTileCol>2006</MinTileCol>
     26265                                                <MaxTileCol>2010</MaxTileCol>
     26266                                        </TileMatrixLimits>
     26267                                        <TileMatrixLimits>
     26268                                                <TileMatrix>13</TileMatrix>
     26269                                                <MinTileRow>2818</MinTileRow>
     26270                                                <MaxTileRow>2825</MaxTileRow>
     26271                                                <MinTileCol>4013</MinTileCol>
     26272                                                <MaxTileCol>4020</MaxTileCol>
     26273                                        </TileMatrixLimits>
     26274                                        <TileMatrixLimits>
     26275                                                <TileMatrix>14</TileMatrix>
     26276                                                <MinTileRow>5636</MinTileRow>
     26277                                                <MaxTileRow>5650</MaxTileRow>
     26278                                                <MinTileCol>8027</MinTileCol>
     26279                                                <MaxTileCol>8041</MaxTileCol>
     26280                                        </TileMatrixLimits>
     26281                                        <TileMatrixLimits>
     26282                                                <TileMatrix>15</TileMatrix>
     26283                                                <MinTileRow>11272</MinTileRow>
     26284                                                <MaxTileRow>11300</MaxTileRow>
     26285                                                <MinTileCol>16054</MinTileCol>
     26286                                                <MaxTileCol>16082</MaxTileCol>
     26287                                        </TileMatrixLimits>
     26288                                        <TileMatrixLimits>
     26289                                                <TileMatrix>16</TileMatrix>
     26290                                                <MinTileRow>22545</MinTileRow>
     26291                                                <MaxTileRow>22600</MaxTileRow>
     26292                                                <MinTileCol>32109</MinTileCol>
     26293                                                <MaxTileCol>32165</MaxTileCol>
     26294                                        </TileMatrixLimits>
     26295                                        <TileMatrixLimits>
     26296                                                <TileMatrix>17</TileMatrix>
     26297                                                <MinTileRow>45090</MinTileRow>
     26298                                                <MaxTileRow>45201</MaxTileRow>
     26299                                                <MinTileCol>64219</MinTileCol>
     26300                                                <MaxTileCol>64330</MaxTileCol>
     26301                                        </TileMatrixLimits>
     26302                                        <TileMatrixLimits>
     26303                                                <TileMatrix>18</TileMatrix>
     26304                                                <MinTileRow>90181</MinTileRow>
     26305                                                <MaxTileRow>90403</MaxTileRow>
     26306                                                <MinTileCol>128439</MinTileCol>
     26307                                                <MaxTileCol>128661</MaxTileCol>
     26308                                        </TileMatrixLimits>
     26309                                        <TileMatrixLimits>
     26310                                                <TileMatrix>2</TileMatrix>
     26311                                                <MinTileRow>1</MinTileRow>
     26312                                                <MaxTileRow>1</MaxTileRow>
     26313                                                <MinTileCol>1</MinTileCol>
     26314                                                <MaxTileCol>1</MaxTileCol>
     26315                                        </TileMatrixLimits>
     26316                                        <TileMatrixLimits>
     26317                                                <TileMatrix>3</TileMatrix>
     26318                                                <MinTileRow>2</MinTileRow>
     26319                                                <MaxTileRow>2</MaxTileRow>
     26320                                                <MinTileCol>3</MinTileCol>
     26321                                                <MaxTileCol>3</MaxTileCol>
     26322                                        </TileMatrixLimits>
     26323                                        <TileMatrixLimits>
     26324                                                <TileMatrix>4</TileMatrix>
     26325                                                <MinTileRow>5</MinTileRow>
     26326                                                <MaxTileRow>5</MaxTileRow>
     26327                                                <MinTileCol>7</MinTileCol>
     26328                                                <MaxTileCol>7</MaxTileCol>
     26329                                        </TileMatrixLimits>
     26330                                        <TileMatrixLimits>
     26331                                                <TileMatrix>5</TileMatrix>
     26332                                                <MinTileRow>11</MinTileRow>
     26333                                                <MaxTileRow>11</MaxTileRow>
     26334                                                <MinTileCol>15</MinTileCol>
     26335                                                <MaxTileCol>15</MaxTileCol>
     26336                                        </TileMatrixLimits>
     26337                                        <TileMatrixLimits>
     26338                                                <TileMatrix>6</TileMatrix>
     26339                                                <MinTileRow>22</MinTileRow>
     26340                                                <MaxTileRow>22</MaxTileRow>
     26341                                                <MinTileCol>31</MinTileCol>
     26342                                                <MaxTileCol>31</MaxTileCol>
     26343                                        </TileMatrixLimits>
     26344                                        <TileMatrixLimits>
     26345                                                <TileMatrix>7</TileMatrix>
     26346                                                <MinTileRow>44</MinTileRow>
     26347                                                <MaxTileRow>44</MaxTileRow>
     26348                                                <MinTileCol>62</MinTileCol>
     26349                                                <MaxTileCol>62</MaxTileCol>
     26350                                        </TileMatrixLimits>
     26351                                        <TileMatrixLimits>
     26352                                                <TileMatrix>8</TileMatrix>
     26353                                                <MinTileRow>88</MinTileRow>
     26354                                                <MaxTileRow>88</MaxTileRow>
     26355                                                <MinTileCol>125</MinTileCol>
     26356                                                <MaxTileCol>125</MaxTileCol>
     26357                                        </TileMatrixLimits>
     26358                                        <TileMatrixLimits>
     26359                                                <TileMatrix>9</TileMatrix>
     26360                                                <MinTileRow>176</MinTileRow>
     26361                                                <MaxTileRow>176</MaxTileRow>
     26362                                                <MinTileCol>250</MinTileCol>
     26363                                                <MaxTileCol>251</MaxTileCol>
     26364                                        </TileMatrixLimits>
     26365                                </TileMatrixSetLimits>
     26366                        </TileMatrixSetLink>
     26367                </Layer>
     26368                <Layer>
     26369                        <ows:Title>Orthophotographies Geosud de LE-HAVRE</ows:Title>
     26370                        <ows:Abstract>Orthophotographies satellites de LE-HAVRE issues du projet Geosud.</ows:Abstract>
     26371                        <ows:Keywords>
     26372                                <ows:Keyword>Photographies</ows:Keyword>
     26373                        </ows:Keywords>
     26374                        <ows:WGS84BoundingBox>
     26375                                <ows:LowerCorner>0.0341827 49.4465</ows:LowerCorner>
     26376                                <ows:UpperCorner>0.318677 49.6345</ows:UpperCorner>
     26377                        </ows:WGS84BoundingBox>
     26378                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LE-HAVRE-2013-03-30-40397194</ows:Identifier>
     26379                        <Style isDefault="true">
     26380                                <ows:Title>Données Brutes</ows:Title>
     26381                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26382                                <ows:Keywords>
     26383                                        <ows:Keyword>Défaut</ows:Keyword>
     26384                                </ows:Keywords>
     26385                                <ows:Identifier>normal</ows:Identifier>
     26386                                <LegendURL format="image/jpeg" height="200"
     26387                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26388                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26389                        </Style>
     26390                        <Format>image/jpeg</Format>
     26391                        <TileMatrixSetLink>
     26392                                <TileMatrixSet>PM</TileMatrixSet>
     26393                                <TileMatrixSetLimits>
     26394                                        <TileMatrixLimits>
     26395                                                <TileMatrix>0</TileMatrix>
     26396                                                <MinTileRow>0</MinTileRow>
     26397                                                <MaxTileRow>0</MaxTileRow>
     26398                                                <MinTileCol>0</MinTileCol>
     26399                                                <MaxTileCol>0</MaxTileCol>
     26400                                        </TileMatrixLimits>
     26401                                        <TileMatrixLimits>
     26402                                                <TileMatrix>1</TileMatrix>
     26403                                                <MinTileRow>0</MinTileRow>
     26404                                                <MaxTileRow>0</MaxTileRow>
     26405                                                <MinTileCol>1</MinTileCol>
     26406                                                <MaxTileCol>1</MaxTileCol>
     26407                                        </TileMatrixLimits>
     26408                                        <TileMatrixLimits>
     26409                                                <TileMatrix>10</TileMatrix>
     26410                                                <MinTileRow>348</MinTileRow>
     26411                                                <MaxTileRow>349</MaxTileRow>
     26412                                                <MinTileCol>512</MinTileCol>
     26413                                                <MaxTileCol>512</MaxTileCol>
     26414                                        </TileMatrixLimits>
     26415                                        <TileMatrixLimits>
     26416                                                <TileMatrix>11</TileMatrix>
     26417                                                <MinTileRow>697</MinTileRow>
     26418                                                <MaxTileRow>699</MaxTileRow>
     26419                                                <MinTileCol>1024</MinTileCol>
     26420                                                <MaxTileCol>1025</MaxTileCol>
     26421                                        </TileMatrixLimits>
     26422                                        <TileMatrixLimits>
     26423                                                <TileMatrix>12</TileMatrix>
     26424                                                <MinTileRow>1395</MinTileRow>
     26425                                                <MaxTileRow>1399</MaxTileRow>
     26426                                                <MinTileCol>2048</MinTileCol>
     26427                                                <MaxTileCol>2051</MaxTileCol>
     26428                                        </TileMatrixLimits>
     26429                                        <TileMatrixLimits>
     26430                                                <TileMatrix>13</TileMatrix>
     26431                                                <MinTileRow>2790</MinTileRow>
     26432                                                <MaxTileRow>2798</MaxTileRow>
     26433                                                <MinTileCol>4096</MinTileCol>
     26434                                                <MaxTileCol>4103</MaxTileCol>
     26435                                        </TileMatrixLimits>
     26436                                        <TileMatrixLimits>
     26437                                                <TileMatrix>14</TileMatrix>
     26438                                                <MinTileRow>5581</MinTileRow>
     26439                                                <MaxTileRow>5596</MaxTileRow>
     26440                                                <MinTileCol>8192</MinTileCol>
     26441                                                <MaxTileCol>8207</MaxTileCol>
     26442                                        </TileMatrixLimits>
     26443                                        <TileMatrixLimits>
     26444                                                <TileMatrix>15</TileMatrix>
     26445                                                <MinTileRow>11163</MinTileRow>
     26446                                                <MaxTileRow>11192</MaxTileRow>
     26447                                                <MinTileCol>16385</MinTileCol>
     26448                                                <MaxTileCol>16414</MaxTileCol>
     26449                                        </TileMatrixLimits>
     26450                                        <TileMatrixLimits>
     26451                                                <TileMatrix>16</TileMatrix>
     26452                                                <MinTileRow>22327</MinTileRow>
     26453                                                <MaxTileRow>22384</MaxTileRow>
     26454                                                <MinTileCol>32771</MinTileCol>
     26455                                                <MaxTileCol>32828</MaxTileCol>
     26456                                        </TileMatrixLimits>
     26457                                        <TileMatrixLimits>
     26458                                                <TileMatrix>17</TileMatrix>
     26459                                                <MinTileRow>44654</MinTileRow>
     26460                                                <MaxTileRow>44768</MaxTileRow>
     26461                                                <MinTileCol>65543</MinTileCol>
     26462                                                <MaxTileCol>65657</MaxTileCol>
     26463                                        </TileMatrixLimits>
     26464                                        <TileMatrixLimits>
     26465                                                <TileMatrix>18</TileMatrix>
     26466                                                <MinTileRow>89308</MinTileRow>
     26467                                                <MaxTileRow>89537</MaxTileRow>
     26468                                                <MinTileCol>131086</MinTileCol>
     26469                                                <MaxTileCol>131314</MaxTileCol>
     26470                                        </TileMatrixLimits>
     26471                                        <TileMatrixLimits>
     26472                                                <TileMatrix>2</TileMatrix>
     26473                                                <MinTileRow>1</MinTileRow>
     26474                                                <MaxTileRow>1</MaxTileRow>
     26475                                                <MinTileCol>2</MinTileCol>
     26476                                                <MaxTileCol>2</MaxTileCol>
     26477                                        </TileMatrixLimits>
     26478                                        <TileMatrixLimits>
     26479                                                <TileMatrix>3</TileMatrix>
     26480                                                <MinTileRow>2</MinTileRow>
     26481                                                <MaxTileRow>2</MaxTileRow>
     26482                                                <MinTileCol>4</MinTileCol>
     26483                                                <MaxTileCol>4</MaxTileCol>
     26484                                        </TileMatrixLimits>
     26485                                        <TileMatrixLimits>
     26486                                                <TileMatrix>4</TileMatrix>
     26487                                                <MinTileRow>5</MinTileRow>
     26488                                                <MaxTileRow>5</MaxTileRow>
     26489                                                <MinTileCol>8</MinTileCol>
     26490                                                <MaxTileCol>8</MaxTileCol>
     26491                                        </TileMatrixLimits>
     26492                                        <TileMatrixLimits>
     26493                                                <TileMatrix>5</TileMatrix>
     26494                                                <MinTileRow>10</MinTileRow>
     26495                                                <MaxTileRow>10</MaxTileRow>
     26496                                                <MinTileCol>16</MinTileCol>
     26497                                                <MaxTileCol>16</MaxTileCol>
     26498                                        </TileMatrixLimits>
     26499                                        <TileMatrixLimits>
     26500                                                <TileMatrix>6</TileMatrix>
     26501                                                <MinTileRow>21</MinTileRow>
     26502                                                <MaxTileRow>21</MaxTileRow>
     26503                                                <MinTileCol>32</MinTileCol>
     26504                                                <MaxTileCol>32</MaxTileCol>
     26505                                        </TileMatrixLimits>
     26506                                        <TileMatrixLimits>
     26507                                                <TileMatrix>7</TileMatrix>
     26508                                                <MinTileRow>43</MinTileRow>
     26509                                                <MaxTileRow>43</MaxTileRow>
     26510                                                <MinTileCol>64</MinTileCol>
     26511                                                <MaxTileCol>64</MaxTileCol>
     26512                                        </TileMatrixLimits>
     26513                                        <TileMatrixLimits>
     26514                                                <TileMatrix>8</TileMatrix>
     26515                                                <MinTileRow>87</MinTileRow>
     26516                                                <MaxTileRow>87</MaxTileRow>
     26517                                                <MinTileCol>128</MinTileCol>
     26518                                                <MaxTileCol>128</MaxTileCol>
     26519                                        </TileMatrixLimits>
     26520                                        <TileMatrixLimits>
     26521                                                <TileMatrix>9</TileMatrix>
     26522                                                <MinTileRow>174</MinTileRow>
     26523                                                <MaxTileRow>174</MaxTileRow>
     26524                                                <MinTileCol>256</MinTileCol>
     26525                                                <MaxTileCol>256</MaxTileCol>
     26526                                        </TileMatrixLimits>
     26527                                </TileMatrixSetLimits>
     26528                        </TileMatrixSetLink>
     26529                </Layer>
     26530                <Layer>
     26531                        <ows:Title>Orthophotographies Geosud de LE-HAVRE</ows:Title>
     26532                        <ows:Abstract>Orthophotographies satellites de LE-HAVRE issues du projet Geosud.</ows:Abstract>
     26533                        <ows:Keywords>
     26534                                <ows:Keyword>Photographies</ows:Keyword>
     26535                        </ows:Keywords>
     26536                        <ows:WGS84BoundingBox>
     26537                                <ows:LowerCorner>0.0349471 49.4494</ows:LowerCorner>
     26538                                <ows:UpperCorner>0.317687 49.6307</ows:UpperCorner>
     26539                        </ows:WGS84BoundingBox>
     26540                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LE-HAVRE-2013-03-30-40414069</ows:Identifier>
     26541                        <Style isDefault="true">
     26542                                <ows:Title>Données Brutes</ows:Title>
     26543                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26544                                <ows:Keywords>
     26545                                        <ows:Keyword>Défaut</ows:Keyword>
     26546                                </ows:Keywords>
     26547                                <ows:Identifier>normal</ows:Identifier>
     26548                                <LegendURL format="image/jpeg" height="200"
     26549                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26550                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26551                        </Style>
     26552                        <Format>image/jpeg</Format>
     26553                        <TileMatrixSetLink>
     26554                                <TileMatrixSet>PM</TileMatrixSet>
     26555                                <TileMatrixSetLimits>
     26556                                        <TileMatrixLimits>
     26557                                                <TileMatrix>0</TileMatrix>
     26558                                                <MinTileRow>0</MinTileRow>
     26559                                                <MaxTileRow>0</MaxTileRow>
     26560                                                <MinTileCol>0</MinTileCol>
     26561                                                <MaxTileCol>0</MaxTileCol>
     26562                                        </TileMatrixLimits>
     26563                                        <TileMatrixLimits>
     26564                                                <TileMatrix>1</TileMatrix>
     26565                                                <MinTileRow>0</MinTileRow>
     26566                                                <MaxTileRow>0</MaxTileRow>
     26567                                                <MinTileCol>1</MinTileCol>
     26568                                                <MaxTileCol>1</MaxTileCol>
     26569                                        </TileMatrixLimits>
     26570                                        <TileMatrixLimits>
     26571                                                <TileMatrix>10</TileMatrix>
     26572                                                <MinTileRow>348</MinTileRow>
     26573                                                <MaxTileRow>349</MaxTileRow>
     26574                                                <MinTileCol>512</MinTileCol>
     26575                                                <MaxTileCol>512</MaxTileCol>
     26576                                        </TileMatrixLimits>
     26577                                        <TileMatrixLimits>
     26578                                                <TileMatrix>11</TileMatrix>
     26579                                                <MinTileRow>697</MinTileRow>
     26580                                                <MaxTileRow>699</MaxTileRow>
     26581                                                <MinTileCol>1024</MinTileCol>
     26582                                                <MaxTileCol>1025</MaxTileCol>
     26583                                        </TileMatrixLimits>
     26584                                        <TileMatrixLimits>
     26585                                                <TileMatrix>12</TileMatrix>
     26586                                                <MinTileRow>1395</MinTileRow>
     26587                                                <MaxTileRow>1398</MaxTileRow>
     26588                                                <MinTileCol>2048</MinTileCol>
     26589                                                <MaxTileCol>2051</MaxTileCol>
     26590                                        </TileMatrixLimits>
     26591                                        <TileMatrixLimits>
     26592                                                <TileMatrix>13</TileMatrix>
     26593                                                <MinTileRow>2791</MinTileRow>
     26594                                                <MaxTileRow>2797</MaxTileRow>
     26595                                                <MinTileCol>4096</MinTileCol>
     26596                                                <MaxTileCol>4103</MaxTileCol>
     26597                                        </TileMatrixLimits>
     26598                                        <TileMatrixLimits>
     26599                                                <TileMatrix>14</TileMatrix>
     26600                                                <MinTileRow>5582</MinTileRow>
     26601                                                <MaxTileRow>5595</MaxTileRow>
     26602                                                <MinTileCol>8192</MinTileCol>
     26603                                                <MaxTileCol>8207</MaxTileCol>
     26604                                        </TileMatrixLimits>
     26605                                        <TileMatrixLimits>
     26606                                                <TileMatrix>15</TileMatrix>
     26607                                                <MinTileRow>11164</MinTileRow>
     26608                                                <MaxTileRow>11191</MaxTileRow>
     26609                                                <MinTileCol>16385</MinTileCol>
     26610                                                <MaxTileCol>16414</MaxTileCol>
     26611                                        </TileMatrixLimits>
     26612                                        <TileMatrixLimits>
     26613                                                <TileMatrix>16</TileMatrix>
     26614                                                <MinTileRow>22328</MinTileRow>
     26615                                                <MaxTileRow>22383</MaxTileRow>
     26616                                                <MinTileCol>32771</MinTileCol>
     26617                                                <MaxTileCol>32828</MaxTileCol>
     26618                                        </TileMatrixLimits>
     26619                                        <TileMatrixLimits>
     26620                                                <TileMatrix>17</TileMatrix>
     26621                                                <MinTileRow>44656</MinTileRow>
     26622                                                <MaxTileRow>44766</MaxTileRow>
     26623                                                <MinTileCol>65543</MinTileCol>
     26624                                                <MaxTileCol>65656</MaxTileCol>
     26625                                        </TileMatrixLimits>
     26626                                        <TileMatrixLimits>
     26627                                                <TileMatrix>18</TileMatrix>
     26628                                                <MinTileRow>89313</MinTileRow>
     26629                                                <MaxTileRow>89533</MaxTileRow>
     26630                                                <MinTileCol>131087</MinTileCol>
     26631                                                <MaxTileCol>131313</MaxTileCol>
     26632                                        </TileMatrixLimits>
     26633                                        <TileMatrixLimits>
     26634                                                <TileMatrix>2</TileMatrix>
     26635                                                <MinTileRow>1</MinTileRow>
     26636                                                <MaxTileRow>1</MaxTileRow>
     26637                                                <MinTileCol>2</MinTileCol>
     26638                                                <MaxTileCol>2</MaxTileCol>
     26639                                        </TileMatrixLimits>
     26640                                        <TileMatrixLimits>
     26641                                                <TileMatrix>3</TileMatrix>
     26642                                                <MinTileRow>2</MinTileRow>
     26643                                                <MaxTileRow>2</MaxTileRow>
     26644                                                <MinTileCol>4</MinTileCol>
     26645                                                <MaxTileCol>4</MaxTileCol>
     26646                                        </TileMatrixLimits>
     26647                                        <TileMatrixLimits>
     26648                                                <TileMatrix>4</TileMatrix>
     26649                                                <MinTileRow>5</MinTileRow>
     26650                                                <MaxTileRow>5</MaxTileRow>
     26651                                                <MinTileCol>8</MinTileCol>
     26652                                                <MaxTileCol>8</MaxTileCol>
     26653                                        </TileMatrixLimits>
     26654                                        <TileMatrixLimits>
     26655                                                <TileMatrix>5</TileMatrix>
     26656                                                <MinTileRow>10</MinTileRow>
     26657                                                <MaxTileRow>10</MaxTileRow>
     26658                                                <MinTileCol>16</MinTileCol>
     26659                                                <MaxTileCol>16</MaxTileCol>
     26660                                        </TileMatrixLimits>
     26661                                        <TileMatrixLimits>
     26662                                                <TileMatrix>6</TileMatrix>
     26663                                                <MinTileRow>21</MinTileRow>
     26664                                                <MaxTileRow>21</MaxTileRow>
     26665                                                <MinTileCol>32</MinTileCol>
     26666                                                <MaxTileCol>32</MaxTileCol>
     26667                                        </TileMatrixLimits>
     26668                                        <TileMatrixLimits>
     26669                                                <TileMatrix>7</TileMatrix>
     26670                                                <MinTileRow>43</MinTileRow>
     26671                                                <MaxTileRow>43</MaxTileRow>
     26672                                                <MinTileCol>64</MinTileCol>
     26673                                                <MaxTileCol>64</MaxTileCol>
     26674                                        </TileMatrixLimits>
     26675                                        <TileMatrixLimits>
     26676                                                <TileMatrix>8</TileMatrix>
     26677                                                <MinTileRow>87</MinTileRow>
     26678                                                <MaxTileRow>87</MaxTileRow>
     26679                                                <MinTileCol>128</MinTileCol>
     26680                                                <MaxTileCol>128</MaxTileCol>
     26681                                        </TileMatrixLimits>
     26682                                        <TileMatrixLimits>
     26683                                                <TileMatrix>9</TileMatrix>
     26684                                                <MinTileRow>174</MinTileRow>
     26685                                                <MaxTileRow>174</MaxTileRow>
     26686                                                <MinTileCol>256</MinTileCol>
     26687                                                <MaxTileCol>256</MaxTileCol>
     26688                                        </TileMatrixLimits>
     26689                                </TileMatrixSetLimits>
     26690                        </TileMatrixSetLink>
     26691                </Layer>
     26692                <Layer>
     26693                        <ows:Title>Orthophotographies Geosud de LENS-LIEVIN 2014</ows:Title>
     26694                        <ows:Abstract>Orthophotographies satellites de LENS-LIEVIN issues du projet Geosud.</ows:Abstract>
     26695                        <ows:Keywords>
     26696                                <ows:Keyword>Photographies</ows:Keyword>
     26697                        </ows:Keywords>
     26698                        <ows:WGS84BoundingBox>
     26699                                <ows:LowerCorner>2.67613 50.3224</ows:LowerCorner>
     26700                                <ows:UpperCorner>2.98598 50.5293</ows:UpperCorner>
     26701                        </ows:WGS84BoundingBox>
     26702                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LENS-LIEVIN-2014-05-16-39324074</ows:Identifier>
     26703                        <Style isDefault="true">
     26704                                <ows:Title>Données Brutes</ows:Title>
     26705                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26706                                <ows:Keywords>
     26707                                        <ows:Keyword>Défaut</ows:Keyword>
     26708                                </ows:Keywords>
     26709                                <ows:Identifier>normal</ows:Identifier>
     26710                                <LegendURL format="image/jpeg" height="200"
     26711                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26712                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26713                        </Style>
     26714                        <Format>image/jpeg</Format>
     26715                        <TileMatrixSetLink>
     26716                                <TileMatrixSet>PM</TileMatrixSet>
     26717                                <TileMatrixSetLimits>
     26718                                        <TileMatrixLimits>
     26719                                                <TileMatrix>0</TileMatrix>
     26720                                                <MinTileRow>0</MinTileRow>
     26721                                                <MaxTileRow>0</MaxTileRow>
     26722                                                <MinTileCol>0</MinTileCol>
     26723                                                <MaxTileCol>0</MaxTileCol>
     26724                                        </TileMatrixLimits>
     26725                                        <TileMatrixLimits>
     26726                                                <TileMatrix>1</TileMatrix>
     26727                                                <MinTileRow>0</MinTileRow>
     26728                                                <MaxTileRow>0</MaxTileRow>
     26729                                                <MinTileCol>1</MinTileCol>
     26730                                                <MaxTileCol>1</MaxTileCol>
     26731                                        </TileMatrixLimits>
     26732                                        <TileMatrixLimits>
     26733                                                <TileMatrix>10</TileMatrix>
     26734                                                <MinTileRow>344</MinTileRow>
     26735                                                <MaxTileRow>345</MaxTileRow>
     26736                                                <MinTileCol>519</MinTileCol>
     26737                                                <MaxTileCol>520</MaxTileCol>
     26738                                        </TileMatrixLimits>
     26739                                        <TileMatrixLimits>
     26740                                                <TileMatrix>11</TileMatrix>
     26741                                                <MinTileRow>689</MinTileRow>
     26742                                                <MaxTileRow>691</MaxTileRow>
     26743                                                <MinTileCol>1039</MinTileCol>
     26744                                                <MaxTileCol>1040</MaxTileCol>
     26745                                        </TileMatrixLimits>
     26746                                        <TileMatrixLimits>
     26747                                                <TileMatrix>12</TileMatrix>
     26748                                                <MinTileRow>1379</MinTileRow>
     26749                                                <MaxTileRow>1383</MaxTileRow>
     26750                                                <MinTileCol>2078</MinTileCol>
     26751                                                <MaxTileCol>2081</MaxTileCol>
     26752                                        </TileMatrixLimits>
     26753                                        <TileMatrixLimits>
     26754                                                <TileMatrix>13</TileMatrix>
     26755                                                <MinTileRow>2759</MinTileRow>
     26756                                                <MaxTileRow>2766</MaxTileRow>
     26757                                                <MinTileCol>4156</MinTileCol>
     26758                                                <MaxTileCol>4163</MaxTileCol>
     26759                                        </TileMatrixLimits>
     26760                                        <TileMatrixLimits>
     26761                                                <TileMatrix>14</TileMatrix>
     26762                                                <MinTileRow>5518</MinTileRow>
     26763                                                <MaxTileRow>5533</MaxTileRow>
     26764                                                <MinTileCol>8313</MinTileCol>
     26765                                                <MaxTileCol>8327</MaxTileCol>
     26766                                        </TileMatrixLimits>
     26767                                        <TileMatrixLimits>
     26768                                                <TileMatrix>15</TileMatrix>
     26769                                                <MinTileRow>11037</MinTileRow>
     26770                                                <MaxTileRow>11067</MaxTileRow>
     26771                                                <MinTileCol>16627</MinTileCol>
     26772                                                <MaxTileCol>16655</MaxTileCol>
     26773                                        </TileMatrixLimits>
     26774                                        <TileMatrixLimits>
     26775                                                <TileMatrix>16</TileMatrix>
     26776                                                <MinTileRow>22075</MinTileRow>
     26777                                                <MaxTileRow>22134</MaxTileRow>
     26778                                                <MinTileCol>33255</MinTileCol>
     26779                                                <MaxTileCol>33311</MaxTileCol>
     26780                                        </TileMatrixLimits>
     26781                                        <TileMatrixLimits>
     26782                                                <TileMatrix>17</TileMatrix>
     26783                                                <MinTileRow>44150</MinTileRow>
     26784                                                <MaxTileRow>44268</MaxTileRow>
     26785                                                <MinTileCol>66510</MinTileCol>
     26786                                                <MaxTileCol>66623</MaxTileCol>
     26787                                        </TileMatrixLimits>
     26788                                        <TileMatrixLimits>
     26789                                                <TileMatrix>18</TileMatrix>
     26790                                                <MinTileRow>88301</MinTileRow>
     26791                                                <MaxTileRow>88537</MaxTileRow>
     26792                                                <MinTileCol>133020</MinTileCol>
     26793                                                <MaxTileCol>133246</MaxTileCol>
     26794                                        </TileMatrixLimits>
     26795                                        <TileMatrixLimits>
     26796                                                <TileMatrix>2</TileMatrix>
     26797                                                <MinTileRow>1</MinTileRow>
     26798                                                <MaxTileRow>1</MaxTileRow>
     26799                                                <MinTileCol>2</MinTileCol>
     26800                                                <MaxTileCol>2</MaxTileCol>
     26801                                        </TileMatrixLimits>
     26802                                        <TileMatrixLimits>
     26803                                                <TileMatrix>3</TileMatrix>
     26804                                                <MinTileRow>2</MinTileRow>
     26805                                                <MaxTileRow>2</MaxTileRow>
     26806                                                <MinTileCol>4</MinTileCol>
     26807                                                <MaxTileCol>4</MaxTileCol>
     26808                                        </TileMatrixLimits>
     26809                                        <TileMatrixLimits>
     26810                                                <TileMatrix>4</TileMatrix>
     26811                                                <MinTileRow>5</MinTileRow>
     26812                                                <MaxTileRow>5</MaxTileRow>
     26813                                                <MinTileCol>8</MinTileCol>
     26814                                                <MaxTileCol>8</MaxTileCol>
     26815                                        </TileMatrixLimits>
     26816                                        <TileMatrixLimits>
     26817                                                <TileMatrix>5</TileMatrix>
     26818                                                <MinTileRow>10</MinTileRow>
     26819                                                <MaxTileRow>10</MaxTileRow>
     26820                                                <MinTileCol>16</MinTileCol>
     26821                                                <MaxTileCol>16</MaxTileCol>
     26822                                        </TileMatrixLimits>
     26823                                        <TileMatrixLimits>
     26824                                                <TileMatrix>6</TileMatrix>
     26825                                                <MinTileRow>21</MinTileRow>
     26826                                                <MaxTileRow>21</MaxTileRow>
     26827                                                <MinTileCol>32</MinTileCol>
     26828                                                <MaxTileCol>32</MaxTileCol>
     26829                                        </TileMatrixLimits>
     26830                                        <TileMatrixLimits>
     26831                                                <TileMatrix>7</TileMatrix>
     26832                                                <MinTileRow>43</MinTileRow>
     26833                                                <MaxTileRow>43</MaxTileRow>
     26834                                                <MinTileCol>64</MinTileCol>
     26835                                                <MaxTileCol>65</MaxTileCol>
     26836                                        </TileMatrixLimits>
     26837                                        <TileMatrixLimits>
     26838                                                <TileMatrix>8</TileMatrix>
     26839                                                <MinTileRow>86</MinTileRow>
     26840                                                <MaxTileRow>86</MaxTileRow>
     26841                                                <MinTileCol>129</MinTileCol>
     26842                                                <MaxTileCol>130</MaxTileCol>
     26843                                        </TileMatrixLimits>
     26844                                        <TileMatrixLimits>
     26845                                                <TileMatrix>9</TileMatrix>
     26846                                                <MinTileRow>172</MinTileRow>
     26847                                                <MaxTileRow>172</MaxTileRow>
     26848                                                <MinTileCol>259</MinTileCol>
     26849                                                <MaxTileCol>260</MaxTileCol>
     26850                                        </TileMatrixLimits>
     26851                                </TileMatrixSetLimits>
     26852                        </TileMatrixSetLink>
     26853                </Layer>
     26854                <Layer>
     26855                        <ows:Title>Orthophotographies Geosud de LILLE 2013</ows:Title>
     26856                        <ows:Abstract>Orthophotographies satellites de LILLE issues du projet Geosud.</ows:Abstract>
     26857                        <ows:Keywords>
     26858                                <ows:Keyword>Photographies</ows:Keyword>
     26859                        </ows:Keywords>
     26860                        <ows:WGS84BoundingBox>
     26861                                <ows:LowerCorner>2.95753 50.5111</ows:LowerCorner>
     26862                                <ows:UpperCorner>3.25483 50.7985</ows:UpperCorner>
     26863                        </ows:WGS84BoundingBox>
     26864                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LILLE-2013-07-21-39272818</ows:Identifier>
     26865                        <Style isDefault="true">
     26866                                <ows:Title>Données Brutes</ows:Title>
     26867                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     26868                                <ows:Keywords>
     26869                                        <ows:Keyword>Défaut</ows:Keyword>
     26870                                </ows:Keywords>
     26871                                <ows:Identifier>normal</ows:Identifier>
     26872                                <LegendURL format="image/jpeg" height="200"
     26873                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     26874                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     26875                        </Style>
     26876                        <Format>image/jpeg</Format>
     26877                        <TileMatrixSetLink>
     26878                                <TileMatrixSet>PM</TileMatrixSet>
     26879                                <TileMatrixSetLimits>
     26880                                        <TileMatrixLimits>
     26881                                                <TileMatrix>0</TileMatrix>
     26882                                                <MinTileRow>0</MinTileRow>
     26883                                                <MaxTileRow>0</MaxTileRow>
     26884                                                <MinTileCol>0</MinTileCol>
     26885                                                <MaxTileCol>0</MaxTileCol>
     26886                                        </TileMatrixLimits>
     26887                                        <TileMatrixLimits>
     26888                                                <TileMatrix>1</TileMatrix>
     26889                                                <MinTileRow>0</MinTileRow>
     26890                                                <MaxTileRow>0</MaxTileRow>
     26891                                                <MinTileCol>1</MinTileCol>
     26892                                                <MaxTileCol>1</MaxTileCol>
     26893                                        </TileMatrixLimits>
     26894                                        <TileMatrixLimits>
     26895                                                <TileMatrix>10</TileMatrix>
     26896                                                <MinTileRow>343</MinTileRow>
     26897                                                <MaxTileRow>345</MaxTileRow>
     26898                                                <MinTileCol>520</MinTileCol>
     26899                                                <MaxTileCol>521</MaxTileCol>
     26900                                        </TileMatrixLimits>
     26901                                        <TileMatrixLimits>
     26902                                                <TileMatrix>11</TileMatrix>
     26903                                                <MinTileRow>687</MinTileRow>
     26904                                                <MaxTileRow>690</MaxTileRow>
     26905                                                <MinTileCol>1040</MinTileCol>
     26906                                                <MaxTileCol>1042</MaxTileCol>
     26907                                        </TileMatrixLimits>
     26908                                        <TileMatrixLimits>
     26909                                                <TileMatrix>12</TileMatrix>
     26910                                                <MinTileRow>1374</MinTileRow>
     26911                                                <MaxTileRow>1380</MaxTileRow>
     26912                                                <MinTileCol>2081</MinTileCol>
     26913                                                <MaxTileCol>2085</MaxTileCol>
     26914                                        </TileMatrixLimits>
     26915                                        <TileMatrixLimits>
     26916                                                <TileMatrix>13</TileMatrix>
     26917                                                <MinTileRow>2749</MinTileRow>
     26918                                                <MaxTileRow>2760</MaxTileRow>
     26919                                                <MinTileCol>4163</MinTileCol>
     26920                                                <MaxTileCol>4170</MaxTileCol>
     26921                                        </TileMatrixLimits>
     26922                                        <TileMatrixLimits>
     26923                                                <TileMatrix>14</TileMatrix>
     26924                                                <MinTileRow>5499</MinTileRow>
     26925                                                <MaxTileRow>5520</MaxTileRow>
     26926                                                <MinTileCol>8326</MinTileCol>
     26927                                                <MaxTileCol>8340</MaxTileCol>
     26928                                        </TileMatrixLimits>
     26929                                        <TileMatrixLimits>
     26930                                                <TileMatrix>15</TileMatrix>
     26931                                                <MinTileRow>10999</MinTileRow>
     26932                                                <MaxTileRow>11040</MaxTileRow>
     26933                                                <MinTileCol>16653</MinTileCol>
     26934                                                <MaxTileCol>16680</MaxTileCol>
     26935                                        </TileMatrixLimits>
     26936                                        <TileMatrixLimits>
     26937                                                <TileMatrix>16</TileMatrix>
     26938                                                <MinTileRow>21998</MinTileRow>
     26939                                                <MaxTileRow>22080</MaxTileRow>
     26940                                                <MinTileCol>33306</MinTileCol>
     26941                                                <MaxTileCol>33360</MaxTileCol>
     26942                                        </TileMatrixLimits>
     26943                                        <TileMatrixLimits>
     26944                                                <TileMatrix>17</TileMatrix>
     26945                                                <MinTileRow>43996</MinTileRow>
     26946                                                <MaxTileRow>44161</MaxTileRow>
     26947                                                <MinTileCol>66612</MinTileCol>
     26948                                                <MaxTileCol>66720</MaxTileCol>
     26949                                        </TileMatrixLimits>
     26950                                        <TileMatrixLimits>
     26951                                                <TileMatrix>18</TileMatrix>
     26952                                                <MinTileRow>87992</MinTileRow>
     26953                                                <MaxTileRow>88322</MaxTileRow>
     26954                                                <MinTileCol>133225</MinTileCol>
     26955                                                <MaxTileCol>133441</MaxTileCol>
     26956                                        </TileMatrixLimits>
     26957                                        <TileMatrixLimits>
     26958                                                <TileMatrix>2</TileMatrix>
     26959                                                <MinTileRow>1</MinTileRow>
     26960                                                <MaxTileRow>1</MaxTileRow>
     26961                                                <MinTileCol>2</MinTileCol>
     26962                                                <MaxTileCol>2</MaxTileCol>
     26963                                        </TileMatrixLimits>
     26964                                        <TileMatrixLimits>
     26965                                                <TileMatrix>3</TileMatrix>
     26966                                                <MinTileRow>2</MinTileRow>
     26967                                                <MaxTileRow>2</MaxTileRow>
     26968                                                <MinTileCol>4</MinTileCol>
     26969                                                <MaxTileCol>4</MaxTileCol>
     26970                                        </TileMatrixLimits>
     26971                                        <TileMatrixLimits>
     26972                                                <TileMatrix>4</TileMatrix>
     26973                                                <MinTileRow>5</MinTileRow>
     26974                                                <MaxTileRow>5</MaxTileRow>
     26975                                                <MinTileCol>8</MinTileCol>
     26976                                                <MaxTileCol>8</MaxTileCol>
     26977                                        </TileMatrixLimits>
     26978                                        <TileMatrixLimits>
     26979                                                <TileMatrix>5</TileMatrix>
     26980                                                <MinTileRow>10</MinTileRow>
     26981                                                <MaxTileRow>10</MaxTileRow>
     26982                                                <MinTileCol>16</MinTileCol>
     26983                                                <MaxTileCol>16</MaxTileCol>
     26984                                        </TileMatrixLimits>
     26985                                        <TileMatrixLimits>
     26986                                                <TileMatrix>6</TileMatrix>
     26987                                                <MinTileRow>21</MinTileRow>
     26988                                                <MaxTileRow>21</MaxTileRow>
     26989                                                <MinTileCol>32</MinTileCol>
     26990                                                <MaxTileCol>32</MaxTileCol>
     26991                                        </TileMatrixLimits>
     26992                                        <TileMatrixLimits>
     26993                                                <TileMatrix>7</TileMatrix>
     26994                                                <MinTileRow>42</MinTileRow>
     26995                                                <MaxTileRow>43</MaxTileRow>
     26996                                                <MinTileCol>65</MinTileCol>
     26997                                                <MaxTileCol>65</MaxTileCol>
     26998                                        </TileMatrixLimits>
     26999                                        <TileMatrixLimits>
     27000                                                <TileMatrix>8</TileMatrix>
     27001                                                <MinTileRow>85</MinTileRow>
     27002                                                <MaxTileRow>86</MaxTileRow>
     27003                                                <MinTileCol>130</MinTileCol>
     27004                                                <MaxTileCol>130</MaxTileCol>
     27005                                        </TileMatrixLimits>
     27006                                        <TileMatrixLimits>
     27007                                                <TileMatrix>9</TileMatrix>
     27008                                                <MinTileRow>171</MinTileRow>
     27009                                                <MaxTileRow>172</MaxTileRow>
     27010                                                <MinTileCol>260</MinTileCol>
     27011                                                <MaxTileCol>260</MaxTileCol>
     27012                                        </TileMatrixLimits>
     27013                                </TileMatrixSetLimits>
     27014                        </TileMatrixSetLink>
     27015                </Layer>
     27016                <Layer>
     27017                        <ows:Title>Orthophotographies Geosud de LILLE 2013</ows:Title>
     27018                        <ows:Abstract>Orthophotographies satellites de LILLE issues du projet Geosud.</ows:Abstract>
     27019                        <ows:Keywords>
     27020                                <ows:Keyword>Photographies</ows:Keyword>
     27021                        </ows:Keywords>
     27022                        <ows:WGS84BoundingBox>
     27023                                <ows:LowerCorner>2.95753 50.5111</ows:LowerCorner>
     27024                                <ows:UpperCorner>3.25483 50.7985</ows:UpperCorner>
     27025                        </ows:WGS84BoundingBox>
     27026                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LILLE-2013-07-21-39286798</ows:Identifier>
     27027                        <Style isDefault="true">
     27028                                <ows:Title>Données Brutes</ows:Title>
     27029                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27030                                <ows:Keywords>
     27031                                        <ows:Keyword>Défaut</ows:Keyword>
     27032                                </ows:Keywords>
     27033                                <ows:Identifier>normal</ows:Identifier>
     27034                                <LegendURL format="image/jpeg" height="200"
     27035                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27036                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27037                        </Style>
     27038                        <Format>image/jpeg</Format>
     27039                        <TileMatrixSetLink>
     27040                                <TileMatrixSet>PM</TileMatrixSet>
     27041                                <TileMatrixSetLimits>
     27042                                        <TileMatrixLimits>
     27043                                                <TileMatrix>0</TileMatrix>
     27044                                                <MinTileRow>0</MinTileRow>
     27045                                                <MaxTileRow>0</MaxTileRow>
     27046                                                <MinTileCol>0</MinTileCol>
     27047                                                <MaxTileCol>0</MaxTileCol>
     27048                                        </TileMatrixLimits>
     27049                                        <TileMatrixLimits>
     27050                                                <TileMatrix>1</TileMatrix>
     27051                                                <MinTileRow>0</MinTileRow>
     27052                                                <MaxTileRow>0</MaxTileRow>
     27053                                                <MinTileCol>1</MinTileCol>
     27054                                                <MaxTileCol>1</MaxTileCol>
     27055                                        </TileMatrixLimits>
     27056                                        <TileMatrixLimits>
     27057                                                <TileMatrix>10</TileMatrix>
     27058                                                <MinTileRow>343</MinTileRow>
     27059                                                <MaxTileRow>345</MaxTileRow>
     27060                                                <MinTileCol>520</MinTileCol>
     27061                                                <MaxTileCol>521</MaxTileCol>
     27062                                        </TileMatrixLimits>
     27063                                        <TileMatrixLimits>
     27064                                                <TileMatrix>11</TileMatrix>
     27065                                                <MinTileRow>687</MinTileRow>
     27066                                                <MaxTileRow>690</MaxTileRow>
     27067                                                <MinTileCol>1040</MinTileCol>
     27068                                                <MaxTileCol>1042</MaxTileCol>
     27069                                        </TileMatrixLimits>
     27070                                        <TileMatrixLimits>
     27071                                                <TileMatrix>12</TileMatrix>
     27072                                                <MinTileRow>1374</MinTileRow>
     27073                                                <MaxTileRow>1380</MaxTileRow>
     27074                                                <MinTileCol>2081</MinTileCol>
     27075                                                <MaxTileCol>2085</MaxTileCol>
     27076                                        </TileMatrixLimits>
     27077                                        <TileMatrixLimits>
     27078                                                <TileMatrix>13</TileMatrix>
     27079                                                <MinTileRow>2749</MinTileRow>
     27080                                                <MaxTileRow>2760</MaxTileRow>
     27081                                                <MinTileCol>4163</MinTileCol>
     27082                                                <MaxTileCol>4170</MaxTileCol>
     27083                                        </TileMatrixLimits>
     27084                                        <TileMatrixLimits>
     27085                                                <TileMatrix>14</TileMatrix>
     27086                                                <MinTileRow>5499</MinTileRow>
     27087                                                <MaxTileRow>5520</MaxTileRow>
     27088                                                <MinTileCol>8326</MinTileCol>
     27089                                                <MaxTileCol>8340</MaxTileCol>
     27090                                        </TileMatrixLimits>
     27091                                        <TileMatrixLimits>
     27092                                                <TileMatrix>15</TileMatrix>
     27093                                                <MinTileRow>10999</MinTileRow>
     27094                                                <MaxTileRow>11040</MaxTileRow>
     27095                                                <MinTileCol>16653</MinTileCol>
     27096                                                <MaxTileCol>16680</MaxTileCol>
     27097                                        </TileMatrixLimits>
     27098                                        <TileMatrixLimits>
     27099                                                <TileMatrix>16</TileMatrix>
     27100                                                <MinTileRow>21998</MinTileRow>
     27101                                                <MaxTileRow>22080</MaxTileRow>
     27102                                                <MinTileCol>33306</MinTileCol>
     27103                                                <MaxTileCol>33360</MaxTileCol>
     27104                                        </TileMatrixLimits>
     27105                                        <TileMatrixLimits>
     27106                                                <TileMatrix>17</TileMatrix>
     27107                                                <MinTileRow>43996</MinTileRow>
     27108                                                <MaxTileRow>44161</MaxTileRow>
     27109                                                <MinTileCol>66612</MinTileCol>
     27110                                                <MaxTileCol>66720</MaxTileCol>
     27111                                        </TileMatrixLimits>
     27112                                        <TileMatrixLimits>
     27113                                                <TileMatrix>18</TileMatrix>
     27114                                                <MinTileRow>87992</MinTileRow>
     27115                                                <MaxTileRow>88322</MaxTileRow>
     27116                                                <MinTileCol>133225</MinTileCol>
     27117                                                <MaxTileCol>133441</MaxTileCol>
     27118                                        </TileMatrixLimits>
     27119                                        <TileMatrixLimits>
     27120                                                <TileMatrix>2</TileMatrix>
     27121                                                <MinTileRow>1</MinTileRow>
     27122                                                <MaxTileRow>1</MaxTileRow>
     27123                                                <MinTileCol>2</MinTileCol>
     27124                                                <MaxTileCol>2</MaxTileCol>
     27125                                        </TileMatrixLimits>
     27126                                        <TileMatrixLimits>
     27127                                                <TileMatrix>3</TileMatrix>
     27128                                                <MinTileRow>2</MinTileRow>
     27129                                                <MaxTileRow>2</MaxTileRow>
     27130                                                <MinTileCol>4</MinTileCol>
     27131                                                <MaxTileCol>4</MaxTileCol>
     27132                                        </TileMatrixLimits>
     27133                                        <TileMatrixLimits>
     27134                                                <TileMatrix>4</TileMatrix>
     27135                                                <MinTileRow>5</MinTileRow>
     27136                                                <MaxTileRow>5</MaxTileRow>
     27137                                                <MinTileCol>8</MinTileCol>
     27138                                                <MaxTileCol>8</MaxTileCol>
     27139                                        </TileMatrixLimits>
     27140                                        <TileMatrixLimits>
     27141                                                <TileMatrix>5</TileMatrix>
     27142                                                <MinTileRow>10</MinTileRow>
     27143                                                <MaxTileRow>10</MaxTileRow>
     27144                                                <MinTileCol>16</MinTileCol>
     27145                                                <MaxTileCol>16</MaxTileCol>
     27146                                        </TileMatrixLimits>
     27147                                        <TileMatrixLimits>
     27148                                                <TileMatrix>6</TileMatrix>
     27149                                                <MinTileRow>21</MinTileRow>
     27150                                                <MaxTileRow>21</MaxTileRow>
     27151                                                <MinTileCol>32</MinTileCol>
     27152                                                <MaxTileCol>32</MaxTileCol>
     27153                                        </TileMatrixLimits>
     27154                                        <TileMatrixLimits>
     27155                                                <TileMatrix>7</TileMatrix>
     27156                                                <MinTileRow>42</MinTileRow>
     27157                                                <MaxTileRow>43</MaxTileRow>
     27158                                                <MinTileCol>65</MinTileCol>
     27159                                                <MaxTileCol>65</MaxTileCol>
     27160                                        </TileMatrixLimits>
     27161                                        <TileMatrixLimits>
     27162                                                <TileMatrix>8</TileMatrix>
     27163                                                <MinTileRow>85</MinTileRow>
     27164                                                <MaxTileRow>86</MaxTileRow>
     27165                                                <MinTileCol>130</MinTileCol>
     27166                                                <MaxTileCol>130</MaxTileCol>
     27167                                        </TileMatrixLimits>
     27168                                        <TileMatrixLimits>
     27169                                                <TileMatrix>9</TileMatrix>
     27170                                                <MinTileRow>171</MinTileRow>
     27171                                                <MaxTileRow>172</MaxTileRow>
     27172                                                <MinTileCol>260</MinTileCol>
     27173                                                <MaxTileCol>260</MaxTileCol>
     27174                                        </TileMatrixLimits>
     27175                                </TileMatrixSetLimits>
     27176                        </TileMatrixSetLink>
     27177                </Layer>
     27178                <Layer>
     27179                        <ows:Title>Orthophotographies Geosud de LIMOUSIN-2013</ows:Title>
     27180                        <ows:Abstract>Orthophotographies satellites de LIMOUSIN-2013 issues du projet Geosud.</ows:Abstract>
     27181                        <ows:Keywords>
     27182                                <ows:Keyword>Photographies</ows:Keyword>
     27183                        </ows:Keywords>
     27184                        <ows:WGS84BoundingBox>
     27185                                <ows:LowerCorner>0.563585 44.8809</ows:LowerCorner>
     27186                                <ows:UpperCorner>2.64526 46.4724</ows:UpperCorner>
     27187                        </ows:WGS84BoundingBox>
     27188                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LIMOUSIN-2013</ows:Identifier>
     27189                        <Style isDefault="true">
     27190                                <ows:Title>Données Brutes</ows:Title>
     27191                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27192                                <ows:Keywords>
     27193                                        <ows:Keyword>Défaut</ows:Keyword>
     27194                                </ows:Keywords>
     27195                                <ows:Identifier>normal</ows:Identifier>
     27196                                <LegendURL format="image/jpeg" height="200"
     27197                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27198                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27199                        </Style>
     27200                        <Format>image/jpeg</Format>
     27201                        <TileMatrixSetLink>
     27202                                <TileMatrixSet>PM</TileMatrixSet>
     27203                                <TileMatrixSetLimits>
     27204                                        <TileMatrixLimits>
     27205                                                <TileMatrix>0</TileMatrix>
     27206                                                <MinTileRow>0</MinTileRow>
     27207                                                <MaxTileRow>0</MaxTileRow>
     27208                                                <MinTileCol>0</MinTileCol>
     27209                                                <MaxTileCol>0</MaxTileCol>
     27210                                        </TileMatrixLimits>
     27211                                        <TileMatrixLimits>
     27212                                                <TileMatrix>1</TileMatrix>
     27213                                                <MinTileRow>0</MinTileRow>
     27214                                                <MaxTileRow>0</MaxTileRow>
     27215                                                <MinTileCol>1</MinTileCol>
     27216                                                <MaxTileCol>1</MaxTileCol>
     27217                                        </TileMatrixLimits>
     27218                                        <TileMatrixLimits>
     27219                                                <TileMatrix>10</TileMatrix>
     27220                                                <MinTileRow>362</MinTileRow>
     27221                                                <MaxTileRow>368</MaxTileRow>
     27222                                                <MinTileCol>513</MinTileCol>
     27223                                                <MaxTileCol>519</MaxTileCol>
     27224                                        </TileMatrixLimits>
     27225                                        <TileMatrixLimits>
     27226                                                <TileMatrix>11</TileMatrix>
     27227                                                <MinTileRow>724</MinTileRow>
     27228                                                <MaxTileRow>737</MaxTileRow>
     27229                                                <MinTileCol>1027</MinTileCol>
     27230                                                <MaxTileCol>1039</MaxTileCol>
     27231                                        </TileMatrixLimits>
     27232                                        <TileMatrixLimits>
     27233                                                <TileMatrix>12</TileMatrix>
     27234                                                <MinTileRow>1449</MinTileRow>
     27235                                                <MaxTileRow>1475</MaxTileRow>
     27236                                                <MinTileCol>2054</MinTileCol>
     27237                                                <MaxTileCol>2078</MaxTileCol>
     27238                                        </TileMatrixLimits>
     27239                                        <TileMatrixLimits>
     27240                                                <TileMatrix>13</TileMatrix>
     27241                                                <MinTileRow>2898</MinTileRow>
     27242                                                <MaxTileRow>2950</MaxTileRow>
     27243                                                <MinTileCol>4109</MinTileCol>
     27244                                                <MaxTileCol>4156</MaxTileCol>
     27245                                        </TileMatrixLimits>
     27246                                        <TileMatrixLimits>
     27247                                                <TileMatrix>14</TileMatrix>
     27248                                                <MinTileRow>5797</MinTileRow>
     27249                                                <MaxTileRow>5900</MaxTileRow>
     27250                                                <MinTileCol>8219</MinTileCol>
     27251                                                <MaxTileCol>8312</MaxTileCol>
     27252                                        </TileMatrixLimits>
     27253                                        <TileMatrixLimits>
     27254                                                <TileMatrix>15</TileMatrix>
     27255                                                <MinTileRow>11595</MinTileRow>
     27256                                                <MaxTileRow>11800</MaxTileRow>
     27257                                                <MinTileCol>16438</MinTileCol>
     27258                                                <MaxTileCol>16624</MaxTileCol>
     27259                                        </TileMatrixLimits>
     27260                                        <TileMatrixLimits>
     27261                                                <TileMatrix>16</TileMatrix>
     27262                                                <MinTileRow>23191</MinTileRow>
     27263                                                <MaxTileRow>23600</MaxTileRow>
     27264                                                <MinTileCol>32876</MinTileCol>
     27265                                                <MaxTileCol>33248</MaxTileCol>
     27266                                        </TileMatrixLimits>
     27267                                        <TileMatrixLimits>
     27268                                                <TileMatrix>17</TileMatrix>
     27269                                                <MinTileRow>46383</MinTileRow>
     27270                                                <MaxTileRow>47201</MaxTileRow>
     27271                                                <MinTileCol>65752</MinTileCol>
     27272                                                <MaxTileCol>66496</MaxTileCol>
     27273                                        </TileMatrixLimits>
     27274                                        <TileMatrixLimits>
     27275                                                <TileMatrix>2</TileMatrix>
     27276                                                <MinTileRow>1</MinTileRow>
     27277                                                <MaxTileRow>1</MaxTileRow>
     27278                                                <MinTileCol>2</MinTileCol>
     27279                                                <MaxTileCol>2</MaxTileCol>
     27280                                        </TileMatrixLimits>
     27281                                        <TileMatrixLimits>
     27282                                                <TileMatrix>3</TileMatrix>
     27283                                                <MinTileRow>2</MinTileRow>
     27284                                                <MaxTileRow>2</MaxTileRow>
     27285                                                <MinTileCol>4</MinTileCol>
     27286                                                <MaxTileCol>4</MaxTileCol>
     27287                                        </TileMatrixLimits>
     27288                                        <TileMatrixLimits>
     27289                                                <TileMatrix>4</TileMatrix>
     27290                                                <MinTileRow>5</MinTileRow>
     27291                                                <MaxTileRow>5</MaxTileRow>
     27292                                                <MinTileCol>8</MinTileCol>
     27293                                                <MaxTileCol>8</MaxTileCol>
     27294                                        </TileMatrixLimits>
     27295                                        <TileMatrixLimits>
     27296                                                <TileMatrix>5</TileMatrix>
     27297                                                <MinTileRow>11</MinTileRow>
     27298                                                <MaxTileRow>11</MaxTileRow>
     27299                                                <MinTileCol>16</MinTileCol>
     27300                                                <MaxTileCol>16</MaxTileCol>
     27301                                        </TileMatrixLimits>
     27302                                        <TileMatrixLimits>
     27303                                                <TileMatrix>6</TileMatrix>
     27304                                                <MinTileRow>22</MinTileRow>
     27305                                                <MaxTileRow>23</MaxTileRow>
     27306                                                <MinTileCol>32</MinTileCol>
     27307                                                <MaxTileCol>32</MaxTileCol>
     27308                                        </TileMatrixLimits>
     27309                                        <TileMatrixLimits>
     27310                                                <TileMatrix>7</TileMatrix>
     27311                                                <MinTileRow>45</MinTileRow>
     27312                                                <MaxTileRow>46</MaxTileRow>
     27313                                                <MinTileCol>64</MinTileCol>
     27314                                                <MaxTileCol>64</MaxTileCol>
     27315                                        </TileMatrixLimits>
     27316                                        <TileMatrixLimits>
     27317                                                <TileMatrix>8</TileMatrix>
     27318                                                <MinTileRow>90</MinTileRow>
     27319                                                <MaxTileRow>92</MaxTileRow>
     27320                                                <MinTileCol>128</MinTileCol>
     27321                                                <MaxTileCol>129</MaxTileCol>
     27322                                        </TileMatrixLimits>
     27323                                        <TileMatrixLimits>
     27324                                                <TileMatrix>9</TileMatrix>
     27325                                                <MinTileRow>181</MinTileRow>
     27326                                                <MaxTileRow>184</MaxTileRow>
     27327                                                <MinTileCol>256</MinTileCol>
     27328                                                <MaxTileCol>259</MaxTileCol>
     27329                                        </TileMatrixLimits>
     27330                                </TileMatrixSetLimits>
     27331                        </TileMatrixSetLink>
     27332                </Layer>
     27333                <Layer>
     27334                        <ows:Title>Orthophotographies Geosud de LIMOUSIN 2014</ows:Title>
     27335                        <ows:Abstract>Orthophotographies satellites de LIMOUSIN issues du projet Geosud.</ows:Abstract>
     27336                        <ows:Keywords>
     27337                                <ows:Keyword>Photographies</ows:Keyword>
     27338                        </ows:Keywords>
     27339                        <ows:WGS84BoundingBox>
     27340                                <ows:LowerCorner>0.563585 44.7999</ows:LowerCorner>
     27341                                <ows:UpperCorner>2.64578 46.4724</ows:UpperCorner>
     27342                        </ows:WGS84BoundingBox>
     27343                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LIMOUSIN-2014</ows:Identifier>
     27344                        <Style isDefault="true">
     27345                                <ows:Title>Données Brutes</ows:Title>
     27346                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27347                                <ows:Keywords>
     27348                                        <ows:Keyword>Défaut</ows:Keyword>
     27349                                </ows:Keywords>
     27350                                <ows:Identifier>normal</ows:Identifier>
     27351                                <LegendURL format="image/jpeg" height="200"
     27352                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27353                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27354                        </Style>
     27355                        <Format>image/jpeg</Format>
     27356                        <TileMatrixSetLink>
     27357                                <TileMatrixSet>PM</TileMatrixSet>
     27358                                <TileMatrixSetLimits>
     27359                                        <TileMatrixLimits>
     27360                                                <TileMatrix>0</TileMatrix>
     27361                                                <MinTileRow>0</MinTileRow>
     27362                                                <MaxTileRow>0</MaxTileRow>
     27363                                                <MinTileCol>0</MinTileCol>
     27364                                                <MaxTileCol>0</MaxTileCol>
     27365                                        </TileMatrixLimits>
     27366                                        <TileMatrixLimits>
     27367                                                <TileMatrix>1</TileMatrix>
     27368                                                <MinTileRow>0</MinTileRow>
     27369                                                <MaxTileRow>0</MaxTileRow>
     27370                                                <MinTileCol>1</MinTileCol>
     27371                                                <MaxTileCol>1</MaxTileCol>
     27372                                        </TileMatrixLimits>
     27373                                        <TileMatrixLimits>
     27374                                                <TileMatrix>10</TileMatrix>
     27375                                                <MinTileRow>362</MinTileRow>
     27376                                                <MaxTileRow>369</MaxTileRow>
     27377                                                <MinTileCol>513</MinTileCol>
     27378                                                <MaxTileCol>519</MaxTileCol>
     27379                                        </TileMatrixLimits>
     27380                                        <TileMatrixLimits>
     27381                                                <TileMatrix>11</TileMatrix>
     27382                                                <MinTileRow>724</MinTileRow>
     27383                                                <MaxTileRow>738</MaxTileRow>
     27384                                                <MinTileCol>1027</MinTileCol>
     27385                                                <MaxTileCol>1039</MaxTileCol>
     27386                                        </TileMatrixLimits>
     27387                                        <TileMatrixLimits>
     27388                                                <TileMatrix>12</TileMatrix>
     27389                                                <MinTileRow>1449</MinTileRow>
     27390                                                <MaxTileRow>1476</MaxTileRow>
     27391                                                <MinTileCol>2054</MinTileCol>
     27392                                                <MaxTileCol>2078</MaxTileCol>
     27393                                        </TileMatrixLimits>
     27394                                        <TileMatrixLimits>
     27395                                                <TileMatrix>13</TileMatrix>
     27396                                                <MinTileRow>2898</MinTileRow>
     27397                                                <MaxTileRow>2952</MaxTileRow>
     27398                                                <MinTileCol>4109</MinTileCol>
     27399                                                <MaxTileCol>4156</MaxTileCol>
     27400                                        </TileMatrixLimits>
     27401                                        <TileMatrixLimits>
     27402                                                <TileMatrix>14</TileMatrix>
     27403                                                <MinTileRow>5797</MinTileRow>
     27404                                                <MaxTileRow>5905</MaxTileRow>
     27405                                                <MinTileCol>8219</MinTileCol>
     27406                                                <MaxTileCol>8312</MaxTileCol>
     27407                                        </TileMatrixLimits>
     27408                                        <TileMatrixLimits>
     27409                                                <TileMatrix>15</TileMatrix>
     27410                                                <MinTileRow>11595</MinTileRow>
     27411                                                <MaxTileRow>11810</MaxTileRow>
     27412                                                <MinTileCol>16438</MinTileCol>
     27413                                                <MaxTileCol>16624</MaxTileCol>
     27414                                        </TileMatrixLimits>
     27415                                        <TileMatrixLimits>
     27416                                                <TileMatrix>16</TileMatrix>
     27417                                                <MinTileRow>23191</MinTileRow>
     27418                                                <MaxTileRow>23620</MaxTileRow>
     27419                                                <MinTileCol>32876</MinTileCol>
     27420                                                <MaxTileCol>33248</MaxTileCol>
     27421                                        </TileMatrixLimits>
     27422                                        <TileMatrixLimits>
     27423                                                <TileMatrix>17</TileMatrix>
     27424                                                <MinTileRow>46383</MinTileRow>
     27425                                                <MaxTileRow>47241</MaxTileRow>
     27426                                                <MinTileCol>65752</MinTileCol>
     27427                                                <MaxTileCol>66496</MaxTileCol>
     27428                                        </TileMatrixLimits>
     27429                                        <TileMatrixLimits>
     27430                                                <TileMatrix>2</TileMatrix>
     27431                                                <MinTileRow>1</MinTileRow>
     27432                                                <MaxTileRow>1</MaxTileRow>
     27433                                                <MinTileCol>2</MinTileCol>
     27434                                                <MaxTileCol>2</MaxTileCol>
     27435                                        </TileMatrixLimits>
     27436                                        <TileMatrixLimits>
     27437                                                <TileMatrix>3</TileMatrix>
     27438                                                <MinTileRow>2</MinTileRow>
     27439                                                <MaxTileRow>2</MaxTileRow>
     27440                                                <MinTileCol>4</MinTileCol>
     27441                                                <MaxTileCol>4</MaxTileCol>
     27442                                        </TileMatrixLimits>
     27443                                        <TileMatrixLimits>
     27444                                                <TileMatrix>4</TileMatrix>
     27445                                                <MinTileRow>5</MinTileRow>
     27446                                                <MaxTileRow>5</MaxTileRow>
     27447                                                <MinTileCol>8</MinTileCol>
     27448                                                <MaxTileCol>8</MaxTileCol>
     27449                                        </TileMatrixLimits>
     27450                                        <TileMatrixLimits>
     27451                                                <TileMatrix>5</TileMatrix>
     27452                                                <MinTileRow>11</MinTileRow>
     27453                                                <MaxTileRow>11</MaxTileRow>
     27454                                                <MinTileCol>16</MinTileCol>
     27455                                                <MaxTileCol>16</MaxTileCol>
     27456                                        </TileMatrixLimits>
     27457                                        <TileMatrixLimits>
     27458                                                <TileMatrix>6</TileMatrix>
     27459                                                <MinTileRow>22</MinTileRow>
     27460                                                <MaxTileRow>23</MaxTileRow>
     27461                                                <MinTileCol>32</MinTileCol>
     27462                                                <MaxTileCol>32</MaxTileCol>
     27463                                        </TileMatrixLimits>
     27464                                        <TileMatrixLimits>
     27465                                                <TileMatrix>7</TileMatrix>
     27466                                                <MinTileRow>45</MinTileRow>
     27467                                                <MaxTileRow>46</MaxTileRow>
     27468                                                <MinTileCol>64</MinTileCol>
     27469                                                <MaxTileCol>64</MaxTileCol>
     27470                                        </TileMatrixLimits>
     27471                                        <TileMatrixLimits>
     27472                                                <TileMatrix>8</TileMatrix>
     27473                                                <MinTileRow>90</MinTileRow>
     27474                                                <MaxTileRow>92</MaxTileRow>
     27475                                                <MinTileCol>128</MinTileCol>
     27476                                                <MaxTileCol>129</MaxTileCol>
     27477                                        </TileMatrixLimits>
     27478                                        <TileMatrixLimits>
     27479                                                <TileMatrix>9</TileMatrix>
     27480                                                <MinTileRow>181</MinTileRow>
     27481                                                <MaxTileRow>184</MaxTileRow>
     27482                                                <MinTileCol>256</MinTileCol>
     27483                                                <MaxTileCol>259</MaxTileCol>
     27484                                        </TileMatrixLimits>
     27485                                </TileMatrixSetLimits>
     27486                        </TileMatrixSetLink>
     27487                </Layer>
     27488                <Layer>
     27489                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     27490                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     27491                        <ows:Keywords>
     27492                                <ows:Keyword>Photographies</ows:Keyword>
     27493                        </ows:Keywords>
     27494                        <ows:WGS84BoundingBox>
     27495                                <ows:LowerCorner>-2.38301 46.7447</ows:LowerCorner>
     27496                                <ows:UpperCorner>-2.06064 47.1082</ows:UpperCorner>
     27497                        </ows:WGS84BoundingBox>
     27498                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-02-24-40696148</ows:Identifier>
     27499                        <Style isDefault="true">
     27500                                <ows:Title>Données Brutes</ows:Title>
     27501                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27502                                <ows:Keywords>
     27503                                        <ows:Keyword>Défaut</ows:Keyword>
     27504                                </ows:Keywords>
     27505                                <ows:Identifier>normal</ows:Identifier>
     27506                                <LegendURL format="image/jpeg" height="200"
     27507                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27508                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27509                        </Style>
     27510                        <Format>image/jpeg</Format>
     27511                        <TileMatrixSetLink>
     27512                                <TileMatrixSet>PM</TileMatrixSet>
     27513                                <TileMatrixSetLimits>
     27514                                        <TileMatrixLimits>
     27515                                                <TileMatrix>0</TileMatrix>
     27516                                                <MinTileRow>0</MinTileRow>
     27517                                                <MaxTileRow>0</MaxTileRow>
     27518                                                <MinTileCol>0</MinTileCol>
     27519                                                <MaxTileCol>0</MaxTileCol>
     27520                                        </TileMatrixLimits>
     27521                                        <TileMatrixLimits>
     27522                                                <TileMatrix>1</TileMatrix>
     27523                                                <MinTileRow>0</MinTileRow>
     27524                                                <MaxTileRow>0</MaxTileRow>
     27525                                                <MinTileCol>0</MinTileCol>
     27526                                                <MaxTileCol>0</MaxTileCol>
     27527                                        </TileMatrixLimits>
     27528                                        <TileMatrixLimits>
     27529                                                <TileMatrix>10</TileMatrix>
     27530                                                <MinTileRow>359</MinTileRow>
     27531                                                <MaxTileRow>361</MaxTileRow>
     27532                                                <MinTileCol>505</MinTileCol>
     27533                                                <MaxTileCol>506</MaxTileCol>
     27534                                        </TileMatrixLimits>
     27535                                        <TileMatrixLimits>
     27536                                                <TileMatrix>11</TileMatrix>
     27537                                                <MinTileRow>719</MinTileRow>
     27538                                                <MaxTileRow>722</MaxTileRow>
     27539                                                <MinTileCol>1010</MinTileCol>
     27540                                                <MaxTileCol>1012</MaxTileCol>
     27541                                        </TileMatrixLimits>
     27542                                        <TileMatrixLimits>
     27543                                                <TileMatrix>12</TileMatrix>
     27544                                                <MinTileRow>1438</MinTileRow>
     27545                                                <MaxTileRow>1444</MaxTileRow>
     27546                                                <MinTileCol>2021</MinTileCol>
     27547                                                <MaxTileCol>2024</MaxTileCol>
     27548                                        </TileMatrixLimits>
     27549                                        <TileMatrixLimits>
     27550                                                <TileMatrix>13</TileMatrix>
     27551                                                <MinTileRow>2877</MinTileRow>
     27552                                                <MaxTileRow>2889</MaxTileRow>
     27553                                                <MinTileCol>4042</MinTileCol>
     27554                                                <MaxTileCol>4048</MaxTileCol>
     27555                                        </TileMatrixLimits>
     27556                                        <TileMatrixLimits>
     27557                                                <TileMatrix>14</TileMatrix>
     27558                                                <MinTileRow>5755</MinTileRow>
     27559                                                <MaxTileRow>5779</MaxTileRow>
     27560                                                <MinTileCol>8084</MinTileCol>
     27561                                                <MaxTileCol>8097</MaxTileCol>
     27562                                        </TileMatrixLimits>
     27563                                        <TileMatrixLimits>
     27564                                                <TileMatrix>15</TileMatrix>
     27565                                                <MinTileRow>11511</MinTileRow>
     27566                                                <MaxTileRow>11558</MaxTileRow>
     27567                                                <MinTileCol>16168</MinTileCol>
     27568                                                <MaxTileCol>16195</MaxTileCol>
     27569                                        </TileMatrixLimits>
     27570                                        <TileMatrixLimits>
     27571                                                <TileMatrix>16</TileMatrix>
     27572                                                <MinTileRow>23023</MinTileRow>
     27573                                                <MaxTileRow>23116</MaxTileRow>
     27574                                                <MinTileCol>32336</MinTileCol>
     27575                                                <MaxTileCol>32390</MaxTileCol>
     27576                                        </TileMatrixLimits>
     27577                                        <TileMatrixLimits>
     27578                                                <TileMatrix>17</TileMatrix>
     27579                                                <MinTileRow>46046</MinTileRow>
     27580                                                <MaxTileRow>46233</MaxTileRow>
     27581                                                <MinTileCol>64672</MinTileCol>
     27582                                                <MaxTileCol>64780</MaxTileCol>
     27583                                        </TileMatrixLimits>
     27584                                        <TileMatrixLimits>
     27585                                                <TileMatrix>18</TileMatrix>
     27586                                                <MinTileRow>92093</MinTileRow>
     27587                                                <MaxTileRow>92467</MaxTileRow>
     27588                                                <MinTileCol>129345</MinTileCol>
     27589                                                <MaxTileCol>129560</MaxTileCol>
     27590                                        </TileMatrixLimits>
     27591                                        <TileMatrixLimits>
     27592                                                <TileMatrix>2</TileMatrix>
     27593                                                <MinTileRow>1</MinTileRow>
     27594                                                <MaxTileRow>1</MaxTileRow>
     27595                                                <MinTileCol>1</MinTileCol>
     27596                                                <MaxTileCol>1</MaxTileCol>
     27597                                        </TileMatrixLimits>
     27598                                        <TileMatrixLimits>
     27599                                                <TileMatrix>3</TileMatrix>
     27600                                                <MinTileRow>2</MinTileRow>
     27601                                                <MaxTileRow>2</MaxTileRow>
     27602                                                <MinTileCol>3</MinTileCol>
     27603                                                <MaxTileCol>3</MaxTileCol>
     27604                                        </TileMatrixLimits>
     27605                                        <TileMatrixLimits>
     27606                                                <TileMatrix>4</TileMatrix>
     27607                                                <MinTileRow>5</MinTileRow>
     27608                                                <MaxTileRow>5</MaxTileRow>
     27609                                                <MinTileCol>7</MinTileCol>
     27610                                                <MaxTileCol>7</MaxTileCol>
     27611                                        </TileMatrixLimits>
     27612                                        <TileMatrixLimits>
     27613                                                <TileMatrix>5</TileMatrix>
     27614                                                <MinTileRow>11</MinTileRow>
     27615                                                <MaxTileRow>11</MaxTileRow>
     27616                                                <MinTileCol>15</MinTileCol>
     27617                                                <MaxTileCol>15</MaxTileCol>
     27618                                        </TileMatrixLimits>
     27619                                        <TileMatrixLimits>
     27620                                                <TileMatrix>6</TileMatrix>
     27621                                                <MinTileRow>22</MinTileRow>
     27622                                                <MaxTileRow>22</MaxTileRow>
     27623                                                <MinTileCol>31</MinTileCol>
     27624                                                <MaxTileCol>31</MaxTileCol>
     27625                                        </TileMatrixLimits>
     27626                                        <TileMatrixLimits>
     27627                                                <TileMatrix>7</TileMatrix>
     27628                                                <MinTileRow>44</MinTileRow>
     27629                                                <MaxTileRow>45</MaxTileRow>
     27630                                                <MinTileCol>63</MinTileCol>
     27631                                                <MaxTileCol>63</MaxTileCol>
     27632                                        </TileMatrixLimits>
     27633                                        <TileMatrixLimits>
     27634                                                <TileMatrix>8</TileMatrix>
     27635                                                <MinTileRow>89</MinTileRow>
     27636                                                <MaxTileRow>90</MaxTileRow>
     27637                                                <MinTileCol>126</MinTileCol>
     27638                                                <MaxTileCol>126</MaxTileCol>
     27639                                        </TileMatrixLimits>
     27640                                        <TileMatrixLimits>
     27641                                                <TileMatrix>9</TileMatrix>
     27642                                                <MinTileRow>179</MinTileRow>
     27643                                                <MaxTileRow>180</MaxTileRow>
     27644                                                <MinTileCol>252</MinTileCol>
     27645                                                <MaxTileCol>253</MaxTileCol>
     27646                                        </TileMatrixLimits>
     27647                                </TileMatrixSetLimits>
     27648                        </TileMatrixSetLink>
     27649                </Layer>
     27650                <Layer>
     27651                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     27652                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     27653                        <ows:Keywords>
     27654                                <ows:Keyword>Photographies</ows:Keyword>
     27655                        </ows:Keywords>
     27656                        <ows:WGS84BoundingBox>
     27657                                <ows:LowerCorner>-1.92824 46.3411</ows:LowerCorner>
     27658                                <ows:UpperCorner>-1.61918 46.7569</ows:UpperCorner>
     27659                        </ows:WGS84BoundingBox>
     27660                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-03-16-40489844</ows:Identifier>
     27661                        <Style isDefault="true">
     27662                                <ows:Title>Données Brutes</ows:Title>
     27663                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27664                                <ows:Keywords>
     27665                                        <ows:Keyword>Défaut</ows:Keyword>
     27666                                </ows:Keywords>
     27667                                <ows:Identifier>normal</ows:Identifier>
     27668                                <LegendURL format="image/jpeg" height="200"
     27669                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27670                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27671                        </Style>
     27672                        <Format>image/jpeg</Format>
     27673                        <TileMatrixSetLink>
     27674                                <TileMatrixSet>PM</TileMatrixSet>
     27675                                <TileMatrixSetLimits>
     27676                                        <TileMatrixLimits>
     27677                                                <TileMatrix>0</TileMatrix>
     27678                                                <MinTileRow>0</MinTileRow>
     27679                                                <MaxTileRow>0</MaxTileRow>
     27680                                                <MinTileCol>0</MinTileCol>
     27681                                                <MaxTileCol>0</MaxTileCol>
     27682                                        </TileMatrixLimits>
     27683                                        <TileMatrixLimits>
     27684                                                <TileMatrix>1</TileMatrix>
     27685                                                <MinTileRow>0</MinTileRow>
     27686                                                <MaxTileRow>0</MaxTileRow>
     27687                                                <MinTileCol>0</MinTileCol>
     27688                                                <MaxTileCol>0</MaxTileCol>
     27689                                        </TileMatrixLimits>
     27690                                        <TileMatrixLimits>
     27691                                                <TileMatrix>10</TileMatrix>
     27692                                                <MinTileRow>361</MinTileRow>
     27693                                                <MaxTileRow>362</MaxTileRow>
     27694                                                <MinTileCol>506</MinTileCol>
     27695                                                <MaxTileCol>507</MaxTileCol>
     27696                                        </TileMatrixLimits>
     27697                                        <TileMatrixLimits>
     27698                                                <TileMatrix>11</TileMatrix>
     27699                                                <MinTileRow>722</MinTileRow>
     27700                                                <MaxTileRow>725</MaxTileRow>
     27701                                                <MinTileCol>1013</MinTileCol>
     27702                                                <MaxTileCol>1014</MaxTileCol>
     27703                                        </TileMatrixLimits>
     27704                                        <TileMatrixLimits>
     27705                                                <TileMatrix>12</TileMatrix>
     27706                                                <MinTileRow>1444</MinTileRow>
     27707                                                <MaxTileRow>1451</MaxTileRow>
     27708                                                <MinTileCol>2026</MinTileCol>
     27709                                                <MaxTileCol>2029</MaxTileCol>
     27710                                        </TileMatrixLimits>
     27711                                        <TileMatrixLimits>
     27712                                                <TileMatrix>13</TileMatrix>
     27713                                                <MinTileRow>2889</MinTileRow>
     27714                                                <MaxTileRow>2902</MaxTileRow>
     27715                                                <MinTileCol>4052</MinTileCol>
     27716                                                <MaxTileCol>4059</MaxTileCol>
     27717                                        </TileMatrixLimits>
     27718                                        <TileMatrixLimits>
     27719                                                <TileMatrix>14</TileMatrix>
     27720                                                <MinTileRow>5779</MinTileRow>
     27721                                                <MaxTileRow>5805</MaxTileRow>
     27722                                                <MinTileCol>8105</MinTileCol>
     27723                                                <MaxTileCol>8118</MaxTileCol>
     27724                                        </TileMatrixLimits>
     27725                                        <TileMatrixLimits>
     27726                                                <TileMatrix>15</TileMatrix>
     27727                                                <MinTileRow>11559</MinTileRow>
     27728                                                <MaxTileRow>11611</MaxTileRow>
     27729                                                <MinTileCol>16210</MinTileCol>
     27730                                                <MaxTileCol>16236</MaxTileCol>
     27731                                        </TileMatrixLimits>
     27732                                        <TileMatrixLimits>
     27733                                                <TileMatrix>16</TileMatrix>
     27734                                                <MinTileRow>23118</MinTileRow>
     27735                                                <MaxTileRow>23222</MaxTileRow>
     27736                                                <MinTileCol>32420</MinTileCol>
     27737                                                <MaxTileCol>32473</MaxTileCol>
     27738                                        </TileMatrixLimits>
     27739                                        <TileMatrixLimits>
     27740                                                <TileMatrix>17</TileMatrix>
     27741                                                <MinTileRow>46236</MinTileRow>
     27742                                                <MaxTileRow>46445</MaxTileRow>
     27743                                                <MinTileCol>64840</MinTileCol>
     27744                                                <MaxTileCol>64946</MaxTileCol>
     27745                                        </TileMatrixLimits>
     27746                                        <TileMatrixLimits>
     27747                                                <TileMatrix>18</TileMatrix>
     27748                                                <MinTileRow>92472</MinTileRow>
     27749                                                <MaxTileRow>92891</MaxTileRow>
     27750                                                <MinTileCol>129680</MinTileCol>
     27751                                                <MaxTileCol>129892</MaxTileCol>
     27752                                        </TileMatrixLimits>
     27753                                        <TileMatrixLimits>
     27754                                                <TileMatrix>2</TileMatrix>
     27755                                                <MinTileRow>1</MinTileRow>
     27756                                                <MaxTileRow>1</MaxTileRow>
     27757                                                <MinTileCol>1</MinTileCol>
     27758                                                <MaxTileCol>1</MaxTileCol>
     27759                                        </TileMatrixLimits>
     27760                                        <TileMatrixLimits>
     27761                                                <TileMatrix>3</TileMatrix>
     27762                                                <MinTileRow>2</MinTileRow>
     27763                                                <MaxTileRow>2</MaxTileRow>
     27764                                                <MinTileCol>3</MinTileCol>
     27765                                                <MaxTileCol>3</MaxTileCol>
     27766                                        </TileMatrixLimits>
     27767                                        <TileMatrixLimits>
     27768                                                <TileMatrix>4</TileMatrix>
     27769                                                <MinTileRow>5</MinTileRow>
     27770                                                <MaxTileRow>5</MaxTileRow>
     27771                                                <MinTileCol>7</MinTileCol>
     27772                                                <MaxTileCol>7</MaxTileCol>
     27773                                        </TileMatrixLimits>
     27774                                        <TileMatrixLimits>
     27775                                                <TileMatrix>5</TileMatrix>
     27776                                                <MinTileRow>11</MinTileRow>
     27777                                                <MaxTileRow>11</MaxTileRow>
     27778                                                <MinTileCol>15</MinTileCol>
     27779                                                <MaxTileCol>15</MaxTileCol>
     27780                                        </TileMatrixLimits>
     27781                                        <TileMatrixLimits>
     27782                                                <TileMatrix>6</TileMatrix>
     27783                                                <MinTileRow>22</MinTileRow>
     27784                                                <MaxTileRow>22</MaxTileRow>
     27785                                                <MinTileCol>31</MinTileCol>
     27786                                                <MaxTileCol>31</MaxTileCol>
     27787                                        </TileMatrixLimits>
     27788                                        <TileMatrixLimits>
     27789                                                <TileMatrix>7</TileMatrix>
     27790                                                <MinTileRow>45</MinTileRow>
     27791                                                <MaxTileRow>45</MaxTileRow>
     27792                                                <MinTileCol>63</MinTileCol>
     27793                                                <MaxTileCol>63</MaxTileCol>
     27794                                        </TileMatrixLimits>
     27795                                        <TileMatrixLimits>
     27796                                                <TileMatrix>8</TileMatrix>
     27797                                                <MinTileRow>90</MinTileRow>
     27798                                                <MaxTileRow>90</MaxTileRow>
     27799                                                <MinTileCol>126</MinTileCol>
     27800                                                <MaxTileCol>126</MaxTileCol>
     27801                                        </TileMatrixLimits>
     27802                                        <TileMatrixLimits>
     27803                                                <TileMatrix>9</TileMatrix>
     27804                                                <MinTileRow>180</MinTileRow>
     27805                                                <MaxTileRow>181</MaxTileRow>
     27806                                                <MinTileCol>253</MinTileCol>
     27807                                                <MaxTileCol>253</MaxTileCol>
     27808                                        </TileMatrixLimits>
     27809                                </TileMatrixSetLimits>
     27810                        </TileMatrixSetLink>
     27811                </Layer>
     27812                <Layer>
     27813                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     27814                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     27815                        <ows:Keywords>
     27816                                <ows:Keyword>Photographies</ows:Keyword>
     27817                        </ows:Keywords>
     27818                        <ows:WGS84BoundingBox>
     27819                                <ows:LowerCorner>-2.16821 46.5476</ows:LowerCorner>
     27820                                <ows:UpperCorner>-1.846 47.0718</ows:UpperCorner>
     27821                        </ows:WGS84BoundingBox>
     27822                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-03-16-40509104</ows:Identifier>
     27823                        <Style isDefault="true">
     27824                                <ows:Title>Données Brutes</ows:Title>
     27825                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27826                                <ows:Keywords>
     27827                                        <ows:Keyword>Défaut</ows:Keyword>
     27828                                </ows:Keywords>
     27829                                <ows:Identifier>normal</ows:Identifier>
     27830                                <LegendURL format="image/jpeg" height="200"
     27831                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27832                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27833                        </Style>
     27834                        <Format>image/jpeg</Format>
     27835                        <TileMatrixSetLink>
     27836                                <TileMatrixSet>PM</TileMatrixSet>
     27837                                <TileMatrixSetLimits>
     27838                                        <TileMatrixLimits>
     27839                                                <TileMatrix>0</TileMatrix>
     27840                                                <MinTileRow>0</MinTileRow>
     27841                                                <MaxTileRow>0</MaxTileRow>
     27842                                                <MinTileCol>0</MinTileCol>
     27843                                                <MaxTileCol>0</MaxTileCol>
     27844                                        </TileMatrixLimits>
     27845                                        <TileMatrixLimits>
     27846                                                <TileMatrix>1</TileMatrix>
     27847                                                <MinTileRow>0</MinTileRow>
     27848                                                <MaxTileRow>0</MaxTileRow>
     27849                                                <MinTileCol>0</MinTileCol>
     27850                                                <MaxTileCol>0</MaxTileCol>
     27851                                        </TileMatrixLimits>
     27852                                        <TileMatrixLimits>
     27853                                                <TileMatrix>10</TileMatrix>
     27854                                                <MinTileRow>359</MinTileRow>
     27855                                                <MaxTileRow>362</MaxTileRow>
     27856                                                <MinTileCol>505</MinTileCol>
     27857                                                <MaxTileCol>506</MaxTileCol>
     27858                                        </TileMatrixLimits>
     27859                                        <TileMatrixLimits>
     27860                                                <TileMatrix>11</TileMatrix>
     27861                                                <MinTileRow>719</MinTileRow>
     27862                                                <MaxTileRow>724</MaxTileRow>
     27863                                                <MinTileCol>1011</MinTileCol>
     27864                                                <MaxTileCol>1013</MaxTileCol>
     27865                                        </TileMatrixLimits>
     27866                                        <TileMatrixLimits>
     27867                                                <TileMatrix>12</TileMatrix>
     27868                                                <MinTileRow>1439</MinTileRow>
     27869                                                <MaxTileRow>1448</MaxTileRow>
     27870                                                <MinTileCol>2023</MinTileCol>
     27871                                                <MaxTileCol>2026</MaxTileCol>
     27872                                        </TileMatrixLimits>
     27873                                        <TileMatrixLimits>
     27874                                                <TileMatrix>13</TileMatrix>
     27875                                                <MinTileRow>2879</MinTileRow>
     27876                                                <MaxTileRow>2896</MaxTileRow>
     27877                                                <MinTileCol>4047</MinTileCol>
     27878                                                <MaxTileCol>4053</MaxTileCol>
     27879                                        </TileMatrixLimits>
     27880                                        <TileMatrixLimits>
     27881                                                <TileMatrix>14</TileMatrix>
     27882                                                <MinTileRow>5758</MinTileRow>
     27883                                                <MaxTileRow>5792</MaxTileRow>
     27884                                                <MinTileCol>8094</MinTileCol>
     27885                                                <MaxTileCol>8107</MaxTileCol>
     27886                                        </TileMatrixLimits>
     27887                                        <TileMatrixLimits>
     27888                                                <TileMatrix>15</TileMatrix>
     27889                                                <MinTileRow>11517</MinTileRow>
     27890                                                <MaxTileRow>11584</MaxTileRow>
     27891                                                <MinTileCol>16189</MinTileCol>
     27892                                                <MaxTileCol>16215</MaxTileCol>
     27893                                        </TileMatrixLimits>
     27894                                        <TileMatrixLimits>
     27895                                                <TileMatrix>16</TileMatrix>
     27896                                                <MinTileRow>23034</MinTileRow>
     27897                                                <MaxTileRow>23169</MaxTileRow>
     27898                                                <MinTileCol>32378</MinTileCol>
     27899                                                <MaxTileCol>32431</MaxTileCol>
     27900                                        </TileMatrixLimits>
     27901                                        <TileMatrixLimits>
     27902                                                <TileMatrix>17</TileMatrix>
     27903                                                <MinTileRow>46068</MinTileRow>
     27904                                                <MaxTileRow>46338</MaxTileRow>
     27905                                                <MinTileCol>64756</MinTileCol>
     27906                                                <MaxTileCol>64862</MaxTileCol>
     27907                                        </TileMatrixLimits>
     27908                                        <TileMatrixLimits>
     27909                                                <TileMatrix>18</TileMatrix>
     27910                                                <MinTileRow>92136</MinTileRow>
     27911                                                <MaxTileRow>92676</MaxTileRow>
     27912                                                <MinTileCol>129512</MinTileCol>
     27913                                                <MaxTileCol>129725</MaxTileCol>
     27914                                        </TileMatrixLimits>
     27915                                        <TileMatrixLimits>
     27916                                                <TileMatrix>2</TileMatrix>
     27917                                                <MinTileRow>1</MinTileRow>
     27918                                                <MaxTileRow>1</MaxTileRow>
     27919                                                <MinTileCol>1</MinTileCol>
     27920                                                <MaxTileCol>1</MaxTileCol>
     27921                                        </TileMatrixLimits>
     27922                                        <TileMatrixLimits>
     27923                                                <TileMatrix>3</TileMatrix>
     27924                                                <MinTileRow>2</MinTileRow>
     27925                                                <MaxTileRow>2</MaxTileRow>
     27926                                                <MinTileCol>3</MinTileCol>
     27927                                                <MaxTileCol>3</MaxTileCol>
     27928                                        </TileMatrixLimits>
     27929                                        <TileMatrixLimits>
     27930                                                <TileMatrix>4</TileMatrix>
     27931                                                <MinTileRow>5</MinTileRow>
     27932                                                <MaxTileRow>5</MaxTileRow>
     27933                                                <MinTileCol>7</MinTileCol>
     27934                                                <MaxTileCol>7</MaxTileCol>
     27935                                        </TileMatrixLimits>
     27936                                        <TileMatrixLimits>
     27937                                                <TileMatrix>5</TileMatrix>
     27938                                                <MinTileRow>11</MinTileRow>
     27939                                                <MaxTileRow>11</MaxTileRow>
     27940                                                <MinTileCol>15</MinTileCol>
     27941                                                <MaxTileCol>15</MaxTileCol>
     27942                                        </TileMatrixLimits>
     27943                                        <TileMatrixLimits>
     27944                                                <TileMatrix>6</TileMatrix>
     27945                                                <MinTileRow>22</MinTileRow>
     27946                                                <MaxTileRow>22</MaxTileRow>
     27947                                                <MinTileCol>31</MinTileCol>
     27948                                                <MaxTileCol>31</MaxTileCol>
     27949                                        </TileMatrixLimits>
     27950                                        <TileMatrixLimits>
     27951                                                <TileMatrix>7</TileMatrix>
     27952                                                <MinTileRow>44</MinTileRow>
     27953                                                <MaxTileRow>45</MaxTileRow>
     27954                                                <MinTileCol>63</MinTileCol>
     27955                                                <MaxTileCol>63</MaxTileCol>
     27956                                        </TileMatrixLimits>
     27957                                        <TileMatrixLimits>
     27958                                                <TileMatrix>8</TileMatrix>
     27959                                                <MinTileRow>89</MinTileRow>
     27960                                                <MaxTileRow>90</MaxTileRow>
     27961                                                <MinTileCol>126</MinTileCol>
     27962                                                <MaxTileCol>126</MaxTileCol>
     27963                                        </TileMatrixLimits>
     27964                                        <TileMatrixLimits>
     27965                                                <TileMatrix>9</TileMatrix>
     27966                                                <MinTileRow>179</MinTileRow>
     27967                                                <MaxTileRow>181</MaxTileRow>
     27968                                                <MinTileCol>252</MinTileCol>
     27969                                                <MaxTileCol>253</MaxTileCol>
     27970                                        </TileMatrixLimits>
     27971                                </TileMatrixSetLimits>
     27972                        </TileMatrixSetLink>
     27973                </Layer>
     27974                <Layer>
     27975                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     27976                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     27977                        <ows:Keywords>
     27978                                <ows:Keyword>Photographies</ows:Keyword>
     27979                        </ows:Keywords>
     27980                        <ows:WGS84BoundingBox>
     27981                                <ows:LowerCorner>-1.72717 46.133</ows:LowerCorner>
     27982                                <ows:UpperCorner>-1.38114 46.559</ows:UpperCorner>
     27983                        </ows:WGS84BoundingBox>
     27984                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-04-11-40484074</ows:Identifier>
     27985                        <Style isDefault="true">
     27986                                <ows:Title>Données Brutes</ows:Title>
     27987                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     27988                                <ows:Keywords>
     27989                                        <ows:Keyword>Défaut</ows:Keyword>
     27990                                </ows:Keywords>
     27991                                <ows:Identifier>normal</ows:Identifier>
     27992                                <LegendURL format="image/jpeg" height="200"
     27993                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     27994                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     27995                        </Style>
     27996                        <Format>image/jpeg</Format>
     27997                        <TileMatrixSetLink>
     27998                                <TileMatrixSet>PM</TileMatrixSet>
     27999                                <TileMatrixSetLimits>
     28000                                        <TileMatrixLimits>
     28001                                                <TileMatrix>0</TileMatrix>
     28002                                                <MinTileRow>0</MinTileRow>
     28003                                                <MaxTileRow>0</MaxTileRow>
     28004                                                <MinTileCol>0</MinTileCol>
     28005                                                <MaxTileCol>0</MaxTileCol>
     28006                                        </TileMatrixLimits>
     28007                                        <TileMatrixLimits>
     28008                                                <TileMatrix>1</TileMatrix>
     28009                                                <MinTileRow>0</MinTileRow>
     28010                                                <MaxTileRow>0</MaxTileRow>
     28011                                                <MinTileCol>0</MinTileCol>
     28012                                                <MaxTileCol>0</MaxTileCol>
     28013                                        </TileMatrixLimits>
     28014                                        <TileMatrixLimits>
     28015                                                <TileMatrix>10</TileMatrix>
     28016                                                <MinTileRow>362</MinTileRow>
     28017                                                <MaxTileRow>363</MaxTileRow>
     28018                                                <MinTileCol>507</MinTileCol>
     28019                                                <MaxTileCol>507</MaxTileCol>
     28020                                        </TileMatrixLimits>
     28021                                        <TileMatrixLimits>
     28022                                                <TileMatrix>11</TileMatrix>
     28023                                                <MinTileRow>724</MinTileRow>
     28024                                                <MaxTileRow>727</MaxTileRow>
     28025                                                <MinTileCol>1014</MinTileCol>
     28026                                                <MaxTileCol>1015</MaxTileCol>
     28027                                        </TileMatrixLimits>
     28028                                        <TileMatrixLimits>
     28029                                                <TileMatrix>12</TileMatrix>
     28030                                                <MinTileRow>1448</MinTileRow>
     28031                                                <MaxTileRow>1454</MaxTileRow>
     28032                                                <MinTileCol>2028</MinTileCol>
     28033                                                <MaxTileCol>2031</MaxTileCol>
     28034                                        </TileMatrixLimits>
     28035                                        <TileMatrixLimits>
     28036                                                <TileMatrix>13</TileMatrix>
     28037                                                <MinTileRow>2896</MinTileRow>
     28038                                                <MaxTileRow>2909</MaxTileRow>
     28039                                                <MinTileCol>4057</MinTileCol>
     28040                                                <MaxTileCol>4063</MaxTileCol>
     28041                                        </TileMatrixLimits>
     28042                                        <TileMatrixLimits>
     28043                                                <TileMatrix>14</TileMatrix>
     28044                                                <MinTileRow>5792</MinTileRow>
     28045                                                <MaxTileRow>5819</MaxTileRow>
     28046                                                <MinTileCol>8114</MinTileCol>
     28047                                                <MaxTileCol>8127</MaxTileCol>
     28048                                        </TileMatrixLimits>
     28049                                        <TileMatrixLimits>
     28050                                                <TileMatrix>15</TileMatrix>
     28051                                                <MinTileRow>11584</MinTileRow>
     28052                                                <MaxTileRow>11639</MaxTileRow>
     28053                                                <MinTileCol>16229</MinTileCol>
     28054                                                <MaxTileCol>16255</MaxTileCol>
     28055                                        </TileMatrixLimits>
     28056                                        <TileMatrixLimits>
     28057                                                <TileMatrix>16</TileMatrix>
     28058                                                <MinTileRow>23168</MinTileRow>
     28059                                                <MaxTileRow>23278</MaxTileRow>
     28060                                                <MinTileCol>32458</MinTileCol>
     28061                                                <MaxTileCol>32511</MaxTileCol>
     28062                                        </TileMatrixLimits>
     28063                                        <TileMatrixLimits>
     28064                                                <TileMatrix>17</TileMatrix>
     28065                                                <MinTileRow>46337</MinTileRow>
     28066                                                <MaxTileRow>46557</MaxTileRow>
     28067                                                <MinTileCol>64916</MinTileCol>
     28068                                                <MaxTileCol>65022</MaxTileCol>
     28069                                        </TileMatrixLimits>
     28070                                        <TileMatrixLimits>
     28071                                                <TileMatrix>18</TileMatrix>
     28072                                                <MinTileRow>92674</MinTileRow>
     28073                                                <MaxTileRow>93115</MaxTileRow>
     28074                                                <MinTileCol>129833</MinTileCol>
     28075                                                <MaxTileCol>130045</MaxTileCol>
     28076                                        </TileMatrixLimits>
     28077                                        <TileMatrixLimits>
     28078                                                <TileMatrix>2</TileMatrix>
     28079                                                <MinTileRow>1</MinTileRow>
     28080                                                <MaxTileRow>1</MaxTileRow>
     28081                                                <MinTileCol>1</MinTileCol>
     28082                                                <MaxTileCol>1</MaxTileCol>
     28083                                        </TileMatrixLimits>
     28084                                        <TileMatrixLimits>
     28085                                                <TileMatrix>3</TileMatrix>
     28086                                                <MinTileRow>2</MinTileRow>
     28087                                                <MaxTileRow>2</MaxTileRow>
     28088                                                <MinTileCol>3</MinTileCol>
     28089                                                <MaxTileCol>3</MaxTileCol>
     28090                                        </TileMatrixLimits>
     28091                                        <TileMatrixLimits>
     28092                                                <TileMatrix>4</TileMatrix>
     28093                                                <MinTileRow>5</MinTileRow>
     28094                                                <MaxTileRow>5</MaxTileRow>
     28095                                                <MinTileCol>7</MinTileCol>
     28096                                                <MaxTileCol>7</MaxTileCol>
     28097                                        </TileMatrixLimits>
     28098                                        <TileMatrixLimits>
     28099                                                <TileMatrix>5</TileMatrix>
     28100                                                <MinTileRow>11</MinTileRow>
     28101                                                <MaxTileRow>11</MaxTileRow>
     28102                                                <MinTileCol>15</MinTileCol>
     28103                                                <MaxTileCol>15</MaxTileCol>
     28104                                        </TileMatrixLimits>
     28105                                        <TileMatrixLimits>
     28106                                                <TileMatrix>6</TileMatrix>
     28107                                                <MinTileRow>22</MinTileRow>
     28108                                                <MaxTileRow>22</MaxTileRow>
     28109                                                <MinTileCol>31</MinTileCol>
     28110                                                <MaxTileCol>31</MaxTileCol>
     28111                                        </TileMatrixLimits>
     28112                                        <TileMatrixLimits>
     28113                                                <TileMatrix>7</TileMatrix>
     28114                                                <MinTileRow>45</MinTileRow>
     28115                                                <MaxTileRow>45</MaxTileRow>
     28116                                                <MinTileCol>63</MinTileCol>
     28117                                                <MaxTileCol>63</MaxTileCol>
     28118                                        </TileMatrixLimits>
     28119                                        <TileMatrixLimits>
     28120                                                <TileMatrix>8</TileMatrix>
     28121                                                <MinTileRow>90</MinTileRow>
     28122                                                <MaxTileRow>90</MaxTileRow>
     28123                                                <MinTileCol>126</MinTileCol>
     28124                                                <MaxTileCol>126</MaxTileCol>
     28125                                        </TileMatrixLimits>
     28126                                        <TileMatrixLimits>
     28127                                                <TileMatrix>9</TileMatrix>
     28128                                                <MinTileRow>181</MinTileRow>
     28129                                                <MaxTileRow>181</MaxTileRow>
     28130                                                <MinTileCol>253</MinTileCol>
     28131                                                <MaxTileCol>253</MaxTileCol>
     28132                                        </TileMatrixLimits>
     28133                                </TileMatrixSetLimits>
     28134                        </TileMatrixSetLink>
     28135                </Layer>
     28136                <Layer>
     28137                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28138                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28139                        <ows:Keywords>
     28140                                <ows:Keyword>Photographies</ows:Keyword>
     28141                        </ows:Keywords>
     28142                        <ows:WGS84BoundingBox>
     28143                                <ows:LowerCorner>-1.02337 45.5009</ows:LowerCorner>
     28144                                <ows:UpperCorner>-0.741068 45.6991</ows:UpperCorner>
     28145                        </ows:WGS84BoundingBox>
     28146                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-16-40071482</ows:Identifier>
     28147                        <Style isDefault="true">
     28148                                <ows:Title>Données Brutes</ows:Title>
     28149                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28150                                <ows:Keywords>
     28151                                        <ows:Keyword>Défaut</ows:Keyword>
     28152                                </ows:Keywords>
     28153                                <ows:Identifier>normal</ows:Identifier>
     28154                                <LegendURL format="image/jpeg" height="200"
     28155                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28156                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28157                        </Style>
     28158                        <Format>image/jpeg</Format>
     28159                        <TileMatrixSetLink>
     28160                                <TileMatrixSet>PM</TileMatrixSet>
     28161                                <TileMatrixSetLimits>
     28162                                        <TileMatrixLimits>
     28163                                                <TileMatrix>0</TileMatrix>
     28164                                                <MinTileRow>0</MinTileRow>
     28165                                                <MaxTileRow>0</MaxTileRow>
     28166                                                <MinTileCol>0</MinTileCol>
     28167                                                <MaxTileCol>0</MaxTileCol>
     28168                                        </TileMatrixLimits>
     28169                                        <TileMatrixLimits>
     28170                                                <TileMatrix>1</TileMatrix>
     28171                                                <MinTileRow>0</MinTileRow>
     28172                                                <MaxTileRow>0</MaxTileRow>
     28173                                                <MinTileCol>0</MinTileCol>
     28174                                                <MaxTileCol>0</MaxTileCol>
     28175                                        </TileMatrixLimits>
     28176                                        <TileMatrixLimits>
     28177                                                <TileMatrix>10</TileMatrix>
     28178                                                <MinTileRow>365</MinTileRow>
     28179                                                <MaxTileRow>366</MaxTileRow>
     28180                                                <MinTileCol>509</MinTileCol>
     28181                                                <MaxTileCol>509</MaxTileCol>
     28182                                        </TileMatrixLimits>
     28183                                        <TileMatrixLimits>
     28184                                                <TileMatrix>11</TileMatrix>
     28185                                                <MinTileRow>731</MinTileRow>
     28186                                                <MaxTileRow>732</MaxTileRow>
     28187                                                <MinTileCol>1018</MinTileCol>
     28188                                                <MaxTileCol>1019</MaxTileCol>
     28189                                        </TileMatrixLimits>
     28190                                        <TileMatrixLimits>
     28191                                                <TileMatrix>12</TileMatrix>
     28192                                                <MinTileRow>1462</MinTileRow>
     28193                                                <MaxTileRow>1465</MaxTileRow>
     28194                                                <MinTileCol>2036</MinTileCol>
     28195                                                <MaxTileCol>2039</MaxTileCol>
     28196                                        </TileMatrixLimits>
     28197                                        <TileMatrixLimits>
     28198                                                <TileMatrix>13</TileMatrix>
     28199                                                <MinTileRow>2924</MinTileRow>
     28200                                                <MaxTileRow>2930</MaxTileRow>
     28201                                                <MinTileCol>4072</MinTileCol>
     28202                                                <MaxTileCol>4079</MaxTileCol>
     28203                                        </TileMatrixLimits>
     28204                                        <TileMatrixLimits>
     28205                                                <TileMatrix>14</TileMatrix>
     28206                                                <MinTileRow>5848</MinTileRow>
     28207                                                <MaxTileRow>5861</MaxTileRow>
     28208                                                <MinTileCol>8145</MinTileCol>
     28209                                                <MaxTileCol>8158</MaxTileCol>
     28210                                        </TileMatrixLimits>
     28211                                        <TileMatrixLimits>
     28212                                                <TileMatrix>15</TileMatrix>
     28213                                                <MinTileRow>11697</MinTileRow>
     28214                                                <MaxTileRow>11722</MaxTileRow>
     28215                                                <MinTileCol>16291</MinTileCol>
     28216                                                <MaxTileCol>16316</MaxTileCol>
     28217                                        </TileMatrixLimits>
     28218                                        <TileMatrixLimits>
     28219                                                <TileMatrix>16</TileMatrix>
     28220                                                <MinTileRow>23395</MinTileRow>
     28221                                                <MaxTileRow>23444</MaxTileRow>
     28222                                                <MinTileCol>32582</MinTileCol>
     28223                                                <MaxTileCol>32633</MaxTileCol>
     28224                                        </TileMatrixLimits>
     28225                                        <TileMatrixLimits>
     28226                                                <TileMatrix>17</TileMatrix>
     28227                                                <MinTileRow>46791</MinTileRow>
     28228                                                <MaxTileRow>46889</MaxTileRow>
     28229                                                <MinTileCol>65164</MinTileCol>
     28230                                                <MaxTileCol>65266</MaxTileCol>
     28231                                        </TileMatrixLimits>
     28232                                        <TileMatrixLimits>
     28233                                                <TileMatrix>18</TileMatrix>
     28234                                                <MinTileRow>93583</MinTileRow>
     28235                                                <MaxTileRow>93778</MaxTileRow>
     28236                                                <MinTileCol>130328</MinTileCol>
     28237                                                <MaxTileCol>130532</MaxTileCol>
     28238                                        </TileMatrixLimits>
     28239                                        <TileMatrixLimits>
     28240                                                <TileMatrix>2</TileMatrix>
     28241                                                <MinTileRow>1</MinTileRow>
     28242                                                <MaxTileRow>1</MaxTileRow>
     28243                                                <MinTileCol>1</MinTileCol>
     28244                                                <MaxTileCol>1</MaxTileCol>
     28245                                        </TileMatrixLimits>
     28246                                        <TileMatrixLimits>
     28247                                                <TileMatrix>3</TileMatrix>
     28248                                                <MinTileRow>2</MinTileRow>
     28249                                                <MaxTileRow>2</MaxTileRow>
     28250                                                <MinTileCol>3</MinTileCol>
     28251                                                <MaxTileCol>3</MaxTileCol>
     28252                                        </TileMatrixLimits>
     28253                                        <TileMatrixLimits>
     28254                                                <TileMatrix>4</TileMatrix>
     28255                                                <MinTileRow>5</MinTileRow>
     28256                                                <MaxTileRow>5</MaxTileRow>
     28257                                                <MinTileCol>7</MinTileCol>
     28258                                                <MaxTileCol>7</MaxTileCol>
     28259                                        </TileMatrixLimits>
     28260                                        <TileMatrixLimits>
     28261                                                <TileMatrix>5</TileMatrix>
     28262                                                <MinTileRow>11</MinTileRow>
     28263                                                <MaxTileRow>11</MaxTileRow>
     28264                                                <MinTileCol>15</MinTileCol>
     28265                                                <MaxTileCol>15</MaxTileCol>
     28266                                        </TileMatrixLimits>
     28267                                        <TileMatrixLimits>
     28268                                                <TileMatrix>6</TileMatrix>
     28269                                                <MinTileRow>22</MinTileRow>
     28270                                                <MaxTileRow>22</MaxTileRow>
     28271                                                <MinTileCol>31</MinTileCol>
     28272                                                <MaxTileCol>31</MaxTileCol>
     28273                                        </TileMatrixLimits>
     28274                                        <TileMatrixLimits>
     28275                                                <TileMatrix>7</TileMatrix>
     28276                                                <MinTileRow>45</MinTileRow>
     28277                                                <MaxTileRow>45</MaxTileRow>
     28278                                                <MinTileCol>63</MinTileCol>
     28279                                                <MaxTileCol>63</MaxTileCol>
     28280                                        </TileMatrixLimits>
     28281                                        <TileMatrixLimits>
     28282                                                <TileMatrix>8</TileMatrix>
     28283                                                <MinTileRow>91</MinTileRow>
     28284                                                <MaxTileRow>91</MaxTileRow>
     28285                                                <MinTileCol>127</MinTileCol>
     28286                                                <MaxTileCol>127</MaxTileCol>
     28287                                        </TileMatrixLimits>
     28288                                        <TileMatrixLimits>
     28289                                                <TileMatrix>9</TileMatrix>
     28290                                                <MinTileRow>182</MinTileRow>
     28291                                                <MaxTileRow>183</MaxTileRow>
     28292                                                <MinTileCol>254</MinTileCol>
     28293                                                <MaxTileCol>254</MaxTileCol>
     28294                                        </TileMatrixLimits>
     28295                                </TileMatrixSetLimits>
     28296                        </TileMatrixSetLink>
     28297                </Layer>
     28298                <Layer>
     28299                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28300                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28301                        <ows:Keywords>
     28302                                <ows:Keyword>Photographies</ows:Keyword>
     28303                        </ows:Keywords>
     28304                        <ows:WGS84BoundingBox>
     28305                                <ows:LowerCorner>-1.27135 45.5469</ows:LowerCorner>
     28306                                <ows:UpperCorner>-0.962369 46.0783</ows:UpperCorner>
     28307                        </ows:WGS84BoundingBox>
     28308                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-16-40094949</ows:Identifier>
     28309                        <Style isDefault="true">
     28310                                <ows:Title>Données Brutes</ows:Title>
     28311                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28312                                <ows:Keywords>
     28313                                        <ows:Keyword>Défaut</ows:Keyword>
     28314                                </ows:Keywords>
     28315                                <ows:Identifier>normal</ows:Identifier>
     28316                                <LegendURL format="image/jpeg" height="200"
     28317                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28318                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28319                        </Style>
     28320                        <Format>image/jpeg</Format>
     28321                        <TileMatrixSetLink>
     28322                                <TileMatrixSet>PM</TileMatrixSet>
     28323                                <TileMatrixSetLimits>
     28324                                        <TileMatrixLimits>
     28325                                                <TileMatrix>0</TileMatrix>
     28326                                                <MinTileRow>0</MinTileRow>
     28327                                                <MaxTileRow>0</MaxTileRow>
     28328                                                <MinTileCol>0</MinTileCol>
     28329                                                <MaxTileCol>0</MaxTileCol>
     28330                                        </TileMatrixLimits>
     28331                                        <TileMatrixLimits>
     28332                                                <TileMatrix>1</TileMatrix>
     28333                                                <MinTileRow>0</MinTileRow>
     28334                                                <MaxTileRow>0</MaxTileRow>
     28335                                                <MinTileCol>0</MinTileCol>
     28336                                                <MaxTileCol>0</MaxTileCol>
     28337                                        </TileMatrixLimits>
     28338                                        <TileMatrixLimits>
     28339                                                <TileMatrix>10</TileMatrix>
     28340                                                <MinTileRow>363</MinTileRow>
     28341                                                <MaxTileRow>366</MaxTileRow>
     28342                                                <MinTileCol>508</MinTileCol>
     28343                                                <MaxTileCol>509</MaxTileCol>
     28344                                        </TileMatrixLimits>
     28345                                        <TileMatrixLimits>
     28346                                                <TileMatrix>11</TileMatrix>
     28347                                                <MinTileRow>727</MinTileRow>
     28348                                                <MaxTileRow>732</MaxTileRow>
     28349                                                <MinTileCol>1016</MinTileCol>
     28350                                                <MaxTileCol>1018</MaxTileCol>
     28351                                        </TileMatrixLimits>
     28352                                        <TileMatrixLimits>
     28353                                                <TileMatrix>12</TileMatrix>
     28354                                                <MinTileRow>1455</MinTileRow>
     28355                                                <MaxTileRow>1464</MaxTileRow>
     28356                                                <MinTileCol>2033</MinTileCol>
     28357                                                <MaxTileCol>2037</MaxTileCol>
     28358                                        </TileMatrixLimits>
     28359                                        <TileMatrixLimits>
     28360                                                <TileMatrix>13</TileMatrix>
     28361                                                <MinTileRow>2911</MinTileRow>
     28362                                                <MaxTileRow>2928</MaxTileRow>
     28363                                                <MinTileCol>4067</MinTileCol>
     28364                                                <MaxTileCol>4074</MaxTileCol>
     28365                                        </TileMatrixLimits>
     28366                                        <TileMatrixLimits>
     28367                                                <TileMatrix>14</TileMatrix>
     28368                                                <MinTileRow>5823</MinTileRow>
     28369                                                <MaxTileRow>5857</MaxTileRow>
     28370                                                <MinTileCol>8135</MinTileCol>
     28371                                                <MaxTileCol>8148</MaxTileCol>
     28372                                        </TileMatrixLimits>
     28373                                        <TileMatrixLimits>
     28374                                                <TileMatrix>15</TileMatrix>
     28375                                                <MinTileRow>11647</MinTileRow>
     28376                                                <MaxTileRow>11715</MaxTileRow>
     28377                                                <MinTileCol>16270</MinTileCol>
     28378                                                <MaxTileCol>16296</MaxTileCol>
     28379                                        </TileMatrixLimits>
     28380                                        <TileMatrixLimits>
     28381                                                <TileMatrix>16</TileMatrix>
     28382                                                <MinTileRow>23295</MinTileRow>
     28383                                                <MaxTileRow>23431</MaxTileRow>
     28384                                                <MinTileCol>32541</MinTileCol>
     28385                                                <MaxTileCol>32592</MaxTileCol>
     28386                                        </TileMatrixLimits>
     28387                                        <TileMatrixLimits>
     28388                                                <TileMatrix>17</TileMatrix>
     28389                                                <MinTileRow>46591</MinTileRow>
     28390                                                <MaxTileRow>46862</MaxTileRow>
     28391                                                <MinTileCol>65082</MinTileCol>
     28392                                                <MaxTileCol>65185</MaxTileCol>
     28393                                        </TileMatrixLimits>
     28394                                        <TileMatrixLimits>
     28395                                                <TileMatrix>18</TileMatrix>
     28396                                                <MinTileRow>93183</MinTileRow>
     28397                                                <MaxTileRow>93725</MaxTileRow>
     28398                                                <MinTileCol>130164</MinTileCol>
     28399                                                <MaxTileCol>130371</MaxTileCol>
     28400                                        </TileMatrixLimits>
     28401                                        <TileMatrixLimits>
     28402                                                <TileMatrix>2</TileMatrix>
     28403                                                <MinTileRow>1</MinTileRow>
     28404                                                <MaxTileRow>1</MaxTileRow>
     28405                                                <MinTileCol>1</MinTileCol>
     28406                                                <MaxTileCol>1</MaxTileCol>
     28407                                        </TileMatrixLimits>
     28408                                        <TileMatrixLimits>
     28409                                                <TileMatrix>3</TileMatrix>
     28410                                                <MinTileRow>2</MinTileRow>
     28411                                                <MaxTileRow>2</MaxTileRow>
     28412                                                <MinTileCol>3</MinTileCol>
     28413                                                <MaxTileCol>3</MaxTileCol>
     28414                                        </TileMatrixLimits>
     28415                                        <TileMatrixLimits>
     28416                                                <TileMatrix>4</TileMatrix>
     28417                                                <MinTileRow>5</MinTileRow>
     28418                                                <MaxTileRow>5</MaxTileRow>
     28419                                                <MinTileCol>7</MinTileCol>
     28420                                                <MaxTileCol>7</MaxTileCol>
     28421                                        </TileMatrixLimits>
     28422                                        <TileMatrixLimits>
     28423                                                <TileMatrix>5</TileMatrix>
     28424                                                <MinTileRow>11</MinTileRow>
     28425                                                <MaxTileRow>11</MaxTileRow>
     28426                                                <MinTileCol>15</MinTileCol>
     28427                                                <MaxTileCol>15</MaxTileCol>
     28428                                        </TileMatrixLimits>
     28429                                        <TileMatrixLimits>
     28430                                                <TileMatrix>6</TileMatrix>
     28431                                                <MinTileRow>22</MinTileRow>
     28432                                                <MaxTileRow>22</MaxTileRow>
     28433                                                <MinTileCol>31</MinTileCol>
     28434                                                <MaxTileCol>31</MaxTileCol>
     28435                                        </TileMatrixLimits>
     28436                                        <TileMatrixLimits>
     28437                                                <TileMatrix>7</TileMatrix>
     28438                                                <MinTileRow>45</MinTileRow>
     28439                                                <MaxTileRow>45</MaxTileRow>
     28440                                                <MinTileCol>63</MinTileCol>
     28441                                                <MaxTileCol>63</MaxTileCol>
     28442                                        </TileMatrixLimits>
     28443                                        <TileMatrixLimits>
     28444                                                <TileMatrix>8</TileMatrix>
     28445                                                <MinTileRow>90</MinTileRow>
     28446                                                <MaxTileRow>91</MaxTileRow>
     28447                                                <MinTileCol>127</MinTileCol>
     28448                                                <MaxTileCol>127</MaxTileCol>
     28449                                        </TileMatrixLimits>
     28450                                        <TileMatrixLimits>
     28451                                                <TileMatrix>9</TileMatrix>
     28452                                                <MinTileRow>181</MinTileRow>
     28453                                                <MaxTileRow>183</MaxTileRow>
     28454                                                <MinTileCol>254</MinTileCol>
     28455                                                <MaxTileCol>254</MaxTileCol>
     28456                                        </TileMatrixLimits>
     28457                                </TileMatrixSetLimits>
     28458                        </TileMatrixSetLink>
     28459                </Layer>
     28460                <Layer>
     28461                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28462                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28463                        <ows:Keywords>
     28464                                <ows:Keyword>Photographies</ows:Keyword>
     28465                        </ows:Keywords>
     28466                        <ows:WGS84BoundingBox>
     28467                                <ows:LowerCorner>-1.47221 46.2058</ows:LowerCorner>
     28468                                <ows:UpperCorner>-1.17894 46.4769</ows:UpperCorner>
     28469                        </ows:WGS84BoundingBox>
     28470                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-22-40293723</ows:Identifier>
     28471                        <Style isDefault="true">
     28472                                <ows:Title>Données Brutes</ows:Title>
     28473                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28474                                <ows:Keywords>
     28475                                        <ows:Keyword>Défaut</ows:Keyword>
     28476                                </ows:Keywords>
     28477                                <ows:Identifier>normal</ows:Identifier>
     28478                                <LegendURL format="image/jpeg" height="200"
     28479                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28480                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28481                        </Style>
     28482                        <Format>image/jpeg</Format>
     28483                        <TileMatrixSetLink>
     28484                                <TileMatrixSet>PM</TileMatrixSet>
     28485                                <TileMatrixSetLimits>
     28486                                        <TileMatrixLimits>
     28487                                                <TileMatrix>0</TileMatrix>
     28488                                                <MinTileRow>0</MinTileRow>
     28489                                                <MaxTileRow>0</MaxTileRow>
     28490                                                <MinTileCol>0</MinTileCol>
     28491                                                <MaxTileCol>0</MaxTileCol>
     28492                                        </TileMatrixLimits>
     28493                                        <TileMatrixLimits>
     28494                                                <TileMatrix>1</TileMatrix>
     28495                                                <MinTileRow>0</MinTileRow>
     28496                                                <MaxTileRow>0</MaxTileRow>
     28497                                                <MinTileCol>0</MinTileCol>
     28498                                                <MaxTileCol>0</MaxTileCol>
     28499                                        </TileMatrixLimits>
     28500                                        <TileMatrixLimits>
     28501                                                <TileMatrix>10</TileMatrix>
     28502                                                <MinTileRow>362</MinTileRow>
     28503                                                <MaxTileRow>363</MaxTileRow>
     28504                                                <MinTileCol>507</MinTileCol>
     28505                                                <MaxTileCol>508</MaxTileCol>
     28506                                        </TileMatrixLimits>
     28507                                        <TileMatrixLimits>
     28508                                                <TileMatrix>11</TileMatrix>
     28509                                                <MinTileRow>724</MinTileRow>
     28510                                                <MaxTileRow>726</MaxTileRow>
     28511                                                <MinTileCol>1015</MinTileCol>
     28512                                                <MaxTileCol>1017</MaxTileCol>
     28513                                        </TileMatrixLimits>
     28514                                        <TileMatrixLimits>
     28515                                                <TileMatrix>12</TileMatrix>
     28516                                                <MinTileRow>1449</MinTileRow>
     28517                                                <MaxTileRow>1453</MaxTileRow>
     28518                                                <MinTileCol>2031</MinTileCol>
     28519                                                <MaxTileCol>2034</MaxTileCol>
     28520                                        </TileMatrixLimits>
     28521                                        <TileMatrixLimits>
     28522                                                <TileMatrix>13</TileMatrix>
     28523                                                <MinTileRow>2899</MinTileRow>
     28524                                                <MaxTileRow>2907</MaxTileRow>
     28525                                                <MinTileCol>4062</MinTileCol>
     28526                                                <MaxTileCol>4069</MaxTileCol>
     28527                                        </TileMatrixLimits>
     28528                                        <TileMatrixLimits>
     28529                                                <TileMatrix>14</TileMatrix>
     28530                                                <MinTileRow>5798</MinTileRow>
     28531                                                <MaxTileRow>5814</MaxTileRow>
     28532                                                <MinTileCol>8124</MinTileCol>
     28533                                                <MaxTileCol>8138</MaxTileCol>
     28534                                        </TileMatrixLimits>
     28535                                        <TileMatrixLimits>
     28536                                                <TileMatrix>15</TileMatrix>
     28537                                                <MinTileRow>11596</MinTileRow>
     28538                                                <MaxTileRow>11629</MaxTileRow>
     28539                                                <MinTileCol>16249</MinTileCol>
     28540                                                <MaxTileCol>16276</MaxTileCol>
     28541                                        </TileMatrixLimits>
     28542                                        <TileMatrixLimits>
     28543                                                <TileMatrix>16</TileMatrix>
     28544                                                <MinTileRow>23192</MinTileRow>
     28545                                                <MaxTileRow>23258</MaxTileRow>
     28546                                                <MinTileCol>32499</MinTileCol>
     28547                                                <MaxTileCol>32552</MaxTileCol>
     28548                                        </TileMatrixLimits>
     28549                                        <TileMatrixLimits>
     28550                                                <TileMatrix>17</TileMatrix>
     28551                                                <MinTileRow>46384</MinTileRow>
     28552                                                <MaxTileRow>46517</MaxTileRow>
     28553                                                <MinTileCol>64999</MinTileCol>
     28554                                                <MaxTileCol>65105</MaxTileCol>
     28555                                        </TileMatrixLimits>
     28556                                        <TileMatrixLimits>
     28557                                                <TileMatrix>18</TileMatrix>
     28558                                                <MinTileRow>92768</MinTileRow>
     28559                                                <MaxTileRow>93034</MaxTileRow>
     28560                                                <MinTileCol>129999</MinTileCol>
     28561                                                <MaxTileCol>130210</MaxTileCol>
     28562                                        </TileMatrixLimits>
     28563                                        <TileMatrixLimits>
     28564                                                <TileMatrix>2</TileMatrix>
     28565                                                <MinTileRow>1</MinTileRow>
     28566                                                <MaxTileRow>1</MaxTileRow>
     28567                                                <MinTileCol>1</MinTileCol>
     28568                                                <MaxTileCol>1</MaxTileCol>
     28569                                        </TileMatrixLimits>
     28570                                        <TileMatrixLimits>
     28571                                                <TileMatrix>3</TileMatrix>
     28572                                                <MinTileRow>2</MinTileRow>
     28573                                                <MaxTileRow>2</MaxTileRow>
     28574                                                <MinTileCol>3</MinTileCol>
     28575                                                <MaxTileCol>3</MaxTileCol>
     28576                                        </TileMatrixLimits>
     28577                                        <TileMatrixLimits>
     28578                                                <TileMatrix>4</TileMatrix>
     28579                                                <MinTileRow>5</MinTileRow>
     28580                                                <MaxTileRow>5</MaxTileRow>
     28581                                                <MinTileCol>7</MinTileCol>
     28582                                                <MaxTileCol>7</MaxTileCol>
     28583                                        </TileMatrixLimits>
     28584                                        <TileMatrixLimits>
     28585                                                <TileMatrix>5</TileMatrix>
     28586                                                <MinTileRow>11</MinTileRow>
     28587                                                <MaxTileRow>11</MaxTileRow>
     28588                                                <MinTileCol>15</MinTileCol>
     28589                                                <MaxTileCol>15</MaxTileCol>
     28590                                        </TileMatrixLimits>
     28591                                        <TileMatrixLimits>
     28592                                                <TileMatrix>6</TileMatrix>
     28593                                                <MinTileRow>22</MinTileRow>
     28594                                                <MaxTileRow>22</MaxTileRow>
     28595                                                <MinTileCol>31</MinTileCol>
     28596                                                <MaxTileCol>31</MaxTileCol>
     28597                                        </TileMatrixLimits>
     28598                                        <TileMatrixLimits>
     28599                                                <TileMatrix>7</TileMatrix>
     28600                                                <MinTileRow>45</MinTileRow>
     28601                                                <MaxTileRow>45</MaxTileRow>
     28602                                                <MinTileCol>63</MinTileCol>
     28603                                                <MaxTileCol>63</MaxTileCol>
     28604                                        </TileMatrixLimits>
     28605                                        <TileMatrixLimits>
     28606                                                <TileMatrix>8</TileMatrix>
     28607                                                <MinTileRow>90</MinTileRow>
     28608                                                <MaxTileRow>90</MaxTileRow>
     28609                                                <MinTileCol>126</MinTileCol>
     28610                                                <MaxTileCol>127</MaxTileCol>
     28611                                        </TileMatrixLimits>
     28612                                        <TileMatrixLimits>
     28613                                                <TileMatrix>9</TileMatrix>
     28614                                                <MinTileRow>181</MinTileRow>
     28615                                                <MaxTileRow>181</MaxTileRow>
     28616                                                <MinTileCol>253</MinTileCol>
     28617                                                <MaxTileCol>254</MaxTileCol>
     28618                                        </TileMatrixLimits>
     28619                                </TileMatrixSetLimits>
     28620                        </TileMatrixSetLink>
     28621                </Layer>
     28622                <Layer>
     28623                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28624                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28625                        <ows:Keywords>
     28626                                <ows:Keyword>Photographies</ows:Keyword>
     28627                        </ows:Keywords>
     28628                        <ows:WGS84BoundingBox>
     28629                                <ows:LowerCorner>-1.329 45.6249</ows:LowerCorner>
     28630                                <ows:UpperCorner>-1.17326 45.8191</ows:UpperCorner>
     28631                        </ows:WGS84BoundingBox>
     28632                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-06-22-40304210</ows:Identifier>
     28633                        <Style isDefault="true">
     28634                                <ows:Title>Données Brutes</ows:Title>
     28635                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28636                                <ows:Keywords>
     28637                                        <ows:Keyword>Défaut</ows:Keyword>
     28638                                </ows:Keywords>
     28639                                <ows:Identifier>normal</ows:Identifier>
     28640                                <LegendURL format="image/jpeg" height="200"
     28641                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28642                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28643                        </Style>
     28644                        <Format>image/jpeg</Format>
     28645                        <TileMatrixSetLink>
     28646                                <TileMatrixSet>PM</TileMatrixSet>
     28647                                <TileMatrixSetLimits>
     28648                                        <TileMatrixLimits>
     28649                                                <TileMatrix>0</TileMatrix>
     28650                                                <MinTileRow>0</MinTileRow>
     28651                                                <MaxTileRow>0</MaxTileRow>
     28652                                                <MinTileCol>0</MinTileCol>
     28653                                                <MaxTileCol>0</MaxTileCol>
     28654                                        </TileMatrixLimits>
     28655                                        <TileMatrixLimits>
     28656                                                <TileMatrix>1</TileMatrix>
     28657                                                <MinTileRow>0</MinTileRow>
     28658                                                <MaxTileRow>0</MaxTileRow>
     28659                                                <MinTileCol>0</MinTileCol>
     28660                                                <MaxTileCol>0</MaxTileCol>
     28661                                        </TileMatrixLimits>
     28662                                        <TileMatrixLimits>
     28663                                                <TileMatrix>10</TileMatrix>
     28664                                                <MinTileRow>365</MinTileRow>
     28665                                                <MaxTileRow>365</MaxTileRow>
     28666                                                <MinTileCol>508</MinTileCol>
     28667                                                <MaxTileCol>508</MaxTileCol>
     28668                                        </TileMatrixLimits>
     28669                                        <TileMatrixLimits>
     28670                                                <TileMatrix>11</TileMatrix>
     28671                                                <MinTileRow>730</MinTileRow>
     28672                                                <MaxTileRow>731</MaxTileRow>
     28673                                                <MinTileCol>1016</MinTileCol>
     28674                                                <MaxTileCol>1017</MaxTileCol>
     28675                                        </TileMatrixLimits>
     28676                                        <TileMatrixLimits>
     28677                                                <TileMatrix>12</TileMatrix>
     28678                                                <MinTileRow>1460</MinTileRow>
     28679                                                <MaxTileRow>1463</MaxTileRow>
     28680                                                <MinTileCol>2032</MinTileCol>
     28681                                                <MaxTileCol>2034</MaxTileCol>
     28682                                        </TileMatrixLimits>
     28683                                        <TileMatrixLimits>
     28684                                                <TileMatrix>13</TileMatrix>
     28685                                                <MinTileRow>2920</MinTileRow>
     28686                                                <MaxTileRow>2926</MaxTileRow>
     28687                                                <MinTileCol>4065</MinTileCol>
     28688                                                <MaxTileCol>4069</MaxTileCol>
     28689                                        </TileMatrixLimits>
     28690                                        <TileMatrixLimits>
     28691                                                <TileMatrix>14</TileMatrix>
     28692                                                <MinTileRow>5840</MinTileRow>
     28693                                                <MaxTileRow>5853</MaxTileRow>
     28694                                                <MinTileCol>8131</MinTileCol>
     28695                                                <MaxTileCol>8138</MaxTileCol>
     28696                                        </TileMatrixLimits>
     28697                                        <TileMatrixLimits>
     28698                                                <TileMatrix>15</TileMatrix>
     28699                                                <MinTileRow>11681</MinTileRow>
     28700                                                <MaxTileRow>11706</MaxTileRow>
     28701                                                <MinTileCol>16263</MinTileCol>
     28702                                                <MaxTileCol>16276</MaxTileCol>
     28703                                        </TileMatrixLimits>
     28704                                        <TileMatrixLimits>
     28705                                                <TileMatrix>16</TileMatrix>
     28706                                                <MinTileRow>23362</MinTileRow>
     28707                                                <MaxTileRow>23412</MaxTileRow>
     28708                                                <MinTileCol>32527</MinTileCol>
     28709                                                <MaxTileCol>32552</MaxTileCol>
     28710                                        </TileMatrixLimits>
     28711                                        <TileMatrixLimits>
     28712                                                <TileMatrix>17</TileMatrix>
     28713                                                <MinTileRow>46725</MinTileRow>
     28714                                                <MaxTileRow>46825</MaxTileRow>
     28715                                                <MinTileCol>65055</MinTileCol>
     28716                                                <MaxTileCol>65104</MaxTileCol>
     28717                                        </TileMatrixLimits>
     28718                                        <TileMatrixLimits>
     28719                                                <TileMatrix>18</TileMatrix>
     28720                                                <MinTileRow>93450</MinTileRow>
     28721                                                <MaxTileRow>93650</MaxTileRow>
     28722                                                <MinTileCol>130110</MinTileCol>
     28723                                                <MaxTileCol>130209</MaxTileCol>
     28724                                        </TileMatrixLimits>
     28725                                        <TileMatrixLimits>
     28726                                                <TileMatrix>2</TileMatrix>
     28727                                                <MinTileRow>1</MinTileRow>
     28728                                                <MaxTileRow>1</MaxTileRow>
     28729                                                <MinTileCol>1</MinTileCol>
     28730                                                <MaxTileCol>1</MaxTileCol>
     28731                                        </TileMatrixLimits>
     28732                                        <TileMatrixLimits>
     28733                                                <TileMatrix>3</TileMatrix>
     28734                                                <MinTileRow>2</MinTileRow>
     28735                                                <MaxTileRow>2</MaxTileRow>
     28736                                                <MinTileCol>3</MinTileCol>
     28737                                                <MaxTileCol>3</MaxTileCol>
     28738                                        </TileMatrixLimits>
     28739                                        <TileMatrixLimits>
     28740                                                <TileMatrix>4</TileMatrix>
     28741                                                <MinTileRow>5</MinTileRow>
     28742                                                <MaxTileRow>5</MaxTileRow>
     28743                                                <MinTileCol>7</MinTileCol>
     28744                                                <MaxTileCol>7</MaxTileCol>
     28745                                        </TileMatrixLimits>
     28746                                        <TileMatrixLimits>
     28747                                                <TileMatrix>5</TileMatrix>
     28748                                                <MinTileRow>11</MinTileRow>
     28749                                                <MaxTileRow>11</MaxTileRow>
     28750                                                <MinTileCol>15</MinTileCol>
     28751                                                <MaxTileCol>15</MaxTileCol>
     28752                                        </TileMatrixLimits>
     28753                                        <TileMatrixLimits>
     28754                                                <TileMatrix>6</TileMatrix>
     28755                                                <MinTileRow>22</MinTileRow>
     28756                                                <MaxTileRow>22</MaxTileRow>
     28757                                                <MinTileCol>31</MinTileCol>
     28758                                                <MaxTileCol>31</MaxTileCol>
     28759                                        </TileMatrixLimits>
     28760                                        <TileMatrixLimits>
     28761                                                <TileMatrix>7</TileMatrix>
     28762                                                <MinTileRow>45</MinTileRow>
     28763                                                <MaxTileRow>45</MaxTileRow>
     28764                                                <MinTileCol>63</MinTileCol>
     28765                                                <MaxTileCol>63</MaxTileCol>
     28766                                        </TileMatrixLimits>
     28767                                        <TileMatrixLimits>
     28768                                                <TileMatrix>8</TileMatrix>
     28769                                                <MinTileRow>91</MinTileRow>
     28770                                                <MaxTileRow>91</MaxTileRow>
     28771                                                <MinTileCol>127</MinTileCol>
     28772                                                <MaxTileCol>127</MaxTileCol>
     28773                                        </TileMatrixLimits>
     28774                                        <TileMatrixLimits>
     28775                                                <TileMatrix>9</TileMatrix>
     28776                                                <MinTileRow>182</MinTileRow>
     28777                                                <MaxTileRow>182</MaxTileRow>
     28778                                                <MinTileCol>254</MinTileCol>
     28779                                                <MaxTileCol>254</MaxTileCol>
     28780                                        </TileMatrixLimits>
     28781                                </TileMatrixSetLimits>
     28782                        </TileMatrixSetLink>
     28783                </Layer>
     28784                <Layer>
     28785                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28786                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28787                        <ows:Keywords>
     28788                                <ows:Keyword>Photographies</ows:Keyword>
     28789                        </ows:Keywords>
     28790                        <ows:WGS84BoundingBox>
     28791                                <ows:LowerCorner>-1.28368 46.0329</ows:LowerCorner>
     28792                                <ows:UpperCorner>-0.945734 46.4039</ows:UpperCorner>
     28793                        </ows:WGS84BoundingBox>
     28794                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-07-25-40106069</ows:Identifier>
     28795                        <Style isDefault="true">
     28796                                <ows:Title>Données Brutes</ows:Title>
     28797                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28798                                <ows:Keywords>
     28799                                        <ows:Keyword>Défaut</ows:Keyword>
     28800                                </ows:Keywords>
     28801                                <ows:Identifier>normal</ows:Identifier>
     28802                                <LegendURL format="image/jpeg" height="200"
     28803                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28804                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28805                        </Style>
     28806                        <Format>image/jpeg</Format>
     28807                        <TileMatrixSetLink>
     28808                                <TileMatrixSet>PM</TileMatrixSet>
     28809                                <TileMatrixSetLimits>
     28810                                        <TileMatrixLimits>
     28811                                                <TileMatrix>0</TileMatrix>
     28812                                                <MinTileRow>0</MinTileRow>
     28813                                                <MaxTileRow>0</MaxTileRow>
     28814                                                <MinTileCol>0</MinTileCol>
     28815                                                <MaxTileCol>0</MaxTileCol>
     28816                                        </TileMatrixLimits>
     28817                                        <TileMatrixLimits>
     28818                                                <TileMatrix>1</TileMatrix>
     28819                                                <MinTileRow>0</MinTileRow>
     28820                                                <MaxTileRow>0</MaxTileRow>
     28821                                                <MinTileCol>0</MinTileCol>
     28822                                                <MaxTileCol>0</MaxTileCol>
     28823                                        </TileMatrixLimits>
     28824                                        <TileMatrixLimits>
     28825                                                <TileMatrix>10</TileMatrix>
     28826                                                <MinTileRow>362</MinTileRow>
     28827                                                <MaxTileRow>364</MaxTileRow>
     28828                                                <MinTileCol>508</MinTileCol>
     28829                                                <MaxTileCol>509</MaxTileCol>
     28830                                        </TileMatrixLimits>
     28831                                        <TileMatrixLimits>
     28832                                                <TileMatrix>11</TileMatrix>
     28833                                                <MinTileRow>725</MinTileRow>
     28834                                                <MaxTileRow>728</MaxTileRow>
     28835                                                <MinTileCol>1016</MinTileCol>
     28836                                                <MaxTileCol>1018</MaxTileCol>
     28837                                        </TileMatrixLimits>
     28838                                        <TileMatrixLimits>
     28839                                                <TileMatrix>12</TileMatrix>
     28840                                                <MinTileRow>1450</MinTileRow>
     28841                                                <MaxTileRow>1456</MaxTileRow>
     28842                                                <MinTileCol>2033</MinTileCol>
     28843                                                <MaxTileCol>2036</MaxTileCol>
     28844                                        </TileMatrixLimits>
     28845                                        <TileMatrixLimits>
     28846                                                <TileMatrix>13</TileMatrix>
     28847                                                <MinTileRow>2901</MinTileRow>
     28848                                                <MaxTileRow>2913</MaxTileRow>
     28849                                                <MinTileCol>4067</MinTileCol>
     28850                                                <MaxTileCol>4073</MaxTileCol>
     28851                                        </TileMatrixLimits>
     28852                                        <TileMatrixLimits>
     28853                                                <TileMatrix>14</TileMatrix>
     28854                                                <MinTileRow>5802</MinTileRow>
     28855                                                <MaxTileRow>5826</MaxTileRow>
     28856                                                <MinTileCol>8134</MinTileCol>
     28857                                                <MaxTileCol>8147</MaxTileCol>
     28858                                        </TileMatrixLimits>
     28859                                        <TileMatrixLimits>
     28860                                                <TileMatrix>15</TileMatrix>
     28861                                                <MinTileRow>11605</MinTileRow>
     28862                                                <MaxTileRow>11652</MaxTileRow>
     28863                                                <MinTileCol>16269</MinTileCol>
     28864                                                <MaxTileCol>16295</MaxTileCol>
     28865                                        </TileMatrixLimits>
     28866                                        <TileMatrixLimits>
     28867                                                <TileMatrix>16</TileMatrix>
     28868                                                <MinTileRow>23210</MinTileRow>
     28869                                                <MaxTileRow>23304</MaxTileRow>
     28870                                                <MinTileCol>32538</MinTileCol>
     28871                                                <MaxTileCol>32591</MaxTileCol>
     28872                                        </TileMatrixLimits>
     28873                                        <TileMatrixLimits>
     28874                                                <TileMatrix>17</TileMatrix>
     28875                                                <MinTileRow>46421</MinTileRow>
     28876                                                <MaxTileRow>46609</MaxTileRow>
     28877                                                <MinTileCol>65077</MinTileCol>
     28878                                                <MaxTileCol>65183</MaxTileCol>
     28879                                        </TileMatrixLimits>
     28880                                        <TileMatrixLimits>
     28881                                                <TileMatrix>18</TileMatrix>
     28882                                                <MinTileRow>92842</MinTileRow>
     28883                                                <MaxTileRow>93218</MaxTileRow>
     28884                                                <MinTileCol>130154</MinTileCol>
     28885                                                <MaxTileCol>130366</MaxTileCol>
     28886                                        </TileMatrixLimits>
     28887                                        <TileMatrixLimits>
     28888                                                <TileMatrix>2</TileMatrix>
     28889                                                <MinTileRow>1</MinTileRow>
     28890                                                <MaxTileRow>1</MaxTileRow>
     28891                                                <MinTileCol>1</MinTileCol>
     28892                                                <MaxTileCol>1</MaxTileCol>
     28893                                        </TileMatrixLimits>
     28894                                        <TileMatrixLimits>
     28895                                                <TileMatrix>3</TileMatrix>
     28896                                                <MinTileRow>2</MinTileRow>
     28897                                                <MaxTileRow>2</MaxTileRow>
     28898                                                <MinTileCol>3</MinTileCol>
     28899                                                <MaxTileCol>3</MaxTileCol>
     28900                                        </TileMatrixLimits>
     28901                                        <TileMatrixLimits>
     28902                                                <TileMatrix>4</TileMatrix>
     28903                                                <MinTileRow>5</MinTileRow>
     28904                                                <MaxTileRow>5</MaxTileRow>
     28905                                                <MinTileCol>7</MinTileCol>
     28906                                                <MaxTileCol>7</MaxTileCol>
     28907                                        </TileMatrixLimits>
     28908                                        <TileMatrixLimits>
     28909                                                <TileMatrix>5</TileMatrix>
     28910                                                <MinTileRow>11</MinTileRow>
     28911                                                <MaxTileRow>11</MaxTileRow>
     28912                                                <MinTileCol>15</MinTileCol>
     28913                                                <MaxTileCol>15</MaxTileCol>
     28914                                        </TileMatrixLimits>
     28915                                        <TileMatrixLimits>
     28916                                                <TileMatrix>6</TileMatrix>
     28917                                                <MinTileRow>22</MinTileRow>
     28918                                                <MaxTileRow>22</MaxTileRow>
     28919                                                <MinTileCol>31</MinTileCol>
     28920                                                <MaxTileCol>31</MaxTileCol>
     28921                                        </TileMatrixLimits>
     28922                                        <TileMatrixLimits>
     28923                                                <TileMatrix>7</TileMatrix>
     28924                                                <MinTileRow>45</MinTileRow>
     28925                                                <MaxTileRow>45</MaxTileRow>
     28926                                                <MinTileCol>63</MinTileCol>
     28927                                                <MaxTileCol>63</MaxTileCol>
     28928                                        </TileMatrixLimits>
     28929                                        <TileMatrixLimits>
     28930                                                <TileMatrix>8</TileMatrix>
     28931                                                <MinTileRow>90</MinTileRow>
     28932                                                <MaxTileRow>91</MaxTileRow>
     28933                                                <MinTileCol>127</MinTileCol>
     28934                                                <MaxTileCol>127</MaxTileCol>
     28935                                        </TileMatrixLimits>
     28936                                        <TileMatrixLimits>
     28937                                                <TileMatrix>9</TileMatrix>
     28938                                                <MinTileRow>181</MinTileRow>
     28939                                                <MaxTileRow>182</MaxTileRow>
     28940                                                <MinTileCol>254</MinTileCol>
     28941                                                <MaxTileCol>254</MaxTileCol>
     28942                                        </TileMatrixLimits>
     28943                                </TileMatrixSetLimits>
     28944                        </TileMatrixSetLink>
     28945                </Layer>
     28946                <Layer>
     28947                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     28948                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     28949                        <ows:Keywords>
     28950                                <ows:Keyword>Photographies</ows:Keyword>
     28951                        </ows:Keywords>
     28952                        <ows:WGS84BoundingBox>
     28953                                <ows:LowerCorner>-0.961084 45.3409</ows:LowerCorner>
     28954                                <ows:UpperCorner>-0.70467 45.547</ows:UpperCorner>
     28955                        </ows:WGS84BoundingBox>
     28956                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-07-31-40307949</ows:Identifier>
     28957                        <Style isDefault="true">
     28958                                <ows:Title>Données Brutes</ows:Title>
     28959                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     28960                                <ows:Keywords>
     28961                                        <ows:Keyword>Défaut</ows:Keyword>
     28962                                </ows:Keywords>
     28963                                <ows:Identifier>normal</ows:Identifier>
     28964                                <LegendURL format="image/jpeg" height="200"
     28965                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     28966                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     28967                        </Style>
     28968                        <Format>image/jpeg</Format>
     28969                        <TileMatrixSetLink>
     28970                                <TileMatrixSet>PM</TileMatrixSet>
     28971                                <TileMatrixSetLimits>
     28972                                        <TileMatrixLimits>
     28973                                                <TileMatrix>0</TileMatrix>
     28974                                                <MinTileRow>0</MinTileRow>
     28975                                                <MaxTileRow>0</MaxTileRow>
     28976                                                <MinTileCol>0</MinTileCol>
     28977                                                <MaxTileCol>0</MaxTileCol>
     28978                                        </TileMatrixLimits>
     28979                                        <TileMatrixLimits>
     28980                                                <TileMatrix>1</TileMatrix>
     28981                                                <MinTileRow>0</MinTileRow>
     28982                                                <MaxTileRow>0</MaxTileRow>
     28983                                                <MinTileCol>0</MinTileCol>
     28984                                                <MaxTileCol>0</MaxTileCol>
     28985                                        </TileMatrixLimits>
     28986                                        <TileMatrixLimits>
     28987                                                <TileMatrix>10</TileMatrix>
     28988                                                <MinTileRow>366</MinTileRow>
     28989                                                <MaxTileRow>366</MaxTileRow>
     28990                                                <MinTileCol>509</MinTileCol>
     28991                                                <MaxTileCol>509</MaxTileCol>
     28992                                        </TileMatrixLimits>
     28993                                        <TileMatrixLimits>
     28994                                                <TileMatrix>11</TileMatrix>
     28995                                                <MinTileRow>732</MinTileRow>
     28996                                                <MaxTileRow>733</MaxTileRow>
     28997                                                <MinTileCol>1018</MinTileCol>
     28998                                                <MaxTileCol>1019</MaxTileCol>
     28999                                        </TileMatrixLimits>
     29000                                        <TileMatrixLimits>
     29001                                                <TileMatrix>12</TileMatrix>
     29002                                                <MinTileRow>1464</MinTileRow>
     29003                                                <MaxTileRow>1467</MaxTileRow>
     29004                                                <MinTileCol>2037</MinTileCol>
     29005                                                <MaxTileCol>2039</MaxTileCol>
     29006                                        </TileMatrixLimits>
     29007                                        <TileMatrixLimits>
     29008                                                <TileMatrix>13</TileMatrix>
     29009                                                <MinTileRow>2929</MinTileRow>
     29010                                                <MaxTileRow>2935</MaxTileRow>
     29011                                                <MinTileCol>4074</MinTileCol>
     29012                                                <MaxTileCol>4079</MaxTileCol>
     29013                                        </TileMatrixLimits>
     29014                                        <TileMatrixLimits>
     29015                                                <TileMatrix>14</TileMatrix>
     29016                                                <MinTileRow>5858</MinTileRow>
     29017                                                <MaxTileRow>5871</MaxTileRow>
     29018                                                <MinTileCol>8148</MinTileCol>
     29019                                                <MaxTileCol>8159</MaxTileCol>
     29020                                        </TileMatrixLimits>
     29021                                        <TileMatrixLimits>
     29022                                                <TileMatrix>15</TileMatrix>
     29023                                                <MinTileRow>11717</MinTileRow>
     29024                                                <MaxTileRow>11742</MaxTileRow>
     29025                                                <MinTileCol>16296</MinTileCol>
     29026                                                <MaxTileCol>16319</MaxTileCol>
     29027                                        </TileMatrixLimits>
     29028                                        <TileMatrixLimits>
     29029                                                <TileMatrix>16</TileMatrix>
     29030                                                <MinTileRow>23435</MinTileRow>
     29031                                                <MaxTileRow>23485</MaxTileRow>
     29032                                                <MinTileCol>32592</MinTileCol>
     29033                                                <MaxTileCol>32638</MaxTileCol>
     29034                                        </TileMatrixLimits>
     29035                                        <TileMatrixLimits>
     29036                                                <TileMatrix>17</TileMatrix>
     29037                                                <MinTileRow>46870</MinTileRow>
     29038                                                <MaxTileRow>46970</MaxTileRow>
     29039                                                <MinTileCol>65185</MinTileCol>
     29040                                                <MaxTileCol>65276</MaxTileCol>
     29041                                        </TileMatrixLimits>
     29042                                        <TileMatrixLimits>
     29043                                                <TileMatrix>18</TileMatrix>
     29044                                                <MinTileRow>93741</MinTileRow>
     29045                                                <MaxTileRow>93941</MaxTileRow>
     29046                                                <MinTileCol>130371</MinTileCol>
     29047                                                <MaxTileCol>130552</MaxTileCol>
     29048                                        </TileMatrixLimits>
     29049                                        <TileMatrixLimits>
     29050                                                <TileMatrix>2</TileMatrix>
     29051                                                <MinTileRow>1</MinTileRow>
     29052                                                <MaxTileRow>1</MaxTileRow>
     29053                                                <MinTileCol>1</MinTileCol>
     29054                                                <MaxTileCol>1</MaxTileCol>
     29055                                        </TileMatrixLimits>
     29056                                        <TileMatrixLimits>
     29057                                                <TileMatrix>3</TileMatrix>
     29058                                                <MinTileRow>2</MinTileRow>
     29059                                                <MaxTileRow>2</MaxTileRow>
     29060                                                <MinTileCol>3</MinTileCol>
     29061                                                <MaxTileCol>3</MaxTileCol>
     29062                                        </TileMatrixLimits>
     29063                                        <TileMatrixLimits>
     29064                                                <TileMatrix>4</TileMatrix>
     29065                                                <MinTileRow>5</MinTileRow>
     29066                                                <MaxTileRow>5</MaxTileRow>
     29067                                                <MinTileCol>7</MinTileCol>
     29068                                                <MaxTileCol>7</MaxTileCol>
     29069                                        </TileMatrixLimits>
     29070                                        <TileMatrixLimits>
     29071                                                <TileMatrix>5</TileMatrix>
     29072                                                <MinTileRow>11</MinTileRow>
     29073                                                <MaxTileRow>11</MaxTileRow>
     29074                                                <MinTileCol>15</MinTileCol>
     29075                                                <MaxTileCol>15</MaxTileCol>
     29076                                        </TileMatrixLimits>
     29077                                        <TileMatrixLimits>
     29078                                                <TileMatrix>6</TileMatrix>
     29079                                                <MinTileRow>22</MinTileRow>
     29080                                                <MaxTileRow>22</MaxTileRow>
     29081                                                <MinTileCol>31</MinTileCol>
     29082                                                <MaxTileCol>31</MaxTileCol>
     29083                                        </TileMatrixLimits>
     29084                                        <TileMatrixLimits>
     29085                                                <TileMatrix>7</TileMatrix>
     29086                                                <MinTileRow>45</MinTileRow>
     29087                                                <MaxTileRow>45</MaxTileRow>
     29088                                                <MinTileCol>63</MinTileCol>
     29089                                                <MaxTileCol>63</MaxTileCol>
     29090                                        </TileMatrixLimits>
     29091                                        <TileMatrixLimits>
     29092                                                <TileMatrix>8</TileMatrix>
     29093                                                <MinTileRow>91</MinTileRow>
     29094                                                <MaxTileRow>91</MaxTileRow>
     29095                                                <MinTileCol>127</MinTileCol>
     29096                                                <MaxTileCol>127</MaxTileCol>
     29097                                        </TileMatrixLimits>
     29098                                        <TileMatrixLimits>
     29099                                                <TileMatrix>9</TileMatrix>
     29100                                                <MinTileRow>183</MinTileRow>
     29101                                                <MaxTileRow>183</MaxTileRow>
     29102                                                <MinTileCol>254</MinTileCol>
     29103                                                <MaxTileCol>254</MaxTileCol>
     29104                                        </TileMatrixLimits>
     29105                                </TileMatrixSetLimits>
     29106                        </TileMatrixSetLink>
     29107                </Layer>
     29108                <Layer>
     29109                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     29110                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     29111                        <ows:Keywords>
     29112                                <ows:Keyword>Photographies</ows:Keyword>
     29113                        </ows:Keywords>
     29114                        <ows:WGS84BoundingBox>
     29115                                <ows:LowerCorner>-1.48535 45.9436</ows:LowerCorner>
     29116                                <ows:UpperCorner>-1.17203 46.1617</ows:UpperCorner>
     29117                        </ows:WGS84BoundingBox>
     29118                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-08-20-40105151</ows:Identifier>
     29119                        <Style isDefault="true">
     29120                                <ows:Title>Données Brutes</ows:Title>
     29121                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29122                                <ows:Keywords>
     29123                                        <ows:Keyword>Défaut</ows:Keyword>
     29124                                </ows:Keywords>
     29125                                <ows:Identifier>normal</ows:Identifier>
     29126                                <LegendURL format="image/jpeg" height="200"
     29127                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29128                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29129                        </Style>
     29130                        <Format>image/jpeg</Format>
     29131                        <TileMatrixSetLink>
     29132                                <TileMatrixSet>PM</TileMatrixSet>
     29133                                <TileMatrixSetLimits>
     29134                                        <TileMatrixLimits>
     29135                                                <TileMatrix>0</TileMatrix>
     29136                                                <MinTileRow>0</MinTileRow>
     29137                                                <MaxTileRow>0</MaxTileRow>
     29138                                                <MinTileCol>0</MinTileCol>
     29139                                                <MaxTileCol>0</MaxTileCol>
     29140                                        </TileMatrixLimits>
     29141                                        <TileMatrixLimits>
     29142                                                <TileMatrix>1</TileMatrix>
     29143                                                <MinTileRow>0</MinTileRow>
     29144                                                <MaxTileRow>0</MaxTileRow>
     29145                                                <MinTileCol>0</MinTileCol>
     29146                                                <MaxTileCol>0</MaxTileCol>
     29147                                        </TileMatrixLimits>
     29148                                        <TileMatrixLimits>
     29149                                                <TileMatrix>10</TileMatrix>
     29150                                                <MinTileRow>363</MinTileRow>
     29151                                                <MaxTileRow>364</MaxTileRow>
     29152                                                <MinTileCol>507</MinTileCol>
     29153                                                <MaxTileCol>508</MaxTileCol>
     29154                                        </TileMatrixLimits>
     29155                                        <TileMatrixLimits>
     29156                                                <TileMatrix>11</TileMatrix>
     29157                                                <MinTileRow>727</MinTileRow>
     29158                                                <MaxTileRow>728</MaxTileRow>
     29159                                                <MinTileCol>1015</MinTileCol>
     29160                                                <MaxTileCol>1017</MaxTileCol>
     29161                                        </TileMatrixLimits>
     29162                                        <TileMatrixLimits>
     29163                                                <TileMatrix>12</TileMatrix>
     29164                                                <MinTileRow>1454</MinTileRow>
     29165                                                <MaxTileRow>1457</MaxTileRow>
     29166                                                <MinTileCol>2031</MinTileCol>
     29167                                                <MaxTileCol>2034</MaxTileCol>
     29168                                        </TileMatrixLimits>
     29169                                        <TileMatrixLimits>
     29170                                                <TileMatrix>13</TileMatrix>
     29171                                                <MinTileRow>2909</MinTileRow>
     29172                                                <MaxTileRow>2915</MaxTileRow>
     29173                                                <MinTileCol>4062</MinTileCol>
     29174                                                <MaxTileCol>4069</MaxTileCol>
     29175                                        </TileMatrixLimits>
     29176                                        <TileMatrixLimits>
     29177                                                <TileMatrix>14</TileMatrix>
     29178                                                <MinTileRow>5818</MinTileRow>
     29179                                                <MaxTileRow>5831</MaxTileRow>
     29180                                                <MinTileCol>8125</MinTileCol>
     29181                                                <MaxTileCol>8138</MaxTileCol>
     29182                                        </TileMatrixLimits>
     29183                                        <TileMatrixLimits>
     29184                                                <TileMatrix>15</TileMatrix>
     29185                                                <MinTileRow>11637</MinTileRow>
     29186                                                <MaxTileRow>11663</MaxTileRow>
     29187                                                <MinTileCol>16250</MinTileCol>
     29188                                                <MaxTileCol>16276</MaxTileCol>
     29189                                        </TileMatrixLimits>
     29190                                        <TileMatrixLimits>
     29191                                                <TileMatrix>16</TileMatrix>
     29192                                                <MinTileRow>23275</MinTileRow>
     29193                                                <MaxTileRow>23327</MaxTileRow>
     29194                                                <MinTileCol>32500</MinTileCol>
     29195                                                <MaxTileCol>32552</MaxTileCol>
     29196                                        </TileMatrixLimits>
     29197                                        <TileMatrixLimits>
     29198                                                <TileMatrix>17</TileMatrix>
     29199                                                <MinTileRow>46550</MinTileRow>
     29200                                                <MaxTileRow>46655</MaxTileRow>
     29201                                                <MinTileCol>65000</MinTileCol>
     29202                                                <MaxTileCol>65105</MaxTileCol>
     29203                                        </TileMatrixLimits>
     29204                                        <TileMatrixLimits>
     29205                                                <TileMatrix>18</TileMatrix>
     29206                                                <MinTileRow>93100</MinTileRow>
     29207                                                <MaxTileRow>93310</MaxTileRow>
     29208                                                <MinTileCol>130000</MinTileCol>
     29209                                                <MaxTileCol>130210</MaxTileCol>
     29210                                        </TileMatrixLimits>
     29211                                        <TileMatrixLimits>
     29212                                                <TileMatrix>2</TileMatrix>
     29213                                                <MinTileRow>1</MinTileRow>
     29214                                                <MaxTileRow>1</MaxTileRow>
     29215                                                <MinTileCol>1</MinTileCol>
     29216                                                <MaxTileCol>1</MaxTileCol>
     29217                                        </TileMatrixLimits>
     29218                                        <TileMatrixLimits>
     29219                                                <TileMatrix>3</TileMatrix>
     29220                                                <MinTileRow>2</MinTileRow>
     29221                                                <MaxTileRow>2</MaxTileRow>
     29222                                                <MinTileCol>3</MinTileCol>
     29223                                                <MaxTileCol>3</MaxTileCol>
     29224                                        </TileMatrixLimits>
     29225                                        <TileMatrixLimits>
     29226                                                <TileMatrix>4</TileMatrix>
     29227                                                <MinTileRow>5</MinTileRow>
     29228                                                <MaxTileRow>5</MaxTileRow>
     29229                                                <MinTileCol>7</MinTileCol>
     29230                                                <MaxTileCol>7</MaxTileCol>
     29231                                        </TileMatrixLimits>
     29232                                        <TileMatrixLimits>
     29233                                                <TileMatrix>5</TileMatrix>
     29234                                                <MinTileRow>11</MinTileRow>
     29235                                                <MaxTileRow>11</MaxTileRow>
     29236                                                <MinTileCol>15</MinTileCol>
     29237                                                <MaxTileCol>15</MaxTileCol>
     29238                                        </TileMatrixLimits>
     29239                                        <TileMatrixLimits>
     29240                                                <TileMatrix>6</TileMatrix>
     29241                                                <MinTileRow>22</MinTileRow>
     29242                                                <MaxTileRow>22</MaxTileRow>
     29243                                                <MinTileCol>31</MinTileCol>
     29244                                                <MaxTileCol>31</MaxTileCol>
     29245                                        </TileMatrixLimits>
     29246                                        <TileMatrixLimits>
     29247                                                <TileMatrix>7</TileMatrix>
     29248                                                <MinTileRow>45</MinTileRow>
     29249                                                <MaxTileRow>45</MaxTileRow>
     29250                                                <MinTileCol>63</MinTileCol>
     29251                                                <MaxTileCol>63</MaxTileCol>
     29252                                        </TileMatrixLimits>
     29253                                        <TileMatrixLimits>
     29254                                                <TileMatrix>8</TileMatrix>
     29255                                                <MinTileRow>90</MinTileRow>
     29256                                                <MaxTileRow>91</MaxTileRow>
     29257                                                <MinTileCol>126</MinTileCol>
     29258                                                <MaxTileCol>127</MaxTileCol>
     29259                                        </TileMatrixLimits>
     29260                                        <TileMatrixLimits>
     29261                                                <TileMatrix>9</TileMatrix>
     29262                                                <MinTileRow>181</MinTileRow>
     29263                                                <MaxTileRow>182</MaxTileRow>
     29264                                                <MinTileCol>253</MinTileCol>
     29265                                                <MaxTileCol>254</MaxTileCol>
     29266                                        </TileMatrixLimits>
     29267                                </TileMatrixSetLimits>
     29268                        </TileMatrixSetLink>
     29269                </Layer>
     29270                <Layer>
     29271                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     29272                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     29273                        <ows:Keywords>
     29274                                <ows:Keyword>Photographies</ows:Keyword>
     29275                        </ows:Keywords>
     29276                        <ows:WGS84BoundingBox>
     29277                                <ows:LowerCorner>-1.47142 45.7727</ows:LowerCorner>
     29278                                <ows:UpperCorner>-1.17197 45.9904</ows:UpperCorner>
     29279                        </ows:WGS84BoundingBox>
     29280                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-09-01-40527071</ows:Identifier>
     29281                        <Style isDefault="true">
     29282                                <ows:Title>Données Brutes</ows:Title>
     29283                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29284                                <ows:Keywords>
     29285                                        <ows:Keyword>Défaut</ows:Keyword>
     29286                                </ows:Keywords>
     29287                                <ows:Identifier>normal</ows:Identifier>
     29288                                <LegendURL format="image/jpeg" height="200"
     29289                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29290                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29291                        </Style>
     29292                        <Format>image/jpeg</Format>
     29293                        <TileMatrixSetLink>
     29294                                <TileMatrixSet>PM</TileMatrixSet>
     29295                                <TileMatrixSetLimits>
     29296                                        <TileMatrixLimits>
     29297                                                <TileMatrix>0</TileMatrix>
     29298                                                <MinTileRow>0</MinTileRow>
     29299                                                <MaxTileRow>0</MaxTileRow>
     29300                                                <MinTileCol>0</MinTileCol>
     29301                                                <MaxTileCol>0</MaxTileCol>
     29302                                        </TileMatrixLimits>
     29303                                        <TileMatrixLimits>
     29304                                                <TileMatrix>1</TileMatrix>
     29305                                                <MinTileRow>0</MinTileRow>
     29306                                                <MaxTileRow>0</MaxTileRow>
     29307                                                <MinTileCol>0</MinTileCol>
     29308                                                <MaxTileCol>0</MaxTileCol>
     29309                                        </TileMatrixLimits>
     29310                                        <TileMatrixLimits>
     29311                                                <TileMatrix>10</TileMatrix>
     29312                                                <MinTileRow>364</MinTileRow>
     29313                                                <MaxTileRow>365</MaxTileRow>
     29314                                                <MinTileCol>507</MinTileCol>
     29315                                                <MaxTileCol>508</MaxTileCol>
     29316                                        </TileMatrixLimits>
     29317                                        <TileMatrixLimits>
     29318                                                <TileMatrix>11</TileMatrix>
     29319                                                <MinTileRow>728</MinTileRow>
     29320                                                <MaxTileRow>730</MaxTileRow>
     29321                                                <MinTileCol>1015</MinTileCol>
     29322                                                <MaxTileCol>1017</MaxTileCol>
     29323                                        </TileMatrixLimits>
     29324                                        <TileMatrixLimits>
     29325                                                <TileMatrix>12</TileMatrix>
     29326                                                <MinTileRow>1457</MinTileRow>
     29327                                                <MaxTileRow>1460</MaxTileRow>
     29328                                                <MinTileCol>2031</MinTileCol>
     29329                                                <MaxTileCol>2034</MaxTileCol>
     29330                                        </TileMatrixLimits>
     29331                                        <TileMatrixLimits>
     29332                                                <TileMatrix>13</TileMatrix>
     29333                                                <MinTileRow>2914</MinTileRow>
     29334                                                <MaxTileRow>2921</MaxTileRow>
     29335                                                <MinTileCol>4062</MinTileCol>
     29336                                                <MaxTileCol>4069</MaxTileCol>
     29337                                        </TileMatrixLimits>
     29338                                        <TileMatrixLimits>
     29339                                                <TileMatrix>14</TileMatrix>
     29340                                                <MinTileRow>5829</MinTileRow>
     29341                                                <MaxTileRow>5843</MaxTileRow>
     29342                                                <MinTileCol>8125</MinTileCol>
     29343                                                <MaxTileCol>8138</MaxTileCol>
     29344                                        </TileMatrixLimits>
     29345                                        <TileMatrixLimits>
     29346                                                <TileMatrix>15</TileMatrix>
     29347                                                <MinTileRow>11659</MinTileRow>
     29348                                                <MaxTileRow>11686</MaxTileRow>
     29349                                                <MinTileCol>16250</MinTileCol>
     29350                                                <MaxTileCol>16276</MaxTileCol>
     29351                                        </TileMatrixLimits>
     29352                                        <TileMatrixLimits>
     29353                                                <TileMatrix>16</TileMatrix>
     29354                                                <MinTileRow>23318</MinTileRow>
     29355                                                <MaxTileRow>23372</MaxTileRow>
     29356                                                <MinTileCol>32500</MinTileCol>
     29357                                                <MaxTileCol>32552</MaxTileCol>
     29358                                        </TileMatrixLimits>
     29359                                        <TileMatrixLimits>
     29360                                                <TileMatrix>17</TileMatrix>
     29361                                                <MinTileRow>46637</MinTileRow>
     29362                                                <MaxTileRow>46744</MaxTileRow>
     29363                                                <MinTileCol>65000</MinTileCol>
     29364                                                <MaxTileCol>65105</MaxTileCol>
     29365                                        </TileMatrixLimits>
     29366                                        <TileMatrixLimits>
     29367                                                <TileMatrix>18</TileMatrix>
     29368                                                <MinTileRow>93275</MinTileRow>
     29369                                                <MaxTileRow>93488</MaxTileRow>
     29370                                                <MinTileCol>130000</MinTileCol>
     29371                                                <MaxTileCol>130210</MaxTileCol>
     29372                                        </TileMatrixLimits>
     29373                                        <TileMatrixLimits>
     29374                                                <TileMatrix>2</TileMatrix>
     29375                                                <MinTileRow>1</MinTileRow>
     29376                                                <MaxTileRow>1</MaxTileRow>
     29377                                                <MinTileCol>1</MinTileCol>
     29378                                                <MaxTileCol>1</MaxTileCol>
     29379                                        </TileMatrixLimits>
     29380                                        <TileMatrixLimits>
     29381                                                <TileMatrix>3</TileMatrix>
     29382                                                <MinTileRow>2</MinTileRow>
     29383                                                <MaxTileRow>2</MaxTileRow>
     29384                                                <MinTileCol>3</MinTileCol>
     29385                                                <MaxTileCol>3</MaxTileCol>
     29386                                        </TileMatrixLimits>
     29387                                        <TileMatrixLimits>
     29388                                                <TileMatrix>4</TileMatrix>
     29389                                                <MinTileRow>5</MinTileRow>
     29390                                                <MaxTileRow>5</MaxTileRow>
     29391                                                <MinTileCol>7</MinTileCol>
     29392                                                <MaxTileCol>7</MaxTileCol>
     29393                                        </TileMatrixLimits>
     29394                                        <TileMatrixLimits>
     29395                                                <TileMatrix>5</TileMatrix>
     29396                                                <MinTileRow>11</MinTileRow>
     29397                                                <MaxTileRow>11</MaxTileRow>
     29398                                                <MinTileCol>15</MinTileCol>
     29399                                                <MaxTileCol>15</MaxTileCol>
     29400                                        </TileMatrixLimits>
     29401                                        <TileMatrixLimits>
     29402                                                <TileMatrix>6</TileMatrix>
     29403                                                <MinTileRow>22</MinTileRow>
     29404                                                <MaxTileRow>22</MaxTileRow>
     29405                                                <MinTileCol>31</MinTileCol>
     29406                                                <MaxTileCol>31</MaxTileCol>
     29407                                        </TileMatrixLimits>
     29408                                        <TileMatrixLimits>
     29409                                                <TileMatrix>7</TileMatrix>
     29410                                                <MinTileRow>45</MinTileRow>
     29411                                                <MaxTileRow>45</MaxTileRow>
     29412                                                <MinTileCol>63</MinTileCol>
     29413                                                <MaxTileCol>63</MaxTileCol>
     29414                                        </TileMatrixLimits>
     29415                                        <TileMatrixLimits>
     29416                                                <TileMatrix>8</TileMatrix>
     29417                                                <MinTileRow>91</MinTileRow>
     29418                                                <MaxTileRow>91</MaxTileRow>
     29419                                                <MinTileCol>126</MinTileCol>
     29420                                                <MaxTileCol>127</MaxTileCol>
     29421                                        </TileMatrixLimits>
     29422                                        <TileMatrixLimits>
     29423                                                <TileMatrix>9</TileMatrix>
     29424                                                <MinTileRow>182</MinTileRow>
     29425                                                <MaxTileRow>182</MaxTileRow>
     29426                                                <MinTileCol>253</MinTileCol>
     29427                                                <MaxTileCol>254</MaxTileCol>
     29428                                        </TileMatrixLimits>
     29429                                </TileMatrixSetLimits>
     29430                        </TileMatrixSetLink>
     29431                </Layer>
     29432                <Layer>
     29433                        <ows:Title>Orthophotographies Geosud de LITTO-17-85 2014</ows:Title>
     29434                        <ows:Abstract>Orthophotographies Geosud de LITTO-17-85 2014</ows:Abstract>
     29435                        <ows:Keywords>
     29436                                <ows:Keyword>Photographies</ows:Keyword>
     29437                        </ows:Keywords>
     29438                        <ows:WGS84BoundingBox>
     29439                                <ows:LowerCorner>-1.48492 46.1059</ows:LowerCorner>
     29440                                <ows:UpperCorner>-1.17141 46.3151</ows:UpperCorner>
     29441                        </ows:WGS84BoundingBox>
     29442                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-17-85-2014-09-01-40545694</ows:Identifier>
     29443                        <Style isDefault="true">
     29444                                <ows:Title>Données Brutes</ows:Title>
     29445                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29446                                <ows:Keywords>
     29447                                        <ows:Keyword>Défaut</ows:Keyword>
     29448                                </ows:Keywords>
     29449                                <ows:Identifier>normal</ows:Identifier>
     29450                                <LegendURL format="image/jpeg" height="200"
     29451                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29452                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29453                        </Style>
     29454                        <Format>image/jpeg</Format>
     29455                        <TileMatrixSetLink>
     29456                                <TileMatrixSet>PM</TileMatrixSet>
     29457                                <TileMatrixSetLimits>
     29458                                        <TileMatrixLimits>
     29459                                                <TileMatrix>0</TileMatrix>
     29460                                                <MinTileRow>0</MinTileRow>
     29461                                                <MaxTileRow>0</MaxTileRow>
     29462                                                <MinTileCol>0</MinTileCol>
     29463                                                <MaxTileCol>0</MaxTileCol>
     29464                                        </TileMatrixLimits>
     29465                                        <TileMatrixLimits>
     29466                                                <TileMatrix>1</TileMatrix>
     29467                                                <MinTileRow>0</MinTileRow>
     29468                                                <MaxTileRow>0</MaxTileRow>
     29469                                                <MinTileCol>0</MinTileCol>
     29470                                                <MaxTileCol>0</MaxTileCol>
     29471                                        </TileMatrixLimits>
     29472                                        <TileMatrixLimits>
     29473                                                <TileMatrix>10</TileMatrix>
     29474                                                <MinTileRow>363</MinTileRow>
     29475                                                <MaxTileRow>363</MaxTileRow>
     29476                                                <MinTileCol>507</MinTileCol>
     29477                                                <MaxTileCol>508</MaxTileCol>
     29478                                        </TileMatrixLimits>
     29479                                        <TileMatrixLimits>
     29480                                                <TileMatrix>11</TileMatrix>
     29481                                                <MinTileRow>726</MinTileRow>
     29482                                                <MaxTileRow>727</MaxTileRow>
     29483                                                <MinTileCol>1015</MinTileCol>
     29484                                                <MaxTileCol>1017</MaxTileCol>
     29485                                        </TileMatrixLimits>
     29486                                        <TileMatrixLimits>
     29487                                                <TileMatrix>12</TileMatrix>
     29488                                                <MinTileRow>1452</MinTileRow>
     29489                                                <MaxTileRow>1455</MaxTileRow>
     29490                                                <MinTileCol>2031</MinTileCol>
     29491                                                <MaxTileCol>2034</MaxTileCol>
     29492                                        </TileMatrixLimits>
     29493                                        <TileMatrixLimits>
     29494                                                <TileMatrix>13</TileMatrix>
     29495                                                <MinTileRow>2904</MinTileRow>
     29496                                                <MaxTileRow>2910</MaxTileRow>
     29497                                                <MinTileCol>4062</MinTileCol>
     29498                                                <MaxTileCol>4069</MaxTileCol>
     29499                                        </TileMatrixLimits>
     29500                                        <TileMatrixLimits>
     29501                                                <TileMatrix>14</TileMatrix>
     29502                                                <MinTileRow>5808</MinTileRow>
     29503                                                <MaxTileRow>5821</MaxTileRow>
     29504                                                <MinTileCol>8124</MinTileCol>
     29505                                                <MaxTileCol>8138</MaxTileCol>
     29506                                        </TileMatrixLimits>
     29507                                        <TileMatrixLimits>
     29508                                                <TileMatrix>15</TileMatrix>
     29509                                                <MinTileRow>11616</MinTileRow>
     29510                                                <MaxTileRow>11643</MaxTileRow>
     29511                                                <MinTileCol>16249</MinTileCol>
     29512                                                <MaxTileCol>16276</MaxTileCol>
     29513                                        </TileMatrixLimits>
     29514                                        <TileMatrixLimits>
     29515                                                <TileMatrix>16</TileMatrix>
     29516                                                <MinTileRow>23233</MinTileRow>
     29517                                                <MaxTileRow>23286</MaxTileRow>
     29518                                                <MinTileCol>32499</MinTileCol>
     29519                                                <MaxTileCol>32553</MaxTileCol>
     29520                                        </TileMatrixLimits>
     29521                                        <TileMatrixLimits>
     29522                                                <TileMatrix>17</TileMatrix>
     29523                                                <MinTileRow>46467</MinTileRow>
     29524                                                <MaxTileRow>46573</MaxTileRow>
     29525                                                <MinTileCol>64999</MinTileCol>
     29526                                                <MaxTileCol>65106</MaxTileCol>
     29527                                        </TileMatrixLimits>
     29528                                        <TileMatrixLimits>
     29529                                                <TileMatrix>18</TileMatrix>
     29530                                                <MinTileRow>92934</MinTileRow>
     29531                                                <MaxTileRow>93146</MaxTileRow>
     29532                                                <MinTileCol>129998</MinTileCol>
     29533                                                <MaxTileCol>130212</MaxTileCol>
     29534                                        </TileMatrixLimits>
     29535                                        <TileMatrixLimits>
     29536                                                <TileMatrix>2</TileMatrix>
     29537                                                <MinTileRow>1</MinTileRow>
     29538                                                <MaxTileRow>1</MaxTileRow>
     29539                                                <MinTileCol>1</MinTileCol>
     29540                                                <MaxTileCol>1</MaxTileCol>
     29541                                        </TileMatrixLimits>
     29542                                        <TileMatrixLimits>
     29543                                                <TileMatrix>3</TileMatrix>
     29544                                                <MinTileRow>2</MinTileRow>
     29545                                                <MaxTileRow>2</MaxTileRow>
     29546                                                <MinTileCol>3</MinTileCol>
     29547                                                <MaxTileCol>3</MaxTileCol>
     29548                                        </TileMatrixLimits>
     29549                                        <TileMatrixLimits>
     29550                                                <TileMatrix>4</TileMatrix>
     29551                                                <MinTileRow>5</MinTileRow>
     29552                                                <MaxTileRow>5</MaxTileRow>
     29553                                                <MinTileCol>7</MinTileCol>
     29554                                                <MaxTileCol>7</MaxTileCol>
     29555                                        </TileMatrixLimits>
     29556                                        <TileMatrixLimits>
     29557                                                <TileMatrix>5</TileMatrix>
     29558                                                <MinTileRow>11</MinTileRow>
     29559                                                <MaxTileRow>11</MaxTileRow>
     29560                                                <MinTileCol>15</MinTileCol>
     29561                                                <MaxTileCol>15</MaxTileCol>
     29562                                        </TileMatrixLimits>
     29563                                        <TileMatrixLimits>
     29564                                                <TileMatrix>6</TileMatrix>
     29565                                                <MinTileRow>22</MinTileRow>
     29566                                                <MaxTileRow>22</MaxTileRow>
     29567                                                <MinTileCol>31</MinTileCol>
     29568                                                <MaxTileCol>31</MaxTileCol>
     29569                                        </TileMatrixLimits>
     29570                                        <TileMatrixLimits>
     29571                                                <TileMatrix>7</TileMatrix>
     29572                                                <MinTileRow>45</MinTileRow>
     29573                                                <MaxTileRow>45</MaxTileRow>
     29574                                                <MinTileCol>63</MinTileCol>
     29575                                                <MaxTileCol>63</MaxTileCol>
     29576                                        </TileMatrixLimits>
     29577                                        <TileMatrixLimits>
     29578                                                <TileMatrix>8</TileMatrix>
     29579                                                <MinTileRow>90</MinTileRow>
     29580                                                <MaxTileRow>90</MaxTileRow>
     29581                                                <MinTileCol>126</MinTileCol>
     29582                                                <MaxTileCol>127</MaxTileCol>
     29583                                        </TileMatrixLimits>
     29584                                        <TileMatrixLimits>
     29585                                                <TileMatrix>9</TileMatrix>
     29586                                                <MinTileRow>181</MinTileRow>
     29587                                                <MaxTileRow>181</MaxTileRow>
     29588                                                <MinTileCol>253</MinTileCol>
     29589                                                <MaxTileCol>254</MaxTileCol>
     29590                                        </TileMatrixLimits>
     29591                                </TileMatrixSetLimits>
     29592                        </TileMatrixSetLink>
     29593                </Layer>
     29594                <Layer>
     29595                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     29596                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     29597                        <ows:Keywords>
     29598                                <ows:Keyword>Photographies</ows:Keyword>
     29599                        </ows:Keywords>
     29600                        <ows:WGS84BoundingBox>
     29601                                <ows:LowerCorner>-1.36503 44.4248</ows:LowerCorner>
     29602                                <ows:UpperCorner>-1.02225 44.8143</ows:UpperCorner>
     29603                        </ows:WGS84BoundingBox>
     29604                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-02-12-40315319</ows:Identifier>
     29605                        <Style isDefault="true">
     29606                                <ows:Title>Données Brutes</ows:Title>
     29607                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29608                                <ows:Keywords>
     29609                                        <ows:Keyword>Défaut</ows:Keyword>
     29610                                </ows:Keywords>
     29611                                <ows:Identifier>normal</ows:Identifier>
     29612                                <LegendURL format="image/jpeg" height="200"
     29613                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29614                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29615                        </Style>
     29616                        <Format>image/jpeg</Format>
     29617                        <TileMatrixSetLink>
     29618                                <TileMatrixSet>PM</TileMatrixSet>
     29619                                <TileMatrixSetLimits>
     29620                                        <TileMatrixLimits>
     29621                                                <TileMatrix>0</TileMatrix>
     29622                                                <MinTileRow>0</MinTileRow>
     29623                                                <MaxTileRow>0</MaxTileRow>
     29624                                                <MinTileCol>0</MinTileCol>
     29625                                                <MaxTileCol>0</MaxTileCol>
     29626                                        </TileMatrixLimits>
     29627                                        <TileMatrixLimits>
     29628                                                <TileMatrix>1</TileMatrix>
     29629                                                <MinTileRow>0</MinTileRow>
     29630                                                <MaxTileRow>0</MaxTileRow>
     29631                                                <MinTileCol>0</MinTileCol>
     29632                                                <MaxTileCol>0</MaxTileCol>
     29633                                        </TileMatrixLimits>
     29634                                        <TileMatrixLimits>
     29635                                                <TileMatrix>10</TileMatrix>
     29636                                                <MinTileRow>369</MinTileRow>
     29637                                                <MaxTileRow>370</MaxTileRow>
     29638                                                <MinTileCol>508</MinTileCol>
     29639                                                <MaxTileCol>509</MaxTileCol>
     29640                                        </TileMatrixLimits>
     29641                                        <TileMatrixLimits>
     29642                                                <TileMatrix>11</TileMatrix>
     29643                                                <MinTileRow>738</MinTileRow>
     29644                                                <MaxTileRow>741</MaxTileRow>
     29645                                                <MinTileCol>1016</MinTileCol>
     29646                                                <MaxTileCol>1018</MaxTileCol>
     29647                                        </TileMatrixLimits>
     29648                                        <TileMatrixLimits>
     29649                                                <TileMatrix>12</TileMatrix>
     29650                                                <MinTileRow>1476</MinTileRow>
     29651                                                <MaxTileRow>1482</MaxTileRow>
     29652                                                <MinTileCol>2032</MinTileCol>
     29653                                                <MaxTileCol>2036</MaxTileCol>
     29654                                        </TileMatrixLimits>
     29655                                        <TileMatrixLimits>
     29656                                                <TileMatrix>13</TileMatrix>
     29657                                                <MinTileRow>2953</MinTileRow>
     29658                                                <MaxTileRow>2965</MaxTileRow>
     29659                                                <MinTileCol>4065</MinTileCol>
     29660                                                <MaxTileCol>4072</MaxTileCol>
     29661                                        </TileMatrixLimits>
     29662                                        <TileMatrixLimits>
     29663                                                <TileMatrix>14</TileMatrix>
     29664                                                <MinTileRow>5906</MinTileRow>
     29665                                                <MaxTileRow>5930</MaxTileRow>
     29666                                                <MinTileCol>8130</MinTileCol>
     29667                                                <MaxTileCol>8144</MaxTileCol>
     29668                                        </TileMatrixLimits>
     29669                                        <TileMatrixLimits>
     29670                                                <TileMatrix>15</TileMatrix>
     29671                                                <MinTileRow>11812</MinTileRow>
     29672                                                <MaxTileRow>11860</MaxTileRow>
     29673                                                <MinTileCol>16261</MinTileCol>
     29674                                                <MaxTileCol>16289</MaxTileCol>
     29675                                        </TileMatrixLimits>
     29676                                        <TileMatrixLimits>
     29677                                                <TileMatrix>16</TileMatrix>
     29678                                                <MinTileRow>23624</MinTileRow>
     29679                                                <MaxTileRow>23720</MaxTileRow>
     29680                                                <MinTileCol>32523</MinTileCol>
     29681                                                <MaxTileCol>32578</MaxTileCol>
     29682                                        </TileMatrixLimits>
     29683                                        <TileMatrixLimits>
     29684                                                <TileMatrix>17</TileMatrix>
     29685                                                <MinTileRow>47249</MinTileRow>
     29686                                                <MaxTileRow>47440</MaxTileRow>
     29687                                                <MinTileCol>65047</MinTileCol>
     29688                                                <MaxTileCol>65156</MaxTileCol>
     29689                                        </TileMatrixLimits>
     29690                                        <TileMatrixLimits>
     29691                                                <TileMatrix>18</TileMatrix>
     29692                                                <MinTileRow>94498</MinTileRow>
     29693                                                <MaxTileRow>94881</MaxTileRow>
     29694                                                <MinTileCol>130094</MinTileCol>
     29695                                                <MaxTileCol>130313</MaxTileCol>
     29696                                        </TileMatrixLimits>
     29697                                        <TileMatrixLimits>
     29698                                                <TileMatrix>2</TileMatrix>
     29699                                                <MinTileRow>1</MinTileRow>
     29700                                                <MaxTileRow>1</MaxTileRow>
     29701                                                <MinTileCol>1</MinTileCol>
     29702                                                <MaxTileCol>1</MaxTileCol>
     29703                                        </TileMatrixLimits>
     29704                                        <TileMatrixLimits>
     29705                                                <TileMatrix>3</TileMatrix>
     29706                                                <MinTileRow>2</MinTileRow>
     29707                                                <MaxTileRow>2</MaxTileRow>
     29708                                                <MinTileCol>3</MinTileCol>
     29709                                                <MaxTileCol>3</MaxTileCol>
     29710                                        </TileMatrixLimits>
     29711                                        <TileMatrixLimits>
     29712                                                <TileMatrix>4</TileMatrix>
     29713                                                <MinTileRow>5</MinTileRow>
     29714                                                <MaxTileRow>5</MaxTileRow>
     29715                                                <MinTileCol>7</MinTileCol>
     29716                                                <MaxTileCol>7</MaxTileCol>
     29717                                        </TileMatrixLimits>
     29718                                        <TileMatrixLimits>
     29719                                                <TileMatrix>5</TileMatrix>
     29720                                                <MinTileRow>11</MinTileRow>
     29721                                                <MaxTileRow>11</MaxTileRow>
     29722                                                <MinTileCol>15</MinTileCol>
     29723                                                <MaxTileCol>15</MaxTileCol>
     29724                                        </TileMatrixLimits>
     29725                                        <TileMatrixLimits>
     29726                                                <TileMatrix>6</TileMatrix>
     29727                                                <MinTileRow>23</MinTileRow>
     29728                                                <MaxTileRow>23</MaxTileRow>
     29729                                                <MinTileCol>31</MinTileCol>
     29730                                                <MaxTileCol>31</MaxTileCol>
     29731                                        </TileMatrixLimits>
     29732                                        <TileMatrixLimits>
     29733                                                <TileMatrix>7</TileMatrix>
     29734                                                <MinTileRow>46</MinTileRow>
     29735                                                <MaxTileRow>46</MaxTileRow>
     29736                                                <MinTileCol>63</MinTileCol>
     29737                                                <MaxTileCol>63</MaxTileCol>
     29738                                        </TileMatrixLimits>
     29739                                        <TileMatrixLimits>
     29740                                                <TileMatrix>8</TileMatrix>
     29741                                                <MinTileRow>92</MinTileRow>
     29742                                                <MaxTileRow>92</MaxTileRow>
     29743                                                <MinTileCol>127</MinTileCol>
     29744                                                <MaxTileCol>127</MaxTileCol>
     29745                                        </TileMatrixLimits>
     29746                                        <TileMatrixLimits>
     29747                                                <TileMatrix>9</TileMatrix>
     29748                                                <MinTileRow>184</MinTileRow>
     29749                                                <MaxTileRow>185</MaxTileRow>
     29750                                                <MinTileCol>254</MinTileCol>
     29751                                                <MaxTileCol>254</MaxTileCol>
     29752                                        </TileMatrixLimits>
     29753                                </TileMatrixSetLimits>
     29754                        </TileMatrixSetLink>
     29755                </Layer>
     29756                <Layer>
     29757                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     29758                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     29759                        <ows:Keywords>
     29760                                <ows:Keyword>Photographies</ows:Keyword>
     29761                        </ows:Keywords>
     29762                        <ows:WGS84BoundingBox>
     29763                                <ows:LowerCorner>-1.27371 45.2397</ows:LowerCorner>
     29764                                <ows:UpperCorner>-0.966092 45.6098</ows:UpperCorner>
     29765                        </ows:WGS84BoundingBox>
     29766                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-10-40278879</ows:Identifier>
     29767                        <Style isDefault="true">
     29768                                <ows:Title>Données Brutes</ows:Title>
     29769                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29770                                <ows:Keywords>
     29771                                        <ows:Keyword>Défaut</ows:Keyword>
     29772                                </ows:Keywords>
     29773                                <ows:Identifier>normal</ows:Identifier>
     29774                                <LegendURL format="image/jpeg" height="200"
     29775                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29776                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29777                        </Style>
     29778                        <Format>image/jpeg</Format>
     29779                        <TileMatrixSetLink>
     29780                                <TileMatrixSet>PM</TileMatrixSet>
     29781                                <TileMatrixSetLimits>
     29782                                        <TileMatrixLimits>
     29783                                                <TileMatrix>0</TileMatrix>
     29784                                                <MinTileRow>0</MinTileRow>
     29785                                                <MaxTileRow>0</MaxTileRow>
     29786                                                <MinTileCol>0</MinTileCol>
     29787                                                <MaxTileCol>0</MaxTileCol>
     29788                                        </TileMatrixLimits>
     29789                                        <TileMatrixLimits>
     29790                                                <TileMatrix>1</TileMatrix>
     29791                                                <MinTileRow>0</MinTileRow>
     29792                                                <MaxTileRow>0</MaxTileRow>
     29793                                                <MinTileCol>0</MinTileCol>
     29794                                                <MaxTileCol>0</MaxTileCol>
     29795                                        </TileMatrixLimits>
     29796                                        <TileMatrixLimits>
     29797                                                <TileMatrix>10</TileMatrix>
     29798                                                <MinTileRow>365</MinTileRow>
     29799                                                <MaxTileRow>367</MaxTileRow>
     29800                                                <MinTileCol>508</MinTileCol>
     29801                                                <MaxTileCol>509</MaxTileCol>
     29802                                        </TileMatrixLimits>
     29803                                        <TileMatrixLimits>
     29804                                                <TileMatrix>11</TileMatrix>
     29805                                                <MinTileRow>731</MinTileRow>
     29806                                                <MaxTileRow>734</MaxTileRow>
     29807                                                <MinTileCol>1016</MinTileCol>
     29808                                                <MaxTileCol>1018</MaxTileCol>
     29809                                        </TileMatrixLimits>
     29810                                        <TileMatrixLimits>
     29811                                                <TileMatrix>12</TileMatrix>
     29812                                                <MinTileRow>1463</MinTileRow>
     29813                                                <MaxTileRow>1469</MaxTileRow>
     29814                                                <MinTileCol>2033</MinTileCol>
     29815                                                <MaxTileCol>2036</MaxTileCol>
     29816                                        </TileMatrixLimits>
     29817                                        <TileMatrixLimits>
     29818                                                <TileMatrix>13</TileMatrix>
     29819                                                <MinTileRow>2927</MinTileRow>
     29820                                                <MaxTileRow>2938</MaxTileRow>
     29821                                                <MinTileCol>4067</MinTileCol>
     29822                                                <MaxTileCol>4073</MaxTileCol>
     29823                                        </TileMatrixLimits>
     29824                                        <TileMatrixLimits>
     29825                                                <TileMatrix>14</TileMatrix>
     29826                                                <MinTileRow>5854</MinTileRow>
     29827                                                <MaxTileRow>5877</MaxTileRow>
     29828                                                <MinTileCol>8135</MinTileCol>
     29829                                                <MaxTileCol>8147</MaxTileCol>
     29830                                        </TileMatrixLimits>
     29831                                        <TileMatrixLimits>
     29832                                                <TileMatrix>15</TileMatrix>
     29833                                                <MinTileRow>11709</MinTileRow>
     29834                                                <MaxTileRow>11755</MaxTileRow>
     29835                                                <MinTileCol>16270</MinTileCol>
     29836                                                <MaxTileCol>16294</MaxTileCol>
     29837                                        </TileMatrixLimits>
     29838                                        <TileMatrixLimits>
     29839                                                <TileMatrix>16</TileMatrix>
     29840                                                <MinTileRow>23418</MinTileRow>
     29841                                                <MaxTileRow>23511</MaxTileRow>
     29842                                                <MinTileCol>32540</MinTileCol>
     29843                                                <MaxTileCol>32588</MaxTileCol>
     29844                                        </TileMatrixLimits>
     29845                                        <TileMatrixLimits>
     29846                                                <TileMatrix>17</TileMatrix>
     29847                                                <MinTileRow>46836</MinTileRow>
     29848                                                <MaxTileRow>47022</MaxTileRow>
     29849                                                <MinTileCol>65080</MinTileCol>
     29850                                                <MaxTileCol>65177</MaxTileCol>
     29851                                        </TileMatrixLimits>
     29852                                        <TileMatrixLimits>
     29853                                                <TileMatrix>18</TileMatrix>
     29854                                                <MinTileRow>93673</MinTileRow>
     29855                                                <MaxTileRow>94045</MaxTileRow>
     29856                                                <MinTileCol>130160</MinTileCol>
     29857                                                <MaxTileCol>130355</MaxTileCol>
     29858                                        </TileMatrixLimits>
     29859                                        <TileMatrixLimits>
     29860                                                <TileMatrix>2</TileMatrix>
     29861                                                <MinTileRow>1</MinTileRow>
     29862                                                <MaxTileRow>1</MaxTileRow>
     29863                                                <MinTileCol>1</MinTileCol>
     29864                                                <MaxTileCol>1</MaxTileCol>
     29865                                        </TileMatrixLimits>
     29866                                        <TileMatrixLimits>
     29867                                                <TileMatrix>3</TileMatrix>
     29868                                                <MinTileRow>2</MinTileRow>
     29869                                                <MaxTileRow>2</MaxTileRow>
     29870                                                <MinTileCol>3</MinTileCol>
     29871                                                <MaxTileCol>3</MaxTileCol>
     29872                                        </TileMatrixLimits>
     29873                                        <TileMatrixLimits>
     29874                                                <TileMatrix>4</TileMatrix>
     29875                                                <MinTileRow>5</MinTileRow>
     29876                                                <MaxTileRow>5</MaxTileRow>
     29877                                                <MinTileCol>7</MinTileCol>
     29878                                                <MaxTileCol>7</MaxTileCol>
     29879                                        </TileMatrixLimits>
     29880                                        <TileMatrixLimits>
     29881                                                <TileMatrix>5</TileMatrix>
     29882                                                <MinTileRow>11</MinTileRow>
     29883                                                <MaxTileRow>11</MaxTileRow>
     29884                                                <MinTileCol>15</MinTileCol>
     29885                                                <MaxTileCol>15</MaxTileCol>
     29886                                        </TileMatrixLimits>
     29887                                        <TileMatrixLimits>
     29888                                                <TileMatrix>6</TileMatrix>
     29889                                                <MinTileRow>22</MinTileRow>
     29890                                                <MaxTileRow>22</MaxTileRow>
     29891                                                <MinTileCol>31</MinTileCol>
     29892                                                <MaxTileCol>31</MaxTileCol>
     29893                                        </TileMatrixLimits>
     29894                                        <TileMatrixLimits>
     29895                                                <TileMatrix>7</TileMatrix>
     29896                                                <MinTileRow>45</MinTileRow>
     29897                                                <MaxTileRow>45</MaxTileRow>
     29898                                                <MinTileCol>63</MinTileCol>
     29899                                                <MaxTileCol>63</MaxTileCol>
     29900                                        </TileMatrixLimits>
     29901                                        <TileMatrixLimits>
     29902                                                <TileMatrix>8</TileMatrix>
     29903                                                <MinTileRow>91</MinTileRow>
     29904                                                <MaxTileRow>91</MaxTileRow>
     29905                                                <MinTileCol>127</MinTileCol>
     29906                                                <MaxTileCol>127</MaxTileCol>
     29907                                        </TileMatrixLimits>
     29908                                        <TileMatrixLimits>
     29909                                                <TileMatrix>9</TileMatrix>
     29910                                                <MinTileRow>182</MinTileRow>
     29911                                                <MaxTileRow>183</MaxTileRow>
     29912                                                <MinTileCol>254</MinTileCol>
     29913                                                <MaxTileCol>254</MaxTileCol>
     29914                                        </TileMatrixLimits>
     29915                                </TileMatrixSetLimits>
     29916                        </TileMatrixSetLink>
     29917                </Layer>
     29918                <Layer>
     29919                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     29920                        <ows:Abstract>Orthophotographies satellites de LITTO-AQUITAIN-2 issues du projet Geosud.</ows:Abstract>
     29921                        <ows:Keywords>
     29922                                <ows:Keyword>Photographies</ows:Keyword>
     29923                        </ows:Keywords>
     29924                        <ows:WGS84BoundingBox>
     29925                                <ows:LowerCorner>-1.55908 43.4697</ows:LowerCorner>
     29926                                <ows:UpperCorner>-1.3387 43.613</ows:UpperCorner>
     29927                        </ows:WGS84BoundingBox>
     29928                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-17-40069698</ows:Identifier>
     29929                        <Style isDefault="true">
     29930                                <ows:Title>Données Brutes</ows:Title>
     29931                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     29932                                <ows:Keywords>
     29933                                        <ows:Keyword>Défaut</ows:Keyword>
     29934                                </ows:Keywords>
     29935                                <ows:Identifier>normal</ows:Identifier>
     29936                                <LegendURL format="image/jpeg" height="200"
     29937                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     29938                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     29939                        </Style>
     29940                        <Format>image/jpeg</Format>
     29941                        <TileMatrixSetLink>
     29942                                <TileMatrixSet>PM</TileMatrixSet>
     29943                                <TileMatrixSetLimits>
     29944                                        <TileMatrixLimits>
     29945                                                <TileMatrix>0</TileMatrix>
     29946                                                <MinTileRow>0</MinTileRow>
     29947                                                <MaxTileRow>0</MaxTileRow>
     29948                                                <MinTileCol>0</MinTileCol>
     29949                                                <MaxTileCol>0</MaxTileCol>
     29950                                        </TileMatrixLimits>
     29951                                        <TileMatrixLimits>
     29952                                                <TileMatrix>1</TileMatrix>
     29953                                                <MinTileRow>0</MinTileRow>
     29954                                                <MaxTileRow>0</MaxTileRow>
     29955                                                <MinTileCol>0</MinTileCol>
     29956                                                <MaxTileCol>0</MaxTileCol>
     29957                                        </TileMatrixLimits>
     29958                                        <TileMatrixLimits>
     29959                                                <TileMatrix>10</TileMatrix>
     29960                                                <MinTileRow>373</MinTileRow>
     29961                                                <MaxTileRow>374</MaxTileRow>
     29962                                                <MinTileCol>507</MinTileCol>
     29963                                                <MaxTileCol>508</MaxTileCol>
     29964                                        </TileMatrixLimits>
     29965                                        <TileMatrixLimits>
     29966                                                <TileMatrix>11</TileMatrix>
     29967                                                <MinTileRow>747</MinTileRow>
     29968                                                <MaxTileRow>748</MaxTileRow>
     29969                                                <MinTileCol>1015</MinTileCol>
     29970                                                <MaxTileCol>1016</MaxTileCol>
     29971                                        </TileMatrixLimits>
     29972                                        <TileMatrixLimits>
     29973                                                <TileMatrix>12</TileMatrix>
     29974                                                <MinTileRow>1495</MinTileRow>
     29975                                                <MaxTileRow>1497</MaxTileRow>
     29976                                                <MinTileCol>2030</MinTileCol>
     29977                                                <MaxTileCol>2032</MaxTileCol>
     29978                                        </TileMatrixLimits>
     29979                                        <TileMatrixLimits>
     29980                                                <TileMatrix>13</TileMatrix>
     29981                                                <MinTileRow>2991</MinTileRow>
     29982                                                <MaxTileRow>2995</MaxTileRow>
     29983                                                <MinTileCol>4060</MinTileCol>
     29984                                                <MaxTileCol>4065</MaxTileCol>
     29985                                        </TileMatrixLimits>
     29986                                        <TileMatrixLimits>
     29987                                                <TileMatrix>14</TileMatrix>
     29988                                                <MinTileRow>5982</MinTileRow>
     29989                                                <MaxTileRow>5990</MaxTileRow>
     29990                                                <MinTileCol>8121</MinTileCol>
     29991                                                <MaxTileCol>8130</MaxTileCol>
     29992                                        </TileMatrixLimits>
     29993                                        <TileMatrixLimits>
     29994                                                <TileMatrix>15</TileMatrix>
     29995                                                <MinTileRow>11964</MinTileRow>
     29996                                                <MaxTileRow>11981</MaxTileRow>
     29997                                                <MinTileCol>16242</MinTileCol>
     29998                                                <MaxTileCol>16261</MaxTileCol>
     29999                                        </TileMatrixLimits>
     30000                                        <TileMatrixLimits>
     30001                                                <TileMatrix>16</TileMatrix>
     30002                                                <MinTileRow>23929</MinTileRow>
     30003                                                <MaxTileRow>23962</MaxTileRow>
     30004                                                <MinTileCol>32484</MinTileCol>
     30005                                                <MaxTileCol>32523</MaxTileCol>
     30006                                        </TileMatrixLimits>
     30007                                        <TileMatrixLimits>
     30008                                                <TileMatrix>17</TileMatrix>
     30009                                                <MinTileRow>47859</MinTileRow>
     30010                                                <MaxTileRow>47925</MaxTileRow>
     30011                                                <MinTileCol>64969</MinTileCol>
     30012                                                <MaxTileCol>65046</MaxTileCol>
     30013                                        </TileMatrixLimits>
     30014                                        <TileMatrixLimits>
     30015                                                <TileMatrix>18</TileMatrix>
     30016                                                <MinTileRow>95718</MinTileRow>
     30017                                                <MaxTileRow>95850</MaxTileRow>
     30018                                                <MinTileCol>129938</MinTileCol>
     30019                                                <MaxTileCol>130092</MaxTileCol>
     30020                                        </TileMatrixLimits>
     30021                                        <TileMatrixLimits>
     30022                                                <TileMatrix>2</TileMatrix>
     30023                                                <MinTileRow>1</MinTileRow>
     30024                                                <MaxTileRow>1</MaxTileRow>
     30025                                                <MinTileCol>1</MinTileCol>
     30026                                                <MaxTileCol>1</MaxTileCol>
     30027                                        </TileMatrixLimits>
     30028                                        <TileMatrixLimits>
     30029                                                <TileMatrix>3</TileMatrix>
     30030                                                <MinTileRow>2</MinTileRow>
     30031                                                <MaxTileRow>2</MaxTileRow>
     30032                                                <MinTileCol>3</MinTileCol>
     30033                                                <MaxTileCol>3</MaxTileCol>
     30034                                        </TileMatrixLimits>
     30035                                        <TileMatrixLimits>
     30036                                                <TileMatrix>4</TileMatrix>
     30037                                                <MinTileRow>5</MinTileRow>
     30038                                                <MaxTileRow>5</MaxTileRow>
     30039                                                <MinTileCol>7</MinTileCol>
     30040                                                <MaxTileCol>7</MaxTileCol>
     30041                                        </TileMatrixLimits>
     30042                                        <TileMatrixLimits>
     30043                                                <TileMatrix>5</TileMatrix>
     30044                                                <MinTileRow>11</MinTileRow>
     30045                                                <MaxTileRow>11</MaxTileRow>
     30046                                                <MinTileCol>15</MinTileCol>
     30047                                                <MaxTileCol>15</MaxTileCol>
     30048                                        </TileMatrixLimits>
     30049                                        <TileMatrixLimits>
     30050                                                <TileMatrix>6</TileMatrix>
     30051                                                <MinTileRow>23</MinTileRow>
     30052                                                <MaxTileRow>23</MaxTileRow>
     30053                                                <MinTileCol>31</MinTileCol>
     30054                                                <MaxTileCol>31</MaxTileCol>
     30055                                        </TileMatrixLimits>
     30056                                        <TileMatrixLimits>
     30057                                                <TileMatrix>7</TileMatrix>
     30058                                                <MinTileRow>46</MinTileRow>
     30059                                                <MaxTileRow>46</MaxTileRow>
     30060                                                <MinTileCol>63</MinTileCol>
     30061                                                <MaxTileCol>63</MaxTileCol>
     30062                                        </TileMatrixLimits>
     30063                                        <TileMatrixLimits>
     30064                                                <TileMatrix>8</TileMatrix>
     30065                                                <MinTileRow>93</MinTileRow>
     30066                                                <MaxTileRow>93</MaxTileRow>
     30067                                                <MinTileCol>126</MinTileCol>
     30068                                                <MaxTileCol>127</MaxTileCol>
     30069                                        </TileMatrixLimits>
     30070                                        <TileMatrixLimits>
     30071                                                <TileMatrix>9</TileMatrix>
     30072                                                <MinTileRow>186</MinTileRow>
     30073                                                <MaxTileRow>187</MaxTileRow>
     30074                                                <MinTileCol>253</MinTileCol>
     30075                                                <MaxTileCol>254</MaxTileCol>
     30076                                        </TileMatrixLimits>
     30077                                </TileMatrixSetLimits>
     30078                        </TileMatrixSetLink>
     30079                </Layer>
     30080                <Layer>
     30081                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     30082                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     30083                        <ows:Keywords>
     30084                                <ows:Keyword>Photographies</ows:Keyword>
     30085                        </ows:Keywords>
     30086                        <ows:WGS84BoundingBox>
     30087                                <ows:LowerCorner>-1.60957 43.551</ows:LowerCorner>
     30088                                <ows:UpperCorner>-1.09771 44.4046</ows:UpperCorner>
     30089                        </ows:WGS84BoundingBox>
     30090                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-03-17-40081454</ows:Identifier>
     30091                        <Style isDefault="true">
     30092                                <ows:Title>Données Brutes</ows:Title>
     30093                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30094                                <ows:Keywords>
     30095                                        <ows:Keyword>Défaut</ows:Keyword>
     30096                                </ows:Keywords>
     30097                                <ows:Identifier>normal</ows:Identifier>
     30098                                <LegendURL format="image/jpeg" height="200"
     30099                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30100                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30101                        </Style>
     30102                        <Format>image/jpeg</Format>
     30103                        <TileMatrixSetLink>
     30104                                <TileMatrixSet>PM</TileMatrixSet>
     30105                                <TileMatrixSetLimits>
     30106                                        <TileMatrixLimits>
     30107                                                <TileMatrix>0</TileMatrix>
     30108                                                <MinTileRow>0</MinTileRow>
     30109                                                <MaxTileRow>0</MaxTileRow>
     30110                                                <MinTileCol>0</MinTileCol>
     30111                                                <MaxTileCol>0</MaxTileCol>
     30112                                        </TileMatrixLimits>
     30113                                        <TileMatrixLimits>
     30114                                                <TileMatrix>1</TileMatrix>
     30115                                                <MinTileRow>0</MinTileRow>
     30116                                                <MaxTileRow>0</MaxTileRow>
     30117                                                <MinTileCol>0</MinTileCol>
     30118                                                <MaxTileCol>0</MaxTileCol>
     30119                                        </TileMatrixLimits>
     30120                                        <TileMatrixLimits>
     30121                                                <TileMatrix>10</TileMatrix>
     30122                                                <MinTileRow>370</MinTileRow>
     30123                                                <MaxTileRow>374</MaxTileRow>
     30124                                                <MinTileCol>507</MinTileCol>
     30125                                                <MaxTileCol>508</MaxTileCol>
     30126                                        </TileMatrixLimits>
     30127                                        <TileMatrixLimits>
     30128                                                <TileMatrix>11</TileMatrix>
     30129                                                <MinTileRow>741</MinTileRow>
     30130                                                <MaxTileRow>748</MaxTileRow>
     30131                                                <MinTileCol>1015</MinTileCol>
     30132                                                <MaxTileCol>1017</MaxTileCol>
     30133                                        </TileMatrixLimits>
     30134                                        <TileMatrixLimits>
     30135                                                <TileMatrix>12</TileMatrix>
     30136                                                <MinTileRow>1483</MinTileRow>
     30137                                                <MaxTileRow>1496</MaxTileRow>
     30138                                                <MinTileCol>2030</MinTileCol>
     30139                                                <MaxTileCol>2034</MaxTileCol>
     30140                                        </TileMatrixLimits>
     30141                                        <TileMatrixLimits>
     30142                                                <TileMatrix>13</TileMatrix>
     30143                                                <MinTileRow>2966</MinTileRow>
     30144                                                <MaxTileRow>2992</MaxTileRow>
     30145                                                <MinTileCol>4060</MinTileCol>
     30146                                                <MaxTileCol>4069</MaxTileCol>
     30147                                        </TileMatrixLimits>
     30148                                        <TileMatrixLimits>
     30149                                                <TileMatrix>14</TileMatrix>
     30150                                                <MinTileRow>5932</MinTileRow>
     30151                                                <MaxTileRow>5985</MaxTileRow>
     30152                                                <MinTileCol>8121</MinTileCol>
     30153                                                <MaxTileCol>8139</MaxTileCol>
     30154                                        </TileMatrixLimits>
     30155                                        <TileMatrixLimits>
     30156                                                <TileMatrix>15</TileMatrix>
     30157                                                <MinTileRow>11864</MinTileRow>
     30158                                                <MaxTileRow>11970</MaxTileRow>
     30159                                                <MinTileCol>16243</MinTileCol>
     30160                                                <MaxTileCol>16279</MaxTileCol>
     30161                                        </TileMatrixLimits>
     30162                                        <TileMatrixLimits>
     30163                                                <TileMatrix>16</TileMatrix>
     30164                                                <MinTileRow>23728</MinTileRow>
     30165                                                <MaxTileRow>23941</MaxTileRow>
     30166                                                <MinTileCol>32486</MinTileCol>
     30167                                                <MaxTileCol>32558</MaxTileCol>
     30168                                        </TileMatrixLimits>
     30169                                        <TileMatrixLimits>
     30170                                                <TileMatrix>17</TileMatrix>
     30171                                                <MinTileRow>47457</MinTileRow>
     30172                                                <MaxTileRow>47883</MaxTileRow>
     30173                                                <MinTileCol>64973</MinTileCol>
     30174                                                <MaxTileCol>65116</MaxTileCol>
     30175                                        </TileMatrixLimits>
     30176                                        <TileMatrixLimits>
     30177                                                <TileMatrix>18</TileMatrix>
     30178                                                <MinTileRow>94915</MinTileRow>
     30179                                                <MaxTileRow>95767</MaxTileRow>
     30180                                                <MinTileCol>129946</MinTileCol>
     30181                                                <MaxTileCol>130232</MaxTileCol>
     30182                                        </TileMatrixLimits>
     30183                                        <TileMatrixLimits>
     30184                                                <TileMatrix>2</TileMatrix>
     30185                                                <MinTileRow>1</MinTileRow>
     30186                                                <MaxTileRow>1</MaxTileRow>
     30187                                                <MinTileCol>1</MinTileCol>
     30188                                                <MaxTileCol>1</MaxTileCol>
     30189                                        </TileMatrixLimits>
     30190                                        <TileMatrixLimits>
     30191                                                <TileMatrix>3</TileMatrix>
     30192                                                <MinTileRow>2</MinTileRow>
     30193                                                <MaxTileRow>2</MaxTileRow>
     30194                                                <MinTileCol>3</MinTileCol>
     30195                                                <MaxTileCol>3</MaxTileCol>
     30196                                        </TileMatrixLimits>
     30197                                        <TileMatrixLimits>
     30198                                                <TileMatrix>4</TileMatrix>
     30199                                                <MinTileRow>5</MinTileRow>
     30200                                                <MaxTileRow>5</MaxTileRow>
     30201                                                <MinTileCol>7</MinTileCol>
     30202                                                <MaxTileCol>7</MaxTileCol>
     30203                                        </TileMatrixLimits>
     30204                                        <TileMatrixLimits>
     30205                                                <TileMatrix>5</TileMatrix>
     30206                                                <MinTileRow>11</MinTileRow>
     30207                                                <MaxTileRow>11</MaxTileRow>
     30208                                                <MinTileCol>15</MinTileCol>
     30209                                                <MaxTileCol>15</MaxTileCol>
     30210                                        </TileMatrixLimits>
     30211                                        <TileMatrixLimits>
     30212                                                <TileMatrix>6</TileMatrix>
     30213                                                <MinTileRow>23</MinTileRow>
     30214                                                <MaxTileRow>23</MaxTileRow>
     30215                                                <MinTileCol>31</MinTileCol>
     30216                                                <MaxTileCol>31</MaxTileCol>
     30217                                        </TileMatrixLimits>
     30218                                        <TileMatrixLimits>
     30219                                                <TileMatrix>7</TileMatrix>
     30220                                                <MinTileRow>46</MinTileRow>
     30221                                                <MaxTileRow>46</MaxTileRow>
     30222                                                <MinTileCol>63</MinTileCol>
     30223                                                <MaxTileCol>63</MaxTileCol>
     30224                                        </TileMatrixLimits>
     30225                                        <TileMatrixLimits>
     30226                                                <TileMatrix>8</TileMatrix>
     30227                                                <MinTileRow>92</MinTileRow>
     30228                                                <MaxTileRow>93</MaxTileRow>
     30229                                                <MinTileCol>126</MinTileCol>
     30230                                                <MaxTileCol>127</MaxTileCol>
     30231                                        </TileMatrixLimits>
     30232                                        <TileMatrixLimits>
     30233                                                <TileMatrix>9</TileMatrix>
     30234                                                <MinTileRow>185</MinTileRow>
     30235                                                <MaxTileRow>187</MaxTileRow>
     30236                                                <MinTileCol>253</MinTileCol>
     30237                                                <MaxTileCol>254</MaxTileCol>
     30238                                        </TileMatrixLimits>
     30239                                </TileMatrixSetLimits>
     30240                        </TileMatrixSetLink>
     30241                </Layer>
     30242                <Layer>
     30243                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     30244                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     30245                        <ows:Keywords>
     30246                                <ows:Keyword>Photographies</ows:Keyword>
     30247                        </ows:Keywords>
     30248                        <ows:WGS84BoundingBox>
     30249                                <ows:LowerCorner>-1.78192 43.3159</ows:LowerCorner>
     30250                                <ows:UpperCorner>-1.50013 43.4622</ows:UpperCorner>
     30251                        </ows:WGS84BoundingBox>
     30252                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-06-09-40340699</ows:Identifier>
     30253                        <Style isDefault="true">
     30254                                <ows:Title>Données Brutes</ows:Title>
     30255                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30256                                <ows:Keywords>
     30257                                        <ows:Keyword>Défaut</ows:Keyword>
     30258                                </ows:Keywords>
     30259                                <ows:Identifier>normal</ows:Identifier>
     30260                                <LegendURL format="image/jpeg" height="200"
     30261                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30262                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30263                        </Style>
     30264                        <Format>image/jpeg</Format>
     30265                        <TileMatrixSetLink>
     30266                                <TileMatrixSet>PM</TileMatrixSet>
     30267                                <TileMatrixSetLimits>
     30268                                        <TileMatrixLimits>
     30269                                                <TileMatrix>0</TileMatrix>
     30270                                                <MinTileRow>0</MinTileRow>
     30271                                                <MaxTileRow>0</MaxTileRow>
     30272                                                <MinTileCol>0</MinTileCol>
     30273                                                <MaxTileCol>0</MaxTileCol>
     30274                                        </TileMatrixLimits>
     30275                                        <TileMatrixLimits>
     30276                                                <TileMatrix>1</TileMatrix>
     30277                                                <MinTileRow>0</MinTileRow>
     30278                                                <MaxTileRow>0</MaxTileRow>
     30279                                                <MinTileCol>0</MinTileCol>
     30280                                                <MaxTileCol>0</MaxTileCol>
     30281                                        </TileMatrixLimits>
     30282                                        <TileMatrixLimits>
     30283                                                <TileMatrix>10</TileMatrix>
     30284                                                <MinTileRow>374</MinTileRow>
     30285                                                <MaxTileRow>375</MaxTileRow>
     30286                                                <MinTileCol>506</MinTileCol>
     30287                                                <MaxTileCol>507</MaxTileCol>
     30288                                        </TileMatrixLimits>
     30289                                        <TileMatrixLimits>
     30290                                                <TileMatrix>11</TileMatrix>
     30291                                                <MinTileRow>748</MinTileRow>
     30292                                                <MaxTileRow>750</MaxTileRow>
     30293                                                <MinTileCol>1013</MinTileCol>
     30294                                                <MaxTileCol>1015</MaxTileCol>
     30295                                        </TileMatrixLimits>
     30296                                        <TileMatrixLimits>
     30297                                                <TileMatrix>12</TileMatrix>
     30298                                                <MinTileRow>1497</MinTileRow>
     30299                                                <MaxTileRow>1500</MaxTileRow>
     30300                                                <MinTileCol>2027</MinTileCol>
     30301                                                <MaxTileCol>2030</MaxTileCol>
     30302                                        </TileMatrixLimits>
     30303                                        <TileMatrixLimits>
     30304                                                <TileMatrix>13</TileMatrix>
     30305                                                <MinTileRow>2995</MinTileRow>
     30306                                                <MaxTileRow>3000</MaxTileRow>
     30307                                                <MinTileCol>4055</MinTileCol>
     30308                                                <MaxTileCol>4061</MaxTileCol>
     30309                                        </TileMatrixLimits>
     30310                                        <TileMatrixLimits>
     30311                                                <TileMatrix>14</TileMatrix>
     30312                                                <MinTileRow>5991</MinTileRow>
     30313                                                <MaxTileRow>6000</MaxTileRow>
     30314                                                <MinTileCol>8111</MinTileCol>
     30315                                                <MaxTileCol>8123</MaxTileCol>
     30316                                        </TileMatrixLimits>
     30317                                        <TileMatrixLimits>
     30318                                                <TileMatrix>15</TileMatrix>
     30319                                                <MinTileRow>11983</MinTileRow>
     30320                                                <MaxTileRow>12000</MaxTileRow>
     30321                                                <MinTileCol>16222</MinTileCol>
     30322                                                <MaxTileCol>16247</MaxTileCol>
     30323                                        </TileMatrixLimits>
     30324                                        <TileMatrixLimits>
     30325                                                <TileMatrix>16</TileMatrix>
     30326                                                <MinTileRow>23966</MinTileRow>
     30327                                                <MaxTileRow>24001</MaxTileRow>
     30328                                                <MinTileCol>32445</MinTileCol>
     30329                                                <MaxTileCol>32494</MaxTileCol>
     30330                                        </TileMatrixLimits>
     30331                                        <TileMatrixLimits>
     30332                                                <TileMatrix>17</TileMatrix>
     30333                                                <MinTileRow>47933</MinTileRow>
     30334                                                <MaxTileRow>48002</MaxTileRow>
     30335                                                <MinTileCol>64890</MinTileCol>
     30336                                                <MaxTileCol>64989</MaxTileCol>
     30337                                        </TileMatrixLimits>
     30338                                        <TileMatrixLimits>
     30339                                                <TileMatrix>18</TileMatrix>
     30340                                                <MinTileRow>95867</MinTileRow>
     30341                                                <MaxTileRow>96005</MaxTileRow>
     30342                                                <MinTileCol>129780</MinTileCol>
     30343                                                <MaxTileCol>129979</MaxTileCol>
     30344                                        </TileMatrixLimits>
     30345                                        <TileMatrixLimits>
     30346                                                <TileMatrix>2</TileMatrix>
     30347                                                <MinTileRow>1</MinTileRow>
     30348                                                <MaxTileRow>1</MaxTileRow>
     30349                                                <MinTileCol>1</MinTileCol>
     30350                                                <MaxTileCol>1</MaxTileCol>
     30351                                        </TileMatrixLimits>
     30352                                        <TileMatrixLimits>
     30353                                                <TileMatrix>3</TileMatrix>
     30354                                                <MinTileRow>2</MinTileRow>
     30355                                                <MaxTileRow>2</MaxTileRow>
     30356                                                <MinTileCol>3</MinTileCol>
     30357                                                <MaxTileCol>3</MaxTileCol>
     30358                                        </TileMatrixLimits>
     30359                                        <TileMatrixLimits>
     30360                                                <TileMatrix>4</TileMatrix>
     30361                                                <MinTileRow>5</MinTileRow>
     30362                                                <MaxTileRow>5</MaxTileRow>
     30363                                                <MinTileCol>7</MinTileCol>
     30364                                                <MaxTileCol>7</MaxTileCol>
     30365                                        </TileMatrixLimits>
     30366                                        <TileMatrixLimits>
     30367                                                <TileMatrix>5</TileMatrix>
     30368                                                <MinTileRow>11</MinTileRow>
     30369                                                <MaxTileRow>11</MaxTileRow>
     30370                                                <MinTileCol>15</MinTileCol>
     30371                                                <MaxTileCol>15</MaxTileCol>
     30372                                        </TileMatrixLimits>
     30373                                        <TileMatrixLimits>
     30374                                                <TileMatrix>6</TileMatrix>
     30375                                                <MinTileRow>23</MinTileRow>
     30376                                                <MaxTileRow>23</MaxTileRow>
     30377                                                <MinTileCol>31</MinTileCol>
     30378                                                <MaxTileCol>31</MaxTileCol>
     30379                                        </TileMatrixLimits>
     30380                                        <TileMatrixLimits>
     30381                                                <TileMatrix>7</TileMatrix>
     30382                                                <MinTileRow>46</MinTileRow>
     30383                                                <MaxTileRow>46</MaxTileRow>
     30384                                                <MinTileCol>63</MinTileCol>
     30385                                                <MaxTileCol>63</MaxTileCol>
     30386                                        </TileMatrixLimits>
     30387                                        <TileMatrixLimits>
     30388                                                <TileMatrix>8</TileMatrix>
     30389                                                <MinTileRow>93</MinTileRow>
     30390                                                <MaxTileRow>93</MaxTileRow>
     30391                                                <MinTileCol>126</MinTileCol>
     30392                                                <MaxTileCol>126</MaxTileCol>
     30393                                        </TileMatrixLimits>
     30394                                        <TileMatrixLimits>
     30395                                                <TileMatrix>9</TileMatrix>
     30396                                                <MinTileRow>187</MinTileRow>
     30397                                                <MaxTileRow>187</MaxTileRow>
     30398                                                <MinTileCol>253</MinTileCol>
     30399                                                <MaxTileCol>253</MaxTileCol>
     30400                                        </TileMatrixLimits>
     30401                                </TileMatrixSetLimits>
     30402                        </TileMatrixSetLink>
     30403                </Layer>
     30404                <Layer>
     30405                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     30406                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     30407                        <ows:Keywords>
     30408                                <ows:Keyword>Photographies</ows:Keyword>
     30409                        </ows:Keywords>
     30410                        <ows:WGS84BoundingBox>
     30411                                <ows:LowerCorner>-1.87048 43.2672</ows:LowerCorner>
     30412                                <ows:UpperCorner>-1.57038 43.4861</ows:UpperCorner>
     30413                        </ows:WGS84BoundingBox>
     30414                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-06-09-40348949</ows:Identifier>
     30415                        <Style isDefault="true">
     30416                                <ows:Title>Données Brutes</ows:Title>
     30417                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30418                                <ows:Keywords>
     30419                                        <ows:Keyword>Défaut</ows:Keyword>
     30420                                </ows:Keywords>
     30421                                <ows:Identifier>normal</ows:Identifier>
     30422                                <LegendURL format="image/jpeg" height="200"
     30423                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30424                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30425                        </Style>
     30426                        <Format>image/jpeg</Format>
     30427                        <TileMatrixSetLink>
     30428                                <TileMatrixSet>PM</TileMatrixSet>
     30429                                <TileMatrixSetLimits>
     30430                                        <TileMatrixLimits>
     30431                                                <TileMatrix>0</TileMatrix>
     30432                                                <MinTileRow>0</MinTileRow>
     30433                                                <MaxTileRow>0</MaxTileRow>
     30434                                                <MinTileCol>0</MinTileCol>
     30435                                                <MaxTileCol>0</MaxTileCol>
     30436                                        </TileMatrixLimits>
     30437                                        <TileMatrixLimits>
     30438                                                <TileMatrix>1</TileMatrix>
     30439                                                <MinTileRow>0</MinTileRow>
     30440                                                <MaxTileRow>0</MaxTileRow>
     30441                                                <MinTileCol>0</MinTileCol>
     30442                                                <MaxTileCol>0</MaxTileCol>
     30443                                        </TileMatrixLimits>
     30444                                        <TileMatrixLimits>
     30445                                                <TileMatrix>10</TileMatrix>
     30446                                                <MinTileRow>374</MinTileRow>
     30447                                                <MaxTileRow>375</MaxTileRow>
     30448                                                <MinTileCol>506</MinTileCol>
     30449                                                <MaxTileCol>507</MaxTileCol>
     30450                                        </TileMatrixLimits>
     30451                                        <TileMatrixLimits>
     30452                                                <TileMatrix>11</TileMatrix>
     30453                                                <MinTileRow>748</MinTileRow>
     30454                                                <MaxTileRow>750</MaxTileRow>
     30455                                                <MinTileCol>1013</MinTileCol>
     30456                                                <MaxTileCol>1014</MaxTileCol>
     30457                                        </TileMatrixLimits>
     30458                                        <TileMatrixLimits>
     30459                                                <TileMatrix>12</TileMatrix>
     30460                                                <MinTileRow>1497</MinTileRow>
     30461                                                <MaxTileRow>1500</MaxTileRow>
     30462                                                <MinTileCol>2026</MinTileCol>
     30463                                                <MaxTileCol>2029</MaxTileCol>
     30464                                        </TileMatrixLimits>
     30465                                        <TileMatrixLimits>
     30466                                                <TileMatrix>13</TileMatrix>
     30467                                                <MinTileRow>2995</MinTileRow>
     30468                                                <MaxTileRow>3001</MaxTileRow>
     30469                                                <MinTileCol>4053</MinTileCol>
     30470                                                <MaxTileCol>4059</MaxTileCol>
     30471                                        </TileMatrixLimits>
     30472                                        <TileMatrixLimits>
     30473                                                <TileMatrix>14</TileMatrix>
     30474                                                <MinTileRow>5990</MinTileRow>
     30475                                                <MaxTileRow>6003</MaxTileRow>
     30476                                                <MinTileCol>8107</MinTileCol>
     30477                                                <MaxTileCol>8119</MaxTileCol>
     30478                                        </TileMatrixLimits>
     30479                                        <TileMatrixLimits>
     30480                                                <TileMatrix>15</TileMatrix>
     30481                                                <MinTileRow>11981</MinTileRow>
     30482                                                <MaxTileRow>12006</MaxTileRow>
     30483                                                <MinTileCol>16214</MinTileCol>
     30484                                                <MaxTileCol>16239</MaxTileCol>
     30485                                        </TileMatrixLimits>
     30486                                        <TileMatrixLimits>
     30487                                                <TileMatrix>16</TileMatrix>
     30488                                                <MinTileRow>23962</MinTileRow>
     30489                                                <MaxTileRow>24013</MaxTileRow>
     30490                                                <MinTileCol>32429</MinTileCol>
     30491                                                <MaxTileCol>32479</MaxTileCol>
     30492                                        </TileMatrixLimits>
     30493                                        <TileMatrixLimits>
     30494                                                <TileMatrix>17</TileMatrix>
     30495                                                <MinTileRow>47924</MinTileRow>
     30496                                                <MaxTileRow>48027</MaxTileRow>
     30497                                                <MinTileCol>64859</MinTileCol>
     30498                                                <MaxTileCol>64959</MaxTileCol>
     30499                                        </TileMatrixLimits>
     30500                                        <TileMatrixLimits>
     30501                                                <TileMatrix>18</TileMatrix>
     30502                                                <MinTileRow>95848</MinTileRow>
     30503                                                <MaxTileRow>96054</MaxTileRow>
     30504                                                <MinTileCol>129718</MinTileCol>
     30505                                                <MaxTileCol>129919</MaxTileCol>
     30506                                        </TileMatrixLimits>
     30507                                        <TileMatrixLimits>
     30508                                                <TileMatrix>2</TileMatrix>
     30509                                                <MinTileRow>1</MinTileRow>
     30510                                                <MaxTileRow>1</MaxTileRow>
     30511                                                <MinTileCol>1</MinTileCol>
     30512                                                <MaxTileCol>1</MaxTileCol>
     30513                                        </TileMatrixLimits>
     30514                                        <TileMatrixLimits>
     30515                                                <TileMatrix>3</TileMatrix>
     30516                                                <MinTileRow>2</MinTileRow>
     30517                                                <MaxTileRow>2</MaxTileRow>
     30518                                                <MinTileCol>3</MinTileCol>
     30519                                                <MaxTileCol>3</MaxTileCol>
     30520                                        </TileMatrixLimits>
     30521                                        <TileMatrixLimits>
     30522                                                <TileMatrix>4</TileMatrix>
     30523                                                <MinTileRow>5</MinTileRow>
     30524                                                <MaxTileRow>5</MaxTileRow>
     30525                                                <MinTileCol>7</MinTileCol>
     30526                                                <MaxTileCol>7</MaxTileCol>
     30527                                        </TileMatrixLimits>
     30528                                        <TileMatrixLimits>
     30529                                                <TileMatrix>5</TileMatrix>
     30530                                                <MinTileRow>11</MinTileRow>
     30531                                                <MaxTileRow>11</MaxTileRow>
     30532                                                <MinTileCol>15</MinTileCol>
     30533                                                <MaxTileCol>15</MaxTileCol>
     30534                                        </TileMatrixLimits>
     30535                                        <TileMatrixLimits>
     30536                                                <TileMatrix>6</TileMatrix>
     30537                                                <MinTileRow>23</MinTileRow>
     30538                                                <MaxTileRow>23</MaxTileRow>
     30539                                                <MinTileCol>31</MinTileCol>
     30540                                                <MaxTileCol>31</MaxTileCol>
     30541                                        </TileMatrixLimits>
     30542                                        <TileMatrixLimits>
     30543                                                <TileMatrix>7</TileMatrix>
     30544                                                <MinTileRow>46</MinTileRow>
     30545                                                <MaxTileRow>46</MaxTileRow>
     30546                                                <MinTileCol>63</MinTileCol>
     30547                                                <MaxTileCol>63</MaxTileCol>
     30548                                        </TileMatrixLimits>
     30549                                        <TileMatrixLimits>
     30550                                                <TileMatrix>8</TileMatrix>
     30551                                                <MinTileRow>93</MinTileRow>
     30552                                                <MaxTileRow>93</MaxTileRow>
     30553                                                <MinTileCol>126</MinTileCol>
     30554                                                <MaxTileCol>126</MaxTileCol>
     30555                                        </TileMatrixLimits>
     30556                                        <TileMatrixLimits>
     30557                                                <TileMatrix>9</TileMatrix>
     30558                                                <MinTileRow>187</MinTileRow>
     30559                                                <MaxTileRow>187</MaxTileRow>
     30560                                                <MinTileCol>253</MinTileCol>
     30561                                                <MaxTileCol>253</MaxTileCol>
     30562                                        </TileMatrixLimits>
     30563                                </TileMatrixSetLimits>
     30564                        </TileMatrixSetLink>
     30565                </Layer>
     30566                <Layer>
     30567                        <ows:Title>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Title>
     30568                        <ows:Abstract>Orthophotographies Geosud de LITTO-AQUITAIN-2 2014</ows:Abstract>
     30569                        <ows:Keywords>
     30570                                <ows:Keyword>Photographies</ows:Keyword>
     30571                        </ows:Keywords>
     30572                        <ows:WGS84BoundingBox>
     30573                                <ows:LowerCorner>-1.66886 43.3482</ows:LowerCorner>
     30574                                <ows:UpperCorner>-1.37914 43.5931</ows:UpperCorner>
     30575                        </ows:WGS84BoundingBox>
     30576                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-AQUITAIN-2-2014-09-02-40116574</ows:Identifier>
     30577                        <Style isDefault="true">
     30578                                <ows:Title>Données Brutes</ows:Title>
     30579                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30580                                <ows:Keywords>
     30581                                        <ows:Keyword>Défaut</ows:Keyword>
     30582                                </ows:Keywords>
     30583                                <ows:Identifier>normal</ows:Identifier>
     30584                                <LegendURL format="image/jpeg" height="200"
     30585                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30586                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30587                        </Style>
     30588                        <Format>image/jpeg</Format>
     30589                        <TileMatrixSetLink>
     30590                                <TileMatrixSet>PM</TileMatrixSet>
     30591                                <TileMatrixSetLimits>
     30592                                        <TileMatrixLimits>
     30593                                                <TileMatrix>0</TileMatrix>
     30594                                                <MinTileRow>0</MinTileRow>
     30595                                                <MaxTileRow>0</MaxTileRow>
     30596                                                <MinTileCol>0</MinTileCol>
     30597                                                <MaxTileCol>0</MaxTileCol>
     30598                                        </TileMatrixLimits>
     30599                                        <TileMatrixLimits>
     30600                                                <TileMatrix>1</TileMatrix>
     30601                                                <MinTileRow>0</MinTileRow>
     30602                                                <MaxTileRow>0</MaxTileRow>
     30603                                                <MinTileCol>0</MinTileCol>
     30604                                                <MaxTileCol>0</MaxTileCol>
     30605                                        </TileMatrixLimits>
     30606                                        <TileMatrixLimits>
     30607                                                <TileMatrix>10</TileMatrix>
     30608                                                <MinTileRow>373</MinTileRow>
     30609                                                <MaxTileRow>374</MaxTileRow>
     30610                                                <MinTileCol>507</MinTileCol>
     30611                                                <MaxTileCol>508</MaxTileCol>
     30612                                        </TileMatrixLimits>
     30613                                        <TileMatrixLimits>
     30614                                                <TileMatrix>11</TileMatrix>
     30615                                                <MinTileRow>747</MinTileRow>
     30616                                                <MaxTileRow>749</MaxTileRow>
     30617                                                <MinTileCol>1014</MinTileCol>
     30618                                                <MaxTileCol>1016</MaxTileCol>
     30619                                        </TileMatrixLimits>
     30620                                        <TileMatrixLimits>
     30621                                                <TileMatrix>12</TileMatrix>
     30622                                                <MinTileRow>1495</MinTileRow>
     30623                                                <MaxTileRow>1499</MaxTileRow>
     30624                                                <MinTileCol>2029</MinTileCol>
     30625                                                <MaxTileCol>2032</MaxTileCol>
     30626                                        </TileMatrixLimits>
     30627                                        <TileMatrixLimits>
     30628                                                <TileMatrix>13</TileMatrix>
     30629                                                <MinTileRow>2991</MinTileRow>
     30630                                                <MaxTileRow>2999</MaxTileRow>
     30631                                                <MinTileCol>4058</MinTileCol>
     30632                                                <MaxTileCol>4064</MaxTileCol>
     30633                                        </TileMatrixLimits>
     30634                                        <TileMatrixLimits>
     30635                                                <TileMatrix>14</TileMatrix>
     30636                                                <MinTileRow>5983</MinTileRow>
     30637                                                <MaxTileRow>5998</MaxTileRow>
     30638                                                <MinTileCol>8116</MinTileCol>
     30639                                                <MaxTileCol>8128</MaxTileCol>
     30640                                        </TileMatrixLimits>
     30641                                        <TileMatrixLimits>
     30642                                                <TileMatrix>15</TileMatrix>
     30643                                                <MinTileRow>11967</MinTileRow>
     30644                                                <MaxTileRow>11996</MaxTileRow>
     30645                                                <MinTileCol>16232</MinTileCol>
     30646                                                <MaxTileCol>16257</MaxTileCol>
     30647                                        </TileMatrixLimits>
     30648                                        <TileMatrixLimits>
     30649                                                <TileMatrix>16</TileMatrix>
     30650                                                <MinTileRow>23935</MinTileRow>
     30651                                                <MaxTileRow>23992</MaxTileRow>
     30652                                                <MinTileCol>32465</MinTileCol>
     30653                                                <MaxTileCol>32515</MaxTileCol>
     30654                                        </TileMatrixLimits>
     30655                                        <TileMatrixLimits>
     30656                                                <TileMatrix>17</TileMatrix>
     30657                                                <MinTileRow>47870</MinTileRow>
     30658                                                <MaxTileRow>47984</MaxTileRow>
     30659                                                <MinTileCol>64931</MinTileCol>
     30660                                                <MaxTileCol>65030</MaxTileCol>
     30661                                        </TileMatrixLimits>
     30662                                        <TileMatrixLimits>
     30663                                                <TileMatrix>18</TileMatrix>
     30664                                                <MinTileRow>95740</MinTileRow>
     30665                                                <MaxTileRow>95968</MaxTileRow>
     30666                                                <MinTileCol>129862</MinTileCol>
     30667                                                <MaxTileCol>130061</MaxTileCol>
     30668                                        </TileMatrixLimits>
     30669                                        <TileMatrixLimits>
     30670                                                <TileMatrix>2</TileMatrix>
     30671                                                <MinTileRow>1</MinTileRow>
     30672                                                <MaxTileRow>1</MaxTileRow>
     30673                                                <MinTileCol>1</MinTileCol>
     30674                                                <MaxTileCol>1</MaxTileCol>
     30675                                        </TileMatrixLimits>
     30676                                        <TileMatrixLimits>
     30677                                                <TileMatrix>3</TileMatrix>
     30678                                                <MinTileRow>2</MinTileRow>
     30679                                                <MaxTileRow>2</MaxTileRow>
     30680                                                <MinTileCol>3</MinTileCol>
     30681                                                <MaxTileCol>3</MaxTileCol>
     30682                                        </TileMatrixLimits>
     30683                                        <TileMatrixLimits>
     30684                                                <TileMatrix>4</TileMatrix>
     30685                                                <MinTileRow>5</MinTileRow>
     30686                                                <MaxTileRow>5</MaxTileRow>
     30687                                                <MinTileCol>7</MinTileCol>
     30688                                                <MaxTileCol>7</MaxTileCol>
     30689                                        </TileMatrixLimits>
     30690                                        <TileMatrixLimits>
     30691                                                <TileMatrix>5</TileMatrix>
     30692                                                <MinTileRow>11</MinTileRow>
     30693                                                <MaxTileRow>11</MaxTileRow>
     30694                                                <MinTileCol>15</MinTileCol>
     30695                                                <MaxTileCol>15</MaxTileCol>
     30696                                        </TileMatrixLimits>
     30697                                        <TileMatrixLimits>
     30698                                                <TileMatrix>6</TileMatrix>
     30699                                                <MinTileRow>23</MinTileRow>
     30700                                                <MaxTileRow>23</MaxTileRow>
     30701                                                <MinTileCol>31</MinTileCol>
     30702                                                <MaxTileCol>31</MaxTileCol>
     30703                                        </TileMatrixLimits>
     30704                                        <TileMatrixLimits>
     30705                                                <TileMatrix>7</TileMatrix>
     30706                                                <MinTileRow>46</MinTileRow>
     30707                                                <MaxTileRow>46</MaxTileRow>
     30708                                                <MinTileCol>63</MinTileCol>
     30709                                                <MaxTileCol>63</MaxTileCol>
     30710                                        </TileMatrixLimits>
     30711                                        <TileMatrixLimits>
     30712                                                <TileMatrix>8</TileMatrix>
     30713                                                <MinTileRow>93</MinTileRow>
     30714                                                <MaxTileRow>93</MaxTileRow>
     30715                                                <MinTileCol>126</MinTileCol>
     30716                                                <MaxTileCol>127</MaxTileCol>
     30717                                        </TileMatrixLimits>
     30718                                        <TileMatrixLimits>
     30719                                                <TileMatrix>9</TileMatrix>
     30720                                                <MinTileRow>186</MinTileRow>
     30721                                                <MaxTileRow>187</MaxTileRow>
     30722                                                <MinTileCol>253</MinTileCol>
     30723                                                <MaxTileCol>254</MaxTileCol>
     30724                                        </TileMatrixLimits>
     30725                                </TileMatrixSetLimits>
     30726                        </TileMatrixSetLink>
     30727                </Layer>
     30728                <Layer>
     30729                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     30730                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     30731                        <ows:Keywords>
     30732                                <ows:Keyword>Photographies</ows:Keyword>
     30733                        </ows:Keywords>
     30734                        <ows:WGS84BoundingBox>
     30735                                <ows:LowerCorner>-1.54946 49.5196</ows:LowerCorner>
     30736                                <ows:UpperCorner>-1.22712 49.7459</ows:UpperCorner>
     30737                        </ows:WGS84BoundingBox>
     30738                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-11-40432792</ows:Identifier>
     30739                        <Style isDefault="true">
     30740                                <ows:Title>Données Brutes</ows:Title>
     30741                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30742                                <ows:Keywords>
     30743                                        <ows:Keyword>Défaut</ows:Keyword>
     30744                                </ows:Keywords>
     30745                                <ows:Identifier>normal</ows:Identifier>
     30746                                <LegendURL format="image/jpeg" height="200"
     30747                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30748                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30749                        </Style>
     30750                        <Format>image/jpeg</Format>
     30751                        <TileMatrixSetLink>
     30752                                <TileMatrixSet>PM</TileMatrixSet>
     30753                                <TileMatrixSetLimits>
     30754                                        <TileMatrixLimits>
     30755                                                <TileMatrix>0</TileMatrix>
     30756                                                <MinTileRow>0</MinTileRow>
     30757                                                <MaxTileRow>0</MaxTileRow>
     30758                                                <MinTileCol>0</MinTileCol>
     30759                                                <MaxTileCol>0</MaxTileCol>
     30760                                        </TileMatrixLimits>
     30761                                        <TileMatrixLimits>
     30762                                                <TileMatrix>1</TileMatrix>
     30763                                                <MinTileRow>0</MinTileRow>
     30764                                                <MaxTileRow>0</MaxTileRow>
     30765                                                <MinTileCol>0</MinTileCol>
     30766                                                <MaxTileCol>0</MaxTileCol>
     30767                                        </TileMatrixLimits>
     30768                                        <TileMatrixLimits>
     30769                                                <TileMatrix>10</TileMatrix>
     30770                                                <MinTileRow>348</MinTileRow>
     30771                                                <MaxTileRow>349</MaxTileRow>
     30772                                                <MinTileCol>507</MinTileCol>
     30773                                                <MaxTileCol>508</MaxTileCol>
     30774                                        </TileMatrixLimits>
     30775                                        <TileMatrixLimits>
     30776                                                <TileMatrix>11</TileMatrix>
     30777                                                <MinTileRow>696</MinTileRow>
     30778                                                <MaxTileRow>698</MaxTileRow>
     30779                                                <MinTileCol>1015</MinTileCol>
     30780                                                <MaxTileCol>1016</MaxTileCol>
     30781                                        </TileMatrixLimits>
     30782                                        <TileMatrixLimits>
     30783                                                <TileMatrix>12</TileMatrix>
     30784                                                <MinTileRow>1393</MinTileRow>
     30785                                                <MaxTileRow>1397</MaxTileRow>
     30786                                                <MinTileCol>2030</MinTileCol>
     30787                                                <MaxTileCol>2033</MaxTileCol>
     30788                                        </TileMatrixLimits>
     30789                                        <TileMatrixLimits>
     30790                                                <TileMatrix>13</TileMatrix>
     30791                                                <MinTileRow>2787</MinTileRow>
     30792                                                <MaxTileRow>2794</MaxTileRow>
     30793                                                <MinTileCol>4060</MinTileCol>
     30794                                                <MaxTileCol>4067</MaxTileCol>
     30795                                        </TileMatrixLimits>
     30796                                        <TileMatrixLimits>
     30797                                                <TileMatrix>14</TileMatrix>
     30798                                                <MinTileRow>5574</MinTileRow>
     30799                                                <MaxTileRow>5589</MaxTileRow>
     30800                                                <MinTileCol>8121</MinTileCol>
     30801                                                <MaxTileCol>8135</MaxTileCol>
     30802                                        </TileMatrixLimits>
     30803                                        <TileMatrixLimits>
     30804                                                <TileMatrix>15</TileMatrix>
     30805                                                <MinTileRow>11149</MinTileRow>
     30806                                                <MaxTileRow>11179</MaxTileRow>
     30807                                                <MinTileCol>16243</MinTileCol>
     30808                                                <MaxTileCol>16271</MaxTileCol>
     30809                                        </TileMatrixLimits>
     30810                                        <TileMatrixLimits>
     30811                                                <TileMatrix>16</TileMatrix>
     30812                                                <MinTileRow>22298</MinTileRow>
     30813                                                <MaxTileRow>22358</MaxTileRow>
     30814                                                <MinTileCol>32486</MinTileCol>
     30815                                                <MaxTileCol>32542</MaxTileCol>
     30816                                        </TileMatrixLimits>
     30817                                        <TileMatrixLimits>
     30818                                                <TileMatrix>17</TileMatrix>
     30819                                                <MinTileRow>44597</MinTileRow>
     30820                                                <MaxTileRow>44717</MaxTileRow>
     30821                                                <MinTileCol>64972</MinTileCol>
     30822                                                <MaxTileCol>65084</MaxTileCol>
     30823                                        </TileMatrixLimits>
     30824                                        <TileMatrixLimits>
     30825                                                <TileMatrix>18</TileMatrix>
     30826                                                <MinTileRow>89194</MinTileRow>
     30827                                                <MaxTileRow>89435</MaxTileRow>
     30828                                                <MinTileCol>129944</MinTileCol>
     30829                                                <MaxTileCol>130169</MaxTileCol>
     30830                                        </TileMatrixLimits>
     30831                                        <TileMatrixLimits>
     30832                                                <TileMatrix>2</TileMatrix>
     30833                                                <MinTileRow>1</MinTileRow>
     30834                                                <MaxTileRow>1</MaxTileRow>
     30835                                                <MinTileCol>1</MinTileCol>
     30836                                                <MaxTileCol>1</MaxTileCol>
     30837                                        </TileMatrixLimits>
     30838                                        <TileMatrixLimits>
     30839                                                <TileMatrix>3</TileMatrix>
     30840                                                <MinTileRow>2</MinTileRow>
     30841                                                <MaxTileRow>2</MaxTileRow>
     30842                                                <MinTileCol>3</MinTileCol>
     30843                                                <MaxTileCol>3</MaxTileCol>
     30844                                        </TileMatrixLimits>
     30845                                        <TileMatrixLimits>
     30846                                                <TileMatrix>4</TileMatrix>
     30847                                                <MinTileRow>5</MinTileRow>
     30848                                                <MaxTileRow>5</MaxTileRow>
     30849                                                <MinTileCol>7</MinTileCol>
     30850                                                <MaxTileCol>7</MaxTileCol>
     30851                                        </TileMatrixLimits>
     30852                                        <TileMatrixLimits>
     30853                                                <TileMatrix>5</TileMatrix>
     30854                                                <MinTileRow>10</MinTileRow>
     30855                                                <MaxTileRow>10</MaxTileRow>
     30856                                                <MinTileCol>15</MinTileCol>
     30857                                                <MaxTileCol>15</MaxTileCol>
     30858                                        </TileMatrixLimits>
     30859                                        <TileMatrixLimits>
     30860                                                <TileMatrix>6</TileMatrix>
     30861                                                <MinTileRow>21</MinTileRow>
     30862                                                <MaxTileRow>21</MaxTileRow>
     30863                                                <MinTileCol>31</MinTileCol>
     30864                                                <MaxTileCol>31</MaxTileCol>
     30865                                        </TileMatrixLimits>
     30866                                        <TileMatrixLimits>
     30867                                                <TileMatrix>7</TileMatrix>
     30868                                                <MinTileRow>43</MinTileRow>
     30869                                                <MaxTileRow>43</MaxTileRow>
     30870                                                <MinTileCol>63</MinTileCol>
     30871                                                <MaxTileCol>63</MaxTileCol>
     30872                                        </TileMatrixLimits>
     30873                                        <TileMatrixLimits>
     30874                                                <TileMatrix>8</TileMatrix>
     30875                                                <MinTileRow>87</MinTileRow>
     30876                                                <MaxTileRow>87</MaxTileRow>
     30877                                                <MinTileCol>126</MinTileCol>
     30878                                                <MaxTileCol>127</MaxTileCol>
     30879                                        </TileMatrixLimits>
     30880                                        <TileMatrixLimits>
     30881                                                <TileMatrix>9</TileMatrix>
     30882                                                <MinTileRow>174</MinTileRow>
     30883                                                <MaxTileRow>174</MaxTileRow>
     30884                                                <MinTileCol>253</MinTileCol>
     30885                                                <MaxTileCol>254</MaxTileCol>
     30886                                        </TileMatrixLimits>
     30887                                </TileMatrixSetLimits>
     30888                        </TileMatrixSetLink>
     30889                </Layer>
     30890                <Layer>
     30891                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     30892                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     30893                        <ows:Keywords>
     30894                                <ows:Keyword>Photographies</ows:Keyword>
     30895                        </ows:Keywords>
     30896                        <ows:WGS84BoundingBox>
     30897                                <ows:LowerCorner>-2.02425 49.2141</ows:LowerCorner>
     30898                                <ows:UpperCorner>-1.68334 49.7729</ows:UpperCorner>
     30899                        </ows:WGS84BoundingBox>
     30900                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-17-40649760</ows:Identifier>
     30901                        <Style isDefault="true">
     30902                                <ows:Title>Données Brutes</ows:Title>
     30903                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     30904                                <ows:Keywords>
     30905                                        <ows:Keyword>Défaut</ows:Keyword>
     30906                                </ows:Keywords>
     30907                                <ows:Identifier>normal</ows:Identifier>
     30908                                <LegendURL format="image/jpeg" height="200"
     30909                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     30910                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     30911                        </Style>
     30912                        <Format>image/jpeg</Format>
     30913                        <TileMatrixSetLink>
     30914                                <TileMatrixSet>PM</TileMatrixSet>
     30915                                <TileMatrixSetLimits>
     30916                                        <TileMatrixLimits>
     30917                                                <TileMatrix>0</TileMatrix>
     30918                                                <MinTileRow>0</MinTileRow>
     30919                                                <MaxTileRow>0</MaxTileRow>
     30920                                                <MinTileCol>0</MinTileCol>
     30921                                                <MaxTileCol>0</MaxTileCol>
     30922                                        </TileMatrixLimits>
     30923                                        <TileMatrixLimits>
     30924                                                <TileMatrix>1</TileMatrix>
     30925                                                <MinTileRow>0</MinTileRow>
     30926                                                <MaxTileRow>0</MaxTileRow>
     30927                                                <MinTileCol>0</MinTileCol>
     30928                                                <MaxTileCol>0</MaxTileCol>
     30929                                        </TileMatrixLimits>
     30930                                        <TileMatrixLimits>
     30931                                                <TileMatrix>10</TileMatrix>
     30932                                                <MinTileRow>348</MinTileRow>
     30933                                                <MaxTileRow>350</MaxTileRow>
     30934                                                <MinTileCol>506</MinTileCol>
     30935                                                <MaxTileCol>507</MaxTileCol>
     30936                                        </TileMatrixLimits>
     30937                                        <TileMatrixLimits>
     30938                                                <TileMatrix>11</TileMatrix>
     30939                                                <MinTileRow>696</MinTileRow>
     30940                                                <MaxTileRow>701</MaxTileRow>
     30941                                                <MinTileCol>1012</MinTileCol>
     30942                                                <MaxTileCol>1014</MaxTileCol>
     30943                                        </TileMatrixLimits>
     30944                                        <TileMatrixLimits>
     30945                                                <TileMatrix>12</TileMatrix>
     30946                                                <MinTileRow>1393</MinTileRow>
     30947                                                <MaxTileRow>1402</MaxTileRow>
     30948                                                <MinTileCol>2025</MinTileCol>
     30949                                                <MaxTileCol>2028</MaxTileCol>
     30950                                        </TileMatrixLimits>
     30951                                        <TileMatrixLimits>
     30952                                                <TileMatrix>13</TileMatrix>
     30953                                                <MinTileRow>2786</MinTileRow>
     30954                                                <MaxTileRow>2805</MaxTileRow>
     30955                                                <MinTileCol>4050</MinTileCol>
     30956                                                <MaxTileCol>4056</MaxTileCol>
     30957                                        </TileMatrixLimits>
     30958                                        <TileMatrixLimits>
     30959                                                <TileMatrix>14</TileMatrix>
     30960                                                <MinTileRow>5573</MinTileRow>
     30961                                                <MaxTileRow>5611</MaxTileRow>
     30962                                                <MinTileCol>8100</MinTileCol>
     30963                                                <MaxTileCol>8113</MaxTileCol>
     30964                                        </TileMatrixLimits>
     30965                                        <TileMatrixLimits>
     30966                                                <TileMatrix>15</TileMatrix>
     30967                                                <MinTileRow>11146</MinTileRow>
     30968                                                <MaxTileRow>11222</MaxTileRow>
     30969                                                <MinTileCol>16200</MinTileCol>
     30970                                                <MaxTileCol>16227</MaxTileCol>
     30971                                        </TileMatrixLimits>
     30972                                        <TileMatrixLimits>
     30973                                                <TileMatrix>16</TileMatrix>
     30974                                                <MinTileRow>22292</MinTileRow>
     30975                                                <MaxTileRow>22444</MaxTileRow>
     30976                                                <MinTileCol>32400</MinTileCol>
     30977                                                <MaxTileCol>32455</MaxTileCol>
     30978                                        </TileMatrixLimits>
     30979                                        <TileMatrixLimits>
     30980                                                <TileMatrix>17</TileMatrix>
     30981                                                <MinTileRow>44584</MinTileRow>
     30982                                                <MaxTileRow>44889</MaxTileRow>
     30983                                                <MinTileCol>64801</MinTileCol>
     30984                                                <MaxTileCol>64910</MaxTileCol>
     30985                                        </TileMatrixLimits>
     30986                                        <TileMatrixLimits>
     30987                                                <TileMatrix>18</TileMatrix>
     30988                                                <MinTileRow>89168</MinTileRow>
     30989                                                <MaxTileRow>89778</MaxTileRow>
     30990                                                <MinTileCol>129602</MinTileCol>
     30991                                                <MaxTileCol>129820</MaxTileCol>
     30992                                        </TileMatrixLimits>
     30993                                        <TileMatrixLimits>
     30994                                                <TileMatrix>2</TileMatrix>
     30995                                                <MinTileRow>1</MinTileRow>
     30996                                                <MaxTileRow>1</MaxTileRow>
     30997                                                <MinTileCol>1</MinTileCol>
     30998                                                <MaxTileCol>1</MaxTileCol>
     30999                                        </TileMatrixLimits>
     31000                                        <TileMatrixLimits>
     31001                                                <TileMatrix>3</TileMatrix>
     31002                                                <MinTileRow>2</MinTileRow>
     31003                                                <MaxTileRow>2</MaxTileRow>
     31004                                                <MinTileCol>3</MinTileCol>
     31005                                                <MaxTileCol>3</MaxTileCol>
     31006                                        </TileMatrixLimits>
     31007                                        <TileMatrixLimits>
     31008                                                <TileMatrix>4</TileMatrix>
     31009                                                <MinTileRow>5</MinTileRow>
     31010                                                <MaxTileRow>5</MaxTileRow>
     31011                                                <MinTileCol>7</MinTileCol>
     31012                                                <MaxTileCol>7</MaxTileCol>
     31013                                        </TileMatrixLimits>
     31014                                        <TileMatrixLimits>
     31015                                                <TileMatrix>5</TileMatrix>
     31016                                                <MinTileRow>10</MinTileRow>
     31017                                                <MaxTileRow>10</MaxTileRow>
     31018                                                <MinTileCol>15</MinTileCol>
     31019                                                <MaxTileCol>15</MaxTileCol>
     31020                                        </TileMatrixLimits>
     31021                                        <TileMatrixLimits>
     31022                                                <TileMatrix>6</TileMatrix>
     31023                                                <MinTileRow>21</MinTileRow>
     31024                                                <MaxTileRow>21</MaxTileRow>
     31025                                                <MinTileCol>31</MinTileCol>
     31026                                                <MaxTileCol>31</MaxTileCol>
     31027                                        </TileMatrixLimits>
     31028                                        <TileMatrixLimits>
     31029                                                <TileMatrix>7</TileMatrix>
     31030                                                <MinTileRow>43</MinTileRow>
     31031                                                <MaxTileRow>43</MaxTileRow>
     31032                                                <MinTileCol>63</MinTileCol>
     31033                                                <MaxTileCol>63</MaxTileCol>
     31034                                        </TileMatrixLimits>
     31035                                        <TileMatrixLimits>
     31036                                                <TileMatrix>8</TileMatrix>
     31037                                                <MinTileRow>87</MinTileRow>
     31038                                                <MaxTileRow>87</MaxTileRow>
     31039                                                <MinTileCol>126</MinTileCol>
     31040                                                <MaxTileCol>126</MaxTileCol>
     31041                                        </TileMatrixLimits>
     31042                                        <TileMatrixLimits>
     31043                                                <TileMatrix>9</TileMatrix>
     31044                                                <MinTileRow>174</MinTileRow>
     31045                                                <MaxTileRow>175</MaxTileRow>
     31046                                                <MinTileCol>253</MinTileCol>
     31047                                                <MaxTileCol>253</MaxTileCol>
     31048                                        </TileMatrixLimits>
     31049                                </TileMatrixSetLimits>
     31050                        </TileMatrixSetLink>
     31051                </Layer>
     31052                <Layer>
     31053                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31054                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31055                        <ows:Keywords>
     31056                                <ows:Keyword>Photographies</ows:Keyword>
     31057                        </ows:Keywords>
     31058                        <ows:WGS84BoundingBox>
     31059                                <ows:LowerCorner>-1.79937 49.528</ows:LowerCorner>
     31060                                <ows:UpperCorner>-1.46303 49.7465</ows:UpperCorner>
     31061                        </ows:WGS84BoundingBox>
     31062                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-04-17-40676347</ows:Identifier>
     31063                        <Style isDefault="true">
     31064                                <ows:Title>Données Brutes</ows:Title>
     31065                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31066                                <ows:Keywords>
     31067                                        <ows:Keyword>Défaut</ows:Keyword>
     31068                                </ows:Keywords>
     31069                                <ows:Identifier>normal</ows:Identifier>
     31070                                <LegendURL format="image/jpeg" height="200"
     31071                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31072                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31073                        </Style>
     31074                        <Format>image/jpeg</Format>
     31075                        <TileMatrixSetLink>
     31076                                <TileMatrixSet>PM</TileMatrixSet>
     31077                                <TileMatrixSetLimits>
     31078                                        <TileMatrixLimits>
     31079                                                <TileMatrix>0</TileMatrix>
     31080                                                <MinTileRow>0</MinTileRow>
     31081                                                <MaxTileRow>0</MaxTileRow>
     31082                                                <MinTileCol>0</MinTileCol>
     31083                                                <MaxTileCol>0</MaxTileCol>
     31084                                        </TileMatrixLimits>
     31085                                        <TileMatrixLimits>
     31086                                                <TileMatrix>1</TileMatrix>
     31087                                                <MinTileRow>0</MinTileRow>
     31088                                                <MaxTileRow>0</MaxTileRow>
     31089                                                <MinTileCol>0</MinTileCol>
     31090                                                <MaxTileCol>0</MaxTileCol>
     31091                                        </TileMatrixLimits>
     31092                                        <TileMatrixLimits>
     31093                                                <TileMatrix>10</TileMatrix>
     31094                                                <MinTileRow>348</MinTileRow>
     31095                                                <MaxTileRow>349</MaxTileRow>
     31096                                                <MinTileCol>506</MinTileCol>
     31097                                                <MaxTileCol>507</MaxTileCol>
     31098                                        </TileMatrixLimits>
     31099                                        <TileMatrixLimits>
     31100                                                <TileMatrix>11</TileMatrix>
     31101                                                <MinTileRow>696</MinTileRow>
     31102                                                <MaxTileRow>698</MaxTileRow>
     31103                                                <MinTileCol>1013</MinTileCol>
     31104                                                <MaxTileCol>1015</MaxTileCol>
     31105                                        </TileMatrixLimits>
     31106                                        <TileMatrixLimits>
     31107                                                <TileMatrix>12</TileMatrix>
     31108                                                <MinTileRow>1393</MinTileRow>
     31109                                                <MaxTileRow>1397</MaxTileRow>
     31110                                                <MinTileCol>2027</MinTileCol>
     31111                                                <MaxTileCol>2031</MaxTileCol>
     31112                                        </TileMatrixLimits>
     31113                                        <TileMatrixLimits>
     31114                                                <TileMatrix>13</TileMatrix>
     31115                                                <MinTileRow>2787</MinTileRow>
     31116                                                <MaxTileRow>2794</MaxTileRow>
     31117                                                <MinTileCol>4055</MinTileCol>
     31118                                                <MaxTileCol>4062</MaxTileCol>
     31119                                        </TileMatrixLimits>
     31120                                        <TileMatrixLimits>
     31121                                                <TileMatrix>14</TileMatrix>
     31122                                                <MinTileRow>5575</MinTileRow>
     31123                                                <MaxTileRow>5589</MaxTileRow>
     31124                                                <MinTileCol>8110</MinTileCol>
     31125                                                <MaxTileCol>8124</MaxTileCol>
     31126                                        </TileMatrixLimits>
     31127                                        <TileMatrixLimits>
     31128                                                <TileMatrix>15</TileMatrix>
     31129                                                <MinTileRow>11150</MinTileRow>
     31130                                                <MaxTileRow>11179</MaxTileRow>
     31131                                                <MinTileCol>16221</MinTileCol>
     31132                                                <MaxTileCol>16249</MaxTileCol>
     31133                                        </TileMatrixLimits>
     31134                                        <TileMatrixLimits>
     31135                                                <TileMatrix>16</TileMatrix>
     31136                                                <MinTileRow>22300</MinTileRow>
     31137                                                <MaxTileRow>22359</MaxTileRow>
     31138                                                <MinTileCol>32442</MinTileCol>
     31139                                                <MaxTileCol>32499</MaxTileCol>
     31140                                        </TileMatrixLimits>
     31141                                        <TileMatrixLimits>
     31142                                                <TileMatrix>17</TileMatrix>
     31143                                                <MinTileRow>44601</MinTileRow>
     31144                                                <MaxTileRow>44718</MaxTileRow>
     31145                                                <MinTileCol>64885</MinTileCol>
     31146                                                <MaxTileCol>64998</MaxTileCol>
     31147                                        </TileMatrixLimits>
     31148                                        <TileMatrixLimits>
     31149                                                <TileMatrix>18</TileMatrix>
     31150                                                <MinTileRow>89202</MinTileRow>
     31151                                                <MaxTileRow>89436</MaxTileRow>
     31152                                                <MinTileCol>129770</MinTileCol>
     31153                                                <MaxTileCol>129996</MaxTileCol>
     31154                                        </TileMatrixLimits>
     31155                                        <TileMatrixLimits>
     31156                                                <TileMatrix>2</TileMatrix>
     31157                                                <MinTileRow>1</MinTileRow>
     31158                                                <MaxTileRow>1</MaxTileRow>
     31159                                                <MinTileCol>1</MinTileCol>
     31160                                                <MaxTileCol>1</MaxTileCol>
     31161                                        </TileMatrixLimits>
     31162                                        <TileMatrixLimits>
     31163                                                <TileMatrix>3</TileMatrix>
     31164                                                <MinTileRow>2</MinTileRow>
     31165                                                <MaxTileRow>2</MaxTileRow>
     31166                                                <MinTileCol>3</MinTileCol>
     31167                                                <MaxTileCol>3</MaxTileCol>
     31168                                        </TileMatrixLimits>
     31169                                        <TileMatrixLimits>
     31170                                                <TileMatrix>4</TileMatrix>
     31171                                                <MinTileRow>5</MinTileRow>
     31172                                                <MaxTileRow>5</MaxTileRow>
     31173                                                <MinTileCol>7</MinTileCol>
     31174                                                <MaxTileCol>7</MaxTileCol>
     31175                                        </TileMatrixLimits>
     31176                                        <TileMatrixLimits>
     31177                                                <TileMatrix>5</TileMatrix>
     31178                                                <MinTileRow>10</MinTileRow>
     31179                                                <MaxTileRow>10</MaxTileRow>
     31180                                                <MinTileCol>15</MinTileCol>
     31181                                                <MaxTileCol>15</MaxTileCol>
     31182                                        </TileMatrixLimits>
     31183                                        <TileMatrixLimits>
     31184                                                <TileMatrix>6</TileMatrix>
     31185                                                <MinTileRow>21</MinTileRow>
     31186                                                <MaxTileRow>21</MaxTileRow>
     31187                                                <MinTileCol>31</MinTileCol>
     31188                                                <MaxTileCol>31</MaxTileCol>
     31189                                        </TileMatrixLimits>
     31190                                        <TileMatrixLimits>
     31191                                                <TileMatrix>7</TileMatrix>
     31192                                                <MinTileRow>43</MinTileRow>
     31193                                                <MaxTileRow>43</MaxTileRow>
     31194                                                <MinTileCol>63</MinTileCol>
     31195                                                <MaxTileCol>63</MaxTileCol>
     31196                                        </TileMatrixLimits>
     31197                                        <TileMatrixLimits>
     31198                                                <TileMatrix>8</TileMatrix>
     31199                                                <MinTileRow>87</MinTileRow>
     31200                                                <MaxTileRow>87</MaxTileRow>
     31201                                                <MinTileCol>126</MinTileCol>
     31202                                                <MaxTileCol>126</MaxTileCol>
     31203                                        </TileMatrixLimits>
     31204                                        <TileMatrixLimits>
     31205                                                <TileMatrix>9</TileMatrix>
     31206                                                <MinTileRow>174</MinTileRow>
     31207                                                <MaxTileRow>174</MaxTileRow>
     31208                                                <MinTileCol>253</MinTileCol>
     31209                                                <MaxTileCol>253</MaxTileCol>
     31210                                        </TileMatrixLimits>
     31211                                </TileMatrixSetLimits>
     31212                        </TileMatrixSetLink>
     31213                </Layer>
     31214                <Layer>
     31215                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31216                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31217                        <ows:Keywords>
     31218                                <ows:Keyword>Photographies</ows:Keyword>
     31219                        </ows:Keywords>
     31220                        <ows:WGS84BoundingBox>
     31221                                <ows:LowerCorner>-1.80932 48.7641</ows:LowerCorner>
     31222                                <ows:UpperCorner>-1.45203 49.556</ows:UpperCorner>
     31223                        </ows:WGS84BoundingBox>
     31224                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-06-21-40687451</ows:Identifier>
     31225                        <Style isDefault="true">
     31226                                <ows:Title>Données Brutes</ows:Title>
     31227                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31228                                <ows:Keywords>
     31229                                        <ows:Keyword>Défaut</ows:Keyword>
     31230                                </ows:Keywords>
     31231                                <ows:Identifier>normal</ows:Identifier>
     31232                                <LegendURL format="image/jpeg" height="200"
     31233                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31234                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31235                        </Style>
     31236                        <Format>image/jpeg</Format>
     31237                        <TileMatrixSetLink>
     31238                                <TileMatrixSet>PM</TileMatrixSet>
     31239                                <TileMatrixSetLimits>
     31240                                        <TileMatrixLimits>
     31241                                                <TileMatrix>0</TileMatrix>
     31242                                                <MinTileRow>0</MinTileRow>
     31243                                                <MaxTileRow>0</MaxTileRow>
     31244                                                <MinTileCol>0</MinTileCol>
     31245                                                <MaxTileCol>0</MaxTileCol>
     31246                                        </TileMatrixLimits>
     31247                                        <TileMatrixLimits>
     31248                                                <TileMatrix>1</TileMatrix>
     31249                                                <MinTileRow>0</MinTileRow>
     31250                                                <MaxTileRow>0</MaxTileRow>
     31251                                                <MinTileCol>0</MinTileCol>
     31252                                                <MaxTileCol>0</MaxTileCol>
     31253                                        </TileMatrixLimits>
     31254                                        <TileMatrixLimits>
     31255                                                <TileMatrix>10</TileMatrix>
     31256                                                <MinTileRow>349</MinTileRow>
     31257                                                <MaxTileRow>352</MaxTileRow>
     31258                                                <MinTileCol>506</MinTileCol>
     31259                                                <MaxTileCol>507</MaxTileCol>
     31260                                        </TileMatrixLimits>
     31261                                        <TileMatrixLimits>
     31262                                                <TileMatrix>11</TileMatrix>
     31263                                                <MinTileRow>698</MinTileRow>
     31264                                                <MaxTileRow>705</MaxTileRow>
     31265                                                <MinTileCol>1013</MinTileCol>
     31266                                                <MaxTileCol>1015</MaxTileCol>
     31267                                        </TileMatrixLimits>
     31268                                        <TileMatrixLimits>
     31269                                                <TileMatrix>12</TileMatrix>
     31270                                                <MinTileRow>1397</MinTileRow>
     31271                                                <MaxTileRow>1410</MaxTileRow>
     31272                                                <MinTileCol>2027</MinTileCol>
     31273                                                <MaxTileCol>2031</MaxTileCol>
     31274                                        </TileMatrixLimits>
     31275                                        <TileMatrixLimits>
     31276                                                <TileMatrix>13</TileMatrix>
     31277                                                <MinTileRow>2794</MinTileRow>
     31278                                                <MaxTileRow>2821</MaxTileRow>
     31279                                                <MinTileCol>4055</MinTileCol>
     31280                                                <MaxTileCol>4062</MaxTileCol>
     31281                                        </TileMatrixLimits>
     31282                                        <TileMatrixLimits>
     31283                                                <TileMatrix>14</TileMatrix>
     31284                                                <MinTileRow>5588</MinTileRow>
     31285                                                <MaxTileRow>5642</MaxTileRow>
     31286                                                <MinTileCol>8110</MinTileCol>
     31287                                                <MaxTileCol>8124</MaxTileCol>
     31288                                        </TileMatrixLimits>
     31289                                        <TileMatrixLimits>
     31290                                                <TileMatrix>15</TileMatrix>
     31291                                                <MinTileRow>11176</MinTileRow>
     31292                                                <MaxTileRow>11285</MaxTileRow>
     31293                                                <MinTileCol>16221</MinTileCol>
     31294                                                <MaxTileCol>16249</MaxTileCol>
     31295                                        </TileMatrixLimits>
     31296                                        <TileMatrixLimits>
     31297                                                <TileMatrix>16</TileMatrix>
     31298                                                <MinTileRow>22353</MinTileRow>
     31299                                                <MaxTileRow>22570</MaxTileRow>
     31300                                                <MinTileCol>32442</MinTileCol>
     31301                                                <MaxTileCol>32498</MaxTileCol>
     31302                                        </TileMatrixLimits>
     31303                                        <TileMatrixLimits>
     31304                                                <TileMatrix>17</TileMatrix>
     31305                                                <MinTileRow>44707</MinTileRow>
     31306                                                <MaxTileRow>45141</MaxTileRow>
     31307                                                <MinTileCol>64885</MinTileCol>
     31308                                                <MaxTileCol>64997</MaxTileCol>
     31309                                        </TileMatrixLimits>
     31310                                        <TileMatrixLimits>
     31311                                                <TileMatrix>18</TileMatrix>
     31312                                                <MinTileRow>89414</MinTileRow>
     31313                                                <MaxTileRow>90283</MaxTileRow>
     31314                                                <MinTileCol>129770</MinTileCol>
     31315                                                <MaxTileCol>129994</MaxTileCol>
     31316                                        </TileMatrixLimits>
     31317                                        <TileMatrixLimits>
     31318                                                <TileMatrix>2</TileMatrix>
     31319                                                <MinTileRow>1</MinTileRow>
     31320                                                <MaxTileRow>1</MaxTileRow>
     31321                                                <MinTileCol>1</MinTileCol>
     31322                                                <MaxTileCol>1</MaxTileCol>
     31323                                        </TileMatrixLimits>
     31324                                        <TileMatrixLimits>
     31325                                                <TileMatrix>3</TileMatrix>
     31326                                                <MinTileRow>2</MinTileRow>
     31327                                                <MaxTileRow>2</MaxTileRow>
     31328                                                <MinTileCol>3</MinTileCol>
     31329                                                <MaxTileCol>3</MaxTileCol>
     31330                                        </TileMatrixLimits>
     31331                                        <TileMatrixLimits>
     31332                                                <TileMatrix>4</TileMatrix>
     31333                                                <MinTileRow>5</MinTileRow>
     31334                                                <MaxTileRow>5</MaxTileRow>
     31335                                                <MinTileCol>7</MinTileCol>
     31336                                                <MaxTileCol>7</MaxTileCol>
     31337                                        </TileMatrixLimits>
     31338                                        <TileMatrixLimits>
     31339                                                <TileMatrix>5</TileMatrix>
     31340                                                <MinTileRow>10</MinTileRow>
     31341                                                <MaxTileRow>11</MaxTileRow>
     31342                                                <MinTileCol>15</MinTileCol>
     31343                                                <MaxTileCol>15</MaxTileCol>
     31344                                        </TileMatrixLimits>
     31345                                        <TileMatrixLimits>
     31346                                                <TileMatrix>6</TileMatrix>
     31347                                                <MinTileRow>21</MinTileRow>
     31348                                                <MaxTileRow>22</MaxTileRow>
     31349                                                <MinTileCol>31</MinTileCol>
     31350                                                <MaxTileCol>31</MaxTileCol>
     31351                                        </TileMatrixLimits>
     31352                                        <TileMatrixLimits>
     31353                                                <TileMatrix>7</TileMatrix>
     31354                                                <MinTileRow>43</MinTileRow>
     31355                                                <MaxTileRow>44</MaxTileRow>
     31356                                                <MinTileCol>63</MinTileCol>
     31357                                                <MaxTileCol>63</MaxTileCol>
     31358                                        </TileMatrixLimits>
     31359                                        <TileMatrixLimits>
     31360                                                <TileMatrix>8</TileMatrix>
     31361                                                <MinTileRow>87</MinTileRow>
     31362                                                <MaxTileRow>88</MaxTileRow>
     31363                                                <MinTileCol>126</MinTileCol>
     31364                                                <MaxTileCol>126</MaxTileCol>
     31365                                        </TileMatrixLimits>
     31366                                        <TileMatrixLimits>
     31367                                                <TileMatrix>9</TileMatrix>
     31368                                                <MinTileRow>174</MinTileRow>
     31369                                                <MaxTileRow>176</MaxTileRow>
     31370                                                <MinTileCol>253</MinTileCol>
     31371                                                <MaxTileCol>253</MaxTileCol>
     31372                                        </TileMatrixLimits>
     31373                                </TileMatrixSetLimits>
     31374                        </TileMatrixSetLink>
     31375                </Layer>
     31376                <Layer>
     31377                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31378                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31379                        <ows:Keywords>
     31380                                <ows:Keyword>Photographies</ows:Keyword>
     31381                        </ows:Keywords>
     31382                        <ows:WGS84BoundingBox>
     31383                                <ows:LowerCorner>-1.43874 49.3711</ows:LowerCorner>
     31384                                <ows:UpperCorner>-1.11836 49.7493</ows:UpperCorner>
     31385                        </ows:WGS84BoundingBox>
     31386                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-06-21-40710449</ows:Identifier>
     31387                        <Style isDefault="true">
     31388                                <ows:Title>Données Brutes</ows:Title>
     31389                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31390                                <ows:Keywords>
     31391                                        <ows:Keyword>Défaut</ows:Keyword>
     31392                                </ows:Keywords>
     31393                                <ows:Identifier>normal</ows:Identifier>
     31394                                <LegendURL format="image/jpeg" height="200"
     31395                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31396                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31397                        </Style>
     31398                        <Format>image/jpeg</Format>
     31399                        <TileMatrixSetLink>
     31400                                <TileMatrixSet>PM</TileMatrixSet>
     31401                                <TileMatrixSetLimits>
     31402                                        <TileMatrixLimits>
     31403                                                <TileMatrix>0</TileMatrix>
     31404                                                <MinTileRow>0</MinTileRow>
     31405                                                <MaxTileRow>0</MaxTileRow>
     31406                                                <MinTileCol>0</MinTileCol>
     31407                                                <MaxTileCol>0</MaxTileCol>
     31408                                        </TileMatrixLimits>
     31409                                        <TileMatrixLimits>
     31410                                                <TileMatrix>1</TileMatrix>
     31411                                                <MinTileRow>0</MinTileRow>
     31412                                                <MaxTileRow>0</MaxTileRow>
     31413                                                <MinTileCol>0</MinTileCol>
     31414                                                <MaxTileCol>0</MaxTileCol>
     31415                                        </TileMatrixLimits>
     31416                                        <TileMatrixLimits>
     31417                                                <TileMatrix>10</TileMatrix>
     31418                                                <MinTileRow>348</MinTileRow>
     31419                                                <MaxTileRow>350</MaxTileRow>
     31420                                                <MinTileCol>507</MinTileCol>
     31421                                                <MaxTileCol>508</MaxTileCol>
     31422                                        </TileMatrixLimits>
     31423                                        <TileMatrixLimits>
     31424                                                <TileMatrix>11</TileMatrix>
     31425                                                <MinTileRow>696</MinTileRow>
     31426                                                <MaxTileRow>700</MaxTileRow>
     31427                                                <MinTileCol>1015</MinTileCol>
     31428                                                <MaxTileCol>1017</MaxTileCol>
     31429                                        </TileMatrixLimits>
     31430                                        <TileMatrixLimits>
     31431                                                <TileMatrix>12</TileMatrix>
     31432                                                <MinTileRow>1393</MinTileRow>
     31433                                                <MaxTileRow>1400</MaxTileRow>
     31434                                                <MinTileCol>2031</MinTileCol>
     31435                                                <MaxTileCol>2035</MaxTileCol>
     31436                                        </TileMatrixLimits>
     31437                                        <TileMatrixLimits>
     31438                                                <TileMatrix>13</TileMatrix>
     31439                                                <MinTileRow>2787</MinTileRow>
     31440                                                <MaxTileRow>2800</MaxTileRow>
     31441                                                <MinTileCol>4063</MinTileCol>
     31442                                                <MaxTileCol>4070</MaxTileCol>
     31443                                        </TileMatrixLimits>
     31444                                        <TileMatrixLimits>
     31445                                                <TileMatrix>14</TileMatrix>
     31446                                                <MinTileRow>5574</MinTileRow>
     31447                                                <MaxTileRow>5600</MaxTileRow>
     31448                                                <MinTileCol>8126</MinTileCol>
     31449                                                <MaxTileCol>8141</MaxTileCol>
     31450                                        </TileMatrixLimits>
     31451                                        <TileMatrixLimits>
     31452                                                <TileMatrix>15</TileMatrix>
     31453                                                <MinTileRow>11149</MinTileRow>
     31454                                                <MaxTileRow>11200</MaxTileRow>
     31455                                                <MinTileCol>16253</MinTileCol>
     31456                                                <MaxTileCol>16282</MaxTileCol>
     31457                                        </TileMatrixLimits>
     31458                                        <TileMatrixLimits>
     31459                                                <TileMatrix>16</TileMatrix>
     31460                                                <MinTileRow>22298</MinTileRow>
     31461                                                <MaxTileRow>22401</MaxTileRow>
     31462                                                <MinTileCol>32507</MinTileCol>
     31463                                                <MaxTileCol>32564</MaxTileCol>
     31464                                        </TileMatrixLimits>
     31465                                        <TileMatrixLimits>
     31466                                                <TileMatrix>17</TileMatrix>
     31467                                                <MinTileRow>44597</MinTileRow>
     31468                                                <MaxTileRow>44803</MaxTileRow>
     31469                                                <MinTileCol>65015</MinTileCol>
     31470                                                <MaxTileCol>65128</MaxTileCol>
     31471                                        </TileMatrixLimits>
     31472                                        <TileMatrixLimits>
     31473                                                <TileMatrix>18</TileMatrix>
     31474                                                <MinTileRow>89194</MinTileRow>
     31475                                                <MaxTileRow>89606</MaxTileRow>
     31476                                                <MinTileCol>130031</MinTileCol>
     31477                                                <MaxTileCol>130257</MaxTileCol>
     31478                                        </TileMatrixLimits>
     31479                                        <TileMatrixLimits>
     31480                                                <TileMatrix>2</TileMatrix>
     31481                                                <MinTileRow>1</MinTileRow>
     31482                                                <MaxTileRow>1</MaxTileRow>
     31483                                                <MinTileCol>1</MinTileCol>
     31484                                                <MaxTileCol>1</MaxTileCol>
     31485                                        </TileMatrixLimits>
     31486                                        <TileMatrixLimits>
     31487                                                <TileMatrix>3</TileMatrix>
     31488                                                <MinTileRow>2</MinTileRow>
     31489                                                <MaxTileRow>2</MaxTileRow>
     31490                                                <MinTileCol>3</MinTileCol>
     31491                                                <MaxTileCol>3</MaxTileCol>
     31492                                        </TileMatrixLimits>
     31493                                        <TileMatrixLimits>
     31494                                                <TileMatrix>4</TileMatrix>
     31495                                                <MinTileRow>5</MinTileRow>
     31496                                                <MaxTileRow>5</MaxTileRow>
     31497                                                <MinTileCol>7</MinTileCol>
     31498                                                <MaxTileCol>7</MaxTileCol>
     31499                                        </TileMatrixLimits>
     31500                                        <TileMatrixLimits>
     31501                                                <TileMatrix>5</TileMatrix>
     31502                                                <MinTileRow>10</MinTileRow>
     31503                                                <MaxTileRow>10</MaxTileRow>
     31504                                                <MinTileCol>15</MinTileCol>
     31505                                                <MaxTileCol>15</MaxTileCol>
     31506                                        </TileMatrixLimits>
     31507                                        <TileMatrixLimits>
     31508                                                <TileMatrix>6</TileMatrix>
     31509                                                <MinTileRow>21</MinTileRow>
     31510                                                <MaxTileRow>21</MaxTileRow>
     31511                                                <MinTileCol>31</MinTileCol>
     31512                                                <MaxTileCol>31</MaxTileCol>
     31513                                        </TileMatrixLimits>
     31514                                        <TileMatrixLimits>
     31515                                                <TileMatrix>7</TileMatrix>
     31516                                                <MinTileRow>43</MinTileRow>
     31517                                                <MaxTileRow>43</MaxTileRow>
     31518                                                <MinTileCol>63</MinTileCol>
     31519                                                <MaxTileCol>63</MaxTileCol>
     31520                                        </TileMatrixLimits>
     31521                                        <TileMatrixLimits>
     31522                                                <TileMatrix>8</TileMatrix>
     31523                                                <MinTileRow>87</MinTileRow>
     31524                                                <MaxTileRow>87</MaxTileRow>
     31525                                                <MinTileCol>126</MinTileCol>
     31526                                                <MaxTileCol>127</MaxTileCol>
     31527                                        </TileMatrixLimits>
     31528                                        <TileMatrixLimits>
     31529                                                <TileMatrix>9</TileMatrix>
     31530                                                <MinTileRow>174</MinTileRow>
     31531                                                <MaxTileRow>175</MaxTileRow>
     31532                                                <MinTileCol>253</MinTileCol>
     31533                                                <MaxTileCol>254</MaxTileCol>
     31534                                        </TileMatrixLimits>
     31535                                </TileMatrixSetLimits>
     31536                        </TileMatrixSetLink>
     31537                </Layer>
     31538                <Layer>
     31539                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31540                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31541                        <ows:Keywords>
     31542                                <ows:Keyword>Photographies</ows:Keyword>
     31543                        </ows:Keywords>
     31544                        <ows:WGS84BoundingBox>
     31545                                <ows:LowerCorner>-1.65918 49.0472</ows:LowerCorner>
     31546                                <ows:UpperCorner>-1.44862 49.2699</ows:UpperCorner>
     31547                        </ows:WGS84BoundingBox>
     31548                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-07-24-40445327</ows:Identifier>
     31549                        <Style isDefault="true">
     31550                                <ows:Title>Données Brutes</ows:Title>
     31551                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31552                                <ows:Keywords>
     31553                                        <ows:Keyword>Défaut</ows:Keyword>
     31554                                </ows:Keywords>
     31555                                <ows:Identifier>normal</ows:Identifier>
     31556                                <LegendURL format="image/jpeg" height="200"
     31557                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31558                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31559                        </Style>
     31560                        <Format>image/jpeg</Format>
     31561                        <TileMatrixSetLink>
     31562                                <TileMatrixSet>PM</TileMatrixSet>
     31563                                <TileMatrixSetLimits>
     31564                                        <TileMatrixLimits>
     31565                                                <TileMatrix>0</TileMatrix>
     31566                                                <MinTileRow>0</MinTileRow>
     31567                                                <MaxTileRow>0</MaxTileRow>
     31568                                                <MinTileCol>0</MinTileCol>
     31569                                                <MaxTileCol>0</MaxTileCol>
     31570                                        </TileMatrixLimits>
     31571                                        <TileMatrixLimits>
     31572                                                <TileMatrix>1</TileMatrix>
     31573                                                <MinTileRow>0</MinTileRow>
     31574                                                <MaxTileRow>0</MaxTileRow>
     31575                                                <MinTileCol>0</MinTileCol>
     31576                                                <MaxTileCol>0</MaxTileCol>
     31577                                        </TileMatrixLimits>
     31578                                        <TileMatrixLimits>
     31579                                                <TileMatrix>10</TileMatrix>
     31580                                                <MinTileRow>350</MinTileRow>
     31581                                                <MaxTileRow>351</MaxTileRow>
     31582                                                <MinTileCol>507</MinTileCol>
     31583                                                <MaxTileCol>507</MaxTileCol>
     31584                                        </TileMatrixLimits>
     31585                                        <TileMatrixLimits>
     31586                                                <TileMatrix>11</TileMatrix>
     31587                                                <MinTileRow>700</MinTileRow>
     31588                                                <MaxTileRow>702</MaxTileRow>
     31589                                                <MinTileCol>1014</MinTileCol>
     31590                                                <MaxTileCol>1015</MaxTileCol>
     31591                                        </TileMatrixLimits>
     31592                                        <TileMatrixLimits>
     31593                                                <TileMatrix>12</TileMatrix>
     31594                                                <MinTileRow>1401</MinTileRow>
     31595                                                <MaxTileRow>1405</MaxTileRow>
     31596                                                <MinTileCol>2029</MinTileCol>
     31597                                                <MaxTileCol>2031</MaxTileCol>
     31598                                        </TileMatrixLimits>
     31599                                        <TileMatrixLimits>
     31600                                                <TileMatrix>13</TileMatrix>
     31601                                                <MinTileRow>2803</MinTileRow>
     31602                                                <MaxTileRow>2811</MaxTileRow>
     31603                                                <MinTileCol>4058</MinTileCol>
     31604                                                <MaxTileCol>4063</MaxTileCol>
     31605                                        </TileMatrixLimits>
     31606                                        <TileMatrixLimits>
     31607                                                <TileMatrix>14</TileMatrix>
     31608                                                <MinTileRow>5607</MinTileRow>
     31609                                                <MaxTileRow>5623</MaxTileRow>
     31610                                                <MinTileCol>8117</MinTileCol>
     31611                                                <MaxTileCol>8126</MaxTileCol>
     31612                                        </TileMatrixLimits>
     31613                                        <TileMatrixLimits>
     31614                                                <TileMatrix>15</TileMatrix>
     31615                                                <MinTileRow>11215</MinTileRow>
     31616                                                <MaxTileRow>11246</MaxTileRow>
     31617                                                <MinTileCol>16234</MinTileCol>
     31618                                                <MaxTileCol>16252</MaxTileCol>
     31619                                        </TileMatrixLimits>
     31620                                        <TileMatrixLimits>
     31621                                                <TileMatrix>16</TileMatrix>
     31622                                                <MinTileRow>22431</MinTileRow>
     31623                                                <MaxTileRow>22493</MaxTileRow>
     31624                                                <MinTileCol>32468</MinTileCol>
     31625                                                <MaxTileCol>32504</MaxTileCol>
     31626                                        </TileMatrixLimits>
     31627                                        <TileMatrixLimits>
     31628                                                <TileMatrix>17</TileMatrix>
     31629                                                <MinTileRow>44863</MinTileRow>
     31630                                                <MaxTileRow>44986</MaxTileRow>
     31631                                                <MinTileCol>64937</MinTileCol>
     31632                                                <MaxTileCol>65008</MaxTileCol>
     31633                                        </TileMatrixLimits>
     31634                                        <TileMatrixLimits>
     31635                                                <TileMatrix>18</TileMatrix>
     31636                                                <MinTileRow>89727</MinTileRow>
     31637                                                <MaxTileRow>89973</MaxTileRow>
     31638                                                <MinTileCol>129874</MinTileCol>
     31639                                                <MaxTileCol>130017</MaxTileCol>
     31640                                        </TileMatrixLimits>
     31641                                        <TileMatrixLimits>
     31642                                                <TileMatrix>2</TileMatrix>
     31643                                                <MinTileRow>1</MinTileRow>
     31644                                                <MaxTileRow>1</MaxTileRow>
     31645                                                <MinTileCol>1</MinTileCol>
     31646                                                <MaxTileCol>1</MaxTileCol>
     31647                                        </TileMatrixLimits>
     31648                                        <TileMatrixLimits>
     31649                                                <TileMatrix>3</TileMatrix>
     31650                                                <MinTileRow>2</MinTileRow>
     31651                                                <MaxTileRow>2</MaxTileRow>
     31652                                                <MinTileCol>3</MinTileCol>
     31653                                                <MaxTileCol>3</MaxTileCol>
     31654                                        </TileMatrixLimits>
     31655                                        <TileMatrixLimits>
     31656                                                <TileMatrix>4</TileMatrix>
     31657                                                <MinTileRow>5</MinTileRow>
     31658                                                <MaxTileRow>5</MaxTileRow>
     31659                                                <MinTileCol>7</MinTileCol>
     31660                                                <MaxTileCol>7</MaxTileCol>
     31661                                        </TileMatrixLimits>
     31662                                        <TileMatrixLimits>
     31663                                                <TileMatrix>5</TileMatrix>
     31664                                                <MinTileRow>10</MinTileRow>
     31665                                                <MaxTileRow>10</MaxTileRow>
     31666                                                <MinTileCol>15</MinTileCol>
     31667                                                <MaxTileCol>15</MaxTileCol>
     31668                                        </TileMatrixLimits>
     31669                                        <TileMatrixLimits>
     31670                                                <TileMatrix>6</TileMatrix>
     31671                                                <MinTileRow>21</MinTileRow>
     31672                                                <MaxTileRow>21</MaxTileRow>
     31673                                                <MinTileCol>31</MinTileCol>
     31674                                                <MaxTileCol>31</MaxTileCol>
     31675                                        </TileMatrixLimits>
     31676                                        <TileMatrixLimits>
     31677                                                <TileMatrix>7</TileMatrix>
     31678                                                <MinTileRow>43</MinTileRow>
     31679                                                <MaxTileRow>43</MaxTileRow>
     31680                                                <MinTileCol>63</MinTileCol>
     31681                                                <MaxTileCol>63</MaxTileCol>
     31682                                        </TileMatrixLimits>
     31683                                        <TileMatrixLimits>
     31684                                                <TileMatrix>8</TileMatrix>
     31685                                                <MinTileRow>87</MinTileRow>
     31686                                                <MaxTileRow>87</MaxTileRow>
     31687                                                <MinTileCol>126</MinTileCol>
     31688                                                <MaxTileCol>126</MaxTileCol>
     31689                                        </TileMatrixLimits>
     31690                                        <TileMatrixLimits>
     31691                                                <TileMatrix>9</TileMatrix>
     31692                                                <MinTileRow>175</MinTileRow>
     31693                                                <MaxTileRow>175</MaxTileRow>
     31694                                                <MinTileCol>253</MinTileCol>
     31695                                                <MaxTileCol>253</MaxTileCol>
     31696                                        </TileMatrixLimits>
     31697                                </TileMatrixSetLimits>
     31698                        </TileMatrixSetLink>
     31699                </Layer>
     31700                <Layer>
     31701                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31702                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31703                        <ows:Keywords>
     31704                                <ows:Keyword>Photographies</ows:Keyword>
     31705                        </ows:Keywords>
     31706                        <ows:WGS84BoundingBox>
     31707                                <ows:LowerCorner>-1.3121 49.2584</ows:LowerCorner>
     31708                                <ows:UpperCorner>-0.999299 49.5645</ows:UpperCorner>
     31709                        </ows:WGS84BoundingBox>
     31710                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-07-24-40464324</ows:Identifier>
     31711                        <Style isDefault="true">
     31712                                <ows:Title>Données Brutes</ows:Title>
     31713                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31714                                <ows:Keywords>
     31715                                        <ows:Keyword>Défaut</ows:Keyword>
     31716                                </ows:Keywords>
     31717                                <ows:Identifier>normal</ows:Identifier>
     31718                                <LegendURL format="image/jpeg" height="200"
     31719                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31720                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31721                        </Style>
     31722                        <Format>image/jpeg</Format>
     31723                        <TileMatrixSetLink>
     31724                                <TileMatrixSet>PM</TileMatrixSet>
     31725                                <TileMatrixSetLimits>
     31726                                        <TileMatrixLimits>
     31727                                                <TileMatrix>0</TileMatrix>
     31728                                                <MinTileRow>0</MinTileRow>
     31729                                                <MaxTileRow>0</MaxTileRow>
     31730                                                <MinTileCol>0</MinTileCol>
     31731                                                <MaxTileCol>0</MaxTileCol>
     31732                                        </TileMatrixLimits>
     31733                                        <TileMatrixLimits>
     31734                                                <TileMatrix>1</TileMatrix>
     31735                                                <MinTileRow>0</MinTileRow>
     31736                                                <MaxTileRow>0</MaxTileRow>
     31737                                                <MinTileCol>0</MinTileCol>
     31738                                                <MaxTileCol>0</MaxTileCol>
     31739                                        </TileMatrixLimits>
     31740                                        <TileMatrixLimits>
     31741                                                <TileMatrix>10</TileMatrix>
     31742                                                <MinTileRow>349</MinTileRow>
     31743                                                <MaxTileRow>350</MaxTileRow>
     31744                                                <MinTileCol>508</MinTileCol>
     31745                                                <MaxTileCol>509</MaxTileCol>
     31746                                        </TileMatrixLimits>
     31747                                        <TileMatrixLimits>
     31748                                                <TileMatrix>11</TileMatrix>
     31749                                                <MinTileRow>698</MinTileRow>
     31750                                                <MaxTileRow>701</MaxTileRow>
     31751                                                <MinTileCol>1016</MinTileCol>
     31752                                                <MaxTileCol>1018</MaxTileCol>
     31753                                        </TileMatrixLimits>
     31754                                        <TileMatrixLimits>
     31755                                                <TileMatrix>12</TileMatrix>
     31756                                                <MinTileRow>1396</MinTileRow>
     31757                                                <MaxTileRow>1402</MaxTileRow>
     31758                                                <MinTileCol>2033</MinTileCol>
     31759                                                <MaxTileCol>2036</MaxTileCol>
     31760                                        </TileMatrixLimits>
     31761                                        <TileMatrixLimits>
     31762                                                <TileMatrix>13</TileMatrix>
     31763                                                <MinTileRow>2793</MinTileRow>
     31764                                                <MaxTileRow>2804</MaxTileRow>
     31765                                                <MinTileCol>4066</MinTileCol>
     31766                                                <MaxTileCol>4073</MaxTileCol>
     31767                                        </TileMatrixLimits>
     31768                                        <TileMatrixLimits>
     31769                                                <TileMatrix>14</TileMatrix>
     31770                                                <MinTileRow>5587</MinTileRow>
     31771                                                <MaxTileRow>5608</MaxTileRow>
     31772                                                <MinTileCol>8132</MinTileCol>
     31773                                                <MaxTileCol>8146</MaxTileCol>
     31774                                        </TileMatrixLimits>
     31775                                        <TileMatrixLimits>
     31776                                                <TileMatrix>15</TileMatrix>
     31777                                                <MinTileRow>11175</MinTileRow>
     31778                                                <MaxTileRow>11216</MaxTileRow>
     31779                                                <MinTileCol>16264</MinTileCol>
     31780                                                <MaxTileCol>16292</MaxTileCol>
     31781                                        </TileMatrixLimits>
     31782                                        <TileMatrixLimits>
     31783                                                <TileMatrix>16</TileMatrix>
     31784                                                <MinTileRow>22351</MinTileRow>
     31785                                                <MaxTileRow>22433</MaxTileRow>
     31786                                                <MinTileCol>32529</MinTileCol>
     31787                                                <MaxTileCol>32585</MaxTileCol>
     31788                                        </TileMatrixLimits>
     31789                                        <TileMatrixLimits>
     31790                                                <TileMatrix>17</TileMatrix>
     31791                                                <MinTileRow>44702</MinTileRow>
     31792                                                <MaxTileRow>44867</MaxTileRow>
     31793                                                <MinTileCol>65059</MinTileCol>
     31794                                                <MaxTileCol>65171</MaxTileCol>
     31795                                        </TileMatrixLimits>
     31796                                        <TileMatrixLimits>
     31797                                                <TileMatrix>18</TileMatrix>
     31798                                                <MinTileRow>89405</MinTileRow>
     31799                                                <MaxTileRow>89734</MaxTileRow>
     31800                                                <MinTileCol>130118</MinTileCol>
     31801                                                <MaxTileCol>130342</MaxTileCol>
     31802                                        </TileMatrixLimits>
     31803                                        <TileMatrixLimits>
     31804                                                <TileMatrix>2</TileMatrix>
     31805                                                <MinTileRow>1</MinTileRow>
     31806                                                <MaxTileRow>1</MaxTileRow>
     31807                                                <MinTileCol>1</MinTileCol>
     31808                                                <MaxTileCol>1</MaxTileCol>
     31809                                        </TileMatrixLimits>
     31810                                        <TileMatrixLimits>
     31811                                                <TileMatrix>3</TileMatrix>
     31812                                                <MinTileRow>2</MinTileRow>
     31813                                                <MaxTileRow>2</MaxTileRow>
     31814                                                <MinTileCol>3</MinTileCol>
     31815                                                <MaxTileCol>3</MaxTileCol>
     31816                                        </TileMatrixLimits>
     31817                                        <TileMatrixLimits>
     31818                                                <TileMatrix>4</TileMatrix>
     31819                                                <MinTileRow>5</MinTileRow>
     31820                                                <MaxTileRow>5</MaxTileRow>
     31821                                                <MinTileCol>7</MinTileCol>
     31822                                                <MaxTileCol>7</MaxTileCol>
     31823                                        </TileMatrixLimits>
     31824                                        <TileMatrixLimits>
     31825                                                <TileMatrix>5</TileMatrix>
     31826                                                <MinTileRow>10</MinTileRow>
     31827                                                <MaxTileRow>10</MaxTileRow>
     31828                                                <MinTileCol>15</MinTileCol>
     31829                                                <MaxTileCol>15</MaxTileCol>
     31830                                        </TileMatrixLimits>
     31831                                        <TileMatrixLimits>
     31832                                                <TileMatrix>6</TileMatrix>
     31833                                                <MinTileRow>21</MinTileRow>
     31834                                                <MaxTileRow>21</MaxTileRow>
     31835                                                <MinTileCol>31</MinTileCol>
     31836                                                <MaxTileCol>31</MaxTileCol>
     31837                                        </TileMatrixLimits>
     31838                                        <TileMatrixLimits>
     31839                                                <TileMatrix>7</TileMatrix>
     31840                                                <MinTileRow>43</MinTileRow>
     31841                                                <MaxTileRow>43</MaxTileRow>
     31842                                                <MinTileCol>63</MinTileCol>
     31843                                                <MaxTileCol>63</MaxTileCol>
     31844                                        </TileMatrixLimits>
     31845                                        <TileMatrixLimits>
     31846                                                <TileMatrix>8</TileMatrix>
     31847                                                <MinTileRow>87</MinTileRow>
     31848                                                <MaxTileRow>87</MaxTileRow>
     31849                                                <MinTileCol>127</MinTileCol>
     31850                                                <MaxTileCol>127</MaxTileCol>
     31851                                        </TileMatrixLimits>
     31852                                        <TileMatrixLimits>
     31853                                                <TileMatrix>9</TileMatrix>
     31854                                                <MinTileRow>174</MinTileRow>
     31855                                                <MaxTileRow>175</MaxTileRow>
     31856                                                <MinTileCol>254</MinTileCol>
     31857                                                <MaxTileCol>254</MaxTileCol>
     31858                                        </TileMatrixLimits>
     31859                                </TileMatrixSetLimits>
     31860                        </TileMatrixSetLink>
     31861                </Layer>
     31862                <Layer>
     31863                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     31864                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     31865                        <ows:Keywords>
     31866                                <ows:Keyword>Photographies</ows:Keyword>
     31867                        </ows:Keywords>
     31868                        <ows:WGS84BoundingBox>
     31869                                <ows:LowerCorner>-1.67179 48.5782</ows:LowerCorner>
     31870                                <ows:UpperCorner>-1.42245 48.8026</ows:UpperCorner>
     31871                        </ows:WGS84BoundingBox>
     31872                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-09-08-40242576</ows:Identifier>
     31873                        <Style isDefault="true">
     31874                                <ows:Title>Données Brutes</ows:Title>
     31875                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     31876                                <ows:Keywords>
     31877                                        <ows:Keyword>Défaut</ows:Keyword>
     31878                                </ows:Keywords>
     31879                                <ows:Identifier>normal</ows:Identifier>
     31880                                <LegendURL format="image/jpeg" height="200"
     31881                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     31882                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     31883                        </Style>
     31884                        <Format>image/jpeg</Format>
     31885                        <TileMatrixSetLink>
     31886                                <TileMatrixSet>PM</TileMatrixSet>
     31887                                <TileMatrixSetLimits>
     31888                                        <TileMatrixLimits>
     31889                                                <TileMatrix>0</TileMatrix>
     31890                                                <MinTileRow>0</MinTileRow>
     31891                                                <MaxTileRow>0</MaxTileRow>
     31892                                                <MinTileCol>0</MinTileCol>
     31893                                                <MaxTileCol>0</MaxTileCol>
     31894                                        </TileMatrixLimits>
     31895                                        <TileMatrixLimits>
     31896                                                <TileMatrix>1</TileMatrix>
     31897                                                <MinTileRow>0</MinTileRow>
     31898                                                <MaxTileRow>0</MaxTileRow>
     31899                                                <MinTileCol>0</MinTileCol>
     31900                                                <MaxTileCol>0</MaxTileCol>
     31901                                        </TileMatrixLimits>
     31902                                        <TileMatrixLimits>
     31903                                                <TileMatrix>10</TileMatrix>
     31904                                                <MinTileRow>352</MinTileRow>
     31905                                                <MaxTileRow>353</MaxTileRow>
     31906                                                <MinTileCol>507</MinTileCol>
     31907                                                <MaxTileCol>507</MaxTileCol>
     31908                                        </TileMatrixLimits>
     31909                                        <TileMatrixLimits>
     31910                                                <TileMatrix>11</TileMatrix>
     31911                                                <MinTileRow>705</MinTileRow>
     31912                                                <MaxTileRow>706</MaxTileRow>
     31913                                                <MinTileCol>1014</MinTileCol>
     31914                                                <MaxTileCol>1015</MaxTileCol>
     31915                                        </TileMatrixLimits>
     31916                                        <TileMatrixLimits>
     31917                                                <TileMatrix>12</TileMatrix>
     31918                                                <MinTileRow>1410</MinTileRow>
     31919                                                <MaxTileRow>1413</MaxTileRow>
     31920                                                <MinTileCol>2028</MinTileCol>
     31921                                                <MaxTileCol>2031</MaxTileCol>
     31922                                        </TileMatrixLimits>
     31923                                        <TileMatrixLimits>
     31924                                                <TileMatrix>13</TileMatrix>
     31925                                                <MinTileRow>2820</MinTileRow>
     31926                                                <MaxTileRow>2827</MaxTileRow>
     31927                                                <MinTileCol>4057</MinTileCol>
     31928                                                <MaxTileCol>4063</MaxTileCol>
     31929                                        </TileMatrixLimits>
     31930                                        <TileMatrixLimits>
     31931                                                <TileMatrix>14</TileMatrix>
     31932                                                <MinTileRow>5640</MinTileRow>
     31933                                                <MaxTileRow>5655</MaxTileRow>
     31934                                                <MinTileCol>8115</MinTileCol>
     31935                                                <MaxTileCol>8126</MaxTileCol>
     31936                                        </TileMatrixLimits>
     31937                                        <TileMatrixLimits>
     31938                                                <TileMatrix>15</TileMatrix>
     31939                                                <MinTileRow>11280</MinTileRow>
     31940                                                <MaxTileRow>11311</MaxTileRow>
     31941                                                <MinTileCol>16231</MinTileCol>
     31942                                                <MaxTileCol>16253</MaxTileCol>
     31943                                        </TileMatrixLimits>
     31944                                        <TileMatrixLimits>
     31945                                                <TileMatrix>16</TileMatrix>
     31946                                                <MinTileRow>22561</MinTileRow>
     31947                                                <MaxTileRow>22622</MaxTileRow>
     31948                                                <MinTileCol>32463</MinTileCol>
     31949                                                <MaxTileCol>32507</MaxTileCol>
     31950                                        </TileMatrixLimits>
     31951                                        <TileMatrixLimits>
     31952                                                <TileMatrix>17</TileMatrix>
     31953                                                <MinTileRow>45122</MinTileRow>
     31954                                                <MaxTileRow>45244</MaxTileRow>
     31955                                                <MinTileCol>64927</MinTileCol>
     31956                                                <MaxTileCol>65015</MaxTileCol>
     31957                                        </TileMatrixLimits>
     31958                                        <TileMatrixLimits>
     31959                                                <TileMatrix>18</TileMatrix>
     31960                                                <MinTileRow>90245</MinTileRow>
     31961                                                <MaxTileRow>90489</MaxTileRow>
     31962                                                <MinTileCol>129854</MinTileCol>
     31963                                                <MaxTileCol>130030</MaxTileCol>
     31964                                        </TileMatrixLimits>
     31965                                        <TileMatrixLimits>
     31966                                                <TileMatrix>2</TileMatrix>
     31967                                                <MinTileRow>1</MinTileRow>
     31968                                                <MaxTileRow>1</MaxTileRow>
     31969                                                <MinTileCol>1</MinTileCol>
     31970                                                <MaxTileCol>1</MaxTileCol>
     31971                                        </TileMatrixLimits>
     31972                                        <TileMatrixLimits>
     31973                                                <TileMatrix>3</TileMatrix>
     31974                                                <MinTileRow>2</MinTileRow>
     31975                                                <MaxTileRow>2</MaxTileRow>
     31976                                                <MinTileCol>3</MinTileCol>
     31977                                                <MaxTileCol>3</MaxTileCol>
     31978                                        </TileMatrixLimits>
     31979                                        <TileMatrixLimits>
     31980                                                <TileMatrix>4</TileMatrix>
     31981                                                <MinTileRow>5</MinTileRow>
     31982                                                <MaxTileRow>5</MaxTileRow>
     31983                                                <MinTileCol>7</MinTileCol>
     31984                                                <MaxTileCol>7</MaxTileCol>
     31985                                        </TileMatrixLimits>
     31986                                        <TileMatrixLimits>
     31987                                                <TileMatrix>5</TileMatrix>
     31988                                                <MinTileRow>11</MinTileRow>
     31989                                                <MaxTileRow>11</MaxTileRow>
     31990                                                <MinTileCol>15</MinTileCol>
     31991                                                <MaxTileCol>15</MaxTileCol>
     31992                                        </TileMatrixLimits>
     31993                                        <TileMatrixLimits>
     31994                                                <TileMatrix>6</TileMatrix>
     31995                                                <MinTileRow>22</MinTileRow>
     31996                                                <MaxTileRow>22</MaxTileRow>
     31997                                                <MinTileCol>31</MinTileCol>
     31998                                                <MaxTileCol>31</MaxTileCol>
     31999                                        </TileMatrixLimits>
     32000                                        <TileMatrixLimits>
     32001                                                <TileMatrix>7</TileMatrix>
     32002                                                <MinTileRow>44</MinTileRow>
     32003                                                <MaxTileRow>44</MaxTileRow>
     32004                                                <MinTileCol>63</MinTileCol>
     32005                                                <MaxTileCol>63</MaxTileCol>
     32006                                        </TileMatrixLimits>
     32007                                        <TileMatrixLimits>
     32008                                                <TileMatrix>8</TileMatrix>
     32009                                                <MinTileRow>88</MinTileRow>
     32010                                                <MaxTileRow>88</MaxTileRow>
     32011                                                <MinTileCol>126</MinTileCol>
     32012                                                <MaxTileCol>126</MaxTileCol>
     32013                                        </TileMatrixLimits>
     32014                                        <TileMatrixLimits>
     32015                                                <TileMatrix>9</TileMatrix>
     32016                                                <MinTileRow>176</MinTileRow>
     32017                                                <MaxTileRow>176</MaxTileRow>
     32018                                                <MinTileCol>253</MinTileCol>
     32019                                                <MaxTileCol>253</MaxTileCol>
     32020                                        </TileMatrixLimits>
     32021                                </TileMatrixSetLimits>
     32022                        </TileMatrixSetLink>
     32023                </Layer>
     32024                <Layer>
     32025                        <ows:Title>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Title>
     32026                        <ows:Abstract>Orthophotographies Geosud de LITTO-COTENTIN 2014</ows:Abstract>
     32027                        <ows:Keywords>
     32028                                <ows:Keyword>Photographies</ows:Keyword>
     32029                        </ows:Keywords>
     32030                        <ows:WGS84BoundingBox>
     32031                                <ows:LowerCorner>-1.58758 48.5824</ows:LowerCorner>
     32032                                <ows:UpperCorner>-1.28706 49.0859</ows:UpperCorner>
     32033                        </ows:WGS84BoundingBox>
     32034                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-COTENTIN-2014-09-20-40677446</ows:Identifier>
     32035                        <Style isDefault="true">
     32036                                <ows:Title>Données Brutes</ows:Title>
     32037                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32038                                <ows:Keywords>
     32039                                        <ows:Keyword>Défaut</ows:Keyword>
     32040                                </ows:Keywords>
     32041                                <ows:Identifier>normal</ows:Identifier>
     32042                                <LegendURL format="image/jpeg" height="200"
     32043                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32044                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32045                        </Style>
     32046                        <Format>image/jpeg</Format>
     32047                        <TileMatrixSetLink>
     32048                                <TileMatrixSet>PM</TileMatrixSet>
     32049                                <TileMatrixSetLimits>
     32050                                        <TileMatrixLimits>
     32051                                                <TileMatrix>0</TileMatrix>
     32052                                                <MinTileRow>0</MinTileRow>
     32053                                                <MaxTileRow>0</MaxTileRow>
     32054                                                <MinTileCol>0</MinTileCol>
     32055                                                <MaxTileCol>0</MaxTileCol>
     32056                                        </TileMatrixLimits>
     32057                                        <TileMatrixLimits>
     32058                                                <TileMatrix>1</TileMatrix>
     32059                                                <MinTileRow>0</MinTileRow>
     32060                                                <MaxTileRow>0</MaxTileRow>
     32061                                                <MinTileCol>0</MinTileCol>
     32062                                                <MaxTileCol>0</MaxTileCol>
     32063                                        </TileMatrixLimits>
     32064                                        <TileMatrixLimits>
     32065                                                <TileMatrix>10</TileMatrix>
     32066                                                <MinTileRow>351</MinTileRow>
     32067                                                <MaxTileRow>353</MaxTileRow>
     32068                                                <MinTileCol>507</MinTileCol>
     32069                                                <MaxTileCol>508</MaxTileCol>
     32070                                        </TileMatrixLimits>
     32071                                        <TileMatrixLimits>
     32072                                                <TileMatrix>11</TileMatrix>
     32073                                                <MinTileRow>702</MinTileRow>
     32074                                                <MaxTileRow>706</MaxTileRow>
     32075                                                <MinTileCol>1015</MinTileCol>
     32076                                                <MaxTileCol>1016</MaxTileCol>
     32077                                        </TileMatrixLimits>
     32078                                        <TileMatrixLimits>
     32079                                                <TileMatrix>12</TileMatrix>
     32080                                                <MinTileRow>1405</MinTileRow>
     32081                                                <MaxTileRow>1413</MaxTileRow>
     32082                                                <MinTileCol>2030</MinTileCol>
     32083                                                <MaxTileCol>2033</MaxTileCol>
     32084                                        </TileMatrixLimits>
     32085                                        <TileMatrixLimits>
     32086                                                <TileMatrix>13</TileMatrix>
     32087                                                <MinTileRow>2810</MinTileRow>
     32088                                                <MaxTileRow>2827</MaxTileRow>
     32089                                                <MinTileCol>4060</MinTileCol>
     32090                                                <MaxTileCol>4066</MaxTileCol>
     32091                                        </TileMatrixLimits>
     32092                                        <TileMatrixLimits>
     32093                                                <TileMatrix>14</TileMatrix>
     32094                                                <MinTileRow>5620</MinTileRow>
     32095                                                <MaxTileRow>5655</MaxTileRow>
     32096                                                <MinTileCol>8121</MinTileCol>
     32097                                                <MaxTileCol>8133</MaxTileCol>
     32098                                        </TileMatrixLimits>
     32099                                        <TileMatrixLimits>
     32100                                                <TileMatrix>15</TileMatrix>
     32101                                                <MinTileRow>11241</MinTileRow>
     32102                                                <MaxTileRow>11310</MaxTileRow>
     32103                                                <MinTileCol>16242</MinTileCol>
     32104                                                <MaxTileCol>16266</MaxTileCol>
     32105                                        </TileMatrixLimits>
     32106                                        <TileMatrixLimits>
     32107                                                <TileMatrix>16</TileMatrix>
     32108                                                <MinTileRow>22483</MinTileRow>
     32109                                                <MaxTileRow>22621</MaxTileRow>
     32110                                                <MinTileCol>32484</MinTileCol>
     32111                                                <MaxTileCol>32533</MaxTileCol>
     32112                                        </TileMatrixLimits>
     32113                                        <TileMatrixLimits>
     32114                                                <TileMatrix>17</TileMatrix>
     32115                                                <MinTileRow>44967</MinTileRow>
     32116                                                <MaxTileRow>45243</MaxTileRow>
     32117                                                <MinTileCol>64968</MinTileCol>
     32118                                                <MaxTileCol>65067</MaxTileCol>
     32119                                        </TileMatrixLimits>
     32120                                        <TileMatrixLimits>
     32121                                                <TileMatrix>18</TileMatrix>
     32122                                                <MinTileRow>89935</MinTileRow>
     32123                                                <MaxTileRow>90487</MaxTileRow>
     32124                                                <MinTileCol>129936</MinTileCol>
     32125                                                <MaxTileCol>130134</MaxTileCol>
     32126                                        </TileMatrixLimits>
     32127                                        <TileMatrixLimits>
     32128                                                <TileMatrix>2</TileMatrix>
     32129                                                <MinTileRow>1</MinTileRow>
     32130                                                <MaxTileRow>1</MaxTileRow>
     32131                                                <MinTileCol>1</MinTileCol>
     32132                                                <MaxTileCol>1</MaxTileCol>
     32133                                        </TileMatrixLimits>
     32134                                        <TileMatrixLimits>
     32135                                                <TileMatrix>3</TileMatrix>
     32136                                                <MinTileRow>2</MinTileRow>
     32137                                                <MaxTileRow>2</MaxTileRow>
     32138                                                <MinTileCol>3</MinTileCol>
     32139                                                <MaxTileCol>3</MaxTileCol>
     32140                                        </TileMatrixLimits>
     32141                                        <TileMatrixLimits>
     32142                                                <TileMatrix>4</TileMatrix>
     32143                                                <MinTileRow>5</MinTileRow>
     32144                                                <MaxTileRow>5</MaxTileRow>
     32145                                                <MinTileCol>7</MinTileCol>
     32146                                                <MaxTileCol>7</MaxTileCol>
     32147                                        </TileMatrixLimits>
     32148                                        <TileMatrixLimits>
     32149                                                <TileMatrix>5</TileMatrix>
     32150                                                <MinTileRow>10</MinTileRow>
     32151                                                <MaxTileRow>11</MaxTileRow>
     32152                                                <MinTileCol>15</MinTileCol>
     32153                                                <MaxTileCol>15</MaxTileCol>
     32154                                        </TileMatrixLimits>
     32155                                        <TileMatrixLimits>
     32156                                                <TileMatrix>6</TileMatrix>
     32157                                                <MinTileRow>21</MinTileRow>
     32158                                                <MaxTileRow>22</MaxTileRow>
     32159                                                <MinTileCol>31</MinTileCol>
     32160                                                <MaxTileCol>31</MaxTileCol>
     32161                                        </TileMatrixLimits>
     32162                                        <TileMatrixLimits>
     32163                                                <TileMatrix>7</TileMatrix>
     32164                                                <MinTileRow>43</MinTileRow>
     32165                                                <MaxTileRow>44</MaxTileRow>
     32166                                                <MinTileCol>63</MinTileCol>
     32167                                                <MaxTileCol>63</MaxTileCol>
     32168                                        </TileMatrixLimits>
     32169                                        <TileMatrixLimits>
     32170                                                <TileMatrix>8</TileMatrix>
     32171                                                <MinTileRow>87</MinTileRow>
     32172                                                <MaxTileRow>88</MaxTileRow>
     32173                                                <MinTileCol>126</MinTileCol>
     32174                                                <MaxTileCol>127</MaxTileCol>
     32175                                        </TileMatrixLimits>
     32176                                        <TileMatrixLimits>
     32177                                                <TileMatrix>9</TileMatrix>
     32178                                                <MinTileRow>175</MinTileRow>
     32179                                                <MaxTileRow>176</MaxTileRow>
     32180                                                <MinTileCol>253</MinTileCol>
     32181                                                <MaxTileCol>254</MaxTileCol>
     32182                                        </TileMatrixLimits>
     32183                                </TileMatrixSetLimits>
     32184                        </TileMatrixSetLink>
     32185                </Layer>
     32186                <Layer>
     32187                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32188                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32189                        <ows:Keywords>
     32190                                <ows:Keyword>Photographies</ows:Keyword>
     32191                        </ows:Keywords>
     32192                        <ows:WGS84BoundingBox>
     32193                                <ows:LowerCorner>3.06136 43.0806</ows:LowerCorner>
     32194                                <ows:UpperCorner>4.30093 43.646</ows:UpperCorner>
     32195                        </ows:WGS84BoundingBox>
     32196                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38763074</ows:Identifier>
     32197                        <Style isDefault="true">
     32198                                <ows:Title>Données Brutes</ows:Title>
     32199                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32200                                <ows:Keywords>
     32201                                        <ows:Keyword>Défaut</ows:Keyword>
     32202                                </ows:Keywords>
     32203                                <ows:Identifier>normal</ows:Identifier>
     32204                                <LegendURL format="image/jpeg" height="200"
     32205                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32206                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32207                        </Style>
     32208                        <Format>image/jpeg</Format>
     32209                        <TileMatrixSetLink>
     32210                                <TileMatrixSet>PM</TileMatrixSet>
     32211                                <TileMatrixSetLimits>
     32212                                        <TileMatrixLimits>
     32213                                                <TileMatrix>0</TileMatrix>
     32214                                                <MinTileRow>0</MinTileRow>
     32215                                                <MaxTileRow>0</MaxTileRow>
     32216                                                <MinTileCol>0</MinTileCol>
     32217                                                <MaxTileCol>0</MaxTileCol>
     32218                                        </TileMatrixLimits>
     32219                                        <TileMatrixLimits>
     32220                                                <TileMatrix>1</TileMatrix>
     32221                                                <MinTileRow>0</MinTileRow>
     32222                                                <MaxTileRow>0</MaxTileRow>
     32223                                                <MinTileCol>1</MinTileCol>
     32224                                                <MaxTileCol>1</MaxTileCol>
     32225                                        </TileMatrixLimits>
     32226                                        <TileMatrixLimits>
     32227                                                <TileMatrix>10</TileMatrix>
     32228                                                <MinTileRow>373</MinTileRow>
     32229                                                <MaxTileRow>375</MaxTileRow>
     32230                                                <MinTileCol>520</MinTileCol>
     32231                                                <MaxTileCol>524</MaxTileCol>
     32232                                        </TileMatrixLimits>
     32233                                        <TileMatrixLimits>
     32234                                                <TileMatrix>11</TileMatrix>
     32235                                                <MinTileRow>747</MinTileRow>
     32236                                                <MaxTileRow>751</MaxTileRow>
     32237                                                <MinTileCol>1041</MinTileCol>
     32238                                                <MaxTileCol>1048</MaxTileCol>
     32239                                        </TileMatrixLimits>
     32240                                        <TileMatrixLimits>
     32241                                                <TileMatrix>12</TileMatrix>
     32242                                                <MinTileRow>1495</MinTileRow>
     32243                                                <MaxTileRow>1503</MaxTileRow>
     32244                                                <MinTileCol>2082</MinTileCol>
     32245                                                <MaxTileCol>2096</MaxTileCol>
     32246                                        </TileMatrixLimits>
     32247                                        <TileMatrixLimits>
     32248                                                <TileMatrix>13</TileMatrix>
     32249                                                <MinTileRow>2990</MinTileRow>
     32250                                                <MaxTileRow>3007</MaxTileRow>
     32251                                                <MinTileCol>4165</MinTileCol>
     32252                                                <MaxTileCol>4193</MaxTileCol>
     32253                                        </TileMatrixLimits>
     32254                                        <TileMatrixLimits>
     32255                                                <TileMatrix>14</TileMatrix>
     32256                                                <MinTileRow>5980</MinTileRow>
     32257                                                <MaxTileRow>6014</MaxTileRow>
     32258                                                <MinTileCol>8331</MinTileCol>
     32259                                                <MaxTileCol>8387</MaxTileCol>
     32260                                        </TileMatrixLimits>
     32261                                        <TileMatrixLimits>
     32262                                                <TileMatrix>15</TileMatrix>
     32263                                                <MinTileRow>11960</MinTileRow>
     32264                                                <MaxTileRow>12029</MaxTileRow>
     32265                                                <MinTileCol>16662</MinTileCol>
     32266                                                <MaxTileCol>16775</MaxTileCol>
     32267                                        </TileMatrixLimits>
     32268                                        <TileMatrixLimits>
     32269                                                <TileMatrix>16</TileMatrix>
     32270                                                <MinTileRow>23920</MinTileRow>
     32271                                                <MaxTileRow>24059</MaxTileRow>
     32272                                                <MinTileCol>33325</MinTileCol>
     32273                                                <MaxTileCol>33551</MaxTileCol>
     32274                                        </TileMatrixLimits>
     32275                                        <TileMatrixLimits>
     32276                                                <TileMatrix>17</TileMatrix>
     32277                                                <MinTileRow>47841</MinTileRow>
     32278                                                <MaxTileRow>48118</MaxTileRow>
     32279                                                <MinTileCol>66650</MinTileCol>
     32280                                                <MaxTileCol>67102</MaxTileCol>
     32281                                        </TileMatrixLimits>
     32282                                        <TileMatrixLimits>
     32283                                                <TileMatrix>18</TileMatrix>
     32284                                                <MinTileRow>95682</MinTileRow>
     32285                                                <MaxTileRow>96236</MaxTileRow>
     32286                                                <MinTileCol>133301</MinTileCol>
     32287                                                <MaxTileCol>134204</MaxTileCol>
     32288                                        </TileMatrixLimits>
     32289                                        <TileMatrixLimits>
     32290                                                <TileMatrix>2</TileMatrix>
     32291                                                <MinTileRow>1</MinTileRow>
     32292                                                <MaxTileRow>1</MaxTileRow>
     32293                                                <MinTileCol>2</MinTileCol>
     32294                                                <MaxTileCol>2</MaxTileCol>
     32295                                        </TileMatrixLimits>
     32296                                        <TileMatrixLimits>
     32297                                                <TileMatrix>3</TileMatrix>
     32298                                                <MinTileRow>2</MinTileRow>
     32299                                                <MaxTileRow>2</MaxTileRow>
     32300                                                <MinTileCol>4</MinTileCol>
     32301                                                <MaxTileCol>4</MaxTileCol>
     32302                                        </TileMatrixLimits>
     32303                                        <TileMatrixLimits>
     32304                                                <TileMatrix>4</TileMatrix>
     32305                                                <MinTileRow>5</MinTileRow>
     32306                                                <MaxTileRow>5</MaxTileRow>
     32307                                                <MinTileCol>8</MinTileCol>
     32308                                                <MaxTileCol>8</MaxTileCol>
     32309                                        </TileMatrixLimits>
     32310                                        <TileMatrixLimits>
     32311                                                <TileMatrix>5</TileMatrix>
     32312                                                <MinTileRow>11</MinTileRow>
     32313                                                <MaxTileRow>11</MaxTileRow>
     32314                                                <MinTileCol>16</MinTileCol>
     32315                                                <MaxTileCol>16</MaxTileCol>
     32316                                        </TileMatrixLimits>
     32317                                        <TileMatrixLimits>
     32318                                                <TileMatrix>6</TileMatrix>
     32319                                                <MinTileRow>23</MinTileRow>
     32320                                                <MaxTileRow>23</MaxTileRow>
     32321                                                <MinTileCol>32</MinTileCol>
     32322                                                <MaxTileCol>32</MaxTileCol>
     32323                                        </TileMatrixLimits>
     32324                                        <TileMatrixLimits>
     32325                                                <TileMatrix>7</TileMatrix>
     32326                                                <MinTileRow>46</MinTileRow>
     32327                                                <MaxTileRow>46</MaxTileRow>
     32328                                                <MinTileCol>65</MinTileCol>
     32329                                                <MaxTileCol>65</MaxTileCol>
     32330                                        </TileMatrixLimits>
     32331                                        <TileMatrixLimits>
     32332                                                <TileMatrix>8</TileMatrix>
     32333                                                <MinTileRow>93</MinTileRow>
     32334                                                <MaxTileRow>93</MaxTileRow>
     32335                                                <MinTileCol>130</MinTileCol>
     32336                                                <MaxTileCol>131</MaxTileCol>
     32337                                        </TileMatrixLimits>
     32338                                        <TileMatrixLimits>
     32339                                                <TileMatrix>9</TileMatrix>
     32340                                                <MinTileRow>186</MinTileRow>
     32341                                                <MaxTileRow>187</MaxTileRow>
     32342                                                <MinTileCol>260</MinTileCol>
     32343                                                <MaxTileCol>262</MaxTileCol>
     32344                                        </TileMatrixLimits>
     32345                                </TileMatrixSetLimits>
     32346                        </TileMatrixSetLink>
     32347                </Layer>
     32348                <Layer>
     32349                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32350                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32351                        <ows:Keywords>
     32352                                <ows:Keyword>Photographies</ows:Keyword>
     32353                        </ows:Keywords>
     32354                        <ows:WGS84BoundingBox>
     32355                                <ows:LowerCorner>2.87801 42.5127</ows:LowerCorner>
     32356                                <ows:UpperCorner>3.14639 42.7465</ows:UpperCorner>
     32357                        </ows:WGS84BoundingBox>
     32358                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38770824</ows:Identifier>
     32359                        <Style isDefault="true">
     32360                                <ows:Title>Données Brutes</ows:Title>
     32361                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32362                                <ows:Keywords>
     32363                                        <ows:Keyword>Défaut</ows:Keyword>
     32364                                </ows:Keywords>
     32365                                <ows:Identifier>normal</ows:Identifier>
     32366                                <LegendURL format="image/jpeg" height="200"
     32367                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32368                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32369                        </Style>
     32370                        <Format>image/jpeg</Format>
     32371                        <TileMatrixSetLink>
     32372                                <TileMatrixSet>PM</TileMatrixSet>
     32373                                <TileMatrixSetLimits>
     32374                                        <TileMatrixLimits>
     32375                                                <TileMatrix>0</TileMatrix>
     32376                                                <MinTileRow>0</MinTileRow>
     32377                                                <MaxTileRow>0</MaxTileRow>
     32378                                                <MinTileCol>0</MinTileCol>
     32379                                                <MaxTileCol>0</MaxTileCol>
     32380                                        </TileMatrixLimits>
     32381                                        <TileMatrixLimits>
     32382                                                <TileMatrix>1</TileMatrix>
     32383                                                <MinTileRow>0</MinTileRow>
     32384                                                <MaxTileRow>0</MaxTileRow>
     32385                                                <MinTileCol>1</MinTileCol>
     32386                                                <MaxTileCol>1</MaxTileCol>
     32387                                        </TileMatrixLimits>
     32388                                        <TileMatrixLimits>
     32389                                                <TileMatrix>10</TileMatrix>
     32390                                                <MinTileRow>377</MinTileRow>
     32391                                                <MaxTileRow>378</MaxTileRow>
     32392                                                <MinTileCol>520</MinTileCol>
     32393                                                <MaxTileCol>520</MaxTileCol>
     32394                                        </TileMatrixLimits>
     32395                                        <TileMatrixLimits>
     32396                                                <TileMatrix>11</TileMatrix>
     32397                                                <MinTileRow>754</MinTileRow>
     32398                                                <MaxTileRow>756</MaxTileRow>
     32399                                                <MinTileCol>1040</MinTileCol>
     32400                                                <MaxTileCol>1041</MaxTileCol>
     32401                                        </TileMatrixLimits>
     32402                                        <TileMatrixLimits>
     32403                                                <TileMatrix>12</TileMatrix>
     32404                                                <MinTileRow>1509</MinTileRow>
     32405                                                <MaxTileRow>1512</MaxTileRow>
     32406                                                <MinTileCol>2080</MinTileCol>
     32407                                                <MaxTileCol>2083</MaxTileCol>
     32408                                        </TileMatrixLimits>
     32409                                        <TileMatrixLimits>
     32410                                                <TileMatrix>13</TileMatrix>
     32411                                                <MinTileRow>3018</MinTileRow>
     32412                                                <MaxTileRow>3025</MaxTileRow>
     32413                                                <MinTileCol>4161</MinTileCol>
     32414                                                <MaxTileCol>4167</MaxTileCol>
     32415                                        </TileMatrixLimits>
     32416                                        <TileMatrixLimits>
     32417                                                <TileMatrix>14</TileMatrix>
     32418                                                <MinTileRow>6036</MinTileRow>
     32419                                                <MaxTileRow>6050</MaxTileRow>
     32420                                                <MinTileCol>8322</MinTileCol>
     32421                                                <MaxTileCol>8335</MaxTileCol>
     32422                                        </TileMatrixLimits>
     32423                                        <TileMatrixLimits>
     32424                                                <TileMatrix>15</TileMatrix>
     32425                                                <MinTileRow>12072</MinTileRow>
     32426                                                <MaxTileRow>12100</MaxTileRow>
     32427                                                <MinTileCol>16645</MinTileCol>
     32428                                                <MaxTileCol>16670</MaxTileCol>
     32429                                        </TileMatrixLimits>
     32430                                        <TileMatrixLimits>
     32431                                                <TileMatrix>16</TileMatrix>
     32432                                                <MinTileRow>24144</MinTileRow>
     32433                                                <MaxTileRow>24201</MaxTileRow>
     32434                                                <MinTileCol>33291</MinTileCol>
     32435                                                <MaxTileCol>33340</MaxTileCol>
     32436                                        </TileMatrixLimits>
     32437                                        <TileMatrixLimits>
     32438                                                <TileMatrix>17</TileMatrix>
     32439                                                <MinTileRow>48288</MinTileRow>
     32440                                                <MaxTileRow>48403</MaxTileRow>
     32441                                                <MinTileCol>66583</MinTileCol>
     32442                                                <MaxTileCol>66681</MaxTileCol>
     32443                                        </TileMatrixLimits>
     32444                                        <TileMatrixLimits>
     32445                                                <TileMatrix>18</TileMatrix>
     32446                                                <MinTileRow>96576</MinTileRow>
     32447                                                <MaxTileRow>96807</MaxTileRow>
     32448                                                <MinTileCol>133167</MinTileCol>
     32449                                                <MaxTileCol>133363</MaxTileCol>
     32450                                        </TileMatrixLimits>
     32451                                        <TileMatrixLimits>
     32452                                                <TileMatrix>2</TileMatrix>
     32453                                                <MinTileRow>1</MinTileRow>
     32454                                                <MaxTileRow>1</MaxTileRow>
     32455                                                <MinTileCol>2</MinTileCol>
     32456                                                <MaxTileCol>2</MaxTileCol>
     32457                                        </TileMatrixLimits>
     32458                                        <TileMatrixLimits>
     32459                                                <TileMatrix>3</TileMatrix>
     32460                                                <MinTileRow>2</MinTileRow>
     32461                                                <MaxTileRow>2</MaxTileRow>
     32462                                                <MinTileCol>4</MinTileCol>
     32463                                                <MaxTileCol>4</MaxTileCol>
     32464                                        </TileMatrixLimits>
     32465                                        <TileMatrixLimits>
     32466                                                <TileMatrix>4</TileMatrix>
     32467                                                <MinTileRow>5</MinTileRow>
     32468                                                <MaxTileRow>5</MaxTileRow>
     32469                                                <MinTileCol>8</MinTileCol>
     32470                                                <MaxTileCol>8</MaxTileCol>
     32471                                        </TileMatrixLimits>
     32472                                        <TileMatrixLimits>
     32473                                                <TileMatrix>5</TileMatrix>
     32474                                                <MinTileRow>11</MinTileRow>
     32475                                                <MaxTileRow>11</MaxTileRow>
     32476                                                <MinTileCol>16</MinTileCol>
     32477                                                <MaxTileCol>16</MaxTileCol>
     32478                                        </TileMatrixLimits>
     32479                                        <TileMatrixLimits>
     32480                                                <TileMatrix>6</TileMatrix>
     32481                                                <MinTileRow>23</MinTileRow>
     32482                                                <MaxTileRow>23</MaxTileRow>
     32483                                                <MinTileCol>32</MinTileCol>
     32484                                                <MaxTileCol>32</MaxTileCol>
     32485                                        </TileMatrixLimits>
     32486                                        <TileMatrixLimits>
     32487                                                <TileMatrix>7</TileMatrix>
     32488                                                <MinTileRow>47</MinTileRow>
     32489                                                <MaxTileRow>47</MaxTileRow>
     32490                                                <MinTileCol>65</MinTileCol>
     32491                                                <MaxTileCol>65</MaxTileCol>
     32492                                        </TileMatrixLimits>
     32493                                        <TileMatrixLimits>
     32494                                                <TileMatrix>8</TileMatrix>
     32495                                                <MinTileRow>94</MinTileRow>
     32496                                                <MaxTileRow>94</MaxTileRow>
     32497                                                <MinTileCol>130</MinTileCol>
     32498                                                <MaxTileCol>130</MaxTileCol>
     32499                                        </TileMatrixLimits>
     32500                                        <TileMatrixLimits>
     32501                                                <TileMatrix>9</TileMatrix>
     32502                                                <MinTileRow>188</MinTileRow>
     32503                                                <MaxTileRow>189</MaxTileRow>
     32504                                                <MinTileCol>260</MinTileCol>
     32505                                                <MaxTileCol>260</MaxTileCol>
     32506                                        </TileMatrixLimits>
     32507                                </TileMatrixSetLimits>
     32508                        </TileMatrixSetLink>
     32509                </Layer>
     32510                <Layer>
     32511                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32512                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32513                        <ows:Keywords>
     32514                                <ows:Keyword>Photographies</ows:Keyword>
     32515                        </ows:Keywords>
     32516                        <ows:WGS84BoundingBox>
     32517                                <ows:LowerCorner>3.1598 43.1864</ows:LowerCorner>
     32518                                <ows:UpperCorner>3.41931 43.376</ows:UpperCorner>
     32519                        </ows:WGS84BoundingBox>
     32520                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-02-22-38785074</ows:Identifier>
     32521                        <Style isDefault="true">
     32522                                <ows:Title>Données Brutes</ows:Title>
     32523                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32524                                <ows:Keywords>
     32525                                        <ows:Keyword>Défaut</ows:Keyword>
     32526                                </ows:Keywords>
     32527                                <ows:Identifier>normal</ows:Identifier>
     32528                                <LegendURL format="image/jpeg" height="200"
     32529                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32530                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32531                        </Style>
     32532                        <Format>image/jpeg</Format>
     32533                        <TileMatrixSetLink>
     32534                                <TileMatrixSet>PM</TileMatrixSet>
     32535                                <TileMatrixSetLimits>
     32536                                        <TileMatrixLimits>
     32537                                                <TileMatrix>0</TileMatrix>
     32538                                                <MinTileRow>0</MinTileRow>
     32539                                                <MaxTileRow>0</MaxTileRow>
     32540                                                <MinTileCol>0</MinTileCol>
     32541                                                <MaxTileCol>0</MaxTileCol>
     32542                                        </TileMatrixLimits>
     32543                                        <TileMatrixLimits>
     32544                                                <TileMatrix>1</TileMatrix>
     32545                                                <MinTileRow>0</MinTileRow>
     32546                                                <MaxTileRow>0</MaxTileRow>
     32547                                                <MinTileCol>1</MinTileCol>
     32548                                                <MaxTileCol>1</MaxTileCol>
     32549                                        </TileMatrixLimits>
     32550                                        <TileMatrixLimits>
     32551                                                <TileMatrix>10</TileMatrix>
     32552                                                <MinTileRow>374</MinTileRow>
     32553                                                <MaxTileRow>375</MaxTileRow>
     32554                                                <MinTileCol>520</MinTileCol>
     32555                                                <MaxTileCol>521</MaxTileCol>
     32556                                        </TileMatrixLimits>
     32557                                        <TileMatrixLimits>
     32558                                                <TileMatrix>11</TileMatrix>
     32559                                                <MinTileRow>749</MinTileRow>
     32560                                                <MaxTileRow>751</MaxTileRow>
     32561                                                <MinTileCol>1041</MinTileCol>
     32562                                                <MaxTileCol>1043</MaxTileCol>
     32563                                        </TileMatrixLimits>
     32564                                        <TileMatrixLimits>
     32565                                                <TileMatrix>12</TileMatrix>
     32566                                                <MinTileRow>1499</MinTileRow>
     32567                                                <MaxTileRow>1502</MaxTileRow>
     32568                                                <MinTileCol>2083</MinTileCol>
     32569                                                <MaxTileCol>2086</MaxTileCol>
     32570                                        </TileMatrixLimits>
     32571                                        <TileMatrixLimits>
     32572                                                <TileMatrix>13</TileMatrix>
     32573                                                <MinTileRow>2998</MinTileRow>
     32574                                                <MaxTileRow>3004</MaxTileRow>
     32575                                                <MinTileCol>4167</MinTileCol>
     32576                                                <MaxTileCol>4173</MaxTileCol>
     32577                                        </TileMatrixLimits>
     32578                                        <TileMatrixLimits>
     32579                                                <TileMatrix>14</TileMatrix>
     32580                                                <MinTileRow>5996</MinTileRow>
     32581                                                <MaxTileRow>6008</MaxTileRow>
     32582                                                <MinTileCol>8335</MinTileCol>
     32583                                                <MaxTileCol>8347</MaxTileCol>
     32584                                        </TileMatrixLimits>
     32585                                        <TileMatrixLimits>
     32586                                                <TileMatrix>15</TileMatrix>
     32587                                                <MinTileRow>11993</MinTileRow>
     32588                                                <MaxTileRow>12017</MaxTileRow>
     32589                                                <MinTileCol>16671</MinTileCol>
     32590                                                <MaxTileCol>16695</MaxTileCol>
     32591                                        </TileMatrixLimits>
     32592                                        <TileMatrixLimits>
     32593                                                <TileMatrix>16</TileMatrix>
     32594                                                <MinTileRow>23987</MinTileRow>
     32595                                                <MaxTileRow>24034</MaxTileRow>
     32596                                                <MinTileCol>33343</MinTileCol>
     32597                                                <MaxTileCol>33390</MaxTileCol>
     32598                                        </TileMatrixLimits>
     32599                                        <TileMatrixLimits>
     32600                                                <TileMatrix>17</TileMatrix>
     32601                                                <MinTileRow>47974</MinTileRow>
     32602                                                <MaxTileRow>48069</MaxTileRow>
     32603                                                <MinTileCol>66686</MinTileCol>
     32604                                                <MaxTileCol>66781</MaxTileCol>
     32605                                        </TileMatrixLimits>
     32606                                        <TileMatrixLimits>
     32607                                                <TileMatrix>18</TileMatrix>
     32608                                                <MinTileRow>95949</MinTileRow>
     32609                                                <MaxTileRow>96138</MaxTileRow>
     32610                                                <MinTileCol>133372</MinTileCol>
     32611                                                <MaxTileCol>133562</MaxTileCol>
     32612                                        </TileMatrixLimits>
     32613                                        <TileMatrixLimits>
     32614                                                <TileMatrix>2</TileMatrix>
     32615                                                <MinTileRow>1</MinTileRow>
     32616                                                <MaxTileRow>1</MaxTileRow>
     32617                                                <MinTileCol>2</MinTileCol>
     32618                                                <MaxTileCol>2</MaxTileCol>
     32619                                        </TileMatrixLimits>
     32620                                        <TileMatrixLimits>
     32621                                                <TileMatrix>3</TileMatrix>
     32622                                                <MinTileRow>2</MinTileRow>
     32623                                                <MaxTileRow>2</MaxTileRow>
     32624                                                <MinTileCol>4</MinTileCol>
     32625                                                <MaxTileCol>4</MaxTileCol>
     32626                                        </TileMatrixLimits>
     32627                                        <TileMatrixLimits>
     32628                                                <TileMatrix>4</TileMatrix>
     32629                                                <MinTileRow>5</MinTileRow>
     32630                                                <MaxTileRow>5</MaxTileRow>
     32631                                                <MinTileCol>8</MinTileCol>
     32632                                                <MaxTileCol>8</MaxTileCol>
     32633                                        </TileMatrixLimits>
     32634                                        <TileMatrixLimits>
     32635                                                <TileMatrix>5</TileMatrix>
     32636                                                <MinTileRow>11</MinTileRow>
     32637                                                <MaxTileRow>11</MaxTileRow>
     32638                                                <MinTileCol>16</MinTileCol>
     32639                                                <MaxTileCol>16</MaxTileCol>
     32640                                        </TileMatrixLimits>
     32641                                        <TileMatrixLimits>
     32642                                                <TileMatrix>6</TileMatrix>
     32643                                                <MinTileRow>23</MinTileRow>
     32644                                                <MaxTileRow>23</MaxTileRow>
     32645                                                <MinTileCol>32</MinTileCol>
     32646                                                <MaxTileCol>32</MaxTileCol>
     32647                                        </TileMatrixLimits>
     32648                                        <TileMatrixLimits>
     32649                                                <TileMatrix>7</TileMatrix>
     32650                                                <MinTileRow>46</MinTileRow>
     32651                                                <MaxTileRow>46</MaxTileRow>
     32652                                                <MinTileCol>65</MinTileCol>
     32653                                                <MaxTileCol>65</MaxTileCol>
     32654                                        </TileMatrixLimits>
     32655                                        <TileMatrixLimits>
     32656                                                <TileMatrix>8</TileMatrix>
     32657                                                <MinTileRow>93</MinTileRow>
     32658                                                <MaxTileRow>93</MaxTileRow>
     32659                                                <MinTileCol>130</MinTileCol>
     32660                                                <MaxTileCol>130</MaxTileCol>
     32661                                        </TileMatrixLimits>
     32662                                        <TileMatrixLimits>
     32663                                                <TileMatrix>9</TileMatrix>
     32664                                                <MinTileRow>187</MinTileRow>
     32665                                                <MaxTileRow>187</MaxTileRow>
     32666                                                <MinTileCol>260</MinTileCol>
     32667                                                <MaxTileCol>260</MaxTileCol>
     32668                                        </TileMatrixLimits>
     32669                                </TileMatrixSetLimits>
     32670                        </TileMatrixSetLink>
     32671                </Layer>
     32672                <Layer>
     32673                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32674                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32675                        <ows:Keywords>
     32676                                <ows:Keyword>Photographies</ows:Keyword>
     32677                        </ows:Keywords>
     32678                        <ows:WGS84BoundingBox>
     32679                                <ows:LowerCorner>2.88921 42.7105</ows:LowerCorner>
     32680                                <ows:UpperCorner>3.16003 43.2681</ows:UpperCorner>
     32681                        </ows:WGS84BoundingBox>
     32682                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-06-39218324</ows:Identifier>
     32683                        <Style isDefault="true">
     32684                                <ows:Title>Données Brutes</ows:Title>
     32685                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32686                                <ows:Keywords>
     32687                                        <ows:Keyword>Défaut</ows:Keyword>
     32688                                </ows:Keywords>
     32689                                <ows:Identifier>normal</ows:Identifier>
     32690                                <LegendURL format="image/jpeg" height="200"
     32691                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32692                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32693                        </Style>
     32694                        <Format>image/jpeg</Format>
     32695                        <TileMatrixSetLink>
     32696                                <TileMatrixSet>PM</TileMatrixSet>
     32697                                <TileMatrixSetLimits>
     32698                                        <TileMatrixLimits>
     32699                                                <TileMatrix>0</TileMatrix>
     32700                                                <MinTileRow>0</MinTileRow>
     32701                                                <MaxTileRow>0</MaxTileRow>
     32702                                                <MinTileCol>0</MinTileCol>
     32703                                                <MaxTileCol>0</MaxTileCol>
     32704                                        </TileMatrixLimits>
     32705                                        <TileMatrixLimits>
     32706                                                <TileMatrix>1</TileMatrix>
     32707                                                <MinTileRow>0</MinTileRow>
     32708                                                <MaxTileRow>0</MaxTileRow>
     32709                                                <MinTileCol>1</MinTileCol>
     32710                                                <MaxTileCol>1</MaxTileCol>
     32711                                        </TileMatrixLimits>
     32712                                        <TileMatrixLimits>
     32713                                                <TileMatrix>10</TileMatrix>
     32714                                                <MinTileRow>375</MinTileRow>
     32715                                                <MaxTileRow>377</MaxTileRow>
     32716                                                <MinTileCol>520</MinTileCol>
     32717                                                <MaxTileCol>520</MaxTileCol>
     32718                                        </TileMatrixLimits>
     32719                                        <TileMatrixLimits>
     32720                                                <TileMatrix>11</TileMatrix>
     32721                                                <MinTileRow>750</MinTileRow>
     32722                                                <MaxTileRow>754</MaxTileRow>
     32723                                                <MinTileCol>1040</MinTileCol>
     32724                                                <MaxTileCol>1041</MaxTileCol>
     32725                                        </TileMatrixLimits>
     32726                                        <TileMatrixLimits>
     32727                                                <TileMatrix>12</TileMatrix>
     32728                                                <MinTileRow>1500</MinTileRow>
     32729                                                <MaxTileRow>1509</MaxTileRow>
     32730                                                <MinTileCol>2080</MinTileCol>
     32731                                                <MaxTileCol>2083</MaxTileCol>
     32732                                        </TileMatrixLimits>
     32733                                        <TileMatrixLimits>
     32734                                                <TileMatrix>13</TileMatrix>
     32735                                                <MinTileRow>3001</MinTileRow>
     32736                                                <MaxTileRow>3019</MaxTileRow>
     32737                                                <MinTileCol>4161</MinTileCol>
     32738                                                <MaxTileCol>4167</MaxTileCol>
     32739                                        </TileMatrixLimits>
     32740                                        <TileMatrixLimits>
     32741                                                <TileMatrix>14</TileMatrix>
     32742                                                <MinTileRow>6003</MinTileRow>
     32743                                                <MaxTileRow>6038</MaxTileRow>
     32744                                                <MinTileCol>8323</MinTileCol>
     32745                                                <MaxTileCol>8335</MaxTileCol>
     32746                                        </TileMatrixLimits>
     32747                                        <TileMatrixLimits>
     32748                                                <TileMatrix>15</TileMatrix>
     32749                                                <MinTileRow>12007</MinTileRow>
     32750                                                <MaxTileRow>12076</MaxTileRow>
     32751                                                <MinTileCol>16646</MinTileCol>
     32752                                                <MaxTileCol>16671</MaxTileCol>
     32753                                        </TileMatrixLimits>
     32754                                        <TileMatrixLimits>
     32755                                                <TileMatrix>16</TileMatrix>
     32756                                                <MinTileRow>24014</MinTileRow>
     32757                                                <MaxTileRow>24153</MaxTileRow>
     32758                                                <MinTileCol>33293</MinTileCol>
     32759                                                <MaxTileCol>33343</MaxTileCol>
     32760                                        </TileMatrixLimits>
     32761                                        <TileMatrixLimits>
     32762                                                <TileMatrix>17</TileMatrix>
     32763                                                <MinTileRow>48028</MinTileRow>
     32764                                                <MaxTileRow>48306</MaxTileRow>
     32765                                                <MinTileCol>66587</MinTileCol>
     32766                                                <MaxTileCol>66686</MaxTileCol>
     32767                                        </TileMatrixLimits>
     32768                                        <TileMatrixLimits>
     32769                                                <TileMatrix>18</TileMatrix>
     32770                                                <MinTileRow>96057</MinTileRow>
     32771                                                <MaxTileRow>96612</MaxTileRow>
     32772                                                <MinTileCol>133175</MinTileCol>
     32773                                                <MaxTileCol>133373</MaxTileCol>
     32774                                        </TileMatrixLimits>
     32775                                        <TileMatrixLimits>
     32776                                                <TileMatrix>2</TileMatrix>
     32777                                                <MinTileRow>1</MinTileRow>
     32778                                                <MaxTileRow>1</MaxTileRow>
     32779                                                <MinTileCol>2</MinTileCol>
     32780                                                <MaxTileCol>2</MaxTileCol>
     32781                                        </TileMatrixLimits>
     32782                                        <TileMatrixLimits>
     32783                                                <TileMatrix>3</TileMatrix>
     32784                                                <MinTileRow>2</MinTileRow>
     32785                                                <MaxTileRow>2</MaxTileRow>
     32786                                                <MinTileCol>4</MinTileCol>
     32787                                                <MaxTileCol>4</MaxTileCol>
     32788                                        </TileMatrixLimits>
     32789                                        <TileMatrixLimits>
     32790                                                <TileMatrix>4</TileMatrix>
     32791                                                <MinTileRow>5</MinTileRow>
     32792                                                <MaxTileRow>5</MaxTileRow>
     32793                                                <MinTileCol>8</MinTileCol>
     32794                                                <MaxTileCol>8</MaxTileCol>
     32795                                        </TileMatrixLimits>
     32796                                        <TileMatrixLimits>
     32797                                                <TileMatrix>5</TileMatrix>
     32798                                                <MinTileRow>11</MinTileRow>
     32799                                                <MaxTileRow>11</MaxTileRow>
     32800                                                <MinTileCol>16</MinTileCol>
     32801                                                <MaxTileCol>16</MaxTileCol>
     32802                                        </TileMatrixLimits>
     32803                                        <TileMatrixLimits>
     32804                                                <TileMatrix>6</TileMatrix>
     32805                                                <MinTileRow>23</MinTileRow>
     32806                                                <MaxTileRow>23</MaxTileRow>
     32807                                                <MinTileCol>32</MinTileCol>
     32808                                                <MaxTileCol>32</MaxTileCol>
     32809                                        </TileMatrixLimits>
     32810                                        <TileMatrixLimits>
     32811                                                <TileMatrix>7</TileMatrix>
     32812                                                <MinTileRow>46</MinTileRow>
     32813                                                <MaxTileRow>47</MaxTileRow>
     32814                                                <MinTileCol>65</MinTileCol>
     32815                                                <MaxTileCol>65</MaxTileCol>
     32816                                        </TileMatrixLimits>
     32817                                        <TileMatrixLimits>
     32818                                                <TileMatrix>8</TileMatrix>
     32819                                                <MinTileRow>93</MinTileRow>
     32820                                                <MaxTileRow>94</MaxTileRow>
     32821                                                <MinTileCol>130</MinTileCol>
     32822                                                <MaxTileCol>130</MaxTileCol>
     32823                                        </TileMatrixLimits>
     32824                                        <TileMatrixLimits>
     32825                                                <TileMatrix>9</TileMatrix>
     32826                                                <MinTileRow>187</MinTileRow>
     32827                                                <MaxTileRow>188</MaxTileRow>
     32828                                                <MinTileCol>260</MinTileCol>
     32829                                                <MaxTileCol>260</MaxTileCol>
     32830                                        </TileMatrixLimits>
     32831                                </TileMatrixSetLimits>
     32832                        </TileMatrixSetLink>
     32833                </Layer>
     32834                <Layer>
     32835                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32836                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32837                        <ows:Keywords>
     32838                                <ows:Keyword>Photographies</ows:Keyword>
     32839                        </ows:Keywords>
     32840                        <ows:WGS84BoundingBox>
     32841                                <ows:LowerCorner>3.75275 43.4073</ows:LowerCorner>
     32842                                <ows:UpperCorner>4.02823 43.6344</ows:UpperCorner>
     32843                        </ows:WGS84BoundingBox>
     32844                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-07-38685319</ows:Identifier>
     32845                        <Style isDefault="true">
     32846                                <ows:Title>Données Brutes</ows:Title>
     32847                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     32848                                <ows:Keywords>
     32849                                        <ows:Keyword>Défaut</ows:Keyword>
     32850                                </ows:Keywords>
     32851                                <ows:Identifier>normal</ows:Identifier>
     32852                                <LegendURL format="image/jpeg" height="200"
     32853                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     32854                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     32855                        </Style>
     32856                        <Format>image/jpeg</Format>
     32857                        <TileMatrixSetLink>
     32858                                <TileMatrixSet>PM</TileMatrixSet>
     32859                                <TileMatrixSetLimits>
     32860                                        <TileMatrixLimits>
     32861                                                <TileMatrix>0</TileMatrix>
     32862                                                <MinTileRow>0</MinTileRow>
     32863                                                <MaxTileRow>0</MaxTileRow>
     32864                                                <MinTileCol>0</MinTileCol>
     32865                                                <MaxTileCol>0</MaxTileCol>
     32866                                        </TileMatrixLimits>
     32867                                        <TileMatrixLimits>
     32868                                                <TileMatrix>1</TileMatrix>
     32869                                                <MinTileRow>0</MinTileRow>
     32870                                                <MaxTileRow>0</MaxTileRow>
     32871                                                <MinTileCol>1</MinTileCol>
     32872                                                <MaxTileCol>1</MaxTileCol>
     32873                                        </TileMatrixLimits>
     32874                                        <TileMatrixLimits>
     32875                                                <TileMatrix>10</TileMatrix>
     32876                                                <MinTileRow>373</MinTileRow>
     32877                                                <MaxTileRow>374</MaxTileRow>
     32878                                                <MinTileCol>522</MinTileCol>
     32879                                                <MaxTileCol>523</MaxTileCol>
     32880                                        </TileMatrixLimits>
     32881                                        <TileMatrixLimits>
     32882                                                <TileMatrix>11</TileMatrix>
     32883                                                <MinTileRow>747</MinTileRow>
     32884                                                <MaxTileRow>749</MaxTileRow>
     32885                                                <MinTileCol>1045</MinTileCol>
     32886                                                <MaxTileCol>1046</MaxTileCol>
     32887                                        </TileMatrixLimits>
     32888                                        <TileMatrixLimits>
     32889                                                <TileMatrix>12</TileMatrix>
     32890                                                <MinTileRow>1495</MinTileRow>
     32891                                                <MaxTileRow>1498</MaxTileRow>
     32892                                                <MinTileCol>2090</MinTileCol>
     32893                                                <MaxTileCol>2093</MaxTileCol>
     32894                                        </TileMatrixLimits>
     32895                                        <TileMatrixLimits>
     32896                                                <TileMatrix>13</TileMatrix>
     32897                                                <MinTileRow>2990</MinTileRow>
     32898                                                <MaxTileRow>2997</MaxTileRow>
     32899                                                <MinTileCol>4181</MinTileCol>
     32900                                                <MaxTileCol>4187</MaxTileCol>
     32901                                        </TileMatrixLimits>
     32902                                        <TileMatrixLimits>
     32903                                                <TileMatrix>14</TileMatrix>
     32904                                                <MinTileRow>5980</MinTileRow>
     32905                                                <MaxTileRow>5994</MaxTileRow>
     32906                                                <MinTileCol>8362</MinTileCol>
     32907                                                <MaxTileCol>8375</MaxTileCol>
     32908                                        </TileMatrixLimits>
     32909                                        <TileMatrixLimits>
     32910                                                <TileMatrix>15</TileMatrix>
     32911                                                <MinTileRow>11961</MinTileRow>
     32912                                                <MaxTileRow>11989</MaxTileRow>
     32913                                                <MinTileCol>16725</MinTileCol>
     32914                                                <MaxTileCol>16750</MaxTileCol>
     32915                                        </TileMatrixLimits>
     32916                                        <TileMatrixLimits>
     32917                                                <TileMatrix>16</TileMatrix>
     32918                                                <MinTileRow>23922</MinTileRow>
     32919                                                <MaxTileRow>23979</MaxTileRow>
     32920                                                <MinTileCol>33451</MinTileCol>
     32921                                                <MaxTileCol>33501</MaxTileCol>
     32922                                        </TileMatrixLimits>
     32923                                        <TileMatrixLimits>
     32924                                                <TileMatrix>17</TileMatrix>
     32925                                                <MinTileRow>47845</MinTileRow>
     32926                                                <MaxTileRow>47958</MaxTileRow>
     32927                                                <MinTileCol>66902</MinTileCol>
     32928                                                <MaxTileCol>67002</MaxTileCol>
     32929                                        </TileMatrixLimits>
     32930                                        <TileMatrixLimits>
     32931                                                <TileMatrix>18</TileMatrix>
     32932                                                <MinTileRow>95690</MinTileRow>
     32933                                                <MaxTileRow>95916</MaxTileRow>
     32934                                                <MinTileCol>133804</MinTileCol>
     32935                                                <MaxTileCol>134004</MaxTileCol>
     32936                                        </TileMatrixLimits>
     32937                                        <TileMatrixLimits>
     32938                                                <TileMatrix>2</TileMatrix>
     32939                                                <MinTileRow>1</MinTileRow>
     32940                                                <MaxTileRow>1</MaxTileRow>
     32941                                                <MinTileCol>2</MinTileCol>
     32942                                                <MaxTileCol>2</MaxTileCol>
     32943                                        </TileMatrixLimits>
     32944                                        <TileMatrixLimits>
     32945                                                <TileMatrix>3</TileMatrix>
     32946                                                <MinTileRow>2</MinTileRow>
     32947                                                <MaxTileRow>2</MaxTileRow>
     32948                                                <MinTileCol>4</MinTileCol>
     32949                                                <MaxTileCol>4</MaxTileCol>
     32950                                        </TileMatrixLimits>
     32951                                        <TileMatrixLimits>
     32952                                                <TileMatrix>4</TileMatrix>
     32953                                                <MinTileRow>5</MinTileRow>
     32954                                                <MaxTileRow>5</MaxTileRow>
     32955                                                <MinTileCol>8</MinTileCol>
     32956                                                <MaxTileCol>8</MaxTileCol>
     32957                                        </TileMatrixLimits>
     32958                                        <TileMatrixLimits>
     32959                                                <TileMatrix>5</TileMatrix>
     32960                                                <MinTileRow>11</MinTileRow>
     32961                                                <MaxTileRow>11</MaxTileRow>
     32962                                                <MinTileCol>16</MinTileCol>
     32963                                                <MaxTileCol>16</MaxTileCol>
     32964                                        </TileMatrixLimits>
     32965                                        <TileMatrixLimits>
     32966                                                <TileMatrix>6</TileMatrix>
     32967                                                <MinTileRow>23</MinTileRow>
     32968                                                <MaxTileRow>23</MaxTileRow>
     32969                                                <MinTileCol>32</MinTileCol>
     32970                                                <MaxTileCol>32</MaxTileCol>
     32971                                        </TileMatrixLimits>
     32972                                        <TileMatrixLimits>
     32973                                                <TileMatrix>7</TileMatrix>
     32974                                                <MinTileRow>46</MinTileRow>
     32975                                                <MaxTileRow>46</MaxTileRow>
     32976                                                <MinTileCol>65</MinTileCol>
     32977                                                <MaxTileCol>65</MaxTileCol>
     32978                                        </TileMatrixLimits>
     32979                                        <TileMatrixLimits>
     32980                                                <TileMatrix>8</TileMatrix>
     32981                                                <MinTileRow>93</MinTileRow>
     32982                                                <MaxTileRow>93</MaxTileRow>
     32983                                                <MinTileCol>130</MinTileCol>
     32984                                                <MaxTileCol>130</MaxTileCol>
     32985                                        </TileMatrixLimits>
     32986                                        <TileMatrixLimits>
     32987                                                <TileMatrix>9</TileMatrix>
     32988                                                <MinTileRow>186</MinTileRow>
     32989                                                <MaxTileRow>187</MaxTileRow>
     32990                                                <MinTileCol>261</MinTileCol>
     32991                                                <MaxTileCol>261</MaxTileCol>
     32992                                        </TileMatrixLimits>
     32993                                </TileMatrixSetLimits>
     32994                        </TileMatrixSetLink>
     32995                </Layer>
     32996                <Layer>
     32997                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     32998                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     32999                        <ows:Keywords>
     33000                                <ows:Keyword>Photographies</ows:Keyword>
     33001                        </ows:Keywords>
     33002                        <ows:WGS84BoundingBox>
     33003                                <ows:LowerCorner>3.96432 43.513</ows:LowerCorner>
     33004                                <ows:UpperCorner>4.23899 43.6417</ows:UpperCorner>
     33005                        </ows:WGS84BoundingBox>
     33006                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-07-38712944</ows:Identifier>
     33007                        <Style isDefault="true">
     33008                                <ows:Title>Données Brutes</ows:Title>
     33009                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33010                                <ows:Keywords>
     33011                                        <ows:Keyword>Défaut</ows:Keyword>
     33012                                </ows:Keywords>
     33013                                <ows:Identifier>normal</ows:Identifier>
     33014                                <LegendURL format="image/jpeg" height="200"
     33015                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33016                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33017                        </Style>
     33018                        <Format>image/jpeg</Format>
     33019                        <TileMatrixSetLink>
     33020                                <TileMatrixSet>PM</TileMatrixSet>
     33021                                <TileMatrixSetLimits>
     33022                                        <TileMatrixLimits>
     33023                                                <TileMatrix>0</TileMatrix>
     33024                                                <MinTileRow>0</MinTileRow>
     33025                                                <MaxTileRow>0</MaxTileRow>
     33026                                                <MinTileCol>0</MinTileCol>
     33027                                                <MaxTileCol>0</MaxTileCol>
     33028                                        </TileMatrixLimits>
     33029                                        <TileMatrixLimits>
     33030                                                <TileMatrix>1</TileMatrix>
     33031                                                <MinTileRow>0</MinTileRow>
     33032                                                <MaxTileRow>0</MaxTileRow>
     33033                                                <MinTileCol>1</MinTileCol>
     33034                                                <MaxTileCol>1</MaxTileCol>
     33035                                        </TileMatrixLimits>
     33036                                        <TileMatrixLimits>
     33037                                                <TileMatrix>10</TileMatrix>
     33038                                                <MinTileRow>373</MinTileRow>
     33039                                                <MaxTileRow>374</MaxTileRow>
     33040                                                <MinTileCol>523</MinTileCol>
     33041                                                <MaxTileCol>524</MaxTileCol>
     33042                                        </TileMatrixLimits>
     33043                                        <TileMatrixLimits>
     33044                                                <TileMatrix>11</TileMatrix>
     33045                                                <MinTileRow>747</MinTileRow>
     33046                                                <MaxTileRow>748</MaxTileRow>
     33047                                                <MinTileCol>1046</MinTileCol>
     33048                                                <MaxTileCol>1048</MaxTileCol>
     33049                                        </TileMatrixLimits>
     33050                                        <TileMatrixLimits>
     33051                                                <TileMatrix>12</TileMatrix>
     33052                                                <MinTileRow>1495</MinTileRow>
     33053                                                <MaxTileRow>1497</MaxTileRow>
     33054                                                <MinTileCol>2093</MinTileCol>
     33055                                                <MaxTileCol>2096</MaxTileCol>
     33056                                        </TileMatrixLimits>
     33057                                        <TileMatrixLimits>
     33058                                                <TileMatrix>13</TileMatrix>
     33059                                                <MinTileRow>2990</MinTileRow>
     33060                                                <MaxTileRow>2994</MaxTileRow>
     33061                                                <MinTileCol>4186</MinTileCol>
     33062                                                <MaxTileCol>4192</MaxTileCol>
     33063                                        </TileMatrixLimits>
     33064                                        <TileMatrixLimits>
     33065                                                <TileMatrix>14</TileMatrix>
     33066                                                <MinTileRow>5980</MinTileRow>
     33067                                                <MaxTileRow>5988</MaxTileRow>
     33068                                                <MinTileCol>8372</MinTileCol>
     33069                                                <MaxTileCol>8384</MaxTileCol>
     33070                                        </TileMatrixLimits>
     33071                                        <TileMatrixLimits>
     33072                                                <TileMatrix>15</TileMatrix>
     33073                                                <MinTileRow>11960</MinTileRow>
     33074                                                <MaxTileRow>11976</MaxTileRow>
     33075                                                <MinTileCol>16744</MinTileCol>
     33076                                                <MaxTileCol>16769</MaxTileCol>
     33077                                        </TileMatrixLimits>
     33078                                        <TileMatrixLimits>
     33079                                                <TileMatrix>16</TileMatrix>
     33080                                                <MinTileRow>23920</MinTileRow>
     33081                                                <MaxTileRow>23952</MaxTileRow>
     33082                                                <MinTileCol>33489</MinTileCol>
     33083                                                <MaxTileCol>33539</MaxTileCol>
     33084                                        </TileMatrixLimits>
     33085                                        <TileMatrixLimits>
     33086                                                <TileMatrix>17</TileMatrix>
     33087                                                <MinTileRow>47841</MinTileRow>
     33088                                                <MaxTileRow>47905</MaxTileRow>
     33089                                                <MinTileCol>66979</MinTileCol>
     33090                                                <MaxTileCol>67078</MaxTileCol>
     33091                                        </TileMatrixLimits>
     33092                                        <TileMatrixLimits>
     33093                                                <TileMatrix>18</TileMatrix>
     33094                                                <MinTileRow>95682</MinTileRow>
     33095                                                <MaxTileRow>95811</MaxTileRow>
     33096                                                <MinTileCol>133958</MinTileCol>
     33097                                                <MaxTileCol>134157</MaxTileCol>
     33098                                        </TileMatrixLimits>
     33099                                        <TileMatrixLimits>
     33100                                                <TileMatrix>2</TileMatrix>
     33101                                                <MinTileRow>1</MinTileRow>
     33102                                                <MaxTileRow>1</MaxTileRow>
     33103                                                <MinTileCol>2</MinTileCol>
     33104                                                <MaxTileCol>2</MaxTileCol>
     33105                                        </TileMatrixLimits>
     33106                                        <TileMatrixLimits>
     33107                                                <TileMatrix>3</TileMatrix>
     33108                                                <MinTileRow>2</MinTileRow>
     33109                                                <MaxTileRow>2</MaxTileRow>
     33110                                                <MinTileCol>4</MinTileCol>
     33111                                                <MaxTileCol>4</MaxTileCol>
     33112                                        </TileMatrixLimits>
     33113                                        <TileMatrixLimits>
     33114                                                <TileMatrix>4</TileMatrix>
     33115                                                <MinTileRow>5</MinTileRow>
     33116                                                <MaxTileRow>5</MaxTileRow>
     33117                                                <MinTileCol>8</MinTileCol>
     33118                                                <MaxTileCol>8</MaxTileCol>
     33119                                        </TileMatrixLimits>
     33120                                        <TileMatrixLimits>
     33121                                                <TileMatrix>5</TileMatrix>
     33122                                                <MinTileRow>11</MinTileRow>
     33123                                                <MaxTileRow>11</MaxTileRow>
     33124                                                <MinTileCol>16</MinTileCol>
     33125                                                <MaxTileCol>16</MaxTileCol>
     33126                                        </TileMatrixLimits>
     33127                                        <TileMatrixLimits>
     33128                                                <TileMatrix>6</TileMatrix>
     33129                                                <MinTileRow>23</MinTileRow>
     33130                                                <MaxTileRow>23</MaxTileRow>
     33131                                                <MinTileCol>32</MinTileCol>
     33132                                                <MaxTileCol>32</MaxTileCol>
     33133                                        </TileMatrixLimits>
     33134                                        <TileMatrixLimits>
     33135                                                <TileMatrix>7</TileMatrix>
     33136                                                <MinTileRow>46</MinTileRow>
     33137                                                <MaxTileRow>46</MaxTileRow>
     33138                                                <MinTileCol>65</MinTileCol>
     33139                                                <MaxTileCol>65</MaxTileCol>
     33140                                        </TileMatrixLimits>
     33141                                        <TileMatrixLimits>
     33142                                                <TileMatrix>8</TileMatrix>
     33143                                                <MinTileRow>93</MinTileRow>
     33144                                                <MaxTileRow>93</MaxTileRow>
     33145                                                <MinTileCol>130</MinTileCol>
     33146                                                <MaxTileCol>131</MaxTileCol>
     33147                                        </TileMatrixLimits>
     33148                                        <TileMatrixLimits>
     33149                                                <TileMatrix>9</TileMatrix>
     33150                                                <MinTileRow>186</MinTileRow>
     33151                                                <MaxTileRow>187</MaxTileRow>
     33152                                                <MinTileCol>261</MinTileCol>
     33153                                                <MaxTileCol>262</MaxTileCol>
     33154                                        </TileMatrixLimits>
     33155                                </TileMatrixSetLimits>
     33156                        </TileMatrixSetLink>
     33157                </Layer>
     33158                <Layer>
     33159                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     33160                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     33161                        <ows:Keywords>
     33162                                <ows:Keyword>Photographies</ows:Keyword>
     33163                        </ows:Keywords>
     33164                        <ows:WGS84BoundingBox>
     33165                                <ows:LowerCorner>3.3198 43.2216</ows:LowerCorner>
     33166                                <ows:UpperCorner>3.59373 43.5466</ows:UpperCorner>
     33167                        </ows:WGS84BoundingBox>
     33168                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-13-38944074</ows:Identifier>
     33169                        <Style isDefault="true">
     33170                                <ows:Title>Données Brutes</ows:Title>
     33171                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33172                                <ows:Keywords>
     33173                                        <ows:Keyword>Défaut</ows:Keyword>
     33174                                </ows:Keywords>
     33175                                <ows:Identifier>normal</ows:Identifier>
     33176                                <LegendURL format="image/jpeg" height="200"
     33177                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33178                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33179                        </Style>
     33180                        <Format>image/jpeg</Format>
     33181                        <TileMatrixSetLink>
     33182                                <TileMatrixSet>PM</TileMatrixSet>
     33183                                <TileMatrixSetLimits>
     33184                                        <TileMatrixLimits>
     33185                                                <TileMatrix>0</TileMatrix>
     33186                                                <MinTileRow>0</MinTileRow>
     33187                                                <MaxTileRow>0</MaxTileRow>
     33188                                                <MinTileCol>0</MinTileCol>
     33189                                                <MaxTileCol>0</MaxTileCol>
     33190                                        </TileMatrixLimits>
     33191                                        <TileMatrixLimits>
     33192                                                <TileMatrix>1</TileMatrix>
     33193                                                <MinTileRow>0</MinTileRow>
     33194                                                <MaxTileRow>0</MaxTileRow>
     33195                                                <MinTileCol>1</MinTileCol>
     33196                                                <MaxTileCol>1</MaxTileCol>
     33197                                        </TileMatrixLimits>
     33198                                        <TileMatrixLimits>
     33199                                                <TileMatrix>10</TileMatrix>
     33200                                                <MinTileRow>374</MinTileRow>
     33201                                                <MaxTileRow>375</MaxTileRow>
     33202                                                <MinTileCol>521</MinTileCol>
     33203                                                <MaxTileCol>522</MaxTileCol>
     33204                                        </TileMatrixLimits>
     33205                                        <TileMatrixLimits>
     33206                                                <TileMatrix>11</TileMatrix>
     33207                                                <MinTileRow>748</MinTileRow>
     33208                                                <MaxTileRow>750</MaxTileRow>
     33209                                                <MinTileCol>1042</MinTileCol>
     33210                                                <MaxTileCol>1044</MaxTileCol>
     33211                                        </TileMatrixLimits>
     33212                                        <TileMatrixLimits>
     33213                                                <TileMatrix>12</TileMatrix>
     33214                                                <MinTileRow>1496</MinTileRow>
     33215                                                <MaxTileRow>1501</MaxTileRow>
     33216                                                <MinTileCol>2085</MinTileCol>
     33217                                                <MaxTileCol>2088</MaxTileCol>
     33218                                        </TileMatrixLimits>
     33219                                        <TileMatrixLimits>
     33220                                                <TileMatrix>13</TileMatrix>
     33221                                                <MinTileRow>2993</MinTileRow>
     33222                                                <MaxTileRow>3003</MaxTileRow>
     33223                                                <MinTileCol>4171</MinTileCol>
     33224                                                <MaxTileCol>4177</MaxTileCol>
     33225                                        </TileMatrixLimits>
     33226                                        <TileMatrixLimits>
     33227                                                <TileMatrix>14</TileMatrix>
     33228                                                <MinTileRow>5986</MinTileRow>
     33229                                                <MaxTileRow>6006</MaxTileRow>
     33230                                                <MinTileCol>8343</MinTileCol>
     33231                                                <MaxTileCol>8355</MaxTileCol>
     33232                                        </TileMatrixLimits>
     33233                                        <TileMatrixLimits>
     33234                                                <TileMatrix>15</TileMatrix>
     33235                                                <MinTileRow>11972</MinTileRow>
     33236                                                <MaxTileRow>12012</MaxTileRow>
     33237                                                <MinTileCol>16686</MinTileCol>
     33238                                                <MaxTileCol>16711</MaxTileCol>
     33239                                        </TileMatrixLimits>
     33240                                        <TileMatrixLimits>
     33241                                                <TileMatrix>16</TileMatrix>
     33242                                                <MinTileRow>23944</MinTileRow>
     33243                                                <MaxTileRow>24025</MaxTileRow>
     33244                                                <MinTileCol>33372</MinTileCol>
     33245                                                <MaxTileCol>33422</MaxTileCol>
     33246                                        </TileMatrixLimits>
     33247                                        <TileMatrixLimits>
     33248                                                <TileMatrix>17</TileMatrix>
     33249                                                <MinTileRow>47889</MinTileRow>
     33250                                                <MaxTileRow>48051</MaxTileRow>
     33251                                                <MinTileCol>66744</MinTileCol>
     33252                                                <MaxTileCol>66844</MaxTileCol>
     33253                                        </TileMatrixLimits>
     33254                                        <TileMatrixLimits>
     33255                                                <TileMatrix>18</TileMatrix>
     33256                                                <MinTileRow>95778</MinTileRow>
     33257                                                <MaxTileRow>96102</MaxTileRow>
     33258                                                <MinTileCol>133489</MinTileCol>
     33259                                                <MaxTileCol>133688</MaxTileCol>
     33260                                        </TileMatrixLimits>
     33261                                        <TileMatrixLimits>
     33262                                                <TileMatrix>2</TileMatrix>
     33263                                                <MinTileRow>1</MinTileRow>
     33264                                                <MaxTileRow>1</MaxTileRow>
     33265                                                <MinTileCol>2</MinTileCol>
     33266                                                <MaxTileCol>2</MaxTileCol>
     33267                                        </TileMatrixLimits>
     33268                                        <TileMatrixLimits>
     33269                                                <TileMatrix>3</TileMatrix>
     33270                                                <MinTileRow>2</MinTileRow>
     33271                                                <MaxTileRow>2</MaxTileRow>
     33272                                                <MinTileCol>4</MinTileCol>
     33273                                                <MaxTileCol>4</MaxTileCol>
     33274                                        </TileMatrixLimits>
     33275                                        <TileMatrixLimits>
     33276                                                <TileMatrix>4</TileMatrix>
     33277                                                <MinTileRow>5</MinTileRow>
     33278                                                <MaxTileRow>5</MaxTileRow>
     33279                                                <MinTileCol>8</MinTileCol>
     33280                                                <MaxTileCol>8</MaxTileCol>
     33281                                        </TileMatrixLimits>
     33282                                        <TileMatrixLimits>
     33283                                                <TileMatrix>5</TileMatrix>
     33284                                                <MinTileRow>11</MinTileRow>
     33285                                                <MaxTileRow>11</MaxTileRow>
     33286                                                <MinTileCol>16</MinTileCol>
     33287                                                <MaxTileCol>16</MaxTileCol>
     33288                                        </TileMatrixLimits>
     33289                                        <TileMatrixLimits>
     33290                                                <TileMatrix>6</TileMatrix>
     33291                                                <MinTileRow>23</MinTileRow>
     33292                                                <MaxTileRow>23</MaxTileRow>
     33293                                                <MinTileCol>32</MinTileCol>
     33294                                                <MaxTileCol>32</MaxTileCol>
     33295                                        </TileMatrixLimits>
     33296                                        <TileMatrixLimits>
     33297                                                <TileMatrix>7</TileMatrix>
     33298                                                <MinTileRow>46</MinTileRow>
     33299                                                <MaxTileRow>46</MaxTileRow>
     33300                                                <MinTileCol>65</MinTileCol>
     33301                                                <MaxTileCol>65</MaxTileCol>
     33302                                        </TileMatrixLimits>
     33303                                        <TileMatrixLimits>
     33304                                                <TileMatrix>8</TileMatrix>
     33305                                                <MinTileRow>93</MinTileRow>
     33306                                                <MaxTileRow>93</MaxTileRow>
     33307                                                <MinTileCol>130</MinTileCol>
     33308                                                <MaxTileCol>130</MaxTileCol>
     33309                                        </TileMatrixLimits>
     33310                                        <TileMatrixLimits>
     33311                                                <TileMatrix>9</TileMatrix>
     33312                                                <MinTileRow>187</MinTileRow>
     33313                                                <MaxTileRow>187</MaxTileRow>
     33314                                                <MinTileCol>260</MinTileCol>
     33315                                                <MaxTileCol>261</MaxTileCol>
     33316                                        </TileMatrixLimits>
     33317                                </TileMatrixSetLimits>
     33318                        </TileMatrixSetLink>
     33319                </Layer>
     33320                <Layer>
     33321                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     33322                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     33323                        <ows:Keywords>
     33324                                <ows:Keyword>Photographies</ows:Keyword>
     33325                        </ows:Keywords>
     33326                        <ows:WGS84BoundingBox>
     33327                                <ows:LowerCorner>3.54162 43.2652</ows:LowerCorner>
     33328                                <ows:UpperCorner>3.80425 43.5637</ows:UpperCorner>
     33329                        </ows:WGS84BoundingBox>
     33330                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-13-38968074</ows:Identifier>
     33331                        <Style isDefault="true">
     33332                                <ows:Title>Données Brutes</ows:Title>
     33333                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33334                                <ows:Keywords>
     33335                                        <ows:Keyword>Défaut</ows:Keyword>
     33336                                </ows:Keywords>
     33337                                <ows:Identifier>normal</ows:Identifier>
     33338                                <LegendURL format="image/jpeg" height="200"
     33339                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33340                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33341                        </Style>
     33342                        <Format>image/jpeg</Format>
     33343                        <TileMatrixSetLink>
     33344                                <TileMatrixSet>PM</TileMatrixSet>
     33345                                <TileMatrixSetLimits>
     33346                                        <TileMatrixLimits>
     33347                                                <TileMatrix>0</TileMatrix>
     33348                                                <MinTileRow>0</MinTileRow>
     33349                                                <MaxTileRow>0</MaxTileRow>
     33350                                                <MinTileCol>0</MinTileCol>
     33351                                                <MaxTileCol>0</MaxTileCol>
     33352                                        </TileMatrixLimits>
     33353                                        <TileMatrixLimits>
     33354                                                <TileMatrix>1</TileMatrix>
     33355                                                <MinTileRow>0</MinTileRow>
     33356                                                <MaxTileRow>0</MaxTileRow>
     33357                                                <MinTileCol>1</MinTileCol>
     33358                                                <MaxTileCol>1</MaxTileCol>
     33359                                        </TileMatrixLimits>
     33360                                        <TileMatrixLimits>
     33361                                                <TileMatrix>10</TileMatrix>
     33362                                                <MinTileRow>374</MinTileRow>
     33363                                                <MaxTileRow>375</MaxTileRow>
     33364                                                <MinTileCol>522</MinTileCol>
     33365                                                <MaxTileCol>522</MaxTileCol>
     33366                                        </TileMatrixLimits>
     33367                                        <TileMatrixLimits>
     33368                                                <TileMatrix>11</TileMatrix>
     33369                                                <MinTileRow>748</MinTileRow>
     33370                                                <MaxTileRow>750</MaxTileRow>
     33371                                                <MinTileCol>1044</MinTileCol>
     33372                                                <MaxTileCol>1045</MaxTileCol>
     33373                                        </TileMatrixLimits>
     33374                                        <TileMatrixLimits>
     33375                                                <TileMatrix>12</TileMatrix>
     33376                                                <MinTileRow>1496</MinTileRow>
     33377                                                <MaxTileRow>1500</MaxTileRow>
     33378                                                <MinTileCol>2088</MinTileCol>
     33379                                                <MaxTileCol>2091</MaxTileCol>
     33380                                        </TileMatrixLimits>
     33381                                        <TileMatrixLimits>
     33382                                                <TileMatrix>13</TileMatrix>
     33383                                                <MinTileRow>2992</MinTileRow>
     33384                                                <MaxTileRow>3001</MaxTileRow>
     33385                                                <MinTileCol>4176</MinTileCol>
     33386                                                <MaxTileCol>4182</MaxTileCol>
     33387                                        </TileMatrixLimits>
     33388                                        <TileMatrixLimits>
     33389                                                <TileMatrix>14</TileMatrix>
     33390                                                <MinTileRow>5985</MinTileRow>
     33391                                                <MaxTileRow>6003</MaxTileRow>
     33392                                                <MinTileCol>8353</MinTileCol>
     33393                                                <MaxTileCol>8365</MaxTileCol>
     33394                                        </TileMatrixLimits>
     33395                                        <TileMatrixLimits>
     33396                                                <TileMatrix>15</TileMatrix>
     33397                                                <MinTileRow>11970</MinTileRow>
     33398                                                <MaxTileRow>12007</MaxTileRow>
     33399                                                <MinTileCol>16706</MinTileCol>
     33400                                                <MaxTileCol>16730</MaxTileCol>
     33401                                        </TileMatrixLimits>
     33402                                        <TileMatrixLimits>
     33403                                                <TileMatrix>16</TileMatrix>
     33404                                                <MinTileRow>23940</MinTileRow>
     33405                                                <MaxTileRow>24014</MaxTileRow>
     33406                                                <MinTileCol>33412</MinTileCol>
     33407                                                <MaxTileCol>33460</MaxTileCol>
     33408                                        </TileMatrixLimits>
     33409                                        <TileMatrixLimits>
     33410                                                <TileMatrix>17</TileMatrix>
     33411                                                <MinTileRow>47880</MinTileRow>
     33412                                                <MaxTileRow>48029</MaxTileRow>
     33413                                                <MinTileCol>66825</MinTileCol>
     33414                                                <MaxTileCol>66921</MaxTileCol>
     33415                                        </TileMatrixLimits>
     33416                                        <TileMatrixLimits>
     33417                                                <TileMatrix>18</TileMatrix>
     33418                                                <MinTileRow>95761</MinTileRow>
     33419                                                <MaxTileRow>96059</MaxTileRow>
     33420                                                <MinTileCol>133650</MinTileCol>
     33421                                                <MaxTileCol>133842</MaxTileCol>
     33422                                        </TileMatrixLimits>
     33423                                        <TileMatrixLimits>
     33424                                                <TileMatrix>2</TileMatrix>
     33425                                                <MinTileRow>1</MinTileRow>
     33426                                                <MaxTileRow>1</MaxTileRow>
     33427                                                <MinTileCol>2</MinTileCol>
     33428                                                <MaxTileCol>2</MaxTileCol>
     33429                                        </TileMatrixLimits>
     33430                                        <TileMatrixLimits>
     33431                                                <TileMatrix>3</TileMatrix>
     33432                                                <MinTileRow>2</MinTileRow>
     33433                                                <MaxTileRow>2</MaxTileRow>
     33434                                                <MinTileCol>4</MinTileCol>
     33435                                                <MaxTileCol>4</MaxTileCol>
     33436                                        </TileMatrixLimits>
     33437                                        <TileMatrixLimits>
     33438                                                <TileMatrix>4</TileMatrix>
     33439                                                <MinTileRow>5</MinTileRow>
     33440                                                <MaxTileRow>5</MaxTileRow>
     33441                                                <MinTileCol>8</MinTileCol>
     33442                                                <MaxTileCol>8</MaxTileCol>
     33443                                        </TileMatrixLimits>
     33444                                        <TileMatrixLimits>
     33445                                                <TileMatrix>5</TileMatrix>
     33446                                                <MinTileRow>11</MinTileRow>
     33447                                                <MaxTileRow>11</MaxTileRow>
     33448                                                <MinTileCol>16</MinTileCol>
     33449                                                <MaxTileCol>16</MaxTileCol>
     33450                                        </TileMatrixLimits>
     33451                                        <TileMatrixLimits>
     33452                                                <TileMatrix>6</TileMatrix>
     33453                                                <MinTileRow>23</MinTileRow>
     33454                                                <MaxTileRow>23</MaxTileRow>
     33455                                                <MinTileCol>32</MinTileCol>
     33456                                                <MaxTileCol>32</MaxTileCol>
     33457                                        </TileMatrixLimits>
     33458                                        <TileMatrixLimits>
     33459                                                <TileMatrix>7</TileMatrix>
     33460                                                <MinTileRow>46</MinTileRow>
     33461                                                <MaxTileRow>46</MaxTileRow>
     33462                                                <MinTileCol>65</MinTileCol>
     33463                                                <MaxTileCol>65</MaxTileCol>
     33464                                        </TileMatrixLimits>
     33465                                        <TileMatrixLimits>
     33466                                                <TileMatrix>8</TileMatrix>
     33467                                                <MinTileRow>93</MinTileRow>
     33468                                                <MaxTileRow>93</MaxTileRow>
     33469                                                <MinTileCol>130</MinTileCol>
     33470                                                <MaxTileCol>130</MaxTileCol>
     33471                                        </TileMatrixLimits>
     33472                                        <TileMatrixLimits>
     33473                                                <TileMatrix>9</TileMatrix>
     33474                                                <MinTileRow>187</MinTileRow>
     33475                                                <MaxTileRow>187</MaxTileRow>
     33476                                                <MinTileCol>261</MinTileCol>
     33477                                                <MaxTileCol>261</MaxTileCol>
     33478                                        </TileMatrixLimits>
     33479                                </TileMatrixSetLimits>
     33480                        </TileMatrixSetLink>
     33481                </Layer>
     33482                <Layer>
     33483                        <ows:Title>Orthophotographies Geosud de LITTO-MEDITERRANEE 2014</ows:Title>
     33484                        <ows:Abstract>Orthophotographies satellites de LITTO-MEDITERRANEE issues du projet Geosud.</ows:Abstract>
     33485                        <ows:Keywords>
     33486                                <ows:Keyword>Photographies</ows:Keyword>
     33487                        </ows:Keywords>
     33488                        <ows:WGS84BoundingBox>
     33489                                <ows:LowerCorner>4.19769 43.438</ows:LowerCorner>
     33490                                <ows:UpperCorner>4.48627 43.6214</ows:UpperCorner>
     33491                        </ows:WGS84BoundingBox>
     33492                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-MEDITERRANEE-2014-03-27-38488449</ows:Identifier>
     33493                        <Style isDefault="true">
     33494                                <ows:Title>Données Brutes</ows:Title>
     33495                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33496                                <ows:Keywords>
     33497                                        <ows:Keyword>Défaut</ows:Keyword>
     33498                                </ows:Keywords>
     33499                                <ows:Identifier>normal</ows:Identifier>
     33500                                <LegendURL format="image/jpeg" height="200"
     33501                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33502                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33503                        </Style>
     33504                        <Format>image/jpeg</Format>
     33505                        <TileMatrixSetLink>
     33506                                <TileMatrixSet>PM</TileMatrixSet>
     33507                                <TileMatrixSetLimits>
     33508                                        <TileMatrixLimits>
     33509                                                <TileMatrix>0</TileMatrix>
     33510                                                <MinTileRow>0</MinTileRow>
     33511                                                <MaxTileRow>0</MaxTileRow>
     33512                                                <MinTileCol>0</MinTileCol>
     33513                                                <MaxTileCol>0</MaxTileCol>
     33514                                        </TileMatrixLimits>
     33515                                        <TileMatrixLimits>
     33516                                                <TileMatrix>1</TileMatrix>
     33517                                                <MinTileRow>0</MinTileRow>
     33518                                                <MaxTileRow>0</MaxTileRow>
     33519                                                <MinTileCol>1</MinTileCol>
     33520                                                <MaxTileCol>1</MaxTileCol>
     33521                                        </TileMatrixLimits>
     33522                                        <TileMatrixLimits>
     33523                                                <TileMatrix>10</TileMatrix>
     33524                                                <MinTileRow>373</MinTileRow>
     33525                                                <MaxTileRow>374</MaxTileRow>
     33526                                                <MinTileCol>523</MinTileCol>
     33527                                                <MaxTileCol>524</MaxTileCol>
     33528                                        </TileMatrixLimits>
     33529                                        <TileMatrixLimits>
     33530                                                <TileMatrix>11</TileMatrix>
     33531                                                <MinTileRow>747</MinTileRow>
     33532                                                <MaxTileRow>749</MaxTileRow>
     33533                                                <MinTileCol>1047</MinTileCol>
     33534                                                <MaxTileCol>1049</MaxTileCol>
     33535                                        </TileMatrixLimits>
     33536                                        <TileMatrixLimits>
     33537                                                <TileMatrix>12</TileMatrix>
     33538                                                <MinTileRow>1495</MinTileRow>
     33539                                                <MaxTileRow>1498</MaxTileRow>
     33540                                                <MinTileCol>2095</MinTileCol>
     33541                                                <MaxTileCol>2099</MaxTileCol>
     33542                                        </TileMatrixLimits>
     33543                                        <TileMatrixLimits>
     33544                                                <TileMatrix>13</TileMatrix>
     33545                                                <MinTileRow>2990</MinTileRow>
     33546                                                <MaxTileRow>2996</MaxTileRow>
     33547                                                <MinTileCol>4191</MinTileCol>
     33548                                                <MaxTileCol>4198</MaxTileCol>
     33549                                        </TileMatrixLimits>
     33550                                        <TileMatrixLimits>
     33551                                                <TileMatrix>14</TileMatrix>
     33552                                                <MinTileRow>5981</MinTileRow>
     33553                                                <MaxTileRow>5992</MaxTileRow>
     33554                                                <MinTileCol>8383</MinTileCol>
     33555                                                <MaxTileCol>8396</MaxTileCol>
     33556                                        </TileMatrixLimits>
     33557                                        <TileMatrixLimits>
     33558                                                <TileMatrix>15</TileMatrix>
     33559                                                <MinTileRow>11962</MinTileRow>
     33560                                                <MaxTileRow>11985</MaxTileRow>
     33561                                                <MinTileCol>16766</MinTileCol>
     33562                                                <MaxTileCol>16792</MaxTileCol>
     33563                                        </TileMatrixLimits>
     33564                                        <TileMatrixLimits>
     33565                                                <TileMatrix>16</TileMatrix>
     33566                                                <MinTileRow>23925</MinTileRow>
     33567                                                <MaxTileRow>23971</MaxTileRow>
     33568                                                <MinTileCol>33532</MinTileCol>
     33569                                                <MaxTileCol>33584</MaxTileCol>
     33570                                        </TileMatrixLimits>
     33571                                        <TileMatrixLimits>
     33572                                                <TileMatrix>17</TileMatrix>
     33573                                                <MinTileRow>47851</MinTileRow>
     33574                                                <MaxTileRow>47942</MaxTileRow>
     33575                                                <MinTileCol>67065</MinTileCol>
     33576                                                <MaxTileCol>67168</MaxTileCol>
     33577                                        </TileMatrixLimits>
     33578                                        <TileMatrixLimits>
     33579                                                <TileMatrix>18</TileMatrix>
     33580                                                <MinTileRow>95703</MinTileRow>
     33581                                                <MaxTileRow>95884</MaxTileRow>
     33582                                                <MinTileCol>134130</MinTileCol>
     33583                                                <MaxTileCol>134336</MaxTileCol>
     33584                                        </TileMatrixLimits>
     33585                                        <TileMatrixLimits>
     33586                                                <TileMatrix>2</TileMatrix>
     33587                                                <MinTileRow>1</MinTileRow>
     33588                                                <MaxTileRow>1</MaxTileRow>
     33589                                                <MinTileCol>2</MinTileCol>
     33590                                                <MaxTileCol>2</MaxTileCol>
     33591                                        </TileMatrixLimits>
     33592                                        <TileMatrixLimits>
     33593                                                <TileMatrix>3</TileMatrix>
     33594                                                <MinTileRow>2</MinTileRow>
     33595                                                <MaxTileRow>2</MaxTileRow>
     33596                                                <MinTileCol>4</MinTileCol>
     33597                                                <MaxTileCol>4</MaxTileCol>
     33598                                        </TileMatrixLimits>
     33599                                        <TileMatrixLimits>
     33600                                                <TileMatrix>4</TileMatrix>
     33601                                                <MinTileRow>5</MinTileRow>
     33602                                                <MaxTileRow>5</MaxTileRow>
     33603                                                <MinTileCol>8</MinTileCol>
     33604                                                <MaxTileCol>8</MaxTileCol>
     33605                                        </TileMatrixLimits>
     33606                                        <TileMatrixLimits>
     33607                                                <TileMatrix>5</TileMatrix>
     33608                                                <MinTileRow>11</MinTileRow>
     33609                                                <MaxTileRow>11</MaxTileRow>
     33610                                                <MinTileCol>16</MinTileCol>
     33611                                                <MaxTileCol>16</MaxTileCol>
     33612                                        </TileMatrixLimits>
     33613                                        <TileMatrixLimits>
     33614                                                <TileMatrix>6</TileMatrix>
     33615                                                <MinTileRow>23</MinTileRow>
     33616                                                <MaxTileRow>23</MaxTileRow>
     33617                                                <MinTileCol>32</MinTileCol>
     33618                                                <MaxTileCol>32</MaxTileCol>
     33619                                        </TileMatrixLimits>
     33620                                        <TileMatrixLimits>
     33621                                                <TileMatrix>7</TileMatrix>
     33622                                                <MinTileRow>46</MinTileRow>
     33623                                                <MaxTileRow>46</MaxTileRow>
     33624                                                <MinTileCol>65</MinTileCol>
     33625                                                <MaxTileCol>65</MaxTileCol>
     33626                                        </TileMatrixLimits>
     33627                                        <TileMatrixLimits>
     33628                                                <TileMatrix>8</TileMatrix>
     33629                                                <MinTileRow>93</MinTileRow>
     33630                                                <MaxTileRow>93</MaxTileRow>
     33631                                                <MinTileCol>130</MinTileCol>
     33632                                                <MaxTileCol>131</MaxTileCol>
     33633                                        </TileMatrixLimits>
     33634                                        <TileMatrixLimits>
     33635                                                <TileMatrix>9</TileMatrix>
     33636                                                <MinTileRow>186</MinTileRow>
     33637                                                <MaxTileRow>187</MaxTileRow>
     33638                                                <MinTileCol>261</MinTileCol>
     33639                                                <MaxTileCol>262</MaxTileCol>
     33640                                        </TileMatrixLimits>
     33641                                </TileMatrixSetLimits>
     33642                        </TileMatrixSetLink>
     33643                </Layer>
     33644                <Layer>
     33645                        <ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title>
     33646                        <ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract>
     33647                        <ows:Keywords>
     33648                                <ows:Keyword>Photographies</ows:Keyword>
     33649                        </ows:Keywords>
     33650                        <ows:WGS84BoundingBox>
     33651                                <ows:LowerCorner>2.31569 50.985</ows:LowerCorner>
     33652                                <ows:UpperCorner>2.63053 51.1477</ows:UpperCorner>
     33653                        </ows:WGS84BoundingBox>
     33654                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-04-13-39522824</ows:Identifier>
     33655                        <Style isDefault="true">
     33656                                <ows:Title>Données Brutes</ows:Title>
     33657                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33658                                <ows:Keywords>
     33659                                        <ows:Keyword>Défaut</ows:Keyword>
     33660                                </ows:Keywords>
     33661                                <ows:Identifier>normal</ows:Identifier>
     33662                                <LegendURL format="image/jpeg" height="200"
     33663                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33664                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33665                        </Style>
     33666                        <Format>image/jpeg</Format>
     33667                        <TileMatrixSetLink>
     33668                                <TileMatrixSet>PM</TileMatrixSet>
     33669                                <TileMatrixSetLimits>
     33670                                        <TileMatrixLimits>
     33671                                                <TileMatrix>0</TileMatrix>
     33672                                                <MinTileRow>0</MinTileRow>
     33673                                                <MaxTileRow>0</MaxTileRow>
     33674                                                <MinTileCol>0</MinTileCol>
     33675                                                <MaxTileCol>0</MaxTileCol>
     33676                                        </TileMatrixLimits>
     33677                                        <TileMatrixLimits>
     33678                                                <TileMatrix>1</TileMatrix>
     33679                                                <MinTileRow>0</MinTileRow>
     33680                                                <MaxTileRow>0</MaxTileRow>
     33681                                                <MinTileCol>1</MinTileCol>
     33682                                                <MaxTileCol>1</MaxTileCol>
     33683                                        </TileMatrixLimits>
     33684                                        <TileMatrixLimits>
     33685                                                <TileMatrix>10</TileMatrix>
     33686                                                <MinTileRow>342</MinTileRow>
     33687                                                <MaxTileRow>342</MaxTileRow>
     33688                                                <MinTileCol>518</MinTileCol>
     33689                                                <MaxTileCol>519</MaxTileCol>
     33690                                        </TileMatrixLimits>
     33691                                        <TileMatrixLimits>
     33692                                                <TileMatrix>11</TileMatrix>
     33693                                                <MinTileRow>684</MinTileRow>
     33694                                                <MaxTileRow>685</MaxTileRow>
     33695                                                <MinTileCol>1037</MinTileCol>
     33696                                                <MaxTileCol>1038</MaxTileCol>
     33697                                        </TileMatrixLimits>
     33698                                        <TileMatrixLimits>
     33699                                                <TileMatrix>12</TileMatrix>
     33700                                                <MinTileRow>1368</MinTileRow>
     33701                                                <MaxTileRow>1371</MaxTileRow>
     33702                                                <MinTileCol>2074</MinTileCol>
     33703                                                <MaxTileCol>2077</MaxTileCol>
     33704                                        </TileMatrixLimits>
     33705                                        <TileMatrixLimits>
     33706                                                <TileMatrix>13</TileMatrix>
     33707                                                <MinTileRow>2737</MinTileRow>
     33708                                                <MaxTileRow>2743</MaxTileRow>
     33709                                                <MinTileCol>4148</MinTileCol>
     33710                                                <MaxTileCol>4155</MaxTileCol>
     33711                                        </TileMatrixLimits>
     33712                                        <TileMatrixLimits>
     33713                                                <TileMatrix>14</TileMatrix>
     33714                                                <MinTileRow>5474</MinTileRow>
     33715                                                <MaxTileRow>5486</MaxTileRow>
     33716                                                <MinTileCol>8297</MinTileCol>
     33717                                                <MaxTileCol>8311</MaxTileCol>
     33718                                        </TileMatrixLimits>
     33719                                        <TileMatrixLimits>
     33720                                                <TileMatrix>15</TileMatrix>
     33721                                                <MinTileRow>10948</MinTileRow>
     33722                                                <MaxTileRow>10972</MaxTileRow>
     33723                                                <MinTileCol>16594</MinTileCol>
     33724                                                <MaxTileCol>16623</MaxTileCol>
     33725                                        </TileMatrixLimits>
     33726                                        <TileMatrixLimits>
     33727                                                <TileMatrix>16</TileMatrix>
     33728                                                <MinTileRow>21897</MinTileRow>
     33729                                                <MaxTileRow>21944</MaxTileRow>
     33730                                                <MinTileCol>33189</MinTileCol>
     33731                                                <MaxTileCol>33246</MaxTileCol>
     33732                                        </TileMatrixLimits>
     33733                                        <TileMatrixLimits>
     33734                                                <TileMatrix>17</TileMatrix>
     33735                                                <MinTileRow>43794</MinTileRow>
     33736                                                <MaxTileRow>43888</MaxTileRow>
     33737                                                <MinTileCol>66379</MinTileCol>
     33738                                                <MaxTileCol>66493</MaxTileCol>
     33739                                        </TileMatrixLimits>
     33740                                        <TileMatrixLimits>
     33741                                                <TileMatrix>18</TileMatrix>
     33742                                                <MinTileRow>87588</MinTileRow>
     33743                                                <MaxTileRow>87777</MaxTileRow>
     33744                                                <MinTileCol>132758</MinTileCol>
     33745                                                <MaxTileCol>132987</MaxTileCol>
     33746                                        </TileMatrixLimits>
     33747                                        <TileMatrixLimits>
     33748                                                <TileMatrix>2</TileMatrix>
     33749                                                <MinTileRow>1</MinTileRow>
     33750                                                <MaxTileRow>1</MaxTileRow>
     33751                                                <MinTileCol>2</MinTileCol>
     33752                                                <MaxTileCol>2</MaxTileCol>
     33753                                        </TileMatrixLimits>
     33754                                        <TileMatrixLimits>
     33755                                                <TileMatrix>3</TileMatrix>
     33756                                                <MinTileRow>2</MinTileRow>
     33757                                                <MaxTileRow>2</MaxTileRow>
     33758                                                <MinTileCol>4</MinTileCol>
     33759                                                <MaxTileCol>4</MaxTileCol>
     33760                                        </TileMatrixLimits>
     33761                                        <TileMatrixLimits>
     33762                                                <TileMatrix>4</TileMatrix>
     33763                                                <MinTileRow>5</MinTileRow>
     33764                                                <MaxTileRow>5</MaxTileRow>
     33765                                                <MinTileCol>8</MinTileCol>
     33766                                                <MaxTileCol>8</MaxTileCol>
     33767                                        </TileMatrixLimits>
     33768                                        <TileMatrixLimits>
     33769                                                <TileMatrix>5</TileMatrix>
     33770                                                <MinTileRow>10</MinTileRow>
     33771                                                <MaxTileRow>10</MaxTileRow>
     33772                                                <MinTileCol>16</MinTileCol>
     33773                                                <MaxTileCol>16</MaxTileCol>
     33774                                        </TileMatrixLimits>
     33775                                        <TileMatrixLimits>
     33776                                                <TileMatrix>6</TileMatrix>
     33777                                                <MinTileRow>21</MinTileRow>
     33778                                                <MaxTileRow>21</MaxTileRow>
     33779                                                <MinTileCol>32</MinTileCol>
     33780                                                <MaxTileCol>32</MaxTileCol>
     33781                                        </TileMatrixLimits>
     33782                                        <TileMatrixLimits>
     33783                                                <TileMatrix>7</TileMatrix>
     33784                                                <MinTileRow>42</MinTileRow>
     33785                                                <MaxTileRow>42</MaxTileRow>
     33786                                                <MinTileCol>64</MinTileCol>
     33787                                                <MaxTileCol>64</MaxTileCol>
     33788                                        </TileMatrixLimits>
     33789                                        <TileMatrixLimits>
     33790                                                <TileMatrix>8</TileMatrix>
     33791                                                <MinTileRow>85</MinTileRow>
     33792                                                <MaxTileRow>85</MaxTileRow>
     33793                                                <MinTileCol>129</MinTileCol>
     33794                                                <MaxTileCol>129</MaxTileCol>
     33795                                        </TileMatrixLimits>
     33796                                        <TileMatrixLimits>
     33797                                                <TileMatrix>9</TileMatrix>
     33798                                                <MinTileRow>171</MinTileRow>
     33799                                                <MaxTileRow>171</MaxTileRow>
     33800                                                <MinTileCol>259</MinTileCol>
     33801                                                <MaxTileCol>259</MaxTileCol>
     33802                                        </TileMatrixLimits>
     33803                                </TileMatrixSetLimits>
     33804                        </TileMatrixSetLink>
     33805                </Layer>
     33806                <Layer>
     33807                        <ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title>
     33808                        <ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract>
     33809                        <ows:Keywords>
     33810                                <ows:Keyword>Photographies</ows:Keyword>
     33811                        </ows:Keywords>
     33812                        <ows:WGS84BoundingBox>
     33813                                <ows:LowerCorner>2.10219 50.9478</ows:LowerCorner>
     33814                                <ows:UpperCorner>2.4036 51.1289</ows:UpperCorner>
     33815                        </ows:WGS84BoundingBox>
     33816                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-05-15-39741194</ows:Identifier>
     33817                        <Style isDefault="true">
     33818                                <ows:Title>Données Brutes</ows:Title>
     33819                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33820                                <ows:Keywords>
     33821                                        <ows:Keyword>Défaut</ows:Keyword>
     33822                                </ows:Keywords>
     33823                                <ows:Identifier>normal</ows:Identifier>
     33824                                <LegendURL format="image/jpeg" height="200"
     33825                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33826                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33827                        </Style>
     33828                        <Format>image/jpeg</Format>
     33829                        <TileMatrixSetLink>
     33830                                <TileMatrixSet>PM</TileMatrixSet>
     33831                                <TileMatrixSetLimits>
     33832                                        <TileMatrixLimits>
     33833                                                <TileMatrix>0</TileMatrix>
     33834                                                <MinTileRow>0</MinTileRow>
     33835                                                <MaxTileRow>0</MaxTileRow>
     33836                                                <MinTileCol>0</MinTileCol>
     33837                                                <MaxTileCol>0</MaxTileCol>
     33838                                        </TileMatrixLimits>
     33839                                        <TileMatrixLimits>
     33840                                                <TileMatrix>1</TileMatrix>
     33841                                                <MinTileRow>0</MinTileRow>
     33842                                                <MaxTileRow>0</MaxTileRow>
     33843                                                <MinTileCol>1</MinTileCol>
     33844                                                <MaxTileCol>1</MaxTileCol>
     33845                                        </TileMatrixLimits>
     33846                                        <TileMatrixLimits>
     33847                                                <TileMatrix>10</TileMatrix>
     33848                                                <MinTileRow>342</MinTileRow>
     33849                                                <MaxTileRow>343</MaxTileRow>
     33850                                                <MinTileCol>517</MinTileCol>
     33851                                                <MaxTileCol>518</MaxTileCol>
     33852                                        </TileMatrixLimits>
     33853                                        <TileMatrixLimits>
     33854                                                <TileMatrix>11</TileMatrix>
     33855                                                <MinTileRow>684</MinTileRow>
     33856                                                <MaxTileRow>686</MaxTileRow>
     33857                                                <MinTileCol>1035</MinTileCol>
     33858                                                <MaxTileCol>1037</MaxTileCol>
     33859                                        </TileMatrixLimits>
     33860                                        <TileMatrixLimits>
     33861                                                <TileMatrix>12</TileMatrix>
     33862                                                <MinTileRow>1368</MinTileRow>
     33863                                                <MaxTileRow>1372</MaxTileRow>
     33864                                                <MinTileCol>2071</MinTileCol>
     33865                                                <MaxTileCol>2075</MaxTileCol>
     33866                                        </TileMatrixLimits>
     33867                                        <TileMatrixLimits>
     33868                                                <TileMatrix>13</TileMatrix>
     33869                                                <MinTileRow>2737</MinTileRow>
     33870                                                <MaxTileRow>2744</MaxTileRow>
     33871                                                <MinTileCol>4143</MinTileCol>
     33872                                                <MaxTileCol>4150</MaxTileCol>
     33873                                        </TileMatrixLimits>
     33874                                        <TileMatrixLimits>
     33875                                                <TileMatrix>14</TileMatrix>
     33876                                                <MinTileRow>5475</MinTileRow>
     33877                                                <MaxTileRow>5488</MaxTileRow>
     33878                                                <MinTileCol>8287</MinTileCol>
     33879                                                <MaxTileCol>8301</MaxTileCol>
     33880                                        </TileMatrixLimits>
     33881                                        <TileMatrixLimits>
     33882                                                <TileMatrix>15</TileMatrix>
     33883                                                <MinTileRow>10951</MinTileRow>
     33884                                                <MaxTileRow>10977</MaxTileRow>
     33885                                                <MinTileCol>16575</MinTileCol>
     33886                                                <MaxTileCol>16602</MaxTileCol>
     33887                                        </TileMatrixLimits>
     33888                                        <TileMatrixLimits>
     33889                                                <TileMatrix>16</TileMatrix>
     33890                                                <MinTileRow>21902</MinTileRow>
     33891                                                <MaxTileRow>21955</MaxTileRow>
     33892                                                <MinTileCol>33150</MinTileCol>
     33893                                                <MaxTileCol>33205</MaxTileCol>
     33894                                        </TileMatrixLimits>
     33895                                        <TileMatrixLimits>
     33896                                                <TileMatrix>17</TileMatrix>
     33897                                                <MinTileRow>43805</MinTileRow>
     33898                                                <MaxTileRow>43910</MaxTileRow>
     33899                                                <MinTileCol>66301</MinTileCol>
     33900                                                <MaxTileCol>66411</MaxTileCol>
     33901                                        </TileMatrixLimits>
     33902                                        <TileMatrixLimits>
     33903                                                <TileMatrix>18</TileMatrix>
     33904                                                <MinTileRow>87610</MinTileRow>
     33905                                                <MaxTileRow>87820</MaxTileRow>
     33906                                                <MinTileCol>132602</MinTileCol>
     33907                                                <MaxTileCol>132822</MaxTileCol>
     33908                                        </TileMatrixLimits>
     33909                                        <TileMatrixLimits>
     33910                                                <TileMatrix>2</TileMatrix>
     33911                                                <MinTileRow>1</MinTileRow>
     33912                                                <MaxTileRow>1</MaxTileRow>
     33913                                                <MinTileCol>2</MinTileCol>
     33914                                                <MaxTileCol>2</MaxTileCol>
     33915                                        </TileMatrixLimits>
     33916                                        <TileMatrixLimits>
     33917                                                <TileMatrix>3</TileMatrix>
     33918                                                <MinTileRow>2</MinTileRow>
     33919                                                <MaxTileRow>2</MaxTileRow>
     33920                                                <MinTileCol>4</MinTileCol>
     33921                                                <MaxTileCol>4</MaxTileCol>
     33922                                        </TileMatrixLimits>
     33923                                        <TileMatrixLimits>
     33924                                                <TileMatrix>4</TileMatrix>
     33925                                                <MinTileRow>5</MinTileRow>
     33926                                                <MaxTileRow>5</MaxTileRow>
     33927                                                <MinTileCol>8</MinTileCol>
     33928                                                <MaxTileCol>8</MaxTileCol>
     33929                                        </TileMatrixLimits>
     33930                                        <TileMatrixLimits>
     33931                                                <TileMatrix>5</TileMatrix>
     33932                                                <MinTileRow>10</MinTileRow>
     33933                                                <MaxTileRow>10</MaxTileRow>
     33934                                                <MinTileCol>16</MinTileCol>
     33935                                                <MaxTileCol>16</MaxTileCol>
     33936                                        </TileMatrixLimits>
     33937                                        <TileMatrixLimits>
     33938                                                <TileMatrix>6</TileMatrix>
     33939                                                <MinTileRow>21</MinTileRow>
     33940                                                <MaxTileRow>21</MaxTileRow>
     33941                                                <MinTileCol>32</MinTileCol>
     33942                                                <MaxTileCol>32</MaxTileCol>
     33943                                        </TileMatrixLimits>
     33944                                        <TileMatrixLimits>
     33945                                                <TileMatrix>7</TileMatrix>
     33946                                                <MinTileRow>42</MinTileRow>
     33947                                                <MaxTileRow>42</MaxTileRow>
     33948                                                <MinTileCol>64</MinTileCol>
     33949                                                <MaxTileCol>64</MaxTileCol>
     33950                                        </TileMatrixLimits>
     33951                                        <TileMatrixLimits>
     33952                                                <TileMatrix>8</TileMatrix>
     33953                                                <MinTileRow>85</MinTileRow>
     33954                                                <MaxTileRow>85</MaxTileRow>
     33955                                                <MinTileCol>129</MinTileCol>
     33956                                                <MaxTileCol>129</MaxTileCol>
     33957                                        </TileMatrixLimits>
     33958                                        <TileMatrixLimits>
     33959                                                <TileMatrix>9</TileMatrix>
     33960                                                <MinTileRow>171</MinTileRow>
     33961                                                <MaxTileRow>171</MaxTileRow>
     33962                                                <MinTileCol>258</MinTileCol>
     33963                                                <MaxTileCol>259</MaxTileCol>
     33964                                        </TileMatrixLimits>
     33965                                </TileMatrixSetLimits>
     33966                        </TileMatrixSetLink>
     33967                </Layer>
     33968                <Layer>
     33969                        <ows:Title>Orthophotographies Geosud de LITTO-NORD-DUNKERQUE 2014</ows:Title>
     33970                        <ows:Abstract>Orthophotographies satellites de LITTO-NORD-DUNKERQUE issues du projet Geosud.</ows:Abstract>
     33971                        <ows:Keywords>
     33972                                <ows:Keyword>Photographies</ows:Keyword>
     33973                        </ows:Keywords>
     33974                        <ows:WGS84BoundingBox>
     33975                                <ows:LowerCorner>1.84654 50.8829</ows:LowerCorner>
     33976                                <ows:UpperCorner>2.16327 51.0917</ows:UpperCorner>
     33977                        </ows:WGS84BoundingBox>
     33978                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTO-NORD-DUNKERQUE-2014-06-23-39781949</ows:Identifier>
     33979                        <Style isDefault="true">
     33980                                <ows:Title>Données Brutes</ows:Title>
     33981                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     33982                                <ows:Keywords>
     33983                                        <ows:Keyword>Défaut</ows:Keyword>
     33984                                </ows:Keywords>
     33985                                <ows:Identifier>normal</ows:Identifier>
     33986                                <LegendURL format="image/jpeg" height="200"
     33987                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     33988                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     33989                        </Style>
     33990                        <Format>image/jpeg</Format>
     33991                        <TileMatrixSetLink>
     33992                                <TileMatrixSet>PM</TileMatrixSet>
     33993                                <TileMatrixSetLimits>
     33994                                        <TileMatrixLimits>
     33995                                                <TileMatrix>0</TileMatrix>
     33996                                                <MinTileRow>0</MinTileRow>
     33997                                                <MaxTileRow>0</MaxTileRow>
     33998                                                <MinTileCol>0</MinTileCol>
     33999                                                <MaxTileCol>0</MaxTileCol>
     34000                                        </TileMatrixLimits>
     34001                                        <TileMatrixLimits>
     34002                                                <TileMatrix>1</TileMatrix>
     34003                                                <MinTileRow>0</MinTileRow>
     34004                                                <MaxTileRow>0</MaxTileRow>
     34005                                                <MinTileCol>1</MinTileCol>
     34006                                                <MaxTileCol>1</MaxTileCol>
     34007                                        </TileMatrixLimits>
     34008                                        <TileMatrixLimits>
     34009                                                <TileMatrix>10</TileMatrix>
     34010                                                <MinTileRow>342</MinTileRow>
     34011                                                <MaxTileRow>343</MaxTileRow>
     34012                                                <MinTileCol>517</MinTileCol>
     34013                                                <MaxTileCol>518</MaxTileCol>
     34014                                        </TileMatrixLimits>
     34015                                        <TileMatrixLimits>
     34016                                                <TileMatrix>11</TileMatrix>
     34017                                                <MinTileRow>684</MinTileRow>
     34018                                                <MaxTileRow>686</MaxTileRow>
     34019                                                <MinTileCol>1034</MinTileCol>
     34020                                                <MaxTileCol>1036</MaxTileCol>
     34021                                        </TileMatrixLimits>
     34022                                        <TileMatrixLimits>
     34023                                                <TileMatrix>12</TileMatrix>
     34024                                                <MinTileRow>1369</MinTileRow>
     34025                                                <MaxTileRow>1373</MaxTileRow>
     34026                                                <MinTileCol>2069</MinTileCol>
     34027                                                <MaxTileCol>2072</MaxTileCol>
     34028                                        </TileMatrixLimits>
     34029                                        <TileMatrixLimits>
     34030                                                <TileMatrix>13</TileMatrix>
     34031                                                <MinTileRow>2739</MinTileRow>
     34032                                                <MaxTileRow>2746</MaxTileRow>
     34033                                                <MinTileCol>4138</MinTileCol>
     34034                                                <MaxTileCol>4145</MaxTileCol>
     34035                                        </TileMatrixLimits>
     34036                                        <TileMatrixLimits>
     34037                                                <TileMatrix>14</TileMatrix>
     34038                                                <MinTileRow>5478</MinTileRow>
     34039                                                <MaxTileRow>5493</MaxTileRow>
     34040                                                <MinTileCol>8276</MinTileCol>
     34041                                                <MaxTileCol>8290</MaxTileCol>
     34042                                        </TileMatrixLimits>
     34043                                        <TileMatrixLimits>
     34044                                                <TileMatrix>15</TileMatrix>
     34045                                                <MinTileRow>10956</MinTileRow>
     34046                                                <MaxTileRow>10986</MaxTileRow>
     34047                                                <MinTileCol>16552</MinTileCol>
     34048                                                <MaxTileCol>16580</MaxTileCol>
     34049                                        </TileMatrixLimits>
     34050                                        <TileMatrixLimits>
     34051                                                <TileMatrix>16</TileMatrix>
     34052                                                <MinTileRow>21913</MinTileRow>
     34053                                                <MaxTileRow>21973</MaxTileRow>
     34054                                                <MinTileCol>33104</MinTileCol>
     34055                                                <MaxTileCol>33161</MaxTileCol>
     34056                                        </TileMatrixLimits>
     34057                                        <TileMatrixLimits>
     34058                                                <TileMatrix>17</TileMatrix>
     34059                                                <MinTileRow>43826</MinTileRow>
     34060                                                <MaxTileRow>43946</MaxTileRow>
     34061                                                <MinTileCol>66208</MinTileCol>
     34062                                                <MaxTileCol>66323</MaxTileCol>
     34063                                        </TileMatrixLimits>
     34064                                        <TileMatrixLimits>
     34065                                                <TileMatrix>18</TileMatrix>
     34066                                                <MinTileRow>87653</MinTileRow>
     34067                                                <MaxTileRow>87893</MaxTileRow>
     34068                                                <MinTileCol>132416</MinTileCol>
     34069                                                <MaxTileCol>132647</MaxTileCol>
     34070                                        </TileMatrixLimits>
     34071                                        <TileMatrixLimits>
     34072                                                <TileMatrix>2</TileMatrix>
     34073                                                <MinTileRow>1</MinTileRow>
     34074                                                <MaxTileRow>1</MaxTileRow>
     34075                                                <MinTileCol>2</MinTileCol>
     34076                                                <MaxTileCol>2</MaxTileCol>
     34077                                        </TileMatrixLimits>
     34078                                        <TileMatrixLimits>
     34079                                                <TileMatrix>3</TileMatrix>
     34080                                                <MinTileRow>2</MinTileRow>
     34081                                                <MaxTileRow>2</MaxTileRow>
     34082                                                <MinTileCol>4</MinTileCol>
     34083                                                <MaxTileCol>4</MaxTileCol>
     34084                                        </TileMatrixLimits>
     34085                                        <TileMatrixLimits>
     34086                                                <TileMatrix>4</TileMatrix>
     34087                                                <MinTileRow>5</MinTileRow>
     34088                                                <MaxTileRow>5</MaxTileRow>
     34089                                                <MinTileCol>8</MinTileCol>
     34090                                                <MaxTileCol>8</MaxTileCol>
     34091                                        </TileMatrixLimits>
     34092                                        <TileMatrixLimits>
     34093                                                <TileMatrix>5</TileMatrix>
     34094                                                <MinTileRow>10</MinTileRow>
     34095                                                <MaxTileRow>10</MaxTileRow>
     34096                                                <MinTileCol>16</MinTileCol>
     34097                                                <MaxTileCol>16</MaxTileCol>
     34098                                        </TileMatrixLimits>
     34099                                        <TileMatrixLimits>
     34100                                                <TileMatrix>6</TileMatrix>
     34101                                                <MinTileRow>21</MinTileRow>
     34102                                                <MaxTileRow>21</MaxTileRow>
     34103                                                <MinTileCol>32</MinTileCol>
     34104                                                <MaxTileCol>32</MaxTileCol>
     34105                                        </TileMatrixLimits>
     34106                                        <TileMatrixLimits>
     34107                                                <TileMatrix>7</TileMatrix>
     34108                                                <MinTileRow>42</MinTileRow>
     34109                                                <MaxTileRow>42</MaxTileRow>
     34110                                                <MinTileCol>64</MinTileCol>
     34111                                                <MaxTileCol>64</MaxTileCol>
     34112                                        </TileMatrixLimits>
     34113                                        <TileMatrixLimits>
     34114                                                <TileMatrix>8</TileMatrix>
     34115                                                <MinTileRow>85</MinTileRow>
     34116                                                <MaxTileRow>85</MaxTileRow>
     34117                                                <MinTileCol>129</MinTileCol>
     34118                                                <MaxTileCol>129</MaxTileCol>
     34119                                        </TileMatrixLimits>
     34120                                        <TileMatrixLimits>
     34121                                                <TileMatrix>9</TileMatrix>
     34122                                                <MinTileRow>171</MinTileRow>
     34123                                                <MaxTileRow>171</MaxTileRow>
     34124                                                <MinTileCol>258</MinTileCol>
     34125                                                <MaxTileCol>259</MaxTileCol>
     34126                                        </TileMatrixLimits>
     34127                                </TileMatrixSetLimits>
     34128                        </TileMatrixSetLink>
     34129                </Layer>
     34130                <Layer>
     34131                        <ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title>
     34132                        <ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract>
     34133                        <ows:Keywords>
     34134                                <ows:Keyword>Photographies</ows:Keyword>
     34135                        </ows:Keywords>
     34136                        <ows:WGS84BoundingBox>
     34137                                <ows:LowerCorner>-1.36423 44.5965</ows:LowerCorner>
     34138                                <ows:UpperCorner>-0.996688 45.1304</ows:UpperCorner>
     34139                        </ows:WGS84BoundingBox>
     34140                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40106204</ows:Identifier>
     34141                        <Style isDefault="true">
     34142                                <ows:Title>Données Brutes</ows:Title>
     34143                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34144                                <ows:Keywords>
     34145                                        <ows:Keyword>Défaut</ows:Keyword>
     34146                                </ows:Keywords>
     34147                                <ows:Identifier>normal</ows:Identifier>
     34148                                <LegendURL format="image/jpeg" height="200"
     34149                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34150                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34151                        </Style>
     34152                        <Format>image/jpeg</Format>
     34153                        <TileMatrixSetLink>
     34154                                <TileMatrixSet>PM</TileMatrixSet>
     34155                                <TileMatrixSetLimits>
     34156                                        <TileMatrixLimits>
     34157                                                <TileMatrix>0</TileMatrix>
     34158                                                <MinTileRow>0</MinTileRow>
     34159                                                <MaxTileRow>0</MaxTileRow>
     34160                                                <MinTileCol>0</MinTileCol>
     34161                                                <MaxTileCol>0</MaxTileCol>
     34162                                        </TileMatrixLimits>
     34163                                        <TileMatrixLimits>
     34164                                                <TileMatrix>1</TileMatrix>
     34165                                                <MinTileRow>0</MinTileRow>
     34166                                                <MaxTileRow>0</MaxTileRow>
     34167                                                <MinTileCol>0</MinTileCol>
     34168                                                <MaxTileCol>0</MaxTileCol>
     34169                                        </TileMatrixLimits>
     34170                                        <TileMatrixLimits>
     34171                                                <TileMatrix>10</TileMatrix>
     34172                                                <MinTileRow>367</MinTileRow>
     34173                                                <MaxTileRow>369</MaxTileRow>
     34174                                                <MinTileCol>508</MinTileCol>
     34175                                                <MaxTileCol>509</MaxTileCol>
     34176                                        </TileMatrixLimits>
     34177                                        <TileMatrixLimits>
     34178                                                <TileMatrix>11</TileMatrix>
     34179                                                <MinTileRow>735</MinTileRow>
     34180                                                <MaxTileRow>739</MaxTileRow>
     34181                                                <MinTileCol>1016</MinTileCol>
     34182                                                <MaxTileCol>1018</MaxTileCol>
     34183                                        </TileMatrixLimits>
     34184                                        <TileMatrixLimits>
     34185                                                <TileMatrix>12</TileMatrix>
     34186                                                <MinTileRow>1471</MinTileRow>
     34187                                                <MaxTileRow>1479</MaxTileRow>
     34188                                                <MinTileCol>2032</MinTileCol>
     34189                                                <MaxTileCol>2036</MaxTileCol>
     34190                                        </TileMatrixLimits>
     34191                                        <TileMatrixLimits>
     34192                                                <TileMatrix>13</TileMatrix>
     34193                                                <MinTileRow>2942</MinTileRow>
     34194                                                <MaxTileRow>2959</MaxTileRow>
     34195                                                <MinTileCol>4065</MinTileCol>
     34196                                                <MaxTileCol>4072</MaxTileCol>
     34197                                        </TileMatrixLimits>
     34198                                        <TileMatrixLimits>
     34199                                                <TileMatrix>14</TileMatrix>
     34200                                                <MinTileRow>5885</MinTileRow>
     34201                                                <MaxTileRow>5919</MaxTileRow>
     34202                                                <MinTileCol>8131</MinTileCol>
     34203                                                <MaxTileCol>8145</MaxTileCol>
     34204                                        </TileMatrixLimits>
     34205                                        <TileMatrixLimits>
     34206                                                <TileMatrix>15</TileMatrix>
     34207                                                <MinTileRow>11771</MinTileRow>
     34208                                                <MaxTileRow>11838</MaxTileRow>
     34209                                                <MinTileCol>16262</MinTileCol>
     34210                                                <MaxTileCol>16290</MaxTileCol>
     34211                                        </TileMatrixLimits>
     34212                                        <TileMatrixLimits>
     34213                                                <TileMatrix>16</TileMatrix>
     34214                                                <MinTileRow>23542</MinTileRow>
     34215                                                <MaxTileRow>23676</MaxTileRow>
     34216                                                <MinTileCol>32525</MinTileCol>
     34217                                                <MaxTileCol>32580</MaxTileCol>
     34218                                        </TileMatrixLimits>
     34219                                        <TileMatrixLimits>
     34220                                                <TileMatrix>17</TileMatrix>
     34221                                                <MinTileRow>47085</MinTileRow>
     34222                                                <MaxTileRow>47353</MaxTileRow>
     34223                                                <MinTileCol>65051</MinTileCol>
     34224                                                <MaxTileCol>65160</MaxTileCol>
     34225                                        </TileMatrixLimits>
     34226                                        <TileMatrixLimits>
     34227                                                <TileMatrix>18</TileMatrix>
     34228                                                <MinTileRow>94170</MinTileRow>
     34229                                                <MaxTileRow>94706</MaxTileRow>
     34230                                                <MinTileCol>130103</MinTileCol>
     34231                                                <MaxTileCol>130321</MaxTileCol>
     34232                                        </TileMatrixLimits>
     34233                                        <TileMatrixLimits>
     34234                                                <TileMatrix>2</TileMatrix>
     34235                                                <MinTileRow>1</MinTileRow>
     34236                                                <MaxTileRow>1</MaxTileRow>
     34237                                                <MinTileCol>1</MinTileCol>
     34238                                                <MaxTileCol>1</MaxTileCol>
     34239                                        </TileMatrixLimits>
     34240                                        <TileMatrixLimits>
     34241                                                <TileMatrix>3</TileMatrix>
     34242                                                <MinTileRow>2</MinTileRow>
     34243                                                <MaxTileRow>2</MaxTileRow>
     34244                                                <MinTileCol>3</MinTileCol>
     34245                                                <MaxTileCol>3</MaxTileCol>
     34246                                        </TileMatrixLimits>
     34247                                        <TileMatrixLimits>
     34248                                                <TileMatrix>4</TileMatrix>
     34249                                                <MinTileRow>5</MinTileRow>
     34250                                                <MaxTileRow>5</MaxTileRow>
     34251                                                <MinTileCol>7</MinTileCol>
     34252                                                <MaxTileCol>7</MaxTileCol>
     34253                                        </TileMatrixLimits>
     34254                                        <TileMatrixLimits>
     34255                                                <TileMatrix>5</TileMatrix>
     34256                                                <MinTileRow>11</MinTileRow>
     34257                                                <MaxTileRow>11</MaxTileRow>
     34258                                                <MinTileCol>15</MinTileCol>
     34259                                                <MaxTileCol>15</MaxTileCol>
     34260                                        </TileMatrixLimits>
     34261                                        <TileMatrixLimits>
     34262                                                <TileMatrix>6</TileMatrix>
     34263                                                <MinTileRow>22</MinTileRow>
     34264                                                <MaxTileRow>23</MaxTileRow>
     34265                                                <MinTileCol>31</MinTileCol>
     34266                                                <MaxTileCol>31</MaxTileCol>
     34267                                        </TileMatrixLimits>
     34268                                        <TileMatrixLimits>
     34269                                                <TileMatrix>7</TileMatrix>
     34270                                                <MinTileRow>45</MinTileRow>
     34271                                                <MaxTileRow>46</MaxTileRow>
     34272                                                <MinTileCol>63</MinTileCol>
     34273                                                <MaxTileCol>63</MaxTileCol>
     34274                                        </TileMatrixLimits>
     34275                                        <TileMatrixLimits>
     34276                                                <TileMatrix>8</TileMatrix>
     34277                                                <MinTileRow>91</MinTileRow>
     34278                                                <MaxTileRow>92</MaxTileRow>
     34279                                                <MinTileCol>127</MinTileCol>
     34280                                                <MaxTileCol>127</MaxTileCol>
     34281                                        </TileMatrixLimits>
     34282                                        <TileMatrixLimits>
     34283                                                <TileMatrix>9</TileMatrix>
     34284                                                <MinTileRow>183</MinTileRow>
     34285                                                <MaxTileRow>184</MaxTileRow>
     34286                                                <MinTileCol>254</MinTileCol>
     34287                                                <MaxTileCol>254</MaxTileCol>
     34288                                        </TileMatrixLimits>
     34289                                </TileMatrixSetLimits>
     34290                        </TileMatrixSetLink>
     34291                </Layer>
     34292                <Layer>
     34293                        <ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title>
     34294                        <ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract>
     34295                        <ows:Keywords>
     34296                                <ows:Keyword>Photographies</ows:Keyword>
     34297                        </ows:Keywords>
     34298                        <ows:WGS84BoundingBox>
     34299                                <ows:LowerCorner>-1.35605 44.3434</ows:LowerCorner>
     34300                                <ows:UpperCorner>-1.10421 44.5323</ows:UpperCorner>
     34301                        </ows:WGS84BoundingBox>
     34302                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40120894</ows:Identifier>
     34303                        <Style isDefault="true">
     34304                                <ows:Title>Données Brutes</ows:Title>
     34305                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34306                                <ows:Keywords>
     34307                                        <ows:Keyword>Défaut</ows:Keyword>
     34308                                </ows:Keywords>
     34309                                <ows:Identifier>normal</ows:Identifier>
     34310                                <LegendURL format="image/jpeg" height="200"
     34311                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34312                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34313                        </Style>
     34314                        <Format>image/jpeg</Format>
     34315                        <TileMatrixSetLink>
     34316                                <TileMatrixSet>PM</TileMatrixSet>
     34317                                <TileMatrixSetLimits>
     34318                                        <TileMatrixLimits>
     34319                                                <TileMatrix>0</TileMatrix>
     34320                                                <MinTileRow>0</MinTileRow>
     34321                                                <MaxTileRow>0</MaxTileRow>
     34322                                                <MinTileCol>0</MinTileCol>
     34323                                                <MaxTileCol>0</MaxTileCol>
     34324                                        </TileMatrixLimits>
     34325                                        <TileMatrixLimits>
     34326                                                <TileMatrix>1</TileMatrix>
     34327                                                <MinTileRow>0</MinTileRow>
     34328                                                <MaxTileRow>0</MaxTileRow>
     34329                                                <MinTileCol>0</MinTileCol>
     34330                                                <MaxTileCol>0</MaxTileCol>
     34331                                        </TileMatrixLimits>
     34332                                        <TileMatrixLimits>
     34333                                                <TileMatrix>10</TileMatrix>
     34334                                                <MinTileRow>370</MinTileRow>
     34335                                                <MaxTileRow>370</MaxTileRow>
     34336                                                <MinTileCol>508</MinTileCol>
     34337                                                <MaxTileCol>508</MaxTileCol>
     34338                                        </TileMatrixLimits>
     34339                                        <TileMatrixLimits>
     34340                                                <TileMatrix>11</TileMatrix>
     34341                                                <MinTileRow>740</MinTileRow>
     34342                                                <MaxTileRow>741</MaxTileRow>
     34343                                                <MinTileCol>1016</MinTileCol>
     34344                                                <MaxTileCol>1017</MaxTileCol>
     34345                                        </TileMatrixLimits>
     34346                                        <TileMatrixLimits>
     34347                                                <TileMatrix>12</TileMatrix>
     34348                                                <MinTileRow>1480</MinTileRow>
     34349                                                <MaxTileRow>1483</MaxTileRow>
     34350                                                <MinTileCol>2032</MinTileCol>
     34351                                                <MaxTileCol>2035</MaxTileCol>
     34352                                        </TileMatrixLimits>
     34353                                        <TileMatrixLimits>
     34354                                                <TileMatrix>13</TileMatrix>
     34355                                                <MinTileRow>2961</MinTileRow>
     34356                                                <MaxTileRow>2967</MaxTileRow>
     34357                                                <MinTileCol>4065</MinTileCol>
     34358                                                <MaxTileCol>4070</MaxTileCol>
     34359                                        </TileMatrixLimits>
     34360                                        <TileMatrixLimits>
     34361                                                <TileMatrix>14</TileMatrix>
     34362                                                <MinTileRow>5923</MinTileRow>
     34363                                                <MaxTileRow>5935</MaxTileRow>
     34364                                                <MinTileCol>8130</MinTileCol>
     34365                                                <MaxTileCol>8141</MaxTileCol>
     34366                                        </TileMatrixLimits>
     34367                                        <TileMatrixLimits>
     34368                                                <TileMatrix>15</TileMatrix>
     34369                                                <MinTileRow>11847</MinTileRow>
     34370                                                <MaxTileRow>11870</MaxTileRow>
     34371                                                <MinTileCol>16261</MinTileCol>
     34372                                                <MaxTileCol>16282</MaxTileCol>
     34373                                        </TileMatrixLimits>
     34374                                        <TileMatrixLimits>
     34375                                                <TileMatrix>16</TileMatrix>
     34376                                                <MinTileRow>23694</MinTileRow>
     34377                                                <MaxTileRow>23741</MaxTileRow>
     34378                                                <MinTileCol>32522</MinTileCol>
     34379                                                <MaxTileCol>32565</MaxTileCol>
     34380                                        </TileMatrixLimits>
     34381                                        <TileMatrixLimits>
     34382                                                <TileMatrix>17</TileMatrix>
     34383                                                <MinTileRow>47389</MinTileRow>
     34384                                                <MaxTileRow>47483</MaxTileRow>
     34385                                                <MinTileCol>65045</MinTileCol>
     34386                                                <MaxTileCol>65130</MaxTileCol>
     34387                                        </TileMatrixLimits>
     34388                                        <TileMatrixLimits>
     34389                                                <TileMatrix>18</TileMatrix>
     34390                                                <MinTileRow>94779</MinTileRow>
     34391                                                <MaxTileRow>94966</MaxTileRow>
     34392                                                <MinTileCol>130091</MinTileCol>
     34393                                                <MaxTileCol>130260</MaxTileCol>
     34394                                        </TileMatrixLimits>
     34395                                        <TileMatrixLimits>
     34396                                                <TileMatrix>2</TileMatrix>
     34397                                                <MinTileRow>1</MinTileRow>
     34398                                                <MaxTileRow>1</MaxTileRow>
     34399                                                <MinTileCol>1</MinTileCol>
     34400                                                <MaxTileCol>1</MaxTileCol>
     34401                                        </TileMatrixLimits>
     34402                                        <TileMatrixLimits>
     34403                                                <TileMatrix>3</TileMatrix>
     34404                                                <MinTileRow>2</MinTileRow>
     34405                                                <MaxTileRow>2</MaxTileRow>
     34406                                                <MinTileCol>3</MinTileCol>
     34407                                                <MaxTileCol>3</MaxTileCol>
     34408                                        </TileMatrixLimits>
     34409                                        <TileMatrixLimits>
     34410                                                <TileMatrix>4</TileMatrix>
     34411                                                <MinTileRow>5</MinTileRow>
     34412                                                <MaxTileRow>5</MaxTileRow>
     34413                                                <MinTileCol>7</MinTileCol>
     34414                                                <MaxTileCol>7</MaxTileCol>
     34415                                        </TileMatrixLimits>
     34416                                        <TileMatrixLimits>
     34417                                                <TileMatrix>5</TileMatrix>
     34418                                                <MinTileRow>11</MinTileRow>
     34419                                                <MaxTileRow>11</MaxTileRow>
     34420                                                <MinTileCol>15</MinTileCol>
     34421                                                <MaxTileCol>15</MaxTileCol>
     34422                                        </TileMatrixLimits>
     34423                                        <TileMatrixLimits>
     34424                                                <TileMatrix>6</TileMatrix>
     34425                                                <MinTileRow>23</MinTileRow>
     34426                                                <MaxTileRow>23</MaxTileRow>
     34427                                                <MinTileCol>31</MinTileCol>
     34428                                                <MaxTileCol>31</MaxTileCol>
     34429                                        </TileMatrixLimits>
     34430                                        <TileMatrixLimits>
     34431                                                <TileMatrix>7</TileMatrix>
     34432                                                <MinTileRow>46</MinTileRow>
     34433                                                <MaxTileRow>46</MaxTileRow>
     34434                                                <MinTileCol>63</MinTileCol>
     34435                                                <MaxTileCol>63</MaxTileCol>
     34436                                        </TileMatrixLimits>
     34437                                        <TileMatrixLimits>
     34438                                                <TileMatrix>8</TileMatrix>
     34439                                                <MinTileRow>92</MinTileRow>
     34440                                                <MaxTileRow>92</MaxTileRow>
     34441                                                <MinTileCol>127</MinTileCol>
     34442                                                <MaxTileCol>127</MaxTileCol>
     34443                                        </TileMatrixLimits>
     34444                                        <TileMatrixLimits>
     34445                                                <TileMatrix>9</TileMatrix>
     34446                                                <MinTileRow>185</MinTileRow>
     34447                                                <MaxTileRow>185</MaxTileRow>
     34448                                                <MinTileCol>254</MinTileCol>
     34449                                                <MaxTileCol>254</MaxTileCol>
     34450                                        </TileMatrixLimits>
     34451                                </TileMatrixSetLimits>
     34452                        </TileMatrixSetLink>
     34453                </Layer>
     34454                <Layer>
     34455                        <ows:Title>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Title>
     34456                        <ows:Abstract>Orthophotographies Geosud de LITTORAL-AQUITAIN 2014</ows:Abstract>
     34457                        <ows:Keywords>
     34458                                <ows:Keyword>Photographies</ows:Keyword>
     34459                        </ows:Keywords>
     34460                        <ows:WGS84BoundingBox>
     34461                                <ows:LowerCorner>-1.27503 45.0769</ows:LowerCorner>
     34462                                <ows:UpperCorner>-1.00538 45.2932</ows:UpperCorner>
     34463                        </ows:WGS84BoundingBox>
     34464                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LITTORAL-AQUITAIN-2014-02-06-40133949</ows:Identifier>
     34465                        <Style isDefault="true">
     34466                                <ows:Title>Données Brutes</ows:Title>
     34467                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34468                                <ows:Keywords>
     34469                                        <ows:Keyword>Défaut</ows:Keyword>
     34470                                </ows:Keywords>
     34471                                <ows:Identifier>normal</ows:Identifier>
     34472                                <LegendURL format="image/jpeg" height="200"
     34473                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34474                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34475                        </Style>
     34476                        <Format>image/jpeg</Format>
     34477                        <TileMatrixSetLink>
     34478                                <TileMatrixSet>PM</TileMatrixSet>
     34479                                <TileMatrixSetLimits>
     34480                                        <TileMatrixLimits>
     34481                                                <TileMatrix>0</TileMatrix>
     34482                                                <MinTileRow>0</MinTileRow>
     34483                                                <MaxTileRow>0</MaxTileRow>
     34484                                                <MinTileCol>0</MinTileCol>
     34485                                                <MaxTileCol>0</MaxTileCol>
     34486                                        </TileMatrixLimits>
     34487                                        <TileMatrixLimits>
     34488                                                <TileMatrix>1</TileMatrix>
     34489                                                <MinTileRow>0</MinTileRow>
     34490                                                <MaxTileRow>0</MaxTileRow>
     34491                                                <MinTileCol>0</MinTileCol>
     34492                                                <MaxTileCol>0</MaxTileCol>
     34493                                        </TileMatrixLimits>
     34494                                        <TileMatrixLimits>
     34495                                                <TileMatrix>10</TileMatrix>
     34496                                                <MinTileRow>367</MinTileRow>
     34497                                                <MaxTileRow>368</MaxTileRow>
     34498                                                <MinTileCol>508</MinTileCol>
     34499                                                <MaxTileCol>509</MaxTileCol>
     34500                                        </TileMatrixLimits>
     34501                                        <TileMatrixLimits>
     34502                                                <TileMatrix>11</TileMatrix>
     34503                                                <MinTileRow>734</MinTileRow>
     34504                                                <MaxTileRow>736</MaxTileRow>
     34505                                                <MinTileCol>1016</MinTileCol>
     34506                                                <MaxTileCol>1018</MaxTileCol>
     34507                                        </TileMatrixLimits>
     34508                                        <TileMatrixLimits>
     34509                                                <TileMatrix>12</TileMatrix>
     34510                                                <MinTileRow>1468</MinTileRow>
     34511                                                <MaxTileRow>1472</MaxTileRow>
     34512                                                <MinTileCol>2033</MinTileCol>
     34513                                                <MaxTileCol>2036</MaxTileCol>
     34514                                        </TileMatrixLimits>
     34515                                        <TileMatrixLimits>
     34516                                                <TileMatrix>13</TileMatrix>
     34517                                                <MinTileRow>2937</MinTileRow>
     34518                                                <MaxTileRow>2944</MaxTileRow>
     34519                                                <MinTileCol>4067</MinTileCol>
     34520                                                <MaxTileCol>4072</MaxTileCol>
     34521                                        </TileMatrixLimits>
     34522                                        <TileMatrixLimits>
     34523                                                <TileMatrix>14</TileMatrix>
     34524                                                <MinTileRow>5875</MinTileRow>
     34525                                                <MaxTileRow>5888</MaxTileRow>
     34526                                                <MinTileCol>8134</MinTileCol>
     34527                                                <MaxTileCol>8145</MaxTileCol>
     34528                                        </TileMatrixLimits>
     34529                                        <TileMatrixLimits>
     34530                                                <TileMatrix>15</TileMatrix>
     34531                                                <MinTileRow>11750</MinTileRow>
     34532                                                <MaxTileRow>11776</MaxTileRow>
     34533                                                <MinTileCol>16268</MinTileCol>
     34534                                                <MaxTileCol>16291</MaxTileCol>
     34535                                        </TileMatrixLimits>
     34536                                        <TileMatrixLimits>
     34537                                                <TileMatrix>16</TileMatrix>
     34538                                                <MinTileRow>23500</MinTileRow>
     34539                                                <MaxTileRow>23553</MaxTileRow>
     34540                                                <MinTileCol>32537</MinTileCol>
     34541                                                <MaxTileCol>32583</MaxTileCol>
     34542                                        </TileMatrixLimits>
     34543                                        <TileMatrixLimits>
     34544                                                <TileMatrix>17</TileMatrix>
     34545                                                <MinTileRow>47001</MinTileRow>
     34546                                                <MaxTileRow>47107</MaxTileRow>
     34547                                                <MinTileCol>65075</MinTileCol>
     34548                                                <MaxTileCol>65166</MaxTileCol>
     34549                                        </TileMatrixLimits>
     34550                                        <TileMatrixLimits>
     34551                                                <TileMatrix>18</TileMatrix>
     34552                                                <MinTileRow>94003</MinTileRow>
     34553                                                <MaxTileRow>94214</MaxTileRow>
     34554                                                <MinTileCol>130150</MinTileCol>
     34555                                                <MaxTileCol>130332</MaxTileCol>
     34556                                        </TileMatrixLimits>
     34557                                        <TileMatrixLimits>
     34558                                                <TileMatrix>2</TileMatrix>
     34559                                                <MinTileRow>1</MinTileRow>
     34560                                                <MaxTileRow>1</MaxTileRow>
     34561                                                <MinTileCol>1</MinTileCol>
     34562                                                <MaxTileCol>1</MaxTileCol>
     34563                                        </TileMatrixLimits>
     34564                                        <TileMatrixLimits>
     34565                                                <TileMatrix>3</TileMatrix>
     34566                                                <MinTileRow>2</MinTileRow>
     34567                                                <MaxTileRow>2</MaxTileRow>
     34568                                                <MinTileCol>3</MinTileCol>
     34569                                                <MaxTileCol>3</MaxTileCol>
     34570                                        </TileMatrixLimits>
     34571                                        <TileMatrixLimits>
     34572                                                <TileMatrix>4</TileMatrix>
     34573                                                <MinTileRow>5</MinTileRow>
     34574                                                <MaxTileRow>5</MaxTileRow>
     34575                                                <MinTileCol>7</MinTileCol>
     34576                                                <MaxTileCol>7</MaxTileCol>
     34577                                        </TileMatrixLimits>
     34578                                        <TileMatrixLimits>
     34579                                                <TileMatrix>5</TileMatrix>
     34580                                                <MinTileRow>11</MinTileRow>
     34581                                                <MaxTileRow>11</MaxTileRow>
     34582                                                <MinTileCol>15</MinTileCol>
     34583                                                <MaxTileCol>15</MaxTileCol>
     34584                                        </TileMatrixLimits>
     34585                                        <TileMatrixLimits>
     34586                                                <TileMatrix>6</TileMatrix>
     34587                                                <MinTileRow>22</MinTileRow>
     34588                                                <MaxTileRow>23</MaxTileRow>
     34589                                                <MinTileCol>31</MinTileCol>
     34590                                                <MaxTileCol>31</MaxTileCol>
     34591                                        </TileMatrixLimits>
     34592                                        <TileMatrixLimits>
     34593                                                <TileMatrix>7</TileMatrix>
     34594                                                <MinTileRow>45</MinTileRow>
     34595                                                <MaxTileRow>46</MaxTileRow>
     34596                                                <MinTileCol>63</MinTileCol>
     34597                                                <MaxTileCol>63</MaxTileCol>
     34598                                        </TileMatrixLimits>
     34599                                        <TileMatrixLimits>
     34600                                                <TileMatrix>8</TileMatrix>
     34601                                                <MinTileRow>91</MinTileRow>
     34602                                                <MaxTileRow>92</MaxTileRow>
     34603                                                <MinTileCol>127</MinTileCol>
     34604                                                <MaxTileCol>127</MaxTileCol>
     34605                                        </TileMatrixLimits>
     34606                                        <TileMatrixLimits>
     34607                                                <TileMatrix>9</TileMatrix>
     34608                                                <MinTileRow>183</MinTileRow>
     34609                                                <MaxTileRow>184</MaxTileRow>
     34610                                                <MinTileCol>254</MinTileCol>
     34611                                                <MaxTileCol>254</MaxTileCol>
     34612                                        </TileMatrixLimits>
     34613                                </TileMatrixSetLimits>
     34614                        </TileMatrixSetLink>
     34615                </Layer>
     34616                <Layer>
     34617                        <ows:Title>Orthophotographies Geosud de LOIRET 2014</ows:Title>
     34618                        <ows:Abstract>Orthophotographies satellites de LOIRET issues du projet Geosud.</ows:Abstract>
     34619                        <ows:Keywords>
     34620                                <ows:Keyword>Photographies</ows:Keyword>
     34621                        </ows:Keywords>
     34622                        <ows:WGS84BoundingBox>
     34623                                <ows:LowerCorner>2.75892 47.8231</ows:LowerCorner>
     34624                                <ows:UpperCorner>3 47.9404</ows:UpperCorner>
     34625                        </ows:WGS84BoundingBox>
     34626                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LOIRET-2014-09-16-39584256</ows:Identifier>
     34627                        <Style isDefault="true">
     34628                                <ows:Title>Données Brutes</ows:Title>
     34629                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34630                                <ows:Keywords>
     34631                                        <ows:Keyword>Défaut</ows:Keyword>
     34632                                </ows:Keywords>
     34633                                <ows:Identifier>normal</ows:Identifier>
     34634                                <LegendURL format="image/jpeg" height="200"
     34635                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34636                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34637                        </Style>
     34638                        <Format>image/jpeg</Format>
     34639                        <TileMatrixSetLink>
     34640                                <TileMatrixSet>PM</TileMatrixSet>
     34641                                <TileMatrixSetLimits>
     34642                                        <TileMatrixLimits>
     34643                                                <TileMatrix>0</TileMatrix>
     34644                                                <MinTileRow>0</MinTileRow>
     34645                                                <MaxTileRow>0</MaxTileRow>
     34646                                                <MinTileCol>0</MinTileCol>
     34647                                                <MaxTileCol>0</MaxTileCol>
     34648                                        </TileMatrixLimits>
     34649                                        <TileMatrixLimits>
     34650                                                <TileMatrix>1</TileMatrix>
     34651                                                <MinTileRow>0</MinTileRow>
     34652                                                <MaxTileRow>0</MaxTileRow>
     34653                                                <MinTileCol>1</MinTileCol>
     34654                                                <MaxTileCol>1</MaxTileCol>
     34655                                        </TileMatrixLimits>
     34656                                        <TileMatrixLimits>
     34657                                                <TileMatrix>10</TileMatrix>
     34658                                                <MinTileRow>356</MinTileRow>
     34659                                                <MaxTileRow>356</MaxTileRow>
     34660                                                <MinTileCol>519</MinTileCol>
     34661                                                <MaxTileCol>520</MaxTileCol>
     34662                                        </TileMatrixLimits>
     34663                                        <TileMatrixLimits>
     34664                                                <TileMatrix>11</TileMatrix>
     34665                                                <MinTileRow>712</MinTileRow>
     34666                                                <MaxTileRow>713</MaxTileRow>
     34667                                                <MinTileCol>1039</MinTileCol>
     34668                                                <MaxTileCol>1041</MaxTileCol>
     34669                                        </TileMatrixLimits>
     34670                                        <TileMatrixLimits>
     34671                                                <TileMatrix>12</TileMatrix>
     34672                                                <MinTileRow>1424</MinTileRow>
     34673                                                <MaxTileRow>1426</MaxTileRow>
     34674                                                <MinTileCol>2079</MinTileCol>
     34675                                                <MaxTileCol>2082</MaxTileCol>
     34676                                        </TileMatrixLimits>
     34677                                        <TileMatrixLimits>
     34678                                                <TileMatrix>13</TileMatrix>
     34679                                                <MinTileRow>2849</MinTileRow>
     34680                                                <MaxTileRow>2853</MaxTileRow>
     34681                                                <MinTileCol>4158</MinTileCol>
     34682                                                <MaxTileCol>4164</MaxTileCol>
     34683                                        </TileMatrixLimits>
     34684                                        <TileMatrixLimits>
     34685                                                <TileMatrix>14</TileMatrix>
     34686                                                <MinTileRow>5699</MinTileRow>
     34687                                                <MaxTileRow>5707</MaxTileRow>
     34688                                                <MinTileCol>8317</MinTileCol>
     34689                                                <MaxTileCol>8328</MaxTileCol>
     34690                                        </TileMatrixLimits>
     34691                                        <TileMatrixLimits>
     34692                                                <TileMatrix>15</TileMatrix>
     34693                                                <MinTileRow>11398</MinTileRow>
     34694                                                <MaxTileRow>11414</MaxTileRow>
     34695                                                <MinTileCol>16635</MinTileCol>
     34696                                                <MaxTileCol>16657</MaxTileCol>
     34697                                        </TileMatrixLimits>
     34698                                        <TileMatrixLimits>
     34699                                                <TileMatrix>16</TileMatrix>
     34700                                                <MinTileRow>22797</MinTileRow>
     34701                                                <MaxTileRow>22829</MaxTileRow>
     34702                                                <MinTileCol>33270</MinTileCol>
     34703                                                <MaxTileCol>33314</MaxTileCol>
     34704                                        </TileMatrixLimits>
     34705                                        <TileMatrixLimits>
     34706                                                <TileMatrix>17</TileMatrix>
     34707                                                <MinTileRow>45594</MinTileRow>
     34708                                                <MaxTileRow>45658</MaxTileRow>
     34709                                                <MinTileCol>66540</MinTileCol>
     34710                                                <MaxTileCol>66628</MaxTileCol>
     34711                                        </TileMatrixLimits>
     34712                                        <TileMatrixLimits>
     34713                                                <TileMatrix>18</TileMatrix>
     34714                                                <MinTileRow>91189</MinTileRow>
     34715                                                <MaxTileRow>91317</MaxTileRow>
     34716                                                <MinTileCol>133080</MinTileCol>
     34717                                                <MaxTileCol>133256</MaxTileCol>
     34718                                        </TileMatrixLimits>
     34719                                        <TileMatrixLimits>
     34720                                                <TileMatrix>2</TileMatrix>
     34721                                                <MinTileRow>1</MinTileRow>
     34722                                                <MaxTileRow>1</MaxTileRow>
     34723                                                <MinTileCol>2</MinTileCol>
     34724                                                <MaxTileCol>2</MaxTileCol>
     34725                                        </TileMatrixLimits>
     34726                                        <TileMatrixLimits>
     34727                                                <TileMatrix>3</TileMatrix>
     34728                                                <MinTileRow>2</MinTileRow>
     34729                                                <MaxTileRow>2</MaxTileRow>
     34730                                                <MinTileCol>4</MinTileCol>
     34731                                                <MaxTileCol>4</MaxTileCol>
     34732                                        </TileMatrixLimits>
     34733                                        <TileMatrixLimits>
     34734                                                <TileMatrix>4</TileMatrix>
     34735                                                <MinTileRow>5</MinTileRow>
     34736                                                <MaxTileRow>5</MaxTileRow>
     34737                                                <MinTileCol>8</MinTileCol>
     34738                                                <MaxTileCol>8</MaxTileCol>
     34739                                        </TileMatrixLimits>
     34740                                        <TileMatrixLimits>
     34741                                                <TileMatrix>5</TileMatrix>
     34742                                                <MinTileRow>11</MinTileRow>
     34743                                                <MaxTileRow>11</MaxTileRow>
     34744                                                <MinTileCol>16</MinTileCol>
     34745                                                <MaxTileCol>16</MaxTileCol>
     34746                                        </TileMatrixLimits>
     34747                                        <TileMatrixLimits>
     34748                                                <TileMatrix>6</TileMatrix>
     34749                                                <MinTileRow>22</MinTileRow>
     34750                                                <MaxTileRow>22</MaxTileRow>
     34751                                                <MinTileCol>32</MinTileCol>
     34752                                                <MaxTileCol>32</MaxTileCol>
     34753                                        </TileMatrixLimits>
     34754                                        <TileMatrixLimits>
     34755                                                <TileMatrix>7</TileMatrix>
     34756                                                <MinTileRow>44</MinTileRow>
     34757                                                <MaxTileRow>44</MaxTileRow>
     34758                                                <MinTileCol>64</MinTileCol>
     34759                                                <MaxTileCol>65</MaxTileCol>
     34760                                        </TileMatrixLimits>
     34761                                        <TileMatrixLimits>
     34762                                                <TileMatrix>8</TileMatrix>
     34763                                                <MinTileRow>89</MinTileRow>
     34764                                                <MaxTileRow>89</MaxTileRow>
     34765                                                <MinTileCol>129</MinTileCol>
     34766                                                <MaxTileCol>130</MaxTileCol>
     34767                                        </TileMatrixLimits>
     34768                                        <TileMatrixLimits>
     34769                                                <TileMatrix>9</TileMatrix>
     34770                                                <MinTileRow>178</MinTileRow>
     34771                                                <MaxTileRow>178</MaxTileRow>
     34772                                                <MinTileCol>259</MinTileCol>
     34773                                                <MaxTileCol>260</MaxTileCol>
     34774                                        </TileMatrixLimits>
     34775                                </TileMatrixSetLimits>
     34776                        </TileMatrixSetLink>
     34777                </Layer>
     34778                <Layer>
     34779                        <ows:Title>Orthophotographies Geosud de LORRAINE 2014</ows:Title>
     34780                        <ows:Abstract>Orthophotographies satellites de LORRAINE issues du projet Geosud.</ows:Abstract>
     34781                        <ows:Keywords>
     34782                                <ows:Keyword>Photographies</ows:Keyword>
     34783                        </ows:Keywords>
     34784                        <ows:WGS84BoundingBox>
     34785                                <ows:LowerCorner>4.83146 47.7619</ows:LowerCorner>
     34786                                <ows:UpperCorner>7.7219 49.7242</ows:UpperCorner>
     34787                        </ows:WGS84BoundingBox>
     34788                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LORRAINE-2014</ows:Identifier>
     34789                        <Style isDefault="true">
     34790                                <ows:Title>Données Brutes</ows:Title>
     34791                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34792                                <ows:Keywords>
     34793                                        <ows:Keyword>Défaut</ows:Keyword>
     34794                                </ows:Keywords>
     34795                                <ows:Identifier>normal</ows:Identifier>
     34796                                <LegendURL format="image/jpeg" height="200"
     34797                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34798                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34799                        </Style>
     34800                        <Format>image/jpeg</Format>
     34801                        <TileMatrixSetLink>
     34802                                <TileMatrixSet>PM</TileMatrixSet>
     34803                                <TileMatrixSetLimits>
     34804                                        <TileMatrixLimits>
     34805                                                <TileMatrix>0</TileMatrix>
     34806                                                <MinTileRow>0</MinTileRow>
     34807                                                <MaxTileRow>0</MaxTileRow>
     34808                                                <MinTileCol>0</MinTileCol>
     34809                                                <MaxTileCol>0</MaxTileCol>
     34810                                        </TileMatrixLimits>
     34811                                        <TileMatrixLimits>
     34812                                                <TileMatrix>1</TileMatrix>
     34813                                                <MinTileRow>0</MinTileRow>
     34814                                                <MaxTileRow>0</MaxTileRow>
     34815                                                <MinTileCol>1</MinTileCol>
     34816                                                <MaxTileCol>1</MaxTileCol>
     34817                                        </TileMatrixLimits>
     34818                                        <TileMatrixLimits>
     34819                                                <TileMatrix>10</TileMatrix>
     34820                                                <MinTileRow>348</MinTileRow>
     34821                                                <MaxTileRow>356</MaxTileRow>
     34822                                                <MinTileCol>525</MinTileCol>
     34823                                                <MaxTileCol>533</MaxTileCol>
     34824                                        </TileMatrixLimits>
     34825                                        <TileMatrixLimits>
     34826                                                <TileMatrix>11</TileMatrix>
     34827                                                <MinTileRow>697</MinTileRow>
     34828                                                <MaxTileRow>713</MaxTileRow>
     34829                                                <MinTileCol>1051</MinTileCol>
     34830                                                <MaxTileCol>1067</MaxTileCol>
     34831                                        </TileMatrixLimits>
     34832                                        <TileMatrixLimits>
     34833                                                <TileMatrix>12</TileMatrix>
     34834                                                <MinTileRow>1394</MinTileRow>
     34835                                                <MaxTileRow>1427</MaxTileRow>
     34836                                                <MinTileCol>2103</MinTileCol>
     34837                                                <MaxTileCol>2135</MaxTileCol>
     34838                                        </TileMatrixLimits>
     34839                                        <TileMatrixLimits>
     34840                                                <TileMatrix>13</TileMatrix>
     34841                                                <MinTileRow>2788</MinTileRow>
     34842                                                <MaxTileRow>2854</MaxTileRow>
     34843                                                <MinTileCol>4206</MinTileCol>
     34844                                                <MaxTileCol>4270</MaxTileCol>
     34845                                        </TileMatrixLimits>
     34846                                        <TileMatrixLimits>
     34847                                                <TileMatrix>14</TileMatrix>
     34848                                                <MinTileRow>5576</MinTileRow>
     34849                                                <MaxTileRow>5709</MaxTileRow>
     34850                                                <MinTileCol>8413</MinTileCol>
     34851                                                <MaxTileCol>8541</MaxTileCol>
     34852                                        </TileMatrixLimits>
     34853                                        <TileMatrixLimits>
     34854                                                <TileMatrix>15</TileMatrix>
     34855                                                <MinTileRow>11152</MinTileRow>
     34856                                                <MaxTileRow>11419</MaxTileRow>
     34857                                                <MinTileCol>16826</MinTileCol>
     34858                                                <MaxTileCol>17082</MaxTileCol>
     34859                                        </TileMatrixLimits>
     34860                                        <TileMatrixLimits>
     34861                                                <TileMatrix>16</TileMatrix>
     34862                                                <MinTileRow>22305</MinTileRow>
     34863                                                <MaxTileRow>22838</MaxTileRow>
     34864                                                <MinTileCol>33653</MinTileCol>
     34865                                                <MaxTileCol>34164</MaxTileCol>
     34866                                        </TileMatrixLimits>
     34867                                        <TileMatrixLimits>
     34868                                                <TileMatrix>17</TileMatrix>
     34869                                                <MinTileRow>44610</MinTileRow>
     34870                                                <MaxTileRow>45677</MaxTileRow>
     34871                                                <MinTileCol>67306</MinTileCol>
     34872                                                <MaxTileCol>68329</MaxTileCol>
     34873                                        </TileMatrixLimits>
     34874                                        <TileMatrixLimits>
     34875                                                <TileMatrix>2</TileMatrix>
     34876                                                <MinTileRow>1</MinTileRow>
     34877                                                <MaxTileRow>1</MaxTileRow>
     34878                                                <MinTileCol>2</MinTileCol>
     34879                                                <MaxTileCol>2</MaxTileCol>
     34880                                        </TileMatrixLimits>
     34881                                        <TileMatrixLimits>
     34882                                                <TileMatrix>3</TileMatrix>
     34883                                                <MinTileRow>2</MinTileRow>
     34884                                                <MaxTileRow>2</MaxTileRow>
     34885                                                <MinTileCol>4</MinTileCol>
     34886                                                <MaxTileCol>4</MaxTileCol>
     34887                                        </TileMatrixLimits>
     34888                                        <TileMatrixLimits>
     34889                                                <TileMatrix>4</TileMatrix>
     34890                                                <MinTileRow>5</MinTileRow>
     34891                                                <MaxTileRow>5</MaxTileRow>
     34892                                                <MinTileCol>8</MinTileCol>
     34893                                                <MaxTileCol>8</MaxTileCol>
     34894                                        </TileMatrixLimits>
     34895                                        <TileMatrixLimits>
     34896                                                <TileMatrix>5</TileMatrix>
     34897                                                <MinTileRow>10</MinTileRow>
     34898                                                <MaxTileRow>11</MaxTileRow>
     34899                                                <MinTileCol>16</MinTileCol>
     34900                                                <MaxTileCol>16</MaxTileCol>
     34901                                        </TileMatrixLimits>
     34902                                        <TileMatrixLimits>
     34903                                                <TileMatrix>6</TileMatrix>
     34904                                                <MinTileRow>21</MinTileRow>
     34905                                                <MaxTileRow>22</MaxTileRow>
     34906                                                <MinTileCol>32</MinTileCol>
     34907                                                <MaxTileCol>33</MaxTileCol>
     34908                                        </TileMatrixLimits>
     34909                                        <TileMatrixLimits>
     34910                                                <TileMatrix>7</TileMatrix>
     34911                                                <MinTileRow>43</MinTileRow>
     34912                                                <MaxTileRow>44</MaxTileRow>
     34913                                                <MinTileCol>65</MinTileCol>
     34914                                                <MaxTileCol>66</MaxTileCol>
     34915                                        </TileMatrixLimits>
     34916                                        <TileMatrixLimits>
     34917                                                <TileMatrix>8</TileMatrix>
     34918                                                <MinTileRow>87</MinTileRow>
     34919                                                <MaxTileRow>89</MaxTileRow>
     34920                                                <MinTileCol>131</MinTileCol>
     34921                                                <MaxTileCol>133</MaxTileCol>
     34922                                        </TileMatrixLimits>
     34923                                        <TileMatrixLimits>
     34924                                                <TileMatrix>9</TileMatrix>
     34925                                                <MinTileRow>174</MinTileRow>
     34926                                                <MaxTileRow>178</MaxTileRow>
     34927                                                <MinTileCol>262</MinTileCol>
     34928                                                <MaxTileCol>266</MaxTileCol>
     34929                                        </TileMatrixLimits>
     34930                                </TileMatrixSetLimits>
     34931                        </TileMatrixSetLink>
     34932                </Layer>
     34933                <Layer>
     34934                        <ows:Title>Orthophotographies Geosud de LUCHEY-COUHINS</ows:Title>
     34935                        <ows:Abstract>Orthophotographies satellites de LUCHEY-COUHINS issues du projet Geosud.</ows:Abstract>
     34936                        <ows:Keywords>
     34937                                <ows:Keyword>Photographies</ows:Keyword>
     34938                        </ows:Keywords>
     34939                        <ows:WGS84BoundingBox>
     34940                                <ows:LowerCorner>-0.674555 44.7389</ows:LowerCorner>
     34941                                <ows:UpperCorner>-0.53219 44.8395</ows:UpperCorner>
     34942                        </ows:WGS84BoundingBox>
     34943                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_LUCHEY-COUHINS-2013-08-20-40612772</ows:Identifier>
     34944                        <Style isDefault="true">
     34945                                <ows:Title>Données Brutes</ows:Title>
     34946                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     34947                                <ows:Keywords>
     34948                                        <ows:Keyword>Défaut</ows:Keyword>
     34949                                </ows:Keywords>
     34950                                <ows:Identifier>normal</ows:Identifier>
     34951                                <LegendURL format="image/jpeg" height="200"
     34952                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     34953                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     34954                        </Style>
     34955                        <Format>image/jpeg</Format>
     34956                        <TileMatrixSetLink>
     34957                                <TileMatrixSet>PM</TileMatrixSet>
     34958                                <TileMatrixSetLimits>
     34959                                        <TileMatrixLimits>
     34960                                                <TileMatrix>0</TileMatrix>
     34961                                                <MinTileRow>0</MinTileRow>
     34962                                                <MaxTileRow>0</MaxTileRow>
     34963                                                <MinTileCol>0</MinTileCol>
     34964                                                <MaxTileCol>0</MaxTileCol>
     34965                                        </TileMatrixLimits>
     34966                                        <TileMatrixLimits>
     34967                                                <TileMatrix>1</TileMatrix>
     34968                                                <MinTileRow>0</MinTileRow>
     34969                                                <MaxTileRow>0</MaxTileRow>
     34970                                                <MinTileCol>0</MinTileCol>
     34971                                                <MaxTileCol>0</MaxTileCol>
     34972                                        </TileMatrixLimits>
     34973                                        <TileMatrixLimits>
     34974                                                <TileMatrix>10</TileMatrix>
     34975                                                <MinTileRow>368</MinTileRow>
     34976                                                <MaxTileRow>369</MaxTileRow>
     34977                                                <MinTileCol>510</MinTileCol>
     34978                                                <MaxTileCol>510</MaxTileCol>
     34979                                        </TileMatrixLimits>
     34980                                        <TileMatrixLimits>
     34981                                                <TileMatrix>11</TileMatrix>
     34982                                                <MinTileRow>737</MinTileRow>
     34983                                                <MaxTileRow>738</MaxTileRow>
     34984                                                <MinTileCol>1020</MinTileCol>
     34985                                                <MaxTileCol>1021</MaxTileCol>
     34986                                        </TileMatrixLimits>
     34987                                        <TileMatrixLimits>
     34988                                                <TileMatrix>12</TileMatrix>
     34989                                                <MinTileRow>1475</MinTileRow>
     34990                                                <MaxTileRow>1477</MaxTileRow>
     34991                                                <MinTileCol>2040</MinTileCol>
     34992                                                <MaxTileCol>2042</MaxTileCol>
     34993                                        </TileMatrixLimits>
     34994                                        <TileMatrixLimits>
     34995                                                <TileMatrix>13</TileMatrix>
     34996                                                <MinTileRow>2951</MinTileRow>
     34997                                                <MaxTileRow>2955</MaxTileRow>
     34998                                                <MinTileCol>4080</MinTileCol>
     34999                                                <MaxTileCol>4084</MaxTileCol>
     35000                                        </TileMatrixLimits>
     35001                                        <TileMatrixLimits>
     35002                                                <TileMatrix>14</TileMatrix>
     35003                                                <MinTileRow>5903</MinTileRow>
     35004                                                <MaxTileRow>5910</MaxTileRow>
     35005                                                <MinTileCol>8161</MinTileCol>
     35006                                                <MaxTileCol>8168</MaxTileCol>
     35007                                        </TileMatrixLimits>
     35008                                        <TileMatrixLimits>
     35009                                                <TileMatrix>15</TileMatrix>
     35010                                                <MinTileRow>11807</MinTileRow>
     35011                                                <MaxTileRow>11821</MaxTileRow>
     35012                                                <MinTileCol>16322</MinTileCol>
     35013                                                <MaxTileCol>16336</MaxTileCol>
     35014                                        </TileMatrixLimits>
     35015                                        <TileMatrixLimits>
     35016                                                <TileMatrix>16</TileMatrix>
     35017                                                <MinTileRow>23614</MinTileRow>
     35018                                                <MaxTileRow>23643</MaxTileRow>
     35019                                                <MinTileCol>32644</MinTileCol>
     35020                                                <MaxTileCol>32672</MaxTileCol>
     35021                                        </TileMatrixLimits>
     35022                                        <TileMatrixLimits>
     35023                                                <TileMatrix>17</TileMatrix>
     35024                                                <MinTileRow>47228</MinTileRow>
     35025                                                <MaxTileRow>47287</MaxTileRow>
     35026                                                <MinTileCol>65288</MinTileCol>
     35027                                                <MaxTileCol>65344</MaxTileCol>
     35028                                        </TileMatrixLimits>
     35029                                        <TileMatrixLimits>
     35030                                                <TileMatrix>18</TileMatrix>
     35031                                                <MinTileRow>94457</MinTileRow>
     35032                                                <MaxTileRow>94575</MaxTileRow>
     35033                                                <MinTileCol>130576</MinTileCol>
     35034                                                <MaxTileCol>130688</MaxTileCol>
     35035                                        </TileMatrixLimits>
     35036                                        <TileMatrixLimits>
     35037                                                <TileMatrix>2</TileMatrix>
     35038                                                <MinTileRow>1</MinTileRow>
     35039                                                <MaxTileRow>1</MaxTileRow>
     35040                                                <MinTileCol>1</MinTileCol>
     35041                                                <MaxTileCol>1</MaxTileCol>
     35042                                        </TileMatrixLimits>
     35043                                        <TileMatrixLimits>
     35044                                                <TileMatrix>3</TileMatrix>
     35045                                                <MinTileRow>2</MinTileRow>
     35046                                                <MaxTileRow>2</MaxTileRow>
     35047                                                <MinTileCol>3</MinTileCol>
     35048                                                <MaxTileCol>3</MaxTileCol>
     35049                                        </TileMatrixLimits>
     35050                                        <TileMatrixLimits>
     35051                                                <TileMatrix>4</TileMatrix>
     35052                                                <MinTileRow>5</MinTileRow>
     35053                                                <MaxTileRow>5</MaxTileRow>
     35054                                                <MinTileCol>7</MinTileCol>
     35055                                                <MaxTileCol>7</MaxTileCol>
     35056                                        </TileMatrixLimits>
     35057                                        <TileMatrixLimits>
     35058                                                <TileMatrix>5</TileMatrix>
     35059                                                <MinTileRow>11</MinTileRow>
     35060                                                <MaxTileRow>11</MaxTileRow>
     35061                                                <MinTileCol>15</MinTileCol>
     35062                                                <MaxTileCol>15</MaxTileCol>
     35063                                        </TileMatrixLimits>
     35064                                        <TileMatrixLimits>
     35065                                                <TileMatrix>6</TileMatrix>
     35066                                                <MinTileRow>23</MinTileRow>
     35067                                                <MaxTileRow>23</MaxTileRow>
     35068                                                <MinTileCol>31</MinTileCol>
     35069                                                <MaxTileCol>31</MaxTileCol>
     35070                                        </TileMatrixLimits>
     35071                                        <TileMatrixLimits>
     35072                                                <TileMatrix>7</TileMatrix>
     35073                                                <MinTileRow>46</MinTileRow>
     35074                                                <MaxTileRow>46</MaxTileRow>
     35075                                                <MinTileCol>63</MinTileCol>
     35076                                                <MaxTileCol>63</MaxTileCol>
     35077                                        </TileMatrixLimits>
     35078                                        <TileMatrixLimits>
     35079                                                <TileMatrix>8</TileMatrix>
     35080                                                <MinTileRow>92</MinTileRow>
     35081                                                <MaxTileRow>92</MaxTileRow>
     35082                                                <MinTileCol>127</MinTileCol>
     35083                                                <MaxTileCol>127</MaxTileCol>
     35084                                        </TileMatrixLimits>
     35085                                        <TileMatrixLimits>
     35086                                                <TileMatrix>9</TileMatrix>
     35087                                                <MinTileRow>184</MinTileRow>
     35088                                                <MaxTileRow>184</MaxTileRow>
     35089                                                <MinTileCol>255</MinTileCol>
     35090                                                <MaxTileCol>255</MaxTileCol>
     35091                                        </TileMatrixLimits>
     35092                                </TileMatrixSetLimits>
     35093                        </TileMatrixSetLink>
     35094                </Layer>
     35095                <Layer>
     35096                        <ows:Title>Orthophotographies Geosud de Littoral-62 2012</ows:Title>
     35097                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2012</ows:Abstract>
     35098                        <ows:Keywords>
     35099                                <ows:Keyword>Photographies</ows:Keyword>
     35100                        </ows:Keywords>
     35101                        <ows:WGS84BoundingBox>
     35102                                <ows:LowerCorner>1.53336 50.4668</ows:LowerCorner>
     35103                                <ows:UpperCorner>1.74821 50.6037</ows:UpperCorner>
     35104                        </ows:WGS84BoundingBox>
     35105                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2012-06-29-40874826</ows:Identifier>
     35106                        <Style isDefault="true">
     35107                                <ows:Title>Données Brutes</ows:Title>
     35108                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35109                                <ows:Keywords>
     35110                                        <ows:Keyword>Défaut</ows:Keyword>
     35111                                </ows:Keywords>
     35112                                <ows:Identifier>normal</ows:Identifier>
     35113                                <LegendURL format="image/jpeg" height="200"
     35114                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35115                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35116                        </Style>
     35117                        <Format>image/jpeg</Format>
     35118                        <TileMatrixSetLink>
     35119                                <TileMatrixSet>PM</TileMatrixSet>
     35120                                <TileMatrixSetLimits>
     35121                                        <TileMatrixLimits>
     35122                                                <TileMatrix>0</TileMatrix>
     35123                                                <MinTileRow>0</MinTileRow>
     35124                                                <MaxTileRow>0</MaxTileRow>
     35125                                                <MinTileCol>0</MinTileCol>
     35126                                                <MaxTileCol>0</MaxTileCol>
     35127                                        </TileMatrixLimits>
     35128                                        <TileMatrixLimits>
     35129                                                <TileMatrix>1</TileMatrix>
     35130                                                <MinTileRow>0</MinTileRow>
     35131                                                <MaxTileRow>0</MaxTileRow>
     35132                                                <MinTileCol>1</MinTileCol>
     35133                                                <MaxTileCol>1</MaxTileCol>
     35134                                        </TileMatrixLimits>
     35135                                        <TileMatrixLimits>
     35136                                                <TileMatrix>10</TileMatrix>
     35137                                                <MinTileRow>344</MinTileRow>
     35138                                                <MaxTileRow>345</MaxTileRow>
     35139                                                <MinTileCol>516</MinTileCol>
     35140                                                <MaxTileCol>516</MaxTileCol>
     35141                                        </TileMatrixLimits>
     35142                                        <TileMatrixLimits>
     35143                                                <TileMatrix>11</TileMatrix>
     35144                                                <MinTileRow>689</MinTileRow>
     35145                                                <MaxTileRow>690</MaxTileRow>
     35146                                                <MinTileCol>1032</MinTileCol>
     35147                                                <MaxTileCol>1033</MaxTileCol>
     35148                                        </TileMatrixLimits>
     35149                                        <TileMatrixLimits>
     35150                                                <TileMatrix>12</TileMatrix>
     35151                                                <MinTileRow>1378</MinTileRow>
     35152                                                <MaxTileRow>1380</MaxTileRow>
     35153                                                <MinTileCol>2065</MinTileCol>
     35154                                                <MaxTileCol>2067</MaxTileCol>
     35155                                        </TileMatrixLimits>
     35156                                        <TileMatrixLimits>
     35157                                                <TileMatrix>13</TileMatrix>
     35158                                                <MinTileRow>2756</MinTileRow>
     35159                                                <MaxTileRow>2761</MaxTileRow>
     35160                                                <MinTileCol>4130</MinTileCol>
     35161                                                <MaxTileCol>4135</MaxTileCol>
     35162                                        </TileMatrixLimits>
     35163                                        <TileMatrixLimits>
     35164                                                <TileMatrix>14</TileMatrix>
     35165                                                <MinTileRow>5513</MinTileRow>
     35166                                                <MaxTileRow>5523</MaxTileRow>
     35167                                                <MinTileCol>8261</MinTileCol>
     35168                                                <MaxTileCol>8271</MaxTileCol>
     35169                                        </TileMatrixLimits>
     35170                                        <TileMatrixLimits>
     35171                                                <TileMatrix>15</TileMatrix>
     35172                                                <MinTileRow>11027</MinTileRow>
     35173                                                <MaxTileRow>11046</MaxTileRow>
     35174                                                <MinTileCol>16523</MinTileCol>
     35175                                                <MaxTileCol>16543</MaxTileCol>
     35176                                        </TileMatrixLimits>
     35177                                        <TileMatrixLimits>
     35178                                                <TileMatrix>16</TileMatrix>
     35179                                                <MinTileRow>22054</MinTileRow>
     35180                                                <MaxTileRow>22092</MaxTileRow>
     35181                                                <MinTileCol>33047</MinTileCol>
     35182                                                <MaxTileCol>33086</MaxTileCol>
     35183                                        </TileMatrixLimits>
     35184                                        <TileMatrixLimits>
     35185                                                <TileMatrix>17</TileMatrix>
     35186                                                <MinTileRow>44109</MinTileRow>
     35187                                                <MaxTileRow>44185</MaxTileRow>
     35188                                                <MinTileCol>66095</MinTileCol>
     35189                                                <MaxTileCol>66172</MaxTileCol>
     35190                                        </TileMatrixLimits>
     35191                                        <TileMatrixLimits>
     35192                                                <TileMatrix>18</TileMatrix>
     35193                                                <MinTileRow>88218</MinTileRow>
     35194                                                <MaxTileRow>88371</MaxTileRow>
     35195                                                <MinTileCol>132190</MinTileCol>
     35196                                                <MaxTileCol>132344</MaxTileCol>
     35197                                        </TileMatrixLimits>
     35198                                        <TileMatrixLimits>
     35199                                                <TileMatrix>2</TileMatrix>
     35200                                                <MinTileRow>1</MinTileRow>
     35201                                                <MaxTileRow>1</MaxTileRow>
     35202                                                <MinTileCol>2</MinTileCol>
     35203                                                <MaxTileCol>2</MaxTileCol>
     35204                                        </TileMatrixLimits>
     35205                                        <TileMatrixLimits>
     35206                                                <TileMatrix>3</TileMatrix>
     35207                                                <MinTileRow>2</MinTileRow>
     35208                                                <MaxTileRow>2</MaxTileRow>
     35209                                                <MinTileCol>4</MinTileCol>
     35210                                                <MaxTileCol>4</MaxTileCol>
     35211                                        </TileMatrixLimits>
     35212                                        <TileMatrixLimits>
     35213                                                <TileMatrix>4</TileMatrix>
     35214                                                <MinTileRow>5</MinTileRow>
     35215                                                <MaxTileRow>5</MaxTileRow>
     35216                                                <MinTileCol>8</MinTileCol>
     35217                                                <MaxTileCol>8</MaxTileCol>
     35218                                        </TileMatrixLimits>
     35219                                        <TileMatrixLimits>
     35220                                                <TileMatrix>5</TileMatrix>
     35221                                                <MinTileRow>10</MinTileRow>
     35222                                                <MaxTileRow>10</MaxTileRow>
     35223                                                <MinTileCol>16</MinTileCol>
     35224                                                <MaxTileCol>16</MaxTileCol>
     35225                                        </TileMatrixLimits>
     35226                                        <TileMatrixLimits>
     35227                                                <TileMatrix>6</TileMatrix>
     35228                                                <MinTileRow>21</MinTileRow>
     35229                                                <MaxTileRow>21</MaxTileRow>
     35230                                                <MinTileCol>32</MinTileCol>
     35231                                                <MaxTileCol>32</MaxTileCol>
     35232                                        </TileMatrixLimits>
     35233                                        <TileMatrixLimits>
     35234                                                <TileMatrix>7</TileMatrix>
     35235                                                <MinTileRow>43</MinTileRow>
     35236                                                <MaxTileRow>43</MaxTileRow>
     35237                                                <MinTileCol>64</MinTileCol>
     35238                                                <MaxTileCol>64</MaxTileCol>
     35239                                        </TileMatrixLimits>
     35240                                        <TileMatrixLimits>
     35241                                                <TileMatrix>8</TileMatrix>
     35242                                                <MinTileRow>86</MinTileRow>
     35243                                                <MaxTileRow>86</MaxTileRow>
     35244                                                <MinTileCol>129</MinTileCol>
     35245                                                <MaxTileCol>129</MaxTileCol>
     35246                                        </TileMatrixLimits>
     35247                                        <TileMatrixLimits>
     35248                                                <TileMatrix>9</TileMatrix>
     35249                                                <MinTileRow>172</MinTileRow>
     35250                                                <MaxTileRow>172</MaxTileRow>
     35251                                                <MinTileCol>258</MinTileCol>
     35252                                                <MaxTileCol>258</MaxTileCol>
     35253                                        </TileMatrixLimits>
     35254                                </TileMatrixSetLimits>
     35255                        </TileMatrixSetLink>
     35256                </Layer>
     35257                <Layer>
     35258                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     35259                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     35260                        <ows:Keywords>
     35261                                <ows:Keyword>Photographies</ows:Keyword>
     35262                        </ows:Keywords>
     35263                        <ows:WGS84BoundingBox>
     35264                                <ows:LowerCorner>1.49429 50.3047</ows:LowerCorner>
     35265                                <ows:UpperCorner>1.73819 50.4959</ows:UpperCorner>
     35266                        </ows:WGS84BoundingBox>
     35267                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-05-09-39929826</ows:Identifier>
     35268                        <Style isDefault="true">
     35269                                <ows:Title>Données Brutes</ows:Title>
     35270                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35271                                <ows:Keywords>
     35272                                        <ows:Keyword>Défaut</ows:Keyword>
     35273                                </ows:Keywords>
     35274                                <ows:Identifier>normal</ows:Identifier>
     35275                                <LegendURL format="image/jpeg" height="200"
     35276                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35277                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35278                        </Style>
     35279                        <Format>image/jpeg</Format>
     35280                        <TileMatrixSetLink>
     35281                                <TileMatrixSet>PM</TileMatrixSet>
     35282                                <TileMatrixSetLimits>
     35283                                        <TileMatrixLimits>
     35284                                                <TileMatrix>0</TileMatrix>
     35285                                                <MinTileRow>0</MinTileRow>
     35286                                                <MaxTileRow>0</MaxTileRow>
     35287                                                <MinTileCol>0</MinTileCol>
     35288                                                <MaxTileCol>0</MaxTileCol>
     35289                                        </TileMatrixLimits>
     35290                                        <TileMatrixLimits>
     35291                                                <TileMatrix>1</TileMatrix>
     35292                                                <MinTileRow>0</MinTileRow>
     35293                                                <MaxTileRow>0</MaxTileRow>
     35294                                                <MinTileCol>1</MinTileCol>
     35295                                                <MaxTileCol>1</MaxTileCol>
     35296                                        </TileMatrixLimits>
     35297                                        <TileMatrixLimits>
     35298                                                <TileMatrix>10</TileMatrix>
     35299                                                <MinTileRow>345</MinTileRow>
     35300                                                <MaxTileRow>345</MaxTileRow>
     35301                                                <MinTileCol>516</MinTileCol>
     35302                                                <MaxTileCol>516</MaxTileCol>
     35303                                        </TileMatrixLimits>
     35304                                        <TileMatrixLimits>
     35305                                                <TileMatrix>11</TileMatrix>
     35306                                                <MinTileRow>690</MinTileRow>
     35307                                                <MaxTileRow>691</MaxTileRow>
     35308                                                <MinTileCol>1032</MinTileCol>
     35309                                                <MaxTileCol>1033</MaxTileCol>
     35310                                        </TileMatrixLimits>
     35311                                        <TileMatrixLimits>
     35312                                                <TileMatrix>12</TileMatrix>
     35313                                                <MinTileRow>1380</MinTileRow>
     35314                                                <MaxTileRow>1383</MaxTileRow>
     35315                                                <MinTileCol>2065</MinTileCol>
     35316                                                <MaxTileCol>2067</MaxTileCol>
     35317                                        </TileMatrixLimits>
     35318                                        <TileMatrixLimits>
     35319                                                <TileMatrix>13</TileMatrix>
     35320                                                <MinTileRow>2760</MinTileRow>
     35321                                                <MaxTileRow>2767</MaxTileRow>
     35322                                                <MinTileCol>4130</MinTileCol>
     35323                                                <MaxTileCol>4135</MaxTileCol>
     35324                                        </TileMatrixLimits>
     35325                                        <TileMatrixLimits>
     35326                                                <TileMatrix>14</TileMatrix>
     35327                                                <MinTileRow>5521</MinTileRow>
     35328                                                <MaxTileRow>5534</MaxTileRow>
     35329                                                <MinTileCol>8260</MinTileCol>
     35330                                                <MaxTileCol>8270</MaxTileCol>
     35331                                        </TileMatrixLimits>
     35332                                        <TileMatrixLimits>
     35333                                                <TileMatrix>15</TileMatrix>
     35334                                                <MinTileRow>11042</MinTileRow>
     35335                                                <MaxTileRow>11069</MaxTileRow>
     35336                                                <MinTileCol>16520</MinTileCol>
     35337                                                <MaxTileCol>16541</MaxTileCol>
     35338                                        </TileMatrixLimits>
     35339                                        <TileMatrixLimits>
     35340                                                <TileMatrix>16</TileMatrix>
     35341                                                <MinTileRow>22085</MinTileRow>
     35342                                                <MaxTileRow>22139</MaxTileRow>
     35343                                                <MinTileCol>33040</MinTileCol>
     35344                                                <MaxTileCol>33083</MaxTileCol>
     35345                                        </TileMatrixLimits>
     35346                                        <TileMatrixLimits>
     35347                                                <TileMatrix>17</TileMatrix>
     35348                                                <MinTileRow>44170</MinTileRow>
     35349                                                <MaxTileRow>44279</MaxTileRow>
     35350                                                <MinTileCol>66081</MinTileCol>
     35351                                                <MaxTileCol>66167</MaxTileCol>
     35352                                        </TileMatrixLimits>
     35353                                        <TileMatrixLimits>
     35354                                                <TileMatrix>18</TileMatrix>
     35355                                                <MinTileRow>88340</MinTileRow>
     35356                                                <MaxTileRow>88558</MaxTileRow>
     35357                                                <MinTileCol>132163</MinTileCol>
     35358                                                <MaxTileCol>132335</MaxTileCol>
     35359                                        </TileMatrixLimits>
     35360                                        <TileMatrixLimits>
     35361                                                <TileMatrix>2</TileMatrix>
     35362                                                <MinTileRow>1</MinTileRow>
     35363                                                <MaxTileRow>1</MaxTileRow>
     35364                                                <MinTileCol>2</MinTileCol>
     35365                                                <MaxTileCol>2</MaxTileCol>
     35366                                        </TileMatrixLimits>
     35367                                        <TileMatrixLimits>
     35368                                                <TileMatrix>3</TileMatrix>
     35369                                                <MinTileRow>2</MinTileRow>
     35370                                                <MaxTileRow>2</MaxTileRow>
     35371                                                <MinTileCol>4</MinTileCol>
     35372                                                <MaxTileCol>4</MaxTileCol>
     35373                                        </TileMatrixLimits>
     35374                                        <TileMatrixLimits>
     35375                                                <TileMatrix>4</TileMatrix>
     35376                                                <MinTileRow>5</MinTileRow>
     35377                                                <MaxTileRow>5</MaxTileRow>
     35378                                                <MinTileCol>8</MinTileCol>
     35379                                                <MaxTileCol>8</MaxTileCol>
     35380                                        </TileMatrixLimits>
     35381                                        <TileMatrixLimits>
     35382                                                <TileMatrix>5</TileMatrix>
     35383                                                <MinTileRow>10</MinTileRow>
     35384                                                <MaxTileRow>10</MaxTileRow>
     35385                                                <MinTileCol>16</MinTileCol>
     35386                                                <MaxTileCol>16</MaxTileCol>
     35387                                        </TileMatrixLimits>
     35388                                        <TileMatrixLimits>
     35389                                                <TileMatrix>6</TileMatrix>
     35390                                                <MinTileRow>21</MinTileRow>
     35391                                                <MaxTileRow>21</MaxTileRow>
     35392                                                <MinTileCol>32</MinTileCol>
     35393                                                <MaxTileCol>32</MaxTileCol>
     35394                                        </TileMatrixLimits>
     35395                                        <TileMatrixLimits>
     35396                                                <TileMatrix>7</TileMatrix>
     35397                                                <MinTileRow>43</MinTileRow>
     35398                                                <MaxTileRow>43</MaxTileRow>
     35399                                                <MinTileCol>64</MinTileCol>
     35400                                                <MaxTileCol>64</MaxTileCol>
     35401                                        </TileMatrixLimits>
     35402                                        <TileMatrixLimits>
     35403                                                <TileMatrix>8</TileMatrix>
     35404                                                <MinTileRow>86</MinTileRow>
     35405                                                <MaxTileRow>86</MaxTileRow>
     35406                                                <MinTileCol>129</MinTileCol>
     35407                                                <MaxTileCol>129</MaxTileCol>
     35408                                        </TileMatrixLimits>
     35409                                        <TileMatrixLimits>
     35410                                                <TileMatrix>9</TileMatrix>
     35411                                                <MinTileRow>172</MinTileRow>
     35412                                                <MaxTileRow>172</MaxTileRow>
     35413                                                <MinTileCol>258</MinTileCol>
     35414                                                <MaxTileCol>258</MaxTileCol>
     35415                                        </TileMatrixLimits>
     35416                                </TileMatrixSetLimits>
     35417                        </TileMatrixSetLink>
     35418                </Layer>
     35419                <Layer>
     35420                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     35421                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     35422                        <ows:Keywords>
     35423                                <ows:Keyword>Photographies</ows:Keyword>
     35424                        </ows:Keywords>
     35425                        <ows:WGS84BoundingBox>
     35426                                <ows:LowerCorner>1.53179 50.4668</ows:LowerCorner>
     35427                                <ows:UpperCorner>1.74821 50.6575</ows:UpperCorner>
     35428                        </ows:WGS84BoundingBox>
     35429                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-13-40010706</ows:Identifier>
     35430                        <Style isDefault="true">
     35431                                <ows:Title>Données Brutes</ows:Title>
     35432                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35433                                <ows:Keywords>
     35434                                        <ows:Keyword>Défaut</ows:Keyword>
     35435                                </ows:Keywords>
     35436                                <ows:Identifier>normal</ows:Identifier>
     35437                                <LegendURL format="image/jpeg" height="200"
     35438                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35439                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35440                        </Style>
     35441                        <Format>image/jpeg</Format>
     35442                        <TileMatrixSetLink>
     35443                                <TileMatrixSet>PM</TileMatrixSet>
     35444                                <TileMatrixSetLimits>
     35445                                        <TileMatrixLimits>
     35446                                                <TileMatrix>0</TileMatrix>
     35447                                                <MinTileRow>0</MinTileRow>
     35448                                                <MaxTileRow>0</MaxTileRow>
     35449                                                <MinTileCol>0</MinTileCol>
     35450                                                <MaxTileCol>0</MaxTileCol>
     35451                                        </TileMatrixLimits>
     35452                                        <TileMatrixLimits>
     35453                                                <TileMatrix>1</TileMatrix>
     35454                                                <MinTileRow>0</MinTileRow>
     35455                                                <MaxTileRow>0</MaxTileRow>
     35456                                                <MinTileCol>1</MinTileCol>
     35457                                                <MaxTileCol>1</MaxTileCol>
     35458                                        </TileMatrixLimits>
     35459                                        <TileMatrixLimits>
     35460                                                <TileMatrix>10</TileMatrix>
     35461                                                <MinTileRow>344</MinTileRow>
     35462                                                <MaxTileRow>345</MaxTileRow>
     35463                                                <MinTileCol>516</MinTileCol>
     35464                                                <MaxTileCol>516</MaxTileCol>
     35465                                        </TileMatrixLimits>
     35466                                        <TileMatrixLimits>
     35467                                                <TileMatrix>11</TileMatrix>
     35468                                                <MinTileRow>688</MinTileRow>
     35469                                                <MaxTileRow>690</MaxTileRow>
     35470                                                <MinTileCol>1032</MinTileCol>
     35471                                                <MaxTileCol>1033</MaxTileCol>
     35472                                        </TileMatrixLimits>
     35473                                        <TileMatrixLimits>
     35474                                                <TileMatrix>12</TileMatrix>
     35475                                                <MinTileRow>1377</MinTileRow>
     35476                                                <MaxTileRow>1380</MaxTileRow>
     35477                                                <MinTileCol>2065</MinTileCol>
     35478                                                <MaxTileCol>2067</MaxTileCol>
     35479                                        </TileMatrixLimits>
     35480                                        <TileMatrixLimits>
     35481                                                <TileMatrix>13</TileMatrix>
     35482                                                <MinTileRow>2754</MinTileRow>
     35483                                                <MaxTileRow>2761</MaxTileRow>
     35484                                                <MinTileCol>4130</MinTileCol>
     35485                                                <MaxTileCol>4135</MaxTileCol>
     35486                                        </TileMatrixLimits>
     35487                                        <TileMatrixLimits>
     35488                                                <TileMatrix>14</TileMatrix>
     35489                                                <MinTileRow>5509</MinTileRow>
     35490                                                <MaxTileRow>5523</MaxTileRow>
     35491                                                <MinTileCol>8261</MinTileCol>
     35492                                                <MaxTileCol>8271</MaxTileCol>
     35493                                        </TileMatrixLimits>
     35494                                        <TileMatrixLimits>
     35495                                                <TileMatrix>15</TileMatrix>
     35496                                                <MinTileRow>11019</MinTileRow>
     35497                                                <MaxTileRow>11046</MaxTileRow>
     35498                                                <MinTileCol>16523</MinTileCol>
     35499                                                <MaxTileCol>16542</MaxTileCol>
     35500                                        </TileMatrixLimits>
     35501                                        <TileMatrixLimits>
     35502                                                <TileMatrix>16</TileMatrix>
     35503                                                <MinTileRow>22038</MinTileRow>
     35504                                                <MaxTileRow>22093</MaxTileRow>
     35505                                                <MinTileCol>33047</MinTileCol>
     35506                                                <MaxTileCol>33085</MaxTileCol>
     35507                                        </TileMatrixLimits>
     35508                                        <TileMatrixLimits>
     35509                                                <TileMatrix>17</TileMatrix>
     35510                                                <MinTileRow>44077</MinTileRow>
     35511                                                <MaxTileRow>44186</MaxTileRow>
     35512                                                <MinTileCol>66095</MinTileCol>
     35513                                                <MaxTileCol>66171</MaxTileCol>
     35514                                        </TileMatrixLimits>
     35515                                        <TileMatrixLimits>
     35516                                                <TileMatrix>18</TileMatrix>
     35517                                                <MinTileRow>88154</MinTileRow>
     35518                                                <MaxTileRow>88373</MaxTileRow>
     35519                                                <MinTileCol>132190</MinTileCol>
     35520                                                <MaxTileCol>132343</MaxTileCol>
     35521                                        </TileMatrixLimits>
     35522                                        <TileMatrixLimits>
     35523                                                <TileMatrix>2</TileMatrix>
     35524                                                <MinTileRow>1</MinTileRow>
     35525                                                <MaxTileRow>1</MaxTileRow>
     35526                                                <MinTileCol>2</MinTileCol>
     35527                                                <MaxTileCol>2</MaxTileCol>
     35528                                        </TileMatrixLimits>
     35529                                        <TileMatrixLimits>
     35530                                                <TileMatrix>3</TileMatrix>
     35531                                                <MinTileRow>2</MinTileRow>
     35532                                                <MaxTileRow>2</MaxTileRow>
     35533                                                <MinTileCol>4</MinTileCol>
     35534                                                <MaxTileCol>4</MaxTileCol>
     35535                                        </TileMatrixLimits>
     35536                                        <TileMatrixLimits>
     35537                                                <TileMatrix>4</TileMatrix>
     35538                                                <MinTileRow>5</MinTileRow>
     35539                                                <MaxTileRow>5</MaxTileRow>
     35540                                                <MinTileCol>8</MinTileCol>
     35541                                                <MaxTileCol>8</MaxTileCol>
     35542                                        </TileMatrixLimits>
     35543                                        <TileMatrixLimits>
     35544                                                <TileMatrix>5</TileMatrix>
     35545                                                <MinTileRow>10</MinTileRow>
     35546                                                <MaxTileRow>10</MaxTileRow>
     35547                                                <MinTileCol>16</MinTileCol>
     35548                                                <MaxTileCol>16</MaxTileCol>
     35549                                        </TileMatrixLimits>
     35550                                        <TileMatrixLimits>
     35551                                                <TileMatrix>6</TileMatrix>
     35552                                                <MinTileRow>21</MinTileRow>
     35553                                                <MaxTileRow>21</MaxTileRow>
     35554                                                <MinTileCol>32</MinTileCol>
     35555                                                <MaxTileCol>32</MaxTileCol>
     35556                                        </TileMatrixLimits>
     35557                                        <TileMatrixLimits>
     35558                                                <TileMatrix>7</TileMatrix>
     35559                                                <MinTileRow>43</MinTileRow>
     35560                                                <MaxTileRow>43</MaxTileRow>
     35561                                                <MinTileCol>64</MinTileCol>
     35562                                                <MaxTileCol>64</MaxTileCol>
     35563                                        </TileMatrixLimits>
     35564                                        <TileMatrixLimits>
     35565                                                <TileMatrix>8</TileMatrix>
     35566                                                <MinTileRow>86</MinTileRow>
     35567                                                <MaxTileRow>86</MaxTileRow>
     35568                                                <MinTileCol>129</MinTileCol>
     35569                                                <MaxTileCol>129</MaxTileCol>
     35570                                        </TileMatrixLimits>
     35571                                        <TileMatrixLimits>
     35572                                                <TileMatrix>9</TileMatrix>
     35573                                                <MinTileRow>172</MinTileRow>
     35574                                                <MaxTileRow>172</MaxTileRow>
     35575                                                <MinTileCol>258</MinTileCol>
     35576                                                <MaxTileCol>258</MaxTileCol>
     35577                                        </TileMatrixLimits>
     35578                                </TileMatrixSetLimits>
     35579                        </TileMatrixSetLink>
     35580                </Layer>
     35581                <Layer>
     35582                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     35583                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     35584                        <ows:Keywords>
     35585                                <ows:Keyword>Photographies</ows:Keyword>
     35586                        </ows:Keywords>
     35587                        <ows:WGS84BoundingBox>
     35588                                <ows:LowerCorner>1.52228 50.6193</ows:LowerCorner>
     35589                                <ows:UpperCorner>1.84315 50.9814</ows:UpperCorner>
     35590                        </ows:WGS84BoundingBox>
     35591                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-18-40727905</ows:Identifier>
     35592                        <Style isDefault="true">
     35593                                <ows:Title>Données Brutes</ows:Title>
     35594                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35595                                <ows:Keywords>
     35596                                        <ows:Keyword>Défaut</ows:Keyword>
     35597                                </ows:Keywords>
     35598                                <ows:Identifier>normal</ows:Identifier>
     35599                                <LegendURL format="image/jpeg" height="200"
     35600                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35601                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35602                        </Style>
     35603                        <Format>image/jpeg</Format>
     35604                        <TileMatrixSetLink>
     35605                                <TileMatrixSet>PM</TileMatrixSet>
     35606                                <TileMatrixSetLimits>
     35607                                        <TileMatrixLimits>
     35608                                                <TileMatrix>0</TileMatrix>
     35609                                                <MinTileRow>0</MinTileRow>
     35610                                                <MaxTileRow>0</MaxTileRow>
     35611                                                <MinTileCol>0</MinTileCol>
     35612                                                <MaxTileCol>0</MaxTileCol>
     35613                                        </TileMatrixLimits>
     35614                                        <TileMatrixLimits>
     35615                                                <TileMatrix>1</TileMatrix>
     35616                                                <MinTileRow>0</MinTileRow>
     35617                                                <MaxTileRow>0</MaxTileRow>
     35618                                                <MinTileCol>1</MinTileCol>
     35619                                                <MaxTileCol>1</MaxTileCol>
     35620                                        </TileMatrixLimits>
     35621                                        <TileMatrixLimits>
     35622                                                <TileMatrix>10</TileMatrix>
     35623                                                <MinTileRow>342</MinTileRow>
     35624                                                <MaxTileRow>344</MaxTileRow>
     35625                                                <MinTileCol>516</MinTileCol>
     35626                                                <MaxTileCol>517</MaxTileCol>
     35627                                        </TileMatrixLimits>
     35628                                        <TileMatrixLimits>
     35629                                                <TileMatrix>11</TileMatrix>
     35630                                                <MinTileRow>685</MinTileRow>
     35631                                                <MaxTileRow>689</MaxTileRow>
     35632                                                <MinTileCol>1032</MinTileCol>
     35633                                                <MaxTileCol>1034</MaxTileCol>
     35634                                        </TileMatrixLimits>
     35635                                        <TileMatrixLimits>
     35636                                                <TileMatrix>12</TileMatrix>
     35637                                                <MinTileRow>1371</MinTileRow>
     35638                                                <MaxTileRow>1378</MaxTileRow>
     35639                                                <MinTileCol>2065</MinTileCol>
     35640                                                <MaxTileCol>2068</MaxTileCol>
     35641                                        </TileMatrixLimits>
     35642                                        <TileMatrixLimits>
     35643                                                <TileMatrix>13</TileMatrix>
     35644                                                <MinTileRow>2743</MinTileRow>
     35645                                                <MaxTileRow>2756</MaxTileRow>
     35646                                                <MinTileCol>4130</MinTileCol>
     35647                                                <MaxTileCol>4137</MaxTileCol>
     35648                                        </TileMatrixLimits>
     35649                                        <TileMatrixLimits>
     35650                                                <TileMatrix>14</TileMatrix>
     35651                                                <MinTileRow>5486</MinTileRow>
     35652                                                <MaxTileRow>5512</MaxTileRow>
     35653                                                <MinTileCol>8261</MinTileCol>
     35654                                                <MaxTileCol>8275</MaxTileCol>
     35655                                        </TileMatrixLimits>
     35656                                        <TileMatrixLimits>
     35657                                                <TileMatrix>15</TileMatrix>
     35658                                                <MinTileRow>10972</MinTileRow>
     35659                                                <MaxTileRow>11024</MaxTileRow>
     35660                                                <MinTileCol>16523</MinTileCol>
     35661                                                <MaxTileCol>16551</MaxTileCol>
     35662                                        </TileMatrixLimits>
     35663                                        <TileMatrixLimits>
     35664                                                <TileMatrix>16</TileMatrix>
     35665                                                <MinTileRow>21945</MinTileRow>
     35666                                                <MaxTileRow>22049</MaxTileRow>
     35667                                                <MinTileCol>33046</MinTileCol>
     35668                                                <MaxTileCol>33102</MaxTileCol>
     35669                                        </TileMatrixLimits>
     35670                                        <TileMatrixLimits>
     35671                                                <TileMatrix>17</TileMatrix>
     35672                                                <MinTileRow>43890</MinTileRow>
     35673                                                <MaxTileRow>44099</MaxTileRow>
     35674                                                <MinTileCol>66092</MinTileCol>
     35675                                                <MaxTileCol>66205</MaxTileCol>
     35676                                        </TileMatrixLimits>
     35677                                        <TileMatrixLimits>
     35678                                                <TileMatrix>18</TileMatrix>
     35679                                                <MinTileRow>87781</MinTileRow>
     35680                                                <MaxTileRow>88198</MaxTileRow>
     35681                                                <MinTileCol>132185</MinTileCol>
     35682                                                <MaxTileCol>132411</MaxTileCol>
     35683                                        </TileMatrixLimits>
     35684                                        <TileMatrixLimits>
     35685                                                <TileMatrix>2</TileMatrix>
     35686                                                <MinTileRow>1</MinTileRow>
     35687                                                <MaxTileRow>1</MaxTileRow>
     35688                                                <MinTileCol>2</MinTileCol>
     35689                                                <MaxTileCol>2</MaxTileCol>
     35690                                        </TileMatrixLimits>
     35691                                        <TileMatrixLimits>
     35692                                                <TileMatrix>3</TileMatrix>
     35693                                                <MinTileRow>2</MinTileRow>
     35694                                                <MaxTileRow>2</MaxTileRow>
     35695                                                <MinTileCol>4</MinTileCol>
     35696                                                <MaxTileCol>4</MaxTileCol>
     35697                                        </TileMatrixLimits>
     35698                                        <TileMatrixLimits>
     35699                                                <TileMatrix>4</TileMatrix>
     35700                                                <MinTileRow>5</MinTileRow>
     35701                                                <MaxTileRow>5</MaxTileRow>
     35702                                                <MinTileCol>8</MinTileCol>
     35703                                                <MaxTileCol>8</MaxTileCol>
     35704                                        </TileMatrixLimits>
     35705                                        <TileMatrixLimits>
     35706                                                <TileMatrix>5</TileMatrix>
     35707                                                <MinTileRow>10</MinTileRow>
     35708                                                <MaxTileRow>10</MaxTileRow>
     35709                                                <MinTileCol>16</MinTileCol>
     35710                                                <MaxTileCol>16</MaxTileCol>
     35711                                        </TileMatrixLimits>
     35712                                        <TileMatrixLimits>
     35713                                                <TileMatrix>6</TileMatrix>
     35714                                                <MinTileRow>21</MinTileRow>
     35715                                                <MaxTileRow>21</MaxTileRow>
     35716                                                <MinTileCol>32</MinTileCol>
     35717                                                <MaxTileCol>32</MaxTileCol>
     35718                                        </TileMatrixLimits>
     35719                                        <TileMatrixLimits>
     35720                                                <TileMatrix>7</TileMatrix>
     35721                                                <MinTileRow>42</MinTileRow>
     35722                                                <MaxTileRow>43</MaxTileRow>
     35723                                                <MinTileCol>64</MinTileCol>
     35724                                                <MaxTileCol>64</MaxTileCol>
     35725                                        </TileMatrixLimits>
     35726                                        <TileMatrixLimits>
     35727                                                <TileMatrix>8</TileMatrix>
     35728                                                <MinTileRow>85</MinTileRow>
     35729                                                <MaxTileRow>86</MaxTileRow>
     35730                                                <MinTileCol>129</MinTileCol>
     35731                                                <MaxTileCol>129</MaxTileCol>
     35732                                        </TileMatrixLimits>
     35733                                        <TileMatrixLimits>
     35734                                                <TileMatrix>9</TileMatrix>
     35735                                                <MinTileRow>171</MinTileRow>
     35736                                                <MaxTileRow>172</MaxTileRow>
     35737                                                <MinTileCol>258</MinTileCol>
     35738                                                <MaxTileCol>258</MaxTileCol>
     35739                                        </TileMatrixLimits>
     35740                                </TileMatrixSetLimits>
     35741                        </TileMatrixSetLink>
     35742                </Layer>
     35743                <Layer>
     35744                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     35745                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     35746                        <ows:Keywords>
     35747                                <ows:Keyword>Photographies</ows:Keyword>
     35748                        </ows:Keywords>
     35749                        <ows:WGS84BoundingBox>
     35750                                <ows:LowerCorner>1.52228 50.6193</ows:LowerCorner>
     35751                                <ows:UpperCorner>1.82904 50.9813</ows:UpperCorner>
     35752                        </ows:WGS84BoundingBox>
     35753                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-07-19-40220744</ows:Identifier>
     35754                        <Style isDefault="true">
     35755                                <ows:Title>Données Brutes</ows:Title>
     35756                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35757                                <ows:Keywords>
     35758                                        <ows:Keyword>Défaut</ows:Keyword>
     35759                                </ows:Keywords>
     35760                                <ows:Identifier>normal</ows:Identifier>
     35761                                <LegendURL format="image/jpeg" height="200"
     35762                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35763                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35764                        </Style>
     35765                        <Format>image/jpeg</Format>
     35766                        <TileMatrixSetLink>
     35767                                <TileMatrixSet>PM</TileMatrixSet>
     35768                                <TileMatrixSetLimits>
     35769                                        <TileMatrixLimits>
     35770                                                <TileMatrix>0</TileMatrix>
     35771                                                <MinTileRow>0</MinTileRow>
     35772                                                <MaxTileRow>0</MaxTileRow>
     35773                                                <MinTileCol>0</MinTileCol>
     35774                                                <MaxTileCol>0</MaxTileCol>
     35775                                        </TileMatrixLimits>
     35776                                        <TileMatrixLimits>
     35777                                                <TileMatrix>1</TileMatrix>
     35778                                                <MinTileRow>0</MinTileRow>
     35779                                                <MaxTileRow>0</MaxTileRow>
     35780                                                <MinTileCol>1</MinTileCol>
     35781                                                <MaxTileCol>1</MaxTileCol>
     35782                                        </TileMatrixLimits>
     35783                                        <TileMatrixLimits>
     35784                                                <TileMatrix>10</TileMatrix>
     35785                                                <MinTileRow>342</MinTileRow>
     35786                                                <MaxTileRow>344</MaxTileRow>
     35787                                                <MinTileCol>516</MinTileCol>
     35788                                                <MaxTileCol>517</MaxTileCol>
     35789                                        </TileMatrixLimits>
     35790                                        <TileMatrixLimits>
     35791                                                <TileMatrix>11</TileMatrix>
     35792                                                <MinTileRow>685</MinTileRow>
     35793                                                <MaxTileRow>689</MaxTileRow>
     35794                                                <MinTileCol>1032</MinTileCol>
     35795                                                <MaxTileCol>1034</MaxTileCol>
     35796                                        </TileMatrixLimits>
     35797                                        <TileMatrixLimits>
     35798                                                <TileMatrix>12</TileMatrix>
     35799                                                <MinTileRow>1371</MinTileRow>
     35800                                                <MaxTileRow>1378</MaxTileRow>
     35801                                                <MinTileCol>2065</MinTileCol>
     35802                                                <MaxTileCol>2068</MaxTileCol>
     35803                                        </TileMatrixLimits>
     35804                                        <TileMatrixLimits>
     35805                                                <TileMatrix>13</TileMatrix>
     35806                                                <MinTileRow>2743</MinTileRow>
     35807                                                <MaxTileRow>2756</MaxTileRow>
     35808                                                <MinTileCol>4130</MinTileCol>
     35809                                                <MaxTileCol>4137</MaxTileCol>
     35810                                        </TileMatrixLimits>
     35811                                        <TileMatrixLimits>
     35812                                                <TileMatrix>14</TileMatrix>
     35813                                                <MinTileRow>5486</MinTileRow>
     35814                                                <MaxTileRow>5512</MaxTileRow>
     35815                                                <MinTileCol>8261</MinTileCol>
     35816                                                <MaxTileCol>8275</MaxTileCol>
     35817                                        </TileMatrixLimits>
     35818                                        <TileMatrixLimits>
     35819                                                <TileMatrix>15</TileMatrix>
     35820                                                <MinTileRow>10972</MinTileRow>
     35821                                                <MaxTileRow>11024</MaxTileRow>
     35822                                                <MinTileCol>16523</MinTileCol>
     35823                                                <MaxTileCol>16550</MaxTileCol>
     35824                                        </TileMatrixLimits>
     35825                                        <TileMatrixLimits>
     35826                                                <TileMatrix>16</TileMatrix>
     35827                                                <MinTileRow>21945</MinTileRow>
     35828                                                <MaxTileRow>22049</MaxTileRow>
     35829                                                <MinTileCol>33046</MinTileCol>
     35830                                                <MaxTileCol>33100</MaxTileCol>
     35831                                        </TileMatrixLimits>
     35832                                        <TileMatrixLimits>
     35833                                                <TileMatrix>17</TileMatrix>
     35834                                                <MinTileRow>43890</MinTileRow>
     35835                                                <MaxTileRow>44099</MaxTileRow>
     35836                                                <MinTileCol>66092</MinTileCol>
     35837                                                <MaxTileCol>66200</MaxTileCol>
     35838                                        </TileMatrixLimits>
     35839                                        <TileMatrixLimits>
     35840                                                <TileMatrix>18</TileMatrix>
     35841                                                <MinTileRow>87781</MinTileRow>
     35842                                                <MaxTileRow>88198</MaxTileRow>
     35843                                                <MinTileCol>132185</MinTileCol>
     35844                                                <MaxTileCol>132401</MaxTileCol>
     35845                                        </TileMatrixLimits>
     35846                                        <TileMatrixLimits>
     35847                                                <TileMatrix>2</TileMatrix>
     35848                                                <MinTileRow>1</MinTileRow>
     35849                                                <MaxTileRow>1</MaxTileRow>
     35850                                                <MinTileCol>2</MinTileCol>
     35851                                                <MaxTileCol>2</MaxTileCol>
     35852                                        </TileMatrixLimits>
     35853                                        <TileMatrixLimits>
     35854                                                <TileMatrix>3</TileMatrix>
     35855                                                <MinTileRow>2</MinTileRow>
     35856                                                <MaxTileRow>2</MaxTileRow>
     35857                                                <MinTileCol>4</MinTileCol>
     35858                                                <MaxTileCol>4</MaxTileCol>
     35859                                        </TileMatrixLimits>
     35860                                        <TileMatrixLimits>
     35861                                                <TileMatrix>4</TileMatrix>
     35862                                                <MinTileRow>5</MinTileRow>
     35863                                                <MaxTileRow>5</MaxTileRow>
     35864                                                <MinTileCol>8</MinTileCol>
     35865                                                <MaxTileCol>8</MaxTileCol>
     35866                                        </TileMatrixLimits>
     35867                                        <TileMatrixLimits>
     35868                                                <TileMatrix>5</TileMatrix>
     35869                                                <MinTileRow>10</MinTileRow>
     35870                                                <MaxTileRow>10</MaxTileRow>
     35871                                                <MinTileCol>16</MinTileCol>
     35872                                                <MaxTileCol>16</MaxTileCol>
     35873                                        </TileMatrixLimits>
     35874                                        <TileMatrixLimits>
     35875                                                <TileMatrix>6</TileMatrix>
     35876                                                <MinTileRow>21</MinTileRow>
     35877                                                <MaxTileRow>21</MaxTileRow>
     35878                                                <MinTileCol>32</MinTileCol>
     35879                                                <MaxTileCol>32</MaxTileCol>
     35880                                        </TileMatrixLimits>
     35881                                        <TileMatrixLimits>
     35882                                                <TileMatrix>7</TileMatrix>
     35883                                                <MinTileRow>42</MinTileRow>
     35884                                                <MaxTileRow>43</MaxTileRow>
     35885                                                <MinTileCol>64</MinTileCol>
     35886                                                <MaxTileCol>64</MaxTileCol>
     35887                                        </TileMatrixLimits>
     35888                                        <TileMatrixLimits>
     35889                                                <TileMatrix>8</TileMatrix>
     35890                                                <MinTileRow>85</MinTileRow>
     35891                                                <MaxTileRow>86</MaxTileRow>
     35892                                                <MinTileCol>129</MinTileCol>
     35893                                                <MaxTileCol>129</MaxTileCol>
     35894                                        </TileMatrixLimits>
     35895                                        <TileMatrixLimits>
     35896                                                <TileMatrix>9</TileMatrix>
     35897                                                <MinTileRow>171</MinTileRow>
     35898                                                <MaxTileRow>172</MaxTileRow>
     35899                                                <MinTileCol>258</MinTileCol>
     35900                                                <MaxTileCol>258</MaxTileCol>
     35901                                        </TileMatrixLimits>
     35902                                </TileMatrixSetLimits>
     35903                        </TileMatrixSetLink>
     35904                </Layer>
     35905                <Layer>
     35906                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     35907                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     35908                        <ows:Keywords>
     35909                                <ows:Keyword>Photographies</ows:Keyword>
     35910                        </ows:Keywords>
     35911                        <ows:WGS84BoundingBox>
     35912                                <ows:LowerCorner>1.97598 50.8481</ows:LowerCorner>
     35913                                <ows:UpperCorner>2.30558 51.0298</ows:UpperCorner>
     35914                        </ows:WGS84BoundingBox>
     35915                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-09-02-40406824</ows:Identifier>
     35916                        <Style isDefault="true">
     35917                                <ows:Title>Données Brutes</ows:Title>
     35918                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     35919                                <ows:Keywords>
     35920                                        <ows:Keyword>Défaut</ows:Keyword>
     35921                                </ows:Keywords>
     35922                                <ows:Identifier>normal</ows:Identifier>
     35923                                <LegendURL format="image/jpeg" height="200"
     35924                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     35925                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     35926                        </Style>
     35927                        <Format>image/jpeg</Format>
     35928                        <TileMatrixSetLink>
     35929                                <TileMatrixSet>PM</TileMatrixSet>
     35930                                <TileMatrixSetLimits>
     35931                                        <TileMatrixLimits>
     35932                                                <TileMatrix>0</TileMatrix>
     35933                                                <MinTileRow>0</MinTileRow>
     35934                                                <MaxTileRow>0</MaxTileRow>
     35935                                                <MinTileCol>0</MinTileCol>
     35936                                                <MaxTileCol>0</MaxTileCol>
     35937                                        </TileMatrixLimits>
     35938                                        <TileMatrixLimits>
     35939                                                <TileMatrix>1</TileMatrix>
     35940                                                <MinTileRow>0</MinTileRow>
     35941                                                <MaxTileRow>0</MaxTileRow>
     35942                                                <MinTileCol>1</MinTileCol>
     35943                                                <MaxTileCol>1</MaxTileCol>
     35944                                        </TileMatrixLimits>
     35945                                        <TileMatrixLimits>
     35946                                                <TileMatrix>10</TileMatrix>
     35947                                                <MinTileRow>342</MinTileRow>
     35948                                                <MaxTileRow>343</MaxTileRow>
     35949                                                <MinTileCol>517</MinTileCol>
     35950                                                <MaxTileCol>518</MaxTileCol>
     35951                                        </TileMatrixLimits>
     35952                                        <TileMatrixLimits>
     35953                                                <TileMatrix>11</TileMatrix>
     35954                                                <MinTileRow>685</MinTileRow>
     35955                                                <MaxTileRow>686</MaxTileRow>
     35956                                                <MinTileCol>1035</MinTileCol>
     35957                                                <MaxTileCol>1037</MaxTileCol>
     35958                                        </TileMatrixLimits>
     35959                                        <TileMatrixLimits>
     35960                                                <TileMatrix>12</TileMatrix>
     35961                                                <MinTileRow>1370</MinTileRow>
     35962                                                <MaxTileRow>1373</MaxTileRow>
     35963                                                <MinTileCol>2070</MinTileCol>
     35964                                                <MaxTileCol>2074</MaxTileCol>
     35965                                        </TileMatrixLimits>
     35966                                        <TileMatrixLimits>
     35967                                                <TileMatrix>13</TileMatrix>
     35968                                                <MinTileRow>2741</MinTileRow>
     35969                                                <MaxTileRow>2747</MaxTileRow>
     35970                                                <MinTileCol>4140</MinTileCol>
     35971                                                <MaxTileCol>4148</MaxTileCol>
     35972                                        </TileMatrixLimits>
     35973                                        <TileMatrixLimits>
     35974                                                <TileMatrix>14</TileMatrix>
     35975                                                <MinTileRow>5482</MinTileRow>
     35976                                                <MaxTileRow>5495</MaxTileRow>
     35977                                                <MinTileCol>8281</MinTileCol>
     35978                                                <MaxTileCol>8296</MaxTileCol>
     35979                                        </TileMatrixLimits>
     35980                                        <TileMatrixLimits>
     35981                                                <TileMatrix>15</TileMatrix>
     35982                                                <MinTileRow>10965</MinTileRow>
     35983                                                <MaxTileRow>10991</MaxTileRow>
     35984                                                <MinTileCol>16563</MinTileCol>
     35985                                                <MaxTileCol>16593</MaxTileCol>
     35986                                        </TileMatrixLimits>
     35987                                        <TileMatrixLimits>
     35988                                                <TileMatrix>16</TileMatrix>
     35989                                                <MinTileRow>21931</MinTileRow>
     35990                                                <MaxTileRow>21983</MaxTileRow>
     35991                                                <MinTileCol>33127</MinTileCol>
     35992                                                <MaxTileCol>33187</MaxTileCol>
     35993                                        </TileMatrixLimits>
     35994                                        <TileMatrixLimits>
     35995                                                <TileMatrix>17</TileMatrix>
     35996                                                <MinTileRow>43862</MinTileRow>
     35997                                                <MaxTileRow>43967</MaxTileRow>
     35998                                                <MinTileCol>66255</MinTileCol>
     35999                                                <MaxTileCol>66375</MaxTileCol>
     36000                                        </TileMatrixLimits>
     36001                                        <TileMatrixLimits>
     36002                                                <TileMatrix>18</TileMatrix>
     36003                                                <MinTileRow>87725</MinTileRow>
     36004                                                <MaxTileRow>87935</MaxTileRow>
     36005                                                <MinTileCol>132510</MinTileCol>
     36006                                                <MaxTileCol>132750</MaxTileCol>
     36007                                        </TileMatrixLimits>
     36008                                        <TileMatrixLimits>
     36009                                                <TileMatrix>2</TileMatrix>
     36010                                                <MinTileRow>1</MinTileRow>
     36011                                                <MaxTileRow>1</MaxTileRow>
     36012                                                <MinTileCol>2</MinTileCol>
     36013                                                <MaxTileCol>2</MaxTileCol>
     36014                                        </TileMatrixLimits>
     36015                                        <TileMatrixLimits>
     36016                                                <TileMatrix>3</TileMatrix>
     36017                                                <MinTileRow>2</MinTileRow>
     36018                                                <MaxTileRow>2</MaxTileRow>
     36019                                                <MinTileCol>4</MinTileCol>
     36020                                                <MaxTileCol>4</MaxTileCol>
     36021                                        </TileMatrixLimits>
     36022                                        <TileMatrixLimits>
     36023                                                <TileMatrix>4</TileMatrix>
     36024                                                <MinTileRow>5</MinTileRow>
     36025                                                <MaxTileRow>5</MaxTileRow>
     36026                                                <MinTileCol>8</MinTileCol>
     36027                                                <MaxTileCol>8</MaxTileCol>
     36028                                        </TileMatrixLimits>
     36029                                        <TileMatrixLimits>
     36030                                                <TileMatrix>5</TileMatrix>
     36031                                                <MinTileRow>10</MinTileRow>
     36032                                                <MaxTileRow>10</MaxTileRow>
     36033                                                <MinTileCol>16</MinTileCol>
     36034                                                <MaxTileCol>16</MaxTileCol>
     36035                                        </TileMatrixLimits>
     36036                                        <TileMatrixLimits>
     36037                                                <TileMatrix>6</TileMatrix>
     36038                                                <MinTileRow>21</MinTileRow>
     36039                                                <MaxTileRow>21</MaxTileRow>
     36040                                                <MinTileCol>32</MinTileCol>
     36041                                                <MaxTileCol>32</MaxTileCol>
     36042                                        </TileMatrixLimits>
     36043                                        <TileMatrixLimits>
     36044                                                <TileMatrix>7</TileMatrix>
     36045                                                <MinTileRow>42</MinTileRow>
     36046                                                <MaxTileRow>42</MaxTileRow>
     36047                                                <MinTileCol>64</MinTileCol>
     36048                                                <MaxTileCol>64</MaxTileCol>
     36049                                        </TileMatrixLimits>
     36050                                        <TileMatrixLimits>
     36051                                                <TileMatrix>8</TileMatrix>
     36052                                                <MinTileRow>85</MinTileRow>
     36053                                                <MaxTileRow>85</MaxTileRow>
     36054                                                <MinTileCol>129</MinTileCol>
     36055                                                <MaxTileCol>129</MaxTileCol>
     36056                                        </TileMatrixLimits>
     36057                                        <TileMatrixLimits>
     36058                                                <TileMatrix>9</TileMatrix>
     36059                                                <MinTileRow>171</MinTileRow>
     36060                                                <MaxTileRow>171</MaxTileRow>
     36061                                                <MinTileCol>258</MinTileCol>
     36062                                                <MaxTileCol>259</MaxTileCol>
     36063                                        </TileMatrixLimits>
     36064                                </TileMatrixSetLimits>
     36065                        </TileMatrixSetLink>
     36066                </Layer>
     36067                <Layer>
     36068                        <ows:Title>Orthophotographies Geosud de Littoral-62 2013</ows:Title>
     36069                        <ows:Abstract>Orthophotographies Geosud de Littoral-62 2013</ows:Abstract>
     36070                        <ows:Keywords>
     36071                                <ows:Keyword>Photographies</ows:Keyword>
     36072                        </ows:Keywords>
     36073                        <ows:WGS84BoundingBox>
     36074                                <ows:LowerCorner>1.72024 50.6664</ows:LowerCorner>
     36075                                <ows:UpperCorner>2.0539 51.0191</ows:UpperCorner>
     36076                        </ows:WGS84BoundingBox>
     36077                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_Littoral-62-2013-09-02-40453196</ows:Identifier>
     36078                        <Style isDefault="true">
     36079                                <ows:Title>Données Brutes</ows:Title>
     36080                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36081                                <ows:Keywords>
     36082                                        <ows:Keyword>Défaut</ows:Keyword>
     36083                                </ows:Keywords>
     36084                                <ows:Identifier>normal</ows:Identifier>
     36085                                <LegendURL format="image/jpeg" height="200"
     36086                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36087                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36088                        </Style>
     36089                        <Format>image/jpeg</Format>
     36090                        <TileMatrixSetLink>
     36091                                <TileMatrixSet>PM</TileMatrixSet>
     36092                                <TileMatrixSetLimits>
     36093                                        <TileMatrixLimits>
     36094                                                <TileMatrix>0</TileMatrix>
     36095                                                <MinTileRow>0</MinTileRow>
     36096                                                <MaxTileRow>0</MaxTileRow>
     36097                                                <MinTileCol>0</MinTileCol>
     36098                                                <MaxTileCol>0</MaxTileCol>
     36099                                        </TileMatrixLimits>
     36100                                        <TileMatrixLimits>
     36101                                                <TileMatrix>1</TileMatrix>
     36102                                                <MinTileRow>0</MinTileRow>
     36103                                                <MaxTileRow>0</MaxTileRow>
     36104                                                <MinTileCol>1</MinTileCol>
     36105                                                <MaxTileCol>1</MaxTileCol>
     36106                                        </TileMatrixLimits>
     36107                                        <TileMatrixLimits>
     36108                                                <TileMatrix>10</TileMatrix>
     36109                                                <MinTileRow>342</MinTileRow>
     36110                                                <MaxTileRow>344</MaxTileRow>
     36111                                                <MinTileCol>516</MinTileCol>
     36112                                                <MaxTileCol>517</MaxTileCol>
     36113                                        </TileMatrixLimits>
     36114                                        <TileMatrixLimits>
     36115                                                <TileMatrix>11</TileMatrix>
     36116                                                <MinTileRow>685</MinTileRow>
     36117                                                <MaxTileRow>688</MaxTileRow>
     36118                                                <MinTileCol>1033</MinTileCol>
     36119                                                <MaxTileCol>1035</MaxTileCol>
     36120                                        </TileMatrixLimits>
     36121                                        <TileMatrixLimits>
     36122                                                <TileMatrix>12</TileMatrix>
     36123                                                <MinTileRow>1370</MinTileRow>
     36124                                                <MaxTileRow>1377</MaxTileRow>
     36125                                                <MinTileCol>2067</MinTileCol>
     36126                                                <MaxTileCol>2071</MaxTileCol>
     36127                                        </TileMatrixLimits>
     36128                                        <TileMatrixLimits>
     36129                                                <TileMatrix>13</TileMatrix>
     36130                                                <MinTileRow>2741</MinTileRow>
     36131                                                <MaxTileRow>2754</MaxTileRow>
     36132                                                <MinTileCol>4135</MinTileCol>
     36133                                                <MaxTileCol>4142</MaxTileCol>
     36134                                        </TileMatrixLimits>
     36135                                        <TileMatrixLimits>
     36136                                                <TileMatrix>14</TileMatrix>
     36137                                                <MinTileRow>5483</MinTileRow>
     36138                                                <MaxTileRow>5509</MaxTileRow>
     36139                                                <MinTileCol>8270</MinTileCol>
     36140                                                <MaxTileCol>8285</MaxTileCol>
     36141                                        </TileMatrixLimits>
     36142                                        <TileMatrixLimits>
     36143                                                <TileMatrix>15</TileMatrix>
     36144                                                <MinTileRow>10967</MinTileRow>
     36145                                                <MaxTileRow>11018</MaxTileRow>
     36146                                                <MinTileCol>16540</MinTileCol>
     36147                                                <MaxTileCol>16570</MaxTileCol>
     36148                                        </TileMatrixLimits>
     36149                                        <TileMatrixLimits>
     36150                                                <TileMatrix>16</TileMatrix>
     36151                                                <MinTileRow>21934</MinTileRow>
     36152                                                <MaxTileRow>22036</MaxTileRow>
     36153                                                <MinTileCol>33081</MinTileCol>
     36154                                                <MaxTileCol>33141</MaxTileCol>
     36155                                        </TileMatrixLimits>
     36156                                        <TileMatrixLimits>
     36157                                                <TileMatrix>17</TileMatrix>
     36158                                                <MinTileRow>43868</MinTileRow>
     36159                                                <MaxTileRow>44072</MaxTileRow>
     36160                                                <MinTileCol>66163</MinTileCol>
     36161                                                <MaxTileCol>66282</MaxTileCol>
     36162                                        </TileMatrixLimits>
     36163                                        <TileMatrixLimits>
     36164                                                <TileMatrix>18</TileMatrix>
     36165                                                <MinTileRow>87737</MinTileRow>
     36166                                                <MaxTileRow>88144</MaxTileRow>
     36167                                                <MinTileCol>132326</MinTileCol>
     36168                                                <MaxTileCol>132564</MaxTileCol>
     36169                                        </TileMatrixLimits>
     36170                                        <TileMatrixLimits>
     36171                                                <TileMatrix>2</TileMatrix>
     36172                                                <MinTileRow>1</MinTileRow>
     36173                                                <MaxTileRow>1</MaxTileRow>
     36174                                                <MinTileCol>2</MinTileCol>
     36175                                                <MaxTileCol>2</MaxTileCol>
     36176                                        </TileMatrixLimits>
     36177                                        <TileMatrixLimits>
     36178                                                <TileMatrix>3</TileMatrix>
     36179                                                <MinTileRow>2</MinTileRow>
     36180                                                <MaxTileRow>2</MaxTileRow>
     36181                                                <MinTileCol>4</MinTileCol>
     36182                                                <MaxTileCol>4</MaxTileCol>
     36183                                        </TileMatrixLimits>
     36184                                        <TileMatrixLimits>
     36185                                                <TileMatrix>4</TileMatrix>
     36186                                                <MinTileRow>5</MinTileRow>
     36187                                                <MaxTileRow>5</MaxTileRow>
     36188                                                <MinTileCol>8</MinTileCol>
     36189                                                <MaxTileCol>8</MaxTileCol>
     36190                                        </TileMatrixLimits>
     36191                                        <TileMatrixLimits>
     36192                                                <TileMatrix>5</TileMatrix>
     36193                                                <MinTileRow>10</MinTileRow>
     36194                                                <MaxTileRow>10</MaxTileRow>
     36195                                                <MinTileCol>16</MinTileCol>
     36196                                                <MaxTileCol>16</MaxTileCol>
     36197                                        </TileMatrixLimits>
     36198                                        <TileMatrixLimits>
     36199                                                <TileMatrix>6</TileMatrix>
     36200                                                <MinTileRow>21</MinTileRow>
     36201                                                <MaxTileRow>21</MaxTileRow>
     36202                                                <MinTileCol>32</MinTileCol>
     36203                                                <MaxTileCol>32</MaxTileCol>
     36204                                        </TileMatrixLimits>
     36205                                        <TileMatrixLimits>
     36206                                                <TileMatrix>7</TileMatrix>
     36207                                                <MinTileRow>42</MinTileRow>
     36208                                                <MaxTileRow>43</MaxTileRow>
     36209                                                <MinTileCol>64</MinTileCol>
     36210                                                <MaxTileCol>64</MaxTileCol>
     36211                                        </TileMatrixLimits>
     36212                                        <TileMatrixLimits>
     36213                                                <TileMatrix>8</TileMatrix>
     36214                                                <MinTileRow>85</MinTileRow>
     36215                                                <MaxTileRow>86</MaxTileRow>
     36216                                                <MinTileCol>129</MinTileCol>
     36217                                                <MaxTileCol>129</MaxTileCol>
     36218                                        </TileMatrixLimits>
     36219                                        <TileMatrixLimits>
     36220                                                <TileMatrix>9</TileMatrix>
     36221                                                <MinTileRow>171</MinTileRow>
     36222                                                <MaxTileRow>172</MaxTileRow>
     36223                                                <MinTileCol>258</MinTileCol>
     36224                                                <MaxTileCol>258</MaxTileCol>
     36225                                        </TileMatrixLimits>
     36226                                </TileMatrixSetLimits>
     36227                        </TileMatrixSetLink>
     36228                </Layer>
     36229                <Layer>
     36230                        <ows:Title>Orthophotographies Geosud de MAUBEUGE 2014</ows:Title>
     36231                        <ows:Abstract>Orthophotographies satellites de MAUBEUGE issues du projet Geosud.</ows:Abstract>
     36232                        <ows:Keywords>
     36233                                <ows:Keyword>Photographies</ows:Keyword>
     36234                        </ows:Keywords>
     36235                        <ows:WGS84BoundingBox>
     36236                                <ows:LowerCorner>3.74061 50.1389</ows:LowerCorner>
     36237                                <ows:UpperCorner>4.03807 50.3385</ows:UpperCorner>
     36238                        </ows:WGS84BoundingBox>
     36239                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAUBEUGE-2014-03-12-39268069</ows:Identifier>
     36240                        <Style isDefault="true">
     36241                                <ows:Title>Données Brutes</ows:Title>
     36242                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36243                                <ows:Keywords>
     36244                                        <ows:Keyword>Défaut</ows:Keyword>
     36245                                </ows:Keywords>
     36246                                <ows:Identifier>normal</ows:Identifier>
     36247                                <LegendURL format="image/jpeg" height="200"
     36248                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36249                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36250                        </Style>
     36251                        <Format>image/jpeg</Format>
     36252                        <TileMatrixSetLink>
     36253                                <TileMatrixSet>PM</TileMatrixSet>
     36254                                <TileMatrixSetLimits>
     36255                                        <TileMatrixLimits>
     36256                                                <TileMatrix>0</TileMatrix>
     36257                                                <MinTileRow>0</MinTileRow>
     36258                                                <MaxTileRow>0</MaxTileRow>
     36259                                                <MinTileCol>0</MinTileCol>
     36260                                                <MaxTileCol>0</MaxTileCol>
     36261                                        </TileMatrixLimits>
     36262                                        <TileMatrixLimits>
     36263                                                <TileMatrix>1</TileMatrix>
     36264                                                <MinTileRow>0</MinTileRow>
     36265                                                <MaxTileRow>0</MaxTileRow>
     36266                                                <MinTileCol>1</MinTileCol>
     36267                                                <MaxTileCol>1</MaxTileCol>
     36268                                        </TileMatrixLimits>
     36269                                        <TileMatrixLimits>
     36270                                                <TileMatrix>10</TileMatrix>
     36271                                                <MinTileRow>345</MinTileRow>
     36272                                                <MaxTileRow>346</MaxTileRow>
     36273                                                <MinTileCol>522</MinTileCol>
     36274                                                <MaxTileCol>523</MaxTileCol>
     36275                                        </TileMatrixLimits>
     36276                                        <TileMatrixLimits>
     36277                                                <TileMatrix>11</TileMatrix>
     36278                                                <MinTileRow>691</MinTileRow>
     36279                                                <MaxTileRow>693</MaxTileRow>
     36280                                                <MinTileCol>1045</MinTileCol>
     36281                                                <MaxTileCol>1046</MaxTileCol>
     36282                                        </TileMatrixLimits>
     36283                                        <TileMatrixLimits>
     36284                                                <TileMatrix>12</TileMatrix>
     36285                                                <MinTileRow>1383</MinTileRow>
     36286                                                <MaxTileRow>1386</MaxTileRow>
     36287                                                <MinTileCol>2090</MinTileCol>
     36288                                                <MaxTileCol>2093</MaxTileCol>
     36289                                        </TileMatrixLimits>
     36290                                        <TileMatrixLimits>
     36291                                                <TileMatrix>13</TileMatrix>
     36292                                                <MinTileRow>2766</MinTileRow>
     36293                                                <MaxTileRow>2773</MaxTileRow>
     36294                                                <MinTileCol>4181</MinTileCol>
     36295                                                <MaxTileCol>4187</MaxTileCol>
     36296                                        </TileMatrixLimits>
     36297                                        <TileMatrixLimits>
     36298                                                <TileMatrix>14</TileMatrix>
     36299                                                <MinTileRow>5532</MinTileRow>
     36300                                                <MaxTileRow>5546</MaxTileRow>
     36301                                                <MinTileCol>8362</MinTileCol>
     36302                                                <MaxTileCol>8375</MaxTileCol>
     36303                                        </TileMatrixLimits>
     36304                                        <TileMatrixLimits>
     36305                                                <TileMatrix>15</TileMatrix>
     36306                                                <MinTileRow>11064</MinTileRow>
     36307                                                <MaxTileRow>11093</MaxTileRow>
     36308                                                <MinTileCol>16724</MinTileCol>
     36309                                                <MaxTileCol>16751</MaxTileCol>
     36310                                        </TileMatrixLimits>
     36311                                        <TileMatrixLimits>
     36312                                                <TileMatrix>16</TileMatrix>
     36313                                                <MinTileRow>22129</MinTileRow>
     36314                                                <MaxTileRow>22186</MaxTileRow>
     36315                                                <MinTileCol>33448</MinTileCol>
     36316                                                <MaxTileCol>33503</MaxTileCol>
     36317                                        </TileMatrixLimits>
     36318                                        <TileMatrixLimits>
     36319                                                <TileMatrix>17</TileMatrix>
     36320                                                <MinTileRow>44259</MinTileRow>
     36321                                                <MaxTileRow>44373</MaxTileRow>
     36322                                                <MinTileCol>66897</MinTileCol>
     36323                                                <MaxTileCol>67006</MaxTileCol>
     36324                                        </TileMatrixLimits>
     36325                                        <TileMatrixLimits>
     36326                                                <TileMatrix>18</TileMatrix>
     36327                                                <MinTileRow>88519</MinTileRow>
     36328                                                <MaxTileRow>88747</MaxTileRow>
     36329                                                <MinTileCol>133795</MinTileCol>
     36330                                                <MaxTileCol>134012</MaxTileCol>
     36331                                        </TileMatrixLimits>
     36332                                        <TileMatrixLimits>
     36333                                                <TileMatrix>2</TileMatrix>
     36334                                                <MinTileRow>1</MinTileRow>
     36335                                                <MaxTileRow>1</MaxTileRow>
     36336                                                <MinTileCol>2</MinTileCol>
     36337                                                <MaxTileCol>2</MaxTileCol>
     36338                                        </TileMatrixLimits>
     36339                                        <TileMatrixLimits>
     36340                                                <TileMatrix>3</TileMatrix>
     36341                                                <MinTileRow>2</MinTileRow>
     36342                                                <MaxTileRow>2</MaxTileRow>
     36343                                                <MinTileCol>4</MinTileCol>
     36344                                                <MaxTileCol>4</MaxTileCol>
     36345                                        </TileMatrixLimits>
     36346                                        <TileMatrixLimits>
     36347                                                <TileMatrix>4</TileMatrix>
     36348                                                <MinTileRow>5</MinTileRow>
     36349                                                <MaxTileRow>5</MaxTileRow>
     36350                                                <MinTileCol>8</MinTileCol>
     36351                                                <MaxTileCol>8</MaxTileCol>
     36352                                        </TileMatrixLimits>
     36353                                        <TileMatrixLimits>
     36354                                                <TileMatrix>5</TileMatrix>
     36355                                                <MinTileRow>10</MinTileRow>
     36356                                                <MaxTileRow>10</MaxTileRow>
     36357                                                <MinTileCol>16</MinTileCol>
     36358                                                <MaxTileCol>16</MaxTileCol>
     36359                                        </TileMatrixLimits>
     36360                                        <TileMatrixLimits>
     36361                                                <TileMatrix>6</TileMatrix>
     36362                                                <MinTileRow>21</MinTileRow>
     36363                                                <MaxTileRow>21</MaxTileRow>
     36364                                                <MinTileCol>32</MinTileCol>
     36365                                                <MaxTileCol>32</MaxTileCol>
     36366                                        </TileMatrixLimits>
     36367                                        <TileMatrixLimits>
     36368                                                <TileMatrix>7</TileMatrix>
     36369                                                <MinTileRow>43</MinTileRow>
     36370                                                <MaxTileRow>43</MaxTileRow>
     36371                                                <MinTileCol>65</MinTileCol>
     36372                                                <MaxTileCol>65</MaxTileCol>
     36373                                        </TileMatrixLimits>
     36374                                        <TileMatrixLimits>
     36375                                                <TileMatrix>8</TileMatrix>
     36376                                                <MinTileRow>86</MinTileRow>
     36377                                                <MaxTileRow>86</MaxTileRow>
     36378                                                <MinTileCol>130</MinTileCol>
     36379                                                <MaxTileCol>130</MaxTileCol>
     36380                                        </TileMatrixLimits>
     36381                                        <TileMatrixLimits>
     36382                                                <TileMatrix>9</TileMatrix>
     36383                                                <MinTileRow>172</MinTileRow>
     36384                                                <MaxTileRow>173</MaxTileRow>
     36385                                                <MinTileCol>261</MinTileCol>
     36386                                                <MaxTileCol>261</MaxTileCol>
     36387                                        </TileMatrixLimits>
     36388                                </TileMatrixSetLimits>
     36389                        </TileMatrixSetLink>
     36390                </Layer>
     36391                <Layer>
     36392                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     36393                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     36394                        <ows:Keywords>
     36395                                <ows:Keyword>Photographies</ows:Keyword>
     36396                        </ows:Keywords>
     36397                        <ows:WGS84BoundingBox>
     36398                                <ows:LowerCorner>44.917 -13.0892</ows:LowerCorner>
     36399                                <ows:UpperCorner>45.3044 -12.5645</ows:UpperCorner>
     36400                        </ows:WGS84BoundingBox>
     36401                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013</ows:Identifier>
     36402                        <Style isDefault="true">
     36403                                <ows:Title>Données Brutes</ows:Title>
     36404                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36405                                <ows:Keywords>
     36406                                        <ows:Keyword>Défaut</ows:Keyword>
     36407                                </ows:Keywords>
     36408                                <ows:Identifier>normal</ows:Identifier>
     36409                                <LegendURL format="image/jpeg" height="200"
     36410                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36411                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36412                        </Style>
     36413                        <Format>image/jpeg</Format>
     36414                        <TileMatrixSetLink>
     36415                                <TileMatrixSet>PM</TileMatrixSet>
     36416                                <TileMatrixSetLimits>
     36417                                        <TileMatrixLimits>
     36418                                                <TileMatrix>0</TileMatrix>
     36419                                                <MinTileRow>0</MinTileRow>
     36420                                                <MaxTileRow>0</MaxTileRow>
     36421                                                <MinTileCol>0</MinTileCol>
     36422                                                <MaxTileCol>0</MaxTileCol>
     36423                                        </TileMatrixLimits>
     36424                                        <TileMatrixLimits>
     36425                                                <TileMatrix>1</TileMatrix>
     36426                                                <MinTileRow>1</MinTileRow>
     36427                                                <MaxTileRow>1</MaxTileRow>
     36428                                                <MinTileCol>1</MinTileCol>
     36429                                                <MaxTileCol>1</MaxTileCol>
     36430                                        </TileMatrixLimits>
     36431                                        <TileMatrixLimits>
     36432                                                <TileMatrix>10</TileMatrix>
     36433                                                <MinTileRow>548</MinTileRow>
     36434                                                <MaxTileRow>549</MaxTileRow>
     36435                                                <MinTileCol>639</MinTileCol>
     36436                                                <MaxTileCol>640</MaxTileCol>
     36437                                        </TileMatrixLimits>
     36438                                        <TileMatrixLimits>
     36439                                                <TileMatrix>11</TileMatrix>
     36440                                                <MinTileRow>1096</MinTileRow>
     36441                                                <MaxTileRow>1099</MaxTileRow>
     36442                                                <MinTileCol>1279</MinTileCol>
     36443                                                <MaxTileCol>1281</MaxTileCol>
     36444                                        </TileMatrixLimits>
     36445                                        <TileMatrixLimits>
     36446                                                <TileMatrix>12</TileMatrix>
     36447                                                <MinTileRow>2192</MinTileRow>
     36448                                                <MaxTileRow>2198</MaxTileRow>
     36449                                                <MinTileCol>2559</MinTileCol>
     36450                                                <MaxTileCol>2563</MaxTileCol>
     36451                                        </TileMatrixLimits>
     36452                                        <TileMatrixLimits>
     36453                                                <TileMatrix>13</TileMatrix>
     36454                                                <MinTileRow>4384</MinTileRow>
     36455                                                <MaxTileRow>4396</MaxTileRow>
     36456                                                <MinTileCol>5118</MinTileCol>
     36457                                                <MaxTileCol>5126</MaxTileCol>
     36458                                        </TileMatrixLimits>
     36459                                        <TileMatrixLimits>
     36460                                                <TileMatrix>14</TileMatrix>
     36461                                                <MinTileRow>8768</MinTileRow>
     36462                                                <MaxTileRow>8792</MaxTileRow>
     36463                                                <MinTileCol>10236</MinTileCol>
     36464                                                <MaxTileCol>10253</MaxTileCol>
     36465                                        </TileMatrixLimits>
     36466                                        <TileMatrixLimits>
     36467                                                <TileMatrix>15</TileMatrix>
     36468                                                <MinTileRow>17536</MinTileRow>
     36469                                                <MaxTileRow>17585</MaxTileRow>
     36470                                                <MinTileCol>20472</MinTileCol>
     36471                                                <MaxTileCol>20507</MaxTileCol>
     36472                                        </TileMatrixLimits>
     36473                                        <TileMatrixLimits>
     36474                                                <TileMatrix>16</TileMatrix>
     36475                                                <MinTileRow>35073</MinTileRow>
     36476                                                <MaxTileRow>35171</MaxTileRow>
     36477                                                <MinTileCol>40944</MinTileCol>
     36478                                                <MaxTileCol>41015</MaxTileCol>
     36479                                        </TileMatrixLimits>
     36480                                        <TileMatrixLimits>
     36481                                                <TileMatrix>17</TileMatrix>
     36482                                                <MinTileRow>70147</MinTileRow>
     36483                                                <MaxTileRow>70343</MaxTileRow>
     36484                                                <MinTileCol>81889</MinTileCol>
     36485                                                <MaxTileCol>82030</MaxTileCol>
     36486                                        </TileMatrixLimits>
     36487                                        <TileMatrixLimits>
     36488                                                <TileMatrix>18</TileMatrix>
     36489                                                <MinTileRow>140295</MinTileRow>
     36490                                                <MaxTileRow>140687</MaxTileRow>
     36491                                                <MinTileCol>163779</MinTileCol>
     36492                                                <MaxTileCol>164061</MaxTileCol>
     36493                                        </TileMatrixLimits>
     36494                                        <TileMatrixLimits>
     36495                                                <TileMatrix>2</TileMatrix>
     36496                                                <MinTileRow>2</MinTileRow>
     36497                                                <MaxTileRow>2</MaxTileRow>
     36498                                                <MinTileCol>2</MinTileCol>
     36499                                                <MaxTileCol>2</MaxTileCol>
     36500                                        </TileMatrixLimits>
     36501                                        <TileMatrixLimits>
     36502                                                <TileMatrix>3</TileMatrix>
     36503                                                <MinTileRow>4</MinTileRow>
     36504                                                <MaxTileRow>4</MaxTileRow>
     36505                                                <MinTileCol>4</MinTileCol>
     36506                                                <MaxTileCol>5</MaxTileCol>
     36507                                        </TileMatrixLimits>
     36508                                        <TileMatrixLimits>
     36509                                                <TileMatrix>4</TileMatrix>
     36510                                                <MinTileRow>8</MinTileRow>
     36511                                                <MaxTileRow>8</MaxTileRow>
     36512                                                <MinTileCol>9</MinTileCol>
     36513                                                <MaxTileCol>10</MaxTileCol>
     36514                                        </TileMatrixLimits>
     36515                                        <TileMatrixLimits>
     36516                                                <TileMatrix>5</TileMatrix>
     36517                                                <MinTileRow>17</MinTileRow>
     36518                                                <MaxTileRow>17</MaxTileRow>
     36519                                                <MinTileCol>19</MinTileCol>
     36520                                                <MaxTileCol>20</MaxTileCol>
     36521                                        </TileMatrixLimits>
     36522                                        <TileMatrixLimits>
     36523                                                <TileMatrix>6</TileMatrix>
     36524                                                <MinTileRow>34</MinTileRow>
     36525                                                <MaxTileRow>34</MaxTileRow>
     36526                                                <MinTileCol>39</MinTileCol>
     36527                                                <MaxTileCol>40</MaxTileCol>
     36528                                        </TileMatrixLimits>
     36529                                        <TileMatrixLimits>
     36530                                                <TileMatrix>7</TileMatrix>
     36531                                                <MinTileRow>68</MinTileRow>
     36532                                                <MaxTileRow>68</MaxTileRow>
     36533                                                <MinTileCol>79</MinTileCol>
     36534                                                <MaxTileCol>80</MaxTileCol>
     36535                                        </TileMatrixLimits>
     36536                                        <TileMatrixLimits>
     36537                                                <TileMatrix>8</TileMatrix>
     36538                                                <MinTileRow>137</MinTileRow>
     36539                                                <MaxTileRow>137</MaxTileRow>
     36540                                                <MinTileCol>159</MinTileCol>
     36541                                                <MaxTileCol>160</MaxTileCol>
     36542                                        </TileMatrixLimits>
     36543                                        <TileMatrixLimits>
     36544                                                <TileMatrix>9</TileMatrix>
     36545                                                <MinTileRow>274</MinTileRow>
     36546                                                <MaxTileRow>274</MaxTileRow>
     36547                                                <MinTileCol>319</MinTileCol>
     36548                                                <MaxTileCol>320</MaxTileCol>
     36549                                        </TileMatrixLimits>
     36550                                </TileMatrixSetLimits>
     36551                        </TileMatrixSetLink>
     36552                </Layer>
     36553                <Layer>
     36554                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     36555                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     36556                        <ows:Keywords>
     36557                                <ows:Keyword>Photographies</ows:Keyword>
     36558                        </ows:Keywords>
     36559                        <ows:WGS84BoundingBox>
     36560                                <ows:LowerCorner>45.0368 -12.7365</ows:LowerCorner>
     36561                                <ows:UpperCorner>45.2303 -12.5556</ows:UpperCorner>
     36562                        </ows:WGS84BoundingBox>
     36563                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26622172</ows:Identifier>
     36564                        <Style isDefault="true">
     36565                                <ows:Title>Données Brutes</ows:Title>
     36566                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36567                                <ows:Keywords>
     36568                                        <ows:Keyword>Défaut</ows:Keyword>
     36569                                </ows:Keywords>
     36570                                <ows:Identifier>normal</ows:Identifier>
     36571                                <LegendURL format="image/jpeg" height="200"
     36572                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36573                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36574                        </Style>
     36575                        <Format>image/jpeg</Format>
     36576                        <TileMatrixSetLink>
     36577                                <TileMatrixSet>PM</TileMatrixSet>
     36578                                <TileMatrixSetLimits>
     36579                                        <TileMatrixLimits>
     36580                                                <TileMatrix>0</TileMatrix>
     36581                                                <MinTileRow>0</MinTileRow>
     36582                                                <MaxTileRow>0</MaxTileRow>
     36583                                                <MinTileCol>0</MinTileCol>
     36584                                                <MaxTileCol>0</MaxTileCol>
     36585                                        </TileMatrixLimits>
     36586                                        <TileMatrixLimits>
     36587                                                <TileMatrix>1</TileMatrix>
     36588                                                <MinTileRow>1</MinTileRow>
     36589                                                <MaxTileRow>1</MaxTileRow>
     36590                                                <MinTileCol>1</MinTileCol>
     36591                                                <MaxTileCol>1</MaxTileCol>
     36592                                        </TileMatrixLimits>
     36593                                        <TileMatrixLimits>
     36594                                                <TileMatrix>10</TileMatrix>
     36595                                                <MinTileRow>548</MinTileRow>
     36596                                                <MaxTileRow>548</MaxTileRow>
     36597                                                <MinTileCol>640</MinTileCol>
     36598                                                <MaxTileCol>640</MaxTileCol>
     36599                                        </TileMatrixLimits>
     36600                                        <TileMatrixLimits>
     36601                                                <TileMatrix>11</TileMatrix>
     36602                                                <MinTileRow>1096</MinTileRow>
     36603                                                <MaxTileRow>1097</MaxTileRow>
     36604                                                <MinTileCol>1280</MinTileCol>
     36605                                                <MaxTileCol>1281</MaxTileCol>
     36606                                        </TileMatrixLimits>
     36607                                        <TileMatrixLimits>
     36608                                                <TileMatrix>12</TileMatrix>
     36609                                                <MinTileRow>2192</MinTileRow>
     36610                                                <MaxTileRow>2194</MaxTileRow>
     36611                                                <MinTileCol>2560</MinTileCol>
     36612                                                <MaxTileCol>2562</MaxTileCol>
     36613                                        </TileMatrixLimits>
     36614                                        <TileMatrixLimits>
     36615                                                <TileMatrix>13</TileMatrix>
     36616                                                <MinTileRow>4384</MinTileRow>
     36617                                                <MaxTileRow>4388</MaxTileRow>
     36618                                                <MinTileCol>5120</MinTileCol>
     36619                                                <MaxTileCol>5125</MaxTileCol>
     36620                                        </TileMatrixLimits>
     36621                                        <TileMatrixLimits>
     36622                                                <TileMatrix>14</TileMatrix>
     36623                                                <MinTileRow>8768</MinTileRow>
     36624                                                <MaxTileRow>8776</MaxTileRow>
     36625                                                <MinTileCol>10241</MinTileCol>
     36626                                                <MaxTileCol>10250</MaxTileCol>
     36627                                        </TileMatrixLimits>
     36628                                        <TileMatrixLimits>
     36629                                                <TileMatrix>15</TileMatrix>
     36630                                                <MinTileRow>17536</MinTileRow>
     36631                                                <MaxTileRow>17552</MaxTileRow>
     36632                                                <MinTileCol>20483</MinTileCol>
     36633                                                <MaxTileCol>20500</MaxTileCol>
     36634                                        </TileMatrixLimits>
     36635                                        <TileMatrixLimits>
     36636                                                <TileMatrix>16</TileMatrix>
     36637                                                <MinTileRow>35072</MinTileRow>
     36638                                                <MaxTileRow>35105</MaxTileRow>
     36639                                                <MinTileCol>40966</MinTileCol>
     36640                                                <MaxTileCol>41001</MaxTileCol>
     36641                                        </TileMatrixLimits>
     36642                                        <TileMatrixLimits>
     36643                                                <TileMatrix>17</TileMatrix>
     36644                                                <MinTileRow>70144</MinTileRow>
     36645                                                <MaxTileRow>70211</MaxTileRow>
     36646                                                <MinTileCol>81933</MinTileCol>
     36647                                                <MaxTileCol>82003</MaxTileCol>
     36648                                        </TileMatrixLimits>
     36649                                        <TileMatrixLimits>
     36650                                                <TileMatrix>18</TileMatrix>
     36651                                                <MinTileRow>140288</MinTileRow>
     36652                                                <MaxTileRow>140423</MaxTileRow>
     36653                                                <MinTileCol>163866</MinTileCol>
     36654                                                <MaxTileCol>164007</MaxTileCol>
     36655                                        </TileMatrixLimits>
     36656                                        <TileMatrixLimits>
     36657                                                <TileMatrix>2</TileMatrix>
     36658                                                <MinTileRow>2</MinTileRow>
     36659                                                <MaxTileRow>2</MaxTileRow>
     36660                                                <MinTileCol>2</MinTileCol>
     36661                                                <MaxTileCol>2</MaxTileCol>
     36662                                        </TileMatrixLimits>
     36663                                        <TileMatrixLimits>
     36664                                                <TileMatrix>3</TileMatrix>
     36665                                                <MinTileRow>4</MinTileRow>
     36666                                                <MaxTileRow>4</MaxTileRow>
     36667                                                <MinTileCol>5</MinTileCol>
     36668                                                <MaxTileCol>5</MaxTileCol>
     36669                                        </TileMatrixLimits>
     36670                                        <TileMatrixLimits>
     36671                                                <TileMatrix>4</TileMatrix>
     36672                                                <MinTileRow>8</MinTileRow>
     36673                                                <MaxTileRow>8</MaxTileRow>
     36674                                                <MinTileCol>10</MinTileCol>
     36675                                                <MaxTileCol>10</MaxTileCol>
     36676                                        </TileMatrixLimits>
     36677                                        <TileMatrixLimits>
     36678                                                <TileMatrix>5</TileMatrix>
     36679                                                <MinTileRow>17</MinTileRow>
     36680                                                <MaxTileRow>17</MaxTileRow>
     36681                                                <MinTileCol>20</MinTileCol>
     36682                                                <MaxTileCol>20</MaxTileCol>
     36683                                        </TileMatrixLimits>
     36684                                        <TileMatrixLimits>
     36685                                                <TileMatrix>6</TileMatrix>
     36686                                                <MinTileRow>34</MinTileRow>
     36687                                                <MaxTileRow>34</MaxTileRow>
     36688                                                <MinTileCol>40</MinTileCol>
     36689                                                <MaxTileCol>40</MaxTileCol>
     36690                                        </TileMatrixLimits>
     36691                                        <TileMatrixLimits>
     36692                                                <TileMatrix>7</TileMatrix>
     36693                                                <MinTileRow>68</MinTileRow>
     36694                                                <MaxTileRow>68</MaxTileRow>
     36695                                                <MinTileCol>80</MinTileCol>
     36696                                                <MaxTileCol>80</MaxTileCol>
     36697                                        </TileMatrixLimits>
     36698                                        <TileMatrixLimits>
     36699                                                <TileMatrix>8</TileMatrix>
     36700                                                <MinTileRow>137</MinTileRow>
     36701                                                <MaxTileRow>137</MaxTileRow>
     36702                                                <MinTileCol>160</MinTileCol>
     36703                                                <MaxTileCol>160</MaxTileCol>
     36704                                        </TileMatrixLimits>
     36705                                        <TileMatrixLimits>
     36706                                                <TileMatrix>9</TileMatrix>
     36707                                                <MinTileRow>274</MinTileRow>
     36708                                                <MaxTileRow>274</MaxTileRow>
     36709                                                <MinTileCol>320</MinTileCol>
     36710                                                <MaxTileCol>320</MaxTileCol>
     36711                                        </TileMatrixLimits>
     36712                                </TileMatrixSetLimits>
     36713                        </TileMatrixSetLink>
     36714                </Layer>
     36715                <Layer>
     36716                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     36717                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     36718                        <ows:Keywords>
     36719                                <ows:Keyword>Photographies</ows:Keyword>
     36720                        </ows:Keywords>
     36721                        <ows:WGS84BoundingBox>
     36722                                <ows:LowerCorner>45.0369 -13.1073</ows:LowerCorner>
     36723                                <ows:UpperCorner>45.2306 -13.0258</ows:UpperCorner>
     36724                        </ows:WGS84BoundingBox>
     36725                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26629960</ows:Identifier>
     36726                        <Style isDefault="true">
     36727                                <ows:Title>Données Brutes</ows:Title>
     36728                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36729                                <ows:Keywords>
     36730                                        <ows:Keyword>Défaut</ows:Keyword>
     36731                                </ows:Keywords>
     36732                                <ows:Identifier>normal</ows:Identifier>
     36733                                <LegendURL format="image/jpeg" height="200"
     36734                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36735                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36736                        </Style>
     36737                        <Format>image/jpeg</Format>
     36738                        <TileMatrixSetLink>
     36739                                <TileMatrixSet>PM</TileMatrixSet>
     36740                                <TileMatrixSetLimits>
     36741                                        <TileMatrixLimits>
     36742                                                <TileMatrix>0</TileMatrix>
     36743                                                <MinTileRow>0</MinTileRow>
     36744                                                <MaxTileRow>0</MaxTileRow>
     36745                                                <MinTileCol>0</MinTileCol>
     36746                                                <MaxTileCol>0</MaxTileCol>
     36747                                        </TileMatrixLimits>
     36748                                        <TileMatrixLimits>
     36749                                                <TileMatrix>1</TileMatrix>
     36750                                                <MinTileRow>1</MinTileRow>
     36751                                                <MaxTileRow>1</MaxTileRow>
     36752                                                <MinTileCol>1</MinTileCol>
     36753                                                <MaxTileCol>1</MaxTileCol>
     36754                                        </TileMatrixLimits>
     36755                                        <TileMatrixLimits>
     36756                                                <TileMatrix>10</TileMatrix>
     36757                                                <MinTileRow>549</MinTileRow>
     36758                                                <MaxTileRow>549</MaxTileRow>
     36759                                                <MinTileCol>640</MinTileCol>
     36760                                                <MaxTileCol>640</MaxTileCol>
     36761                                        </TileMatrixLimits>
     36762                                        <TileMatrixLimits>
     36763                                                <TileMatrix>11</TileMatrix>
     36764                                                <MinTileRow>1098</MinTileRow>
     36765                                                <MaxTileRow>1099</MaxTileRow>
     36766                                                <MinTileCol>1280</MinTileCol>
     36767                                                <MaxTileCol>1281</MaxTileCol>
     36768                                        </TileMatrixLimits>
     36769                                        <TileMatrixLimits>
     36770                                                <TileMatrix>12</TileMatrix>
     36771                                                <MinTileRow>2197</MinTileRow>
     36772                                                <MaxTileRow>2198</MaxTileRow>
     36773                                                <MinTileCol>2560</MinTileCol>
     36774                                                <MaxTileCol>2562</MaxTileCol>
     36775                                        </TileMatrixLimits>
     36776                                        <TileMatrixLimits>
     36777                                                <TileMatrix>13</TileMatrix>
     36778                                                <MinTileRow>4394</MinTileRow>
     36779                                                <MaxTileRow>4396</MaxTileRow>
     36780                                                <MinTileCol>5120</MinTileCol>
     36781                                                <MaxTileCol>5125</MaxTileCol>
     36782                                        </TileMatrixLimits>
     36783                                        <TileMatrixLimits>
     36784                                                <TileMatrix>14</TileMatrix>
     36785                                                <MinTileRow>8789</MinTileRow>
     36786                                                <MaxTileRow>8793</MaxTileRow>
     36787                                                <MinTileCol>10241</MinTileCol>
     36788                                                <MaxTileCol>10250</MaxTileCol>
     36789                                        </TileMatrixLimits>
     36790                                        <TileMatrixLimits>
     36791                                                <TileMatrix>15</TileMatrix>
     36792                                                <MinTileRow>17579</MinTileRow>
     36793                                                <MaxTileRow>17587</MaxTileRow>
     36794                                                <MinTileCol>20483</MinTileCol>
     36795                                                <MaxTileCol>20501</MaxTileCol>
     36796                                        </TileMatrixLimits>
     36797                                        <TileMatrixLimits>
     36798                                                <TileMatrix>16</TileMatrix>
     36799                                                <MinTileRow>35159</MinTileRow>
     36800                                                <MaxTileRow>35175</MaxTileRow>
     36801                                                <MinTileCol>40966</MinTileCol>
     36802                                                <MaxTileCol>41002</MaxTileCol>
     36803                                        </TileMatrixLimits>
     36804                                        <TileMatrixLimits>
     36805                                                <TileMatrix>17</TileMatrix>
     36806                                                <MinTileRow>70319</MinTileRow>
     36807                                                <MaxTileRow>70350</MaxTileRow>
     36808                                                <MinTileCol>81933</MinTileCol>
     36809                                                <MaxTileCol>82004</MaxTileCol>
     36810                                        </TileMatrixLimits>
     36811                                        <TileMatrixLimits>
     36812                                                <TileMatrix>18</TileMatrix>
     36813                                                <MinTileRow>140639</MinTileRow>
     36814                                                <MaxTileRow>140700</MaxTileRow>
     36815                                                <MinTileCol>163866</MinTileCol>
     36816                                                <MaxTileCol>164008</MaxTileCol>
     36817                                        </TileMatrixLimits>
     36818                                        <TileMatrixLimits>
     36819                                                <TileMatrix>2</TileMatrix>
     36820                                                <MinTileRow>2</MinTileRow>
     36821                                                <MaxTileRow>2</MaxTileRow>
     36822                                                <MinTileCol>2</MinTileCol>
     36823                                                <MaxTileCol>2</MaxTileCol>
     36824                                        </TileMatrixLimits>
     36825                                        <TileMatrixLimits>
     36826                                                <TileMatrix>3</TileMatrix>
     36827                                                <MinTileRow>4</MinTileRow>
     36828                                                <MaxTileRow>4</MaxTileRow>
     36829                                                <MinTileCol>5</MinTileCol>
     36830                                                <MaxTileCol>5</MaxTileCol>
     36831                                        </TileMatrixLimits>
     36832                                        <TileMatrixLimits>
     36833                                                <TileMatrix>4</TileMatrix>
     36834                                                <MinTileRow>8</MinTileRow>
     36835                                                <MaxTileRow>8</MaxTileRow>
     36836                                                <MinTileCol>10</MinTileCol>
     36837                                                <MaxTileCol>10</MaxTileCol>
     36838                                        </TileMatrixLimits>
     36839                                        <TileMatrixLimits>
     36840                                                <TileMatrix>5</TileMatrix>
     36841                                                <MinTileRow>17</MinTileRow>
     36842                                                <MaxTileRow>17</MaxTileRow>
     36843                                                <MinTileCol>20</MinTileCol>
     36844                                                <MaxTileCol>20</MaxTileCol>
     36845                                        </TileMatrixLimits>
     36846                                        <TileMatrixLimits>
     36847                                                <TileMatrix>6</TileMatrix>
     36848                                                <MinTileRow>34</MinTileRow>
     36849                                                <MaxTileRow>34</MaxTileRow>
     36850                                                <MinTileCol>40</MinTileCol>
     36851                                                <MaxTileCol>40</MaxTileCol>
     36852                                        </TileMatrixLimits>
     36853                                        <TileMatrixLimits>
     36854                                                <TileMatrix>7</TileMatrix>
     36855                                                <MinTileRow>68</MinTileRow>
     36856                                                <MaxTileRow>68</MaxTileRow>
     36857                                                <MinTileCol>80</MinTileCol>
     36858                                                <MaxTileCol>80</MaxTileCol>
     36859                                        </TileMatrixLimits>
     36860                                        <TileMatrixLimits>
     36861                                                <TileMatrix>8</TileMatrix>
     36862                                                <MinTileRow>137</MinTileRow>
     36863                                                <MaxTileRow>137</MaxTileRow>
     36864                                                <MinTileCol>160</MinTileCol>
     36865                                                <MaxTileCol>160</MaxTileCol>
     36866                                        </TileMatrixLimits>
     36867                                        <TileMatrixLimits>
     36868                                                <TileMatrix>9</TileMatrix>
     36869                                                <MinTileRow>274</MinTileRow>
     36870                                                <MaxTileRow>274</MaxTileRow>
     36871                                                <MinTileCol>320</MinTileCol>
     36872                                                <MaxTileCol>320</MaxTileCol>
     36873                                        </TileMatrixLimits>
     36874                                </TileMatrixSetLimits>
     36875                        </TileMatrixSetLink>
     36876                </Layer>
     36877                <Layer>
     36878                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     36879                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     36880                        <ows:Keywords>
     36881                                <ows:Keyword>Photographies</ows:Keyword>
     36882                        </ows:Keywords>
     36883                        <ows:WGS84BoundingBox>
     36884                                <ows:LowerCorner>45.1565 -13.0982</ows:LowerCorner>
     36885                                <ows:UpperCorner>45.3229 -12.6007</ows:UpperCorner>
     36886                        </ows:WGS84BoundingBox>
     36887                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-17-26665951</ows:Identifier>
     36888                        <Style isDefault="true">
     36889                                <ows:Title>Données Brutes</ows:Title>
     36890                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     36891                                <ows:Keywords>
     36892                                        <ows:Keyword>Défaut</ows:Keyword>
     36893                                </ows:Keywords>
     36894                                <ows:Identifier>normal</ows:Identifier>
     36895                                <LegendURL format="image/jpeg" height="200"
     36896                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     36897                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     36898                        </Style>
     36899                        <Format>image/jpeg</Format>
     36900                        <TileMatrixSetLink>
     36901                                <TileMatrixSet>PM</TileMatrixSet>
     36902                                <TileMatrixSetLimits>
     36903                                        <TileMatrixLimits>
     36904                                                <TileMatrix>0</TileMatrix>
     36905                                                <MinTileRow>0</MinTileRow>
     36906                                                <MaxTileRow>0</MaxTileRow>
     36907                                                <MinTileCol>0</MinTileCol>
     36908                                                <MaxTileCol>0</MaxTileCol>
     36909                                        </TileMatrixLimits>
     36910                                        <TileMatrixLimits>
     36911                                                <TileMatrix>1</TileMatrix>
     36912                                                <MinTileRow>1</MinTileRow>
     36913                                                <MaxTileRow>1</MaxTileRow>
     36914                                                <MinTileCol>1</MinTileCol>
     36915                                                <MaxTileCol>1</MaxTileCol>
     36916                                        </TileMatrixLimits>
     36917                                        <TileMatrixLimits>
     36918                                                <TileMatrix>10</TileMatrix>
     36919                                                <MinTileRow>548</MinTileRow>
     36920                                                <MaxTileRow>549</MaxTileRow>
     36921                                                <MinTileCol>640</MinTileCol>
     36922                                                <MaxTileCol>640</MaxTileCol>
     36923                                        </TileMatrixLimits>
     36924                                        <TileMatrixLimits>
     36925                                                <TileMatrix>11</TileMatrix>
     36926                                                <MinTileRow>1096</MinTileRow>
     36927                                                <MaxTileRow>1099</MaxTileRow>
     36928                                                <MinTileCol>1280</MinTileCol>
     36929                                                <MaxTileCol>1281</MaxTileCol>
     36930                                        </TileMatrixLimits>
     36931                                        <TileMatrixLimits>
     36932                                                <TileMatrix>12</TileMatrix>
     36933                                                <MinTileRow>2192</MinTileRow>
     36934                                                <MaxTileRow>2198</MaxTileRow>
     36935                                                <MinTileCol>2561</MinTileCol>
     36936                                                <MaxTileCol>2563</MaxTileCol>
     36937                                        </TileMatrixLimits>
     36938                                        <TileMatrixLimits>
     36939                                                <TileMatrix>13</TileMatrix>
     36940                                                <MinTileRow>4385</MinTileRow>
     36941                                                <MaxTileRow>4396</MaxTileRow>
     36942                                                <MinTileCol>5123</MinTileCol>
     36943                                                <MaxTileCol>5127</MaxTileCol>
     36944                                        </TileMatrixLimits>
     36945                                        <TileMatrixLimits>
     36946                                                <TileMatrix>14</TileMatrix>
     36947                                                <MinTileRow>8770</MinTileRow>
     36948                                                <MaxTileRow>8793</MaxTileRow>
     36949                                                <MinTileCol>10247</MinTileCol>
     36950                                                <MaxTileCol>10254</MaxTileCol>
     36951                                        </TileMatrixLimits>
     36952                                        <TileMatrixLimits>
     36953                                                <TileMatrix>15</TileMatrix>
     36954                                                <MinTileRow>17540</MinTileRow>
     36955                                                <MaxTileRow>17586</MaxTileRow>
     36956                                                <MinTileCol>20494</MinTileCol>
     36957                                                <MaxTileCol>20509</MaxTileCol>
     36958                                        </TileMatrixLimits>
     36959                                        <TileMatrixLimits>
     36960                                                <TileMatrix>16</TileMatrix>
     36961                                                <MinTileRow>35080</MinTileRow>
     36962                                                <MaxTileRow>35173</MaxTileRow>
     36963                                                <MinTileCol>40988</MinTileCol>
     36964                                                <MaxTileCol>41018</MaxTileCol>
     36965                                        </TileMatrixLimits>
     36966                                        <TileMatrixLimits>
     36967                                                <TileMatrix>17</TileMatrix>
     36968                                                <MinTileRow>70161</MinTileRow>
     36969                                                <MaxTileRow>70346</MaxTileRow>
     36970                                                <MinTileCol>81976</MinTileCol>
     36971                                                <MaxTileCol>82037</MaxTileCol>
     36972                                        </TileMatrixLimits>
     36973                                        <TileMatrixLimits>
     36974                                                <TileMatrix>18</TileMatrix>
     36975                                                <MinTileRow>140322</MinTileRow>
     36976                                                <MaxTileRow>140693</MaxTileRow>
     36977                                                <MinTileCol>163953</MinTileCol>
     36978                                                <MaxTileCol>164075</MaxTileCol>
     36979                                        </TileMatrixLimits>
     36980                                        <TileMatrixLimits>
     36981                                                <TileMatrix>2</TileMatrix>
     36982                                                <MinTileRow>2</MinTileRow>
     36983                                                <MaxTileRow>2</MaxTileRow>
     36984                                                <MinTileCol>2</MinTileCol>
     36985                                                <MaxTileCol>2</MaxTileCol>
     36986                                        </TileMatrixLimits>
     36987                                        <TileMatrixLimits>
     36988                                                <TileMatrix>3</TileMatrix>
     36989                                                <MinTileRow>4</MinTileRow>
     36990                                                <MaxTileRow>4</MaxTileRow>
     36991                                                <MinTileCol>5</MinTileCol>
     36992                                                <MaxTileCol>5</MaxTileCol>
     36993                                        </TileMatrixLimits>
     36994                                        <TileMatrixLimits>
     36995                                                <TileMatrix>4</TileMatrix>
     36996                                                <MinTileRow>8</MinTileRow>
     36997                                                <MaxTileRow>8</MaxTileRow>
     36998                                                <MinTileCol>10</MinTileCol>
     36999                                                <MaxTileCol>10</MaxTileCol>
     37000                                        </TileMatrixLimits>
     37001                                        <TileMatrixLimits>
     37002                                                <TileMatrix>5</TileMatrix>
     37003                                                <MinTileRow>17</MinTileRow>
     37004                                                <MaxTileRow>17</MaxTileRow>
     37005                                                <MinTileCol>20</MinTileCol>
     37006                                                <MaxTileCol>20</MaxTileCol>
     37007                                        </TileMatrixLimits>
     37008                                        <TileMatrixLimits>
     37009                                                <TileMatrix>6</TileMatrix>
     37010                                                <MinTileRow>34</MinTileRow>
     37011                                                <MaxTileRow>34</MaxTileRow>
     37012                                                <MinTileCol>40</MinTileCol>
     37013                                                <MaxTileCol>40</MaxTileCol>
     37014                                        </TileMatrixLimits>
     37015                                        <TileMatrixLimits>
     37016                                                <TileMatrix>7</TileMatrix>
     37017                                                <MinTileRow>68</MinTileRow>
     37018                                                <MaxTileRow>68</MaxTileRow>
     37019                                                <MinTileCol>80</MinTileCol>
     37020                                                <MaxTileCol>80</MaxTileCol>
     37021                                        </TileMatrixLimits>
     37022                                        <TileMatrixLimits>
     37023                                                <TileMatrix>8</TileMatrix>
     37024                                                <MinTileRow>137</MinTileRow>
     37025                                                <MaxTileRow>137</MaxTileRow>
     37026                                                <MinTileCol>160</MinTileCol>
     37027                                                <MaxTileCol>160</MaxTileCol>
     37028                                        </TileMatrixLimits>
     37029                                        <TileMatrixLimits>
     37030                                                <TileMatrix>9</TileMatrix>
     37031                                                <MinTileRow>274</MinTileRow>
     37032                                                <MaxTileRow>274</MaxTileRow>
     37033                                                <MinTileCol>320</MinTileCol>
     37034                                                <MaxTileCol>320</MaxTileCol>
     37035                                        </TileMatrixLimits>
     37036                                </TileMatrixSetLimits>
     37037                        </TileMatrixSetLink>
     37038                </Layer>
     37039                <Layer>
     37040                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37041                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37042                        <ows:Keywords>
     37043                                <ows:Keyword>Photographies</ows:Keyword>
     37044                        </ows:Keywords>
     37045                        <ows:WGS84BoundingBox>
     37046                                <ows:LowerCorner>44.8985 -13.1073</ows:LowerCorner>
     37047                                <ows:UpperCorner>45.3229 -12.5555</ows:UpperCorner>
     37048                        </ows:WGS84BoundingBox>
     37049                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-03-29-27067263</ows:Identifier>
     37050                        <Style isDefault="true">
     37051                                <ows:Title>Données Brutes</ows:Title>
     37052                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37053                                <ows:Keywords>
     37054                                        <ows:Keyword>Défaut</ows:Keyword>
     37055                                </ows:Keywords>
     37056                                <ows:Identifier>normal</ows:Identifier>
     37057                                <LegendURL format="image/jpeg" height="200"
     37058                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37059                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37060                        </Style>
     37061                        <Format>image/jpeg</Format>
     37062                        <TileMatrixSetLink>
     37063                                <TileMatrixSet>PM</TileMatrixSet>
     37064                                <TileMatrixSetLimits>
     37065                                        <TileMatrixLimits>
     37066                                                <TileMatrix>0</TileMatrix>
     37067                                                <MinTileRow>0</MinTileRow>
     37068                                                <MaxTileRow>0</MaxTileRow>
     37069                                                <MinTileCol>0</MinTileCol>
     37070                                                <MaxTileCol>0</MaxTileCol>
     37071                                        </TileMatrixLimits>
     37072                                        <TileMatrixLimits>
     37073                                                <TileMatrix>1</TileMatrix>
     37074                                                <MinTileRow>1</MinTileRow>
     37075                                                <MaxTileRow>1</MaxTileRow>
     37076                                                <MinTileCol>1</MinTileCol>
     37077                                                <MaxTileCol>1</MaxTileCol>
     37078                                        </TileMatrixLimits>
     37079                                        <TileMatrixLimits>
     37080                                                <TileMatrix>10</TileMatrix>
     37081                                                <MinTileRow>548</MinTileRow>
     37082                                                <MaxTileRow>549</MaxTileRow>
     37083                                                <MinTileCol>639</MinTileCol>
     37084                                                <MaxTileCol>640</MaxTileCol>
     37085                                        </TileMatrixLimits>
     37086                                        <TileMatrixLimits>
     37087                                                <TileMatrix>11</TileMatrix>
     37088                                                <MinTileRow>1096</MinTileRow>
     37089                                                <MaxTileRow>1099</MaxTileRow>
     37090                                                <MinTileCol>1279</MinTileCol>
     37091                                                <MaxTileCol>1281</MaxTileCol>
     37092                                        </TileMatrixLimits>
     37093                                        <TileMatrixLimits>
     37094                                                <TileMatrix>12</TileMatrix>
     37095                                                <MinTileRow>2192</MinTileRow>
     37096                                                <MaxTileRow>2198</MaxTileRow>
     37097                                                <MinTileCol>2558</MinTileCol>
     37098                                                <MaxTileCol>2563</MaxTileCol>
     37099                                        </TileMatrixLimits>
     37100                                        <TileMatrixLimits>
     37101                                                <TileMatrix>13</TileMatrix>
     37102                                                <MinTileRow>4384</MinTileRow>
     37103                                                <MaxTileRow>4396</MaxTileRow>
     37104                                                <MinTileCol>5117</MinTileCol>
     37105                                                <MaxTileCol>5127</MaxTileCol>
     37106                                        </TileMatrixLimits>
     37107                                        <TileMatrixLimits>
     37108                                                <TileMatrix>14</TileMatrix>
     37109                                                <MinTileRow>8768</MinTileRow>
     37110                                                <MaxTileRow>8793</MaxTileRow>
     37111                                                <MinTileCol>10235</MinTileCol>
     37112                                                <MaxTileCol>10254</MaxTileCol>
     37113                                        </TileMatrixLimits>
     37114                                        <TileMatrixLimits>
     37115                                                <TileMatrix>15</TileMatrix>
     37116                                                <MinTileRow>17536</MinTileRow>
     37117                                                <MaxTileRow>17587</MaxTileRow>
     37118                                                <MinTileCol>20470</MinTileCol>
     37119                                                <MaxTileCol>20509</MaxTileCol>
     37120                                        </TileMatrixLimits>
     37121                                        <TileMatrixLimits>
     37122                                                <TileMatrix>16</TileMatrix>
     37123                                                <MinTileRow>35072</MinTileRow>
     37124                                                <MaxTileRow>35175</MaxTileRow>
     37125                                                <MinTileCol>40941</MinTileCol>
     37126                                                <MaxTileCol>41018</MaxTileCol>
     37127                                        </TileMatrixLimits>
     37128                                        <TileMatrixLimits>
     37129                                                <TileMatrix>17</TileMatrix>
     37130                                                <MinTileRow>70144</MinTileRow>
     37131                                                <MaxTileRow>70350</MaxTileRow>
     37132                                                <MinTileCol>81883</MinTileCol>
     37133                                                <MaxTileCol>82037</MaxTileCol>
     37134                                        </TileMatrixLimits>
     37135                                        <TileMatrixLimits>
     37136                                                <TileMatrix>18</TileMatrix>
     37137                                                <MinTileRow>140288</MinTileRow>
     37138                                                <MaxTileRow>140700</MaxTileRow>
     37139                                                <MinTileCol>163766</MinTileCol>
     37140                                                <MaxTileCol>164075</MaxTileCol>
     37141                                        </TileMatrixLimits>
     37142                                        <TileMatrixLimits>
     37143                                                <TileMatrix>2</TileMatrix>
     37144                                                <MinTileRow>2</MinTileRow>
     37145                                                <MaxTileRow>2</MaxTileRow>
     37146                                                <MinTileCol>2</MinTileCol>
     37147                                                <MaxTileCol>2</MaxTileCol>
     37148                                        </TileMatrixLimits>
     37149                                        <TileMatrixLimits>
     37150                                                <TileMatrix>3</TileMatrix>
     37151                                                <MinTileRow>4</MinTileRow>
     37152                                                <MaxTileRow>4</MaxTileRow>
     37153                                                <MinTileCol>4</MinTileCol>
     37154                                                <MaxTileCol>5</MaxTileCol>
     37155                                        </TileMatrixLimits>
     37156                                        <TileMatrixLimits>
     37157                                                <TileMatrix>4</TileMatrix>
     37158                                                <MinTileRow>8</MinTileRow>
     37159                                                <MaxTileRow>8</MaxTileRow>
     37160                                                <MinTileCol>9</MinTileCol>
     37161                                                <MaxTileCol>10</MaxTileCol>
     37162                                        </TileMatrixLimits>
     37163                                        <TileMatrixLimits>
     37164                                                <TileMatrix>5</TileMatrix>
     37165                                                <MinTileRow>17</MinTileRow>
     37166                                                <MaxTileRow>17</MaxTileRow>
     37167                                                <MinTileCol>19</MinTileCol>
     37168                                                <MaxTileCol>20</MaxTileCol>
     37169                                        </TileMatrixLimits>
     37170                                        <TileMatrixLimits>
     37171                                                <TileMatrix>6</TileMatrix>
     37172                                                <MinTileRow>34</MinTileRow>
     37173                                                <MaxTileRow>34</MaxTileRow>
     37174                                                <MinTileCol>39</MinTileCol>
     37175                                                <MaxTileCol>40</MaxTileCol>
     37176                                        </TileMatrixLimits>
     37177                                        <TileMatrixLimits>
     37178                                                <TileMatrix>7</TileMatrix>
     37179                                                <MinTileRow>68</MinTileRow>
     37180                                                <MaxTileRow>68</MaxTileRow>
     37181                                                <MinTileCol>79</MinTileCol>
     37182                                                <MaxTileCol>80</MaxTileCol>
     37183                                        </TileMatrixLimits>
     37184                                        <TileMatrixLimits>
     37185                                                <TileMatrix>8</TileMatrix>
     37186                                                <MinTileRow>137</MinTileRow>
     37187                                                <MaxTileRow>137</MaxTileRow>
     37188                                                <MinTileCol>159</MinTileCol>
     37189                                                <MaxTileCol>160</MaxTileCol>
     37190                                        </TileMatrixLimits>
     37191                                        <TileMatrixLimits>
     37192                                                <TileMatrix>9</TileMatrix>
     37193                                                <MinTileRow>274</MinTileRow>
     37194                                                <MaxTileRow>274</MaxTileRow>
     37195                                                <MinTileCol>319</MinTileCol>
     37196                                                <MaxTileCol>320</MaxTileCol>
     37197                                        </TileMatrixLimits>
     37198                                </TileMatrixSetLimits>
     37199                        </TileMatrixSetLink>
     37200                </Layer>
     37201                <Layer>
     37202                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37203                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37204                        <ows:Keywords>
     37205                                <ows:Keyword>Photographies</ows:Keyword>
     37206                        </ows:Keywords>
     37207                        <ows:WGS84BoundingBox>
     37208                                <ows:LowerCorner>45.0368 -12.9536</ows:LowerCorner>
     37209                                <ows:UpperCorner>45.2489 -12.6822</ows:UpperCorner>
     37210                        </ows:WGS84BoundingBox>
     37211                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27121074</ows:Identifier>
     37212                        <Style isDefault="true">
     37213                                <ows:Title>Données Brutes</ows:Title>
     37214                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37215                                <ows:Keywords>
     37216                                        <ows:Keyword>Défaut</ows:Keyword>
     37217                                </ows:Keywords>
     37218                                <ows:Identifier>normal</ows:Identifier>
     37219                                <LegendURL format="image/jpeg" height="200"
     37220                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37221                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37222                        </Style>
     37223                        <Format>image/jpeg</Format>
     37224                        <TileMatrixSetLink>
     37225                                <TileMatrixSet>PM</TileMatrixSet>
     37226                                <TileMatrixSetLimits>
     37227                                        <TileMatrixLimits>
     37228                                                <TileMatrix>0</TileMatrix>
     37229                                                <MinTileRow>0</MinTileRow>
     37230                                                <MaxTileRow>0</MaxTileRow>
     37231                                                <MinTileCol>0</MinTileCol>
     37232                                                <MaxTileCol>0</MaxTileCol>
     37233                                        </TileMatrixLimits>
     37234                                        <TileMatrixLimits>
     37235                                                <TileMatrix>1</TileMatrix>
     37236                                                <MinTileRow>1</MinTileRow>
     37237                                                <MaxTileRow>1</MaxTileRow>
     37238                                                <MinTileCol>1</MinTileCol>
     37239                                                <MaxTileCol>1</MaxTileCol>
     37240                                        </TileMatrixLimits>
     37241                                        <TileMatrixLimits>
     37242                                                <TileMatrix>10</TileMatrix>
     37243                                                <MinTileRow>548</MinTileRow>
     37244                                                <MaxTileRow>549</MaxTileRow>
     37245                                                <MinTileCol>640</MinTileCol>
     37246                                                <MaxTileCol>640</MaxTileCol>
     37247                                        </TileMatrixLimits>
     37248                                        <TileMatrixLimits>
     37249                                                <TileMatrix>11</TileMatrix>
     37250                                                <MinTileRow>1096</MinTileRow>
     37251                                                <MaxTileRow>1098</MaxTileRow>
     37252                                                <MinTileCol>1280</MinTileCol>
     37253                                                <MaxTileCol>1281</MaxTileCol>
     37254                                        </TileMatrixLimits>
     37255                                        <TileMatrixLimits>
     37256                                                <TileMatrix>12</TileMatrix>
     37257                                                <MinTileRow>2193</MinTileRow>
     37258                                                <MaxTileRow>2196</MaxTileRow>
     37259                                                <MinTileCol>2560</MinTileCol>
     37260                                                <MaxTileCol>2562</MaxTileCol>
     37261                                        </TileMatrixLimits>
     37262                                        <TileMatrixLimits>
     37263                                                <TileMatrix>13</TileMatrix>
     37264                                                <MinTileRow>4386</MinTileRow>
     37265                                                <MaxTileRow>4393</MaxTileRow>
     37266                                                <MinTileCol>5120</MinTileCol>
     37267                                                <MaxTileCol>5125</MaxTileCol>
     37268                                        </TileMatrixLimits>
     37269                                        <TileMatrixLimits>
     37270                                                <TileMatrix>14</TileMatrix>
     37271                                                <MinTileRow>8773</MinTileRow>
     37272                                                <MaxTileRow>8786</MaxTileRow>
     37273                                                <MinTileCol>10241</MinTileCol>
     37274                                                <MaxTileCol>10251</MaxTileCol>
     37275                                        </TileMatrixLimits>
     37276                                        <TileMatrixLimits>
     37277                                                <TileMatrix>15</TileMatrix>
     37278                                                <MinTileRow>17547</MinTileRow>
     37279                                                <MaxTileRow>17573</MaxTileRow>
     37280                                                <MinTileCol>20483</MinTileCol>
     37281                                                <MaxTileCol>20502</MaxTileCol>
     37282                                        </TileMatrixLimits>
     37283                                        <TileMatrixLimits>
     37284                                                <TileMatrix>16</TileMatrix>
     37285                                                <MinTileRow>35095</MinTileRow>
     37286                                                <MaxTileRow>35146</MaxTileRow>
     37287                                                <MinTileCol>40966</MinTileCol>
     37288                                                <MaxTileCol>41005</MaxTileCol>
     37289                                        </TileMatrixLimits>
     37290                                        <TileMatrixLimits>
     37291                                                <TileMatrix>17</TileMatrix>
     37292                                                <MinTileRow>70191</MinTileRow>
     37293                                                <MaxTileRow>70292</MaxTileRow>
     37294                                                <MinTileCol>81933</MinTileCol>
     37295                                                <MaxTileCol>82010</MaxTileCol>
     37296                                        </TileMatrixLimits>
     37297                                        <TileMatrixLimits>
     37298                                                <TileMatrix>18</TileMatrix>
     37299                                                <MinTileRow>140383</MinTileRow>
     37300                                                <MaxTileRow>140585</MaxTileRow>
     37301                                                <MinTileCol>163866</MinTileCol>
     37302                                                <MaxTileCol>164021</MaxTileCol>
     37303                                        </TileMatrixLimits>
     37304                                        <TileMatrixLimits>
     37305                                                <TileMatrix>2</TileMatrix>
     37306                                                <MinTileRow>2</MinTileRow>
     37307                                                <MaxTileRow>2</MaxTileRow>
     37308                                                <MinTileCol>2</MinTileCol>
     37309                                                <MaxTileCol>2</MaxTileCol>
     37310                                        </TileMatrixLimits>
     37311                                        <TileMatrixLimits>
     37312                                                <TileMatrix>3</TileMatrix>
     37313                                                <MinTileRow>4</MinTileRow>
     37314                                                <MaxTileRow>4</MaxTileRow>
     37315                                                <MinTileCol>5</MinTileCol>
     37316                                                <MaxTileCol>5</MaxTileCol>
     37317                                        </TileMatrixLimits>
     37318                                        <TileMatrixLimits>
     37319                                                <TileMatrix>4</TileMatrix>
     37320                                                <MinTileRow>8</MinTileRow>
     37321                                                <MaxTileRow>8</MaxTileRow>
     37322                                                <MinTileCol>10</MinTileCol>
     37323                                                <MaxTileCol>10</MaxTileCol>
     37324                                        </TileMatrixLimits>
     37325                                        <TileMatrixLimits>
     37326                                                <TileMatrix>5</TileMatrix>
     37327                                                <MinTileRow>17</MinTileRow>
     37328                                                <MaxTileRow>17</MaxTileRow>
     37329                                                <MinTileCol>20</MinTileCol>
     37330                                                <MaxTileCol>20</MaxTileCol>
     37331                                        </TileMatrixLimits>
     37332                                        <TileMatrixLimits>
     37333                                                <TileMatrix>6</TileMatrix>
     37334                                                <MinTileRow>34</MinTileRow>
     37335                                                <MaxTileRow>34</MaxTileRow>
     37336                                                <MinTileCol>40</MinTileCol>
     37337                                                <MaxTileCol>40</MaxTileCol>
     37338                                        </TileMatrixLimits>
     37339                                        <TileMatrixLimits>
     37340                                                <TileMatrix>7</TileMatrix>
     37341                                                <MinTileRow>68</MinTileRow>
     37342                                                <MaxTileRow>68</MaxTileRow>
     37343                                                <MinTileCol>80</MinTileCol>
     37344                                                <MaxTileCol>80</MaxTileCol>
     37345                                        </TileMatrixLimits>
     37346                                        <TileMatrixLimits>
     37347                                                <TileMatrix>8</TileMatrix>
     37348                                                <MinTileRow>137</MinTileRow>
     37349                                                <MaxTileRow>137</MaxTileRow>
     37350                                                <MinTileCol>160</MinTileCol>
     37351                                                <MaxTileCol>160</MaxTileCol>
     37352                                        </TileMatrixLimits>
     37353                                        <TileMatrixLimits>
     37354                                                <TileMatrix>9</TileMatrix>
     37355                                                <MinTileRow>274</MinTileRow>
     37356                                                <MaxTileRow>274</MaxTileRow>
     37357                                                <MinTileCol>320</MinTileCol>
     37358                                                <MaxTileCol>320</MaxTileCol>
     37359                                        </TileMatrixLimits>
     37360                                </TileMatrixSetLimits>
     37361                        </TileMatrixSetLink>
     37362                </Layer>
     37363                <Layer>
     37364                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37365                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37366                        <ows:Keywords>
     37367                                <ows:Keyword>Photographies</ows:Keyword>
     37368                        </ows:Keywords>
     37369                        <ows:WGS84BoundingBox>
     37370                                <ows:LowerCorner>45.0368 -12.9445</ows:LowerCorner>
     37371                                <ows:UpperCorner>45.2489 -12.6912</ows:UpperCorner>
     37372                        </ows:WGS84BoundingBox>
     37373                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27134949</ows:Identifier>
     37374                        <Style isDefault="true">
     37375                                <ows:Title>Données Brutes</ows:Title>
     37376                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37377                                <ows:Keywords>
     37378                                        <ows:Keyword>Défaut</ows:Keyword>
     37379                                </ows:Keywords>
     37380                                <ows:Identifier>normal</ows:Identifier>
     37381                                <LegendURL format="image/jpeg" height="200"
     37382                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37383                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37384                        </Style>
     37385                        <Format>image/jpeg</Format>
     37386                        <TileMatrixSetLink>
     37387                                <TileMatrixSet>PM</TileMatrixSet>
     37388                                <TileMatrixSetLimits>
     37389                                        <TileMatrixLimits>
     37390                                                <TileMatrix>0</TileMatrix>
     37391                                                <MinTileRow>0</MinTileRow>
     37392                                                <MaxTileRow>0</MaxTileRow>
     37393                                                <MinTileCol>0</MinTileCol>
     37394                                                <MaxTileCol>0</MaxTileCol>
     37395                                        </TileMatrixLimits>
     37396                                        <TileMatrixLimits>
     37397                                                <TileMatrix>1</TileMatrix>
     37398                                                <MinTileRow>1</MinTileRow>
     37399                                                <MaxTileRow>1</MaxTileRow>
     37400                                                <MinTileCol>1</MinTileCol>
     37401                                                <MaxTileCol>1</MaxTileCol>
     37402                                        </TileMatrixLimits>
     37403                                        <TileMatrixLimits>
     37404                                                <TileMatrix>10</TileMatrix>
     37405                                                <MinTileRow>548</MinTileRow>
     37406                                                <MaxTileRow>549</MaxTileRow>
     37407                                                <MinTileCol>640</MinTileCol>
     37408                                                <MaxTileCol>640</MaxTileCol>
     37409                                        </TileMatrixLimits>
     37410                                        <TileMatrixLimits>
     37411                                                <TileMatrix>11</TileMatrix>
     37412                                                <MinTileRow>1096</MinTileRow>
     37413                                                <MaxTileRow>1098</MaxTileRow>
     37414                                                <MinTileCol>1280</MinTileCol>
     37415                                                <MaxTileCol>1281</MaxTileCol>
     37416                                        </TileMatrixLimits>
     37417                                        <TileMatrixLimits>
     37418                                                <TileMatrix>12</TileMatrix>
     37419                                                <MinTileRow>2193</MinTileRow>
     37420                                                <MaxTileRow>2196</MaxTileRow>
     37421                                                <MinTileCol>2560</MinTileCol>
     37422                                                <MaxTileCol>2562</MaxTileCol>
     37423                                        </TileMatrixLimits>
     37424                                        <TileMatrixLimits>
     37425                                                <TileMatrix>13</TileMatrix>
     37426                                                <MinTileRow>4387</MinTileRow>
     37427                                                <MaxTileRow>4393</MaxTileRow>
     37428                                                <MinTileCol>5120</MinTileCol>
     37429                                                <MaxTileCol>5125</MaxTileCol>
     37430                                        </TileMatrixLimits>
     37431                                        <TileMatrixLimits>
     37432                                                <TileMatrix>14</TileMatrix>
     37433                                                <MinTileRow>8774</MinTileRow>
     37434                                                <MaxTileRow>8786</MaxTileRow>
     37435                                                <MinTileCol>10241</MinTileCol>
     37436                                                <MaxTileCol>10251</MaxTileCol>
     37437                                        </TileMatrixLimits>
     37438                                        <TileMatrixLimits>
     37439                                                <TileMatrix>15</TileMatrix>
     37440                                                <MinTileRow>17548</MinTileRow>
     37441                                                <MaxTileRow>17572</MaxTileRow>
     37442                                                <MinTileCol>20483</MinTileCol>
     37443                                                <MaxTileCol>20502</MaxTileCol>
     37444                                        </TileMatrixLimits>
     37445                                        <TileMatrixLimits>
     37446                                                <TileMatrix>16</TileMatrix>
     37447                                                <MinTileRow>35097</MinTileRow>
     37448                                                <MaxTileRow>35144</MaxTileRow>
     37449                                                <MinTileCol>40966</MinTileCol>
     37450                                                <MaxTileCol>41005</MaxTileCol>
     37451                                        </TileMatrixLimits>
     37452                                        <TileMatrixLimits>
     37453                                                <TileMatrix>17</TileMatrix>
     37454                                                <MinTileRow>70194</MinTileRow>
     37455                                                <MaxTileRow>70289</MaxTileRow>
     37456                                                <MinTileCol>81933</MinTileCol>
     37457                                                <MaxTileCol>82010</MaxTileCol>
     37458                                        </TileMatrixLimits>
     37459                                        <TileMatrixLimits>
     37460                                                <TileMatrix>18</TileMatrix>
     37461                                                <MinTileRow>140389</MinTileRow>
     37462                                                <MaxTileRow>140579</MaxTileRow>
     37463                                                <MinTileCol>163866</MinTileCol>
     37464                                                <MaxTileCol>164021</MaxTileCol>
     37465                                        </TileMatrixLimits>
     37466                                        <TileMatrixLimits>
     37467                                                <TileMatrix>2</TileMatrix>
     37468                                                <MinTileRow>2</MinTileRow>
     37469                                                <MaxTileRow>2</MaxTileRow>
     37470                                                <MinTileCol>2</MinTileCol>
     37471                                                <MaxTileCol>2</MaxTileCol>
     37472                                        </TileMatrixLimits>
     37473                                        <TileMatrixLimits>
     37474                                                <TileMatrix>3</TileMatrix>
     37475                                                <MinTileRow>4</MinTileRow>
     37476                                                <MaxTileRow>4</MaxTileRow>
     37477                                                <MinTileCol>5</MinTileCol>
     37478                                                <MaxTileCol>5</MaxTileCol>
     37479                                        </TileMatrixLimits>
     37480                                        <TileMatrixLimits>
     37481                                                <TileMatrix>4</TileMatrix>
     37482                                                <MinTileRow>8</MinTileRow>
     37483                                                <MaxTileRow>8</MaxTileRow>
     37484                                                <MinTileCol>10</MinTileCol>
     37485                                                <MaxTileCol>10</MaxTileCol>
     37486                                        </TileMatrixLimits>
     37487                                        <TileMatrixLimits>
     37488                                                <TileMatrix>5</TileMatrix>
     37489                                                <MinTileRow>17</MinTileRow>
     37490                                                <MaxTileRow>17</MaxTileRow>
     37491                                                <MinTileCol>20</MinTileCol>
     37492                                                <MaxTileCol>20</MaxTileCol>
     37493                                        </TileMatrixLimits>
     37494                                        <TileMatrixLimits>
     37495                                                <TileMatrix>6</TileMatrix>
     37496                                                <MinTileRow>34</MinTileRow>
     37497                                                <MaxTileRow>34</MaxTileRow>
     37498                                                <MinTileCol>40</MinTileCol>
     37499                                                <MaxTileCol>40</MaxTileCol>
     37500                                        </TileMatrixLimits>
     37501                                        <TileMatrixLimits>
     37502                                                <TileMatrix>7</TileMatrix>
     37503                                                <MinTileRow>68</MinTileRow>
     37504                                                <MaxTileRow>68</MaxTileRow>
     37505                                                <MinTileCol>80</MinTileCol>
     37506                                                <MaxTileCol>80</MaxTileCol>
     37507                                        </TileMatrixLimits>
     37508                                        <TileMatrixLimits>
     37509                                                <TileMatrix>8</TileMatrix>
     37510                                                <MinTileRow>137</MinTileRow>
     37511                                                <MaxTileRow>137</MaxTileRow>
     37512                                                <MinTileCol>160</MinTileCol>
     37513                                                <MaxTileCol>160</MaxTileCol>
     37514                                        </TileMatrixLimits>
     37515                                        <TileMatrixLimits>
     37516                                                <TileMatrix>9</TileMatrix>
     37517                                                <MinTileRow>274</MinTileRow>
     37518                                                <MaxTileRow>274</MaxTileRow>
     37519                                                <MinTileCol>320</MinTileCol>
     37520                                                <MaxTileCol>320</MaxTileCol>
     37521                                        </TileMatrixLimits>
     37522                                </TileMatrixSetLimits>
     37523                        </TileMatrixSetLink>
     37524                </Layer>
     37525                <Layer>
     37526                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37527                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37528                        <ows:Keywords>
     37529                                <ows:Keyword>Photographies</ows:Keyword>
     37530                        </ows:Keywords>
     37531                        <ows:WGS84BoundingBox>
     37532                                <ows:LowerCorner>45.0276 -12.9445</ows:LowerCorner>
     37533                                <ows:UpperCorner>45.2581 -12.6912</ows:UpperCorner>
     37534                        </ows:WGS84BoundingBox>
     37535                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-11-27148699</ows:Identifier>
     37536                        <Style isDefault="true">
     37537                                <ows:Title>Données Brutes</ows:Title>
     37538                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37539                                <ows:Keywords>
     37540                                        <ows:Keyword>Défaut</ows:Keyword>
     37541                                </ows:Keywords>
     37542                                <ows:Identifier>normal</ows:Identifier>
     37543                                <LegendURL format="image/jpeg" height="200"
     37544                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37545                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37546                        </Style>
     37547                        <Format>image/jpeg</Format>
     37548                        <TileMatrixSetLink>
     37549                                <TileMatrixSet>PM</TileMatrixSet>
     37550                                <TileMatrixSetLimits>
     37551                                        <TileMatrixLimits>
     37552                                                <TileMatrix>0</TileMatrix>
     37553                                                <MinTileRow>0</MinTileRow>
     37554                                                <MaxTileRow>0</MaxTileRow>
     37555                                                <MinTileCol>0</MinTileCol>
     37556                                                <MaxTileCol>0</MaxTileCol>
     37557                                        </TileMatrixLimits>
     37558                                        <TileMatrixLimits>
     37559                                                <TileMatrix>1</TileMatrix>
     37560                                                <MinTileRow>1</MinTileRow>
     37561                                                <MaxTileRow>1</MaxTileRow>
     37562                                                <MinTileCol>1</MinTileCol>
     37563                                                <MaxTileCol>1</MaxTileCol>
     37564                                        </TileMatrixLimits>
     37565                                        <TileMatrixLimits>
     37566                                                <TileMatrix>10</TileMatrix>
     37567                                                <MinTileRow>548</MinTileRow>
     37568                                                <MaxTileRow>549</MaxTileRow>
     37569                                                <MinTileCol>640</MinTileCol>
     37570                                                <MaxTileCol>640</MaxTileCol>
     37571                                        </TileMatrixLimits>
     37572                                        <TileMatrixLimits>
     37573                                                <TileMatrix>11</TileMatrix>
     37574                                                <MinTileRow>1096</MinTileRow>
     37575                                                <MaxTileRow>1098</MaxTileRow>
     37576                                                <MinTileCol>1280</MinTileCol>
     37577                                                <MaxTileCol>1281</MaxTileCol>
     37578                                        </TileMatrixLimits>
     37579                                        <TileMatrixLimits>
     37580                                                <TileMatrix>12</TileMatrix>
     37581                                                <MinTileRow>2193</MinTileRow>
     37582                                                <MaxTileRow>2196</MaxTileRow>
     37583                                                <MinTileCol>2560</MinTileCol>
     37584                                                <MaxTileCol>2562</MaxTileCol>
     37585                                        </TileMatrixLimits>
     37586                                        <TileMatrixLimits>
     37587                                                <TileMatrix>13</TileMatrix>
     37588                                                <MinTileRow>4387</MinTileRow>
     37589                                                <MaxTileRow>4393</MaxTileRow>
     37590                                                <MinTileCol>5120</MinTileCol>
     37591                                                <MaxTileCol>5125</MaxTileCol>
     37592                                        </TileMatrixLimits>
     37593                                        <TileMatrixLimits>
     37594                                                <TileMatrix>14</TileMatrix>
     37595                                                <MinTileRow>8774</MinTileRow>
     37596                                                <MaxTileRow>8786</MaxTileRow>
     37597                                                <MinTileCol>10241</MinTileCol>
     37598                                                <MaxTileCol>10251</MaxTileCol>
     37599                                        </TileMatrixLimits>
     37600                                        <TileMatrixLimits>
     37601                                                <TileMatrix>15</TileMatrix>
     37602                                                <MinTileRow>17548</MinTileRow>
     37603                                                <MaxTileRow>17572</MaxTileRow>
     37604                                                <MinTileCol>20482</MinTileCol>
     37605                                                <MaxTileCol>20503</MaxTileCol>
     37606                                        </TileMatrixLimits>
     37607                                        <TileMatrixLimits>
     37608                                                <TileMatrix>16</TileMatrix>
     37609                                                <MinTileRow>35097</MinTileRow>
     37610                                                <MaxTileRow>35144</MaxTileRow>
     37611                                                <MinTileCol>40964</MinTileCol>
     37612                                                <MaxTileCol>41007</MaxTileCol>
     37613                                        </TileMatrixLimits>
     37614                                        <TileMatrixLimits>
     37615                                                <TileMatrix>17</TileMatrix>
     37616                                                <MinTileRow>70194</MinTileRow>
     37617                                                <MaxTileRow>70289</MaxTileRow>
     37618                                                <MinTileCol>81929</MinTileCol>
     37619                                                <MaxTileCol>82014</MaxTileCol>
     37620                                        </TileMatrixLimits>
     37621                                        <TileMatrixLimits>
     37622                                                <TileMatrix>18</TileMatrix>
     37623                                                <MinTileRow>140389</MinTileRow>
     37624                                                <MaxTileRow>140579</MaxTileRow>
     37625                                                <MinTileCol>163859</MinTileCol>
     37626                                                <MaxTileCol>164028</MaxTileCol>
     37627                                        </TileMatrixLimits>
     37628                                        <TileMatrixLimits>
     37629                                                <TileMatrix>2</TileMatrix>
     37630                                                <MinTileRow>2</MinTileRow>
     37631                                                <MaxTileRow>2</MaxTileRow>
     37632                                                <MinTileCol>2</MinTileCol>
     37633                                                <MaxTileCol>2</MaxTileCol>
     37634                                        </TileMatrixLimits>
     37635                                        <TileMatrixLimits>
     37636                                                <TileMatrix>3</TileMatrix>
     37637                                                <MinTileRow>4</MinTileRow>
     37638                                                <MaxTileRow>4</MaxTileRow>
     37639                                                <MinTileCol>5</MinTileCol>
     37640                                                <MaxTileCol>5</MaxTileCol>
     37641                                        </TileMatrixLimits>
     37642                                        <TileMatrixLimits>
     37643                                                <TileMatrix>4</TileMatrix>
     37644                                                <MinTileRow>8</MinTileRow>
     37645                                                <MaxTileRow>8</MaxTileRow>
     37646                                                <MinTileCol>10</MinTileCol>
     37647                                                <MaxTileCol>10</MaxTileCol>
     37648                                        </TileMatrixLimits>
     37649                                        <TileMatrixLimits>
     37650                                                <TileMatrix>5</TileMatrix>
     37651                                                <MinTileRow>17</MinTileRow>
     37652                                                <MaxTileRow>17</MaxTileRow>
     37653                                                <MinTileCol>20</MinTileCol>
     37654                                                <MaxTileCol>20</MaxTileCol>
     37655                                        </TileMatrixLimits>
     37656                                        <TileMatrixLimits>
     37657                                                <TileMatrix>6</TileMatrix>
     37658                                                <MinTileRow>34</MinTileRow>
     37659                                                <MaxTileRow>34</MaxTileRow>
     37660                                                <MinTileCol>40</MinTileCol>
     37661                                                <MaxTileCol>40</MaxTileCol>
     37662                                        </TileMatrixLimits>
     37663                                        <TileMatrixLimits>
     37664                                                <TileMatrix>7</TileMatrix>
     37665                                                <MinTileRow>68</MinTileRow>
     37666                                                <MaxTileRow>68</MaxTileRow>
     37667                                                <MinTileCol>80</MinTileCol>
     37668                                                <MaxTileCol>80</MaxTileCol>
     37669                                        </TileMatrixLimits>
     37670                                        <TileMatrixLimits>
     37671                                                <TileMatrix>8</TileMatrix>
     37672                                                <MinTileRow>137</MinTileRow>
     37673                                                <MaxTileRow>137</MaxTileRow>
     37674                                                <MinTileCol>160</MinTileCol>
     37675                                                <MaxTileCol>160</MaxTileCol>
     37676                                        </TileMatrixLimits>
     37677                                        <TileMatrixLimits>
     37678                                                <TileMatrix>9</TileMatrix>
     37679                                                <MinTileRow>274</MinTileRow>
     37680                                                <MaxTileRow>274</MaxTileRow>
     37681                                                <MinTileCol>320</MinTileCol>
     37682                                                <MaxTileCol>320</MaxTileCol>
     37683                                        </TileMatrixLimits>
     37684                                </TileMatrixSetLimits>
     37685                        </TileMatrixSetLink>
     37686                </Layer>
     37687                <Layer>
     37688                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37689                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37690                        <ows:Keywords>
     37691                                <ows:Keyword>Photographies</ows:Keyword>
     37692                        </ows:Keywords>
     37693                        <ows:WGS84BoundingBox>
     37694                                <ows:LowerCorner>45.0276 -13.0711</ows:LowerCorner>
     37695                                <ows:UpperCorner>45.2398 -12.7003</ows:UpperCorner>
     37696                        </ows:WGS84BoundingBox>
     37697                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-18-26875699</ows:Identifier>
     37698                        <Style isDefault="true">
     37699                                <ows:Title>Données Brutes</ows:Title>
     37700                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37701                                <ows:Keywords>
     37702                                        <ows:Keyword>Défaut</ows:Keyword>
     37703                                </ows:Keywords>
     37704                                <ows:Identifier>normal</ows:Identifier>
     37705                                <LegendURL format="image/jpeg" height="200"
     37706                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37707                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37708                        </Style>
     37709                        <Format>image/jpeg</Format>
     37710                        <TileMatrixSetLink>
     37711                                <TileMatrixSet>PM</TileMatrixSet>
     37712                                <TileMatrixSetLimits>
     37713                                        <TileMatrixLimits>
     37714                                                <TileMatrix>0</TileMatrix>
     37715                                                <MinTileRow>0</MinTileRow>
     37716                                                <MaxTileRow>0</MaxTileRow>
     37717                                                <MinTileCol>0</MinTileCol>
     37718                                                <MaxTileCol>0</MaxTileCol>
     37719                                        </TileMatrixLimits>
     37720                                        <TileMatrixLimits>
     37721                                                <TileMatrix>1</TileMatrix>
     37722                                                <MinTileRow>1</MinTileRow>
     37723                                                <MaxTileRow>1</MaxTileRow>
     37724                                                <MinTileCol>1</MinTileCol>
     37725                                                <MaxTileCol>1</MaxTileCol>
     37726                                        </TileMatrixLimits>
     37727                                        <TileMatrixLimits>
     37728                                                <TileMatrix>10</TileMatrix>
     37729                                                <MinTileRow>548</MinTileRow>
     37730                                                <MaxTileRow>549</MaxTileRow>
     37731                                                <MinTileCol>640</MinTileCol>
     37732                                                <MaxTileCol>640</MaxTileCol>
     37733                                        </TileMatrixLimits>
     37734                                        <TileMatrixLimits>
     37735                                                <TileMatrix>11</TileMatrix>
     37736                                                <MinTileRow>1096</MinTileRow>
     37737                                                <MaxTileRow>1099</MaxTileRow>
     37738                                                <MinTileCol>1280</MinTileCol>
     37739                                                <MaxTileCol>1281</MaxTileCol>
     37740                                        </TileMatrixLimits>
     37741                                        <TileMatrixLimits>
     37742                                                <TileMatrix>12</TileMatrix>
     37743                                                <MinTileRow>2193</MinTileRow>
     37744                                                <MaxTileRow>2198</MaxTileRow>
     37745                                                <MinTileCol>2560</MinTileCol>
     37746                                                <MaxTileCol>2562</MaxTileCol>
     37747                                        </TileMatrixLimits>
     37748                                        <TileMatrixLimits>
     37749                                                <TileMatrix>13</TileMatrix>
     37750                                                <MinTileRow>4387</MinTileRow>
     37751                                                <MaxTileRow>4396</MaxTileRow>
     37752                                                <MinTileCol>5120</MinTileCol>
     37753                                                <MaxTileCol>5125</MaxTileCol>
     37754                                        </TileMatrixLimits>
     37755                                        <TileMatrixLimits>
     37756                                                <TileMatrix>14</TileMatrix>
     37757                                                <MinTileRow>8774</MinTileRow>
     37758                                                <MaxTileRow>8792</MaxTileRow>
     37759                                                <MinTileCol>10241</MinTileCol>
     37760                                                <MaxTileCol>10250</MaxTileCol>
     37761                                        </TileMatrixLimits>
     37762                                        <TileMatrixLimits>
     37763                                                <TileMatrix>15</TileMatrix>
     37764                                                <MinTileRow>17549</MinTileRow>
     37765                                                <MaxTileRow>17584</MaxTileRow>
     37766                                                <MinTileCol>20482</MinTileCol>
     37767                                                <MaxTileCol>20501</MaxTileCol>
     37768                                        </TileMatrixLimits>
     37769                                        <TileMatrixLimits>
     37770                                                <TileMatrix>16</TileMatrix>
     37771                                                <MinTileRow>35099</MinTileRow>
     37772                                                <MaxTileRow>35168</MaxTileRow>
     37773                                                <MinTileCol>40964</MinTileCol>
     37774                                                <MaxTileCol>41003</MaxTileCol>
     37775                                        </TileMatrixLimits>
     37776                                        <TileMatrixLimits>
     37777                                                <TileMatrix>17</TileMatrix>
     37778                                                <MinTileRow>70198</MinTileRow>
     37779                                                <MaxTileRow>70336</MaxTileRow>
     37780                                                <MinTileCol>81929</MinTileCol>
     37781                                                <MaxTileCol>82007</MaxTileCol>
     37782                                        </TileMatrixLimits>
     37783                                        <TileMatrixLimits>
     37784                                                <TileMatrix>18</TileMatrix>
     37785                                                <MinTileRow>140396</MinTileRow>
     37786                                                <MaxTileRow>140673</MaxTileRow>
     37787                                                <MinTileCol>163859</MinTileCol>
     37788                                                <MaxTileCol>164014</MaxTileCol>
     37789                                        </TileMatrixLimits>
     37790                                        <TileMatrixLimits>
     37791                                                <TileMatrix>2</TileMatrix>
     37792                                                <MinTileRow>2</MinTileRow>
     37793                                                <MaxTileRow>2</MaxTileRow>
     37794                                                <MinTileCol>2</MinTileCol>
     37795                                                <MaxTileCol>2</MaxTileCol>
     37796                                        </TileMatrixLimits>
     37797                                        <TileMatrixLimits>
     37798                                                <TileMatrix>3</TileMatrix>
     37799                                                <MinTileRow>4</MinTileRow>
     37800                                                <MaxTileRow>4</MaxTileRow>
     37801                                                <MinTileCol>5</MinTileCol>
     37802                                                <MaxTileCol>5</MaxTileCol>
     37803                                        </TileMatrixLimits>
     37804                                        <TileMatrixLimits>
     37805                                                <TileMatrix>4</TileMatrix>
     37806                                                <MinTileRow>8</MinTileRow>
     37807                                                <MaxTileRow>8</MaxTileRow>
     37808                                                <MinTileCol>10</MinTileCol>
     37809                                                <MaxTileCol>10</MaxTileCol>
     37810                                        </TileMatrixLimits>
     37811                                        <TileMatrixLimits>
     37812                                                <TileMatrix>5</TileMatrix>
     37813                                                <MinTileRow>17</MinTileRow>
     37814                                                <MaxTileRow>17</MaxTileRow>
     37815                                                <MinTileCol>20</MinTileCol>
     37816                                                <MaxTileCol>20</MaxTileCol>
     37817                                        </TileMatrixLimits>
     37818                                        <TileMatrixLimits>
     37819                                                <TileMatrix>6</TileMatrix>
     37820                                                <MinTileRow>34</MinTileRow>
     37821                                                <MaxTileRow>34</MaxTileRow>
     37822                                                <MinTileCol>40</MinTileCol>
     37823                                                <MaxTileCol>40</MaxTileCol>
     37824                                        </TileMatrixLimits>
     37825                                        <TileMatrixLimits>
     37826                                                <TileMatrix>7</TileMatrix>
     37827                                                <MinTileRow>68</MinTileRow>
     37828                                                <MaxTileRow>68</MaxTileRow>
     37829                                                <MinTileCol>80</MinTileCol>
     37830                                                <MaxTileCol>80</MaxTileCol>
     37831                                        </TileMatrixLimits>
     37832                                        <TileMatrixLimits>
     37833                                                <TileMatrix>8</TileMatrix>
     37834                                                <MinTileRow>137</MinTileRow>
     37835                                                <MaxTileRow>137</MaxTileRow>
     37836                                                <MinTileCol>160</MinTileCol>
     37837                                                <MaxTileCol>160</MaxTileCol>
     37838                                        </TileMatrixLimits>
     37839                                        <TileMatrixLimits>
     37840                                                <TileMatrix>9</TileMatrix>
     37841                                                <MinTileRow>274</MinTileRow>
     37842                                                <MaxTileRow>274</MaxTileRow>
     37843                                                <MinTileCol>320</MinTileCol>
     37844                                                <MaxTileCol>320</MaxTileCol>
     37845                                        </TileMatrixLimits>
     37846                                </TileMatrixSetLimits>
     37847                        </TileMatrixSetLink>
     37848                </Layer>
     37849                <Layer>
     37850                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     37851                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     37852                        <ows:Keywords>
     37853                                <ows:Keyword>Photographies</ows:Keyword>
     37854                        </ows:Keywords>
     37855                        <ows:WGS84BoundingBox>
     37856                                <ows:LowerCorner>44.9262 -13.0621</ows:LowerCorner>
     37857                                <ows:UpperCorner>45.1015 -12.8631</ows:UpperCorner>
     37858                        </ows:WGS84BoundingBox>
     37859                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-18-26885700</ows:Identifier>
     37860                        <Style isDefault="true">
     37861                                <ows:Title>Données Brutes</ows:Title>
     37862                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     37863                                <ows:Keywords>
     37864                                        <ows:Keyword>Défaut</ows:Keyword>
     37865                                </ows:Keywords>
     37866                                <ows:Identifier>normal</ows:Identifier>
     37867                                <LegendURL format="image/jpeg" height="200"
     37868                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     37869                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     37870                        </Style>
     37871                        <Format>image/jpeg</Format>
     37872                        <TileMatrixSetLink>
     37873                                <TileMatrixSet>PM</TileMatrixSet>
     37874                                <TileMatrixSetLimits>
     37875                                        <TileMatrixLimits>
     37876                                                <TileMatrix>0</TileMatrix>
     37877                                                <MinTileRow>0</MinTileRow>
     37878                                                <MaxTileRow>0</MaxTileRow>
     37879                                                <MinTileCol>0</MinTileCol>
     37880                                                <MaxTileCol>0</MaxTileCol>
     37881                                        </TileMatrixLimits>
     37882                                        <TileMatrixLimits>
     37883                                                <TileMatrix>1</TileMatrix>
     37884                                                <MinTileRow>1</MinTileRow>
     37885                                                <MaxTileRow>1</MaxTileRow>
     37886                                                <MinTileCol>1</MinTileCol>
     37887                                                <MaxTileCol>1</MaxTileCol>
     37888                                        </TileMatrixLimits>
     37889                                        <TileMatrixLimits>
     37890                                                <TileMatrix>10</TileMatrix>
     37891                                                <MinTileRow>548</MinTileRow>
     37892                                                <MaxTileRow>549</MaxTileRow>
     37893                                                <MinTileCol>639</MinTileCol>
     37894                                                <MaxTileCol>640</MaxTileCol>
     37895                                        </TileMatrixLimits>
     37896                                        <TileMatrixLimits>
     37897                                                <TileMatrix>11</TileMatrix>
     37898                                                <MinTileRow>1097</MinTileRow>
     37899                                                <MaxTileRow>1098</MaxTileRow>
     37900                                                <MinTileCol>1279</MinTileCol>
     37901                                                <MaxTileCol>1280</MaxTileCol>
     37902                                        </TileMatrixLimits>
     37903                                        <TileMatrixLimits>
     37904                                                <TileMatrix>12</TileMatrix>
     37905                                                <MinTileRow>2195</MinTileRow>
     37906                                                <MaxTileRow>2197</MaxTileRow>
     37907                                                <MinTileCol>2559</MinTileCol>
     37908                                                <MaxTileCol>2561</MaxTileCol>
     37909                                        </TileMatrixLimits>
     37910                                        <TileMatrixLimits>
     37911                                                <TileMatrix>13</TileMatrix>
     37912                                                <MinTileRow>4391</MinTileRow>
     37913                                                <MaxTileRow>4395</MaxTileRow>
     37914                                                <MinTileCol>5118</MinTileCol>
     37915                                                <MaxTileCol>5122</MaxTileCol>
     37916                                        </TileMatrixLimits>
     37917                                        <TileMatrixLimits>
     37918                                                <TileMatrix>14</TileMatrix>
     37919                                                <MinTileRow>8782</MinTileRow>
     37920                                                <MaxTileRow>8791</MaxTileRow>
     37921                                                <MinTileCol>10236</MinTileCol>
     37922                                                <MaxTileCol>10244</MaxTileCol>
     37923                                        </TileMatrixLimits>
     37924                                        <TileMatrixLimits>
     37925                                                <TileMatrix>15</TileMatrix>
     37926                                                <MinTileRow>17564</MinTileRow>
     37927                                                <MaxTileRow>17583</MaxTileRow>
     37928                                                <MinTileCol>20473</MinTileCol>
     37929                                                <MaxTileCol>20489</MaxTileCol>
     37930                                        </TileMatrixLimits>
     37931                                        <TileMatrixLimits>
     37932                                                <TileMatrix>16</TileMatrix>
     37933                                                <MinTileRow>35129</MinTileRow>
     37934                                                <MaxTileRow>35166</MaxTileRow>
     37935                                                <MinTileCol>40946</MinTileCol>
     37936                                                <MaxTileCol>40978</MaxTileCol>
     37937                                        </TileMatrixLimits>
     37938                                        <TileMatrixLimits>
     37939                                                <TileMatrix>17</TileMatrix>
     37940                                                <MinTileRow>70259</MinTileRow>
     37941                                                <MaxTileRow>70333</MaxTileRow>
     37942                                                <MinTileCol>81893</MinTileCol>
     37943                                                <MaxTileCol>81957</MaxTileCol>
     37944                                        </TileMatrixLimits>
     37945                                        <TileMatrixLimits>
     37946                                                <TileMatrix>18</TileMatrix>
     37947                                                <MinTileRow>140518</MinTileRow>
     37948                                                <MaxTileRow>140666</MaxTileRow>
     37949                                                <MinTileCol>163786</MinTileCol>
     37950                                                <MaxTileCol>163914</MaxTileCol>
     37951                                        </TileMatrixLimits>
     37952                                        <TileMatrixLimits>
     37953                                                <TileMatrix>2</TileMatrix>
     37954                                                <MinTileRow>2</MinTileRow>
     37955                                                <MaxTileRow>2</MaxTileRow>
     37956                                                <MinTileCol>2</MinTileCol>
     37957                                                <MaxTileCol>2</MaxTileCol>
     37958                                        </TileMatrixLimits>
     37959                                        <TileMatrixLimits>
     37960                                                <TileMatrix>3</TileMatrix>
     37961                                                <MinTileRow>4</MinTileRow>
     37962                                                <MaxTileRow>4</MaxTileRow>
     37963                                                <MinTileCol>4</MinTileCol>
     37964                                                <MaxTileCol>5</MaxTileCol>
     37965                                        </TileMatrixLimits>
     37966                                        <TileMatrixLimits>
     37967                                                <TileMatrix>4</TileMatrix>
     37968                                                <MinTileRow>8</MinTileRow>
     37969                                                <MaxTileRow>8</MaxTileRow>
     37970                                                <MinTileCol>9</MinTileCol>
     37971                                                <MaxTileCol>10</MaxTileCol>
     37972                                        </TileMatrixLimits>
     37973                                        <TileMatrixLimits>
     37974                                                <TileMatrix>5</TileMatrix>
     37975                                                <MinTileRow>17</MinTileRow>
     37976                                                <MaxTileRow>17</MaxTileRow>
     37977                                                <MinTileCol>19</MinTileCol>
     37978                                                <MaxTileCol>20</MaxTileCol>
     37979                                        </TileMatrixLimits>
     37980                                        <TileMatrixLimits>
     37981                                                <TileMatrix>6</TileMatrix>
     37982                                                <MinTileRow>34</MinTileRow>
     37983                                                <MaxTileRow>34</MaxTileRow>
     37984                                                <MinTileCol>39</MinTileCol>
     37985                                                <MaxTileCol>40</MaxTileCol>
     37986                                        </TileMatrixLimits>
     37987                                        <TileMatrixLimits>
     37988                                                <TileMatrix>7</TileMatrix>
     37989                                                <MinTileRow>68</MinTileRow>
     37990                                                <MaxTileRow>68</MaxTileRow>
     37991                                                <MinTileCol>79</MinTileCol>
     37992                                                <MaxTileCol>80</MaxTileCol>
     37993                                        </TileMatrixLimits>
     37994                                        <TileMatrixLimits>
     37995                                                <TileMatrix>8</TileMatrix>
     37996                                                <MinTileRow>137</MinTileRow>
     37997                                                <MaxTileRow>137</MaxTileRow>
     37998                                                <MinTileCol>159</MinTileCol>
     37999                                                <MaxTileCol>160</MaxTileCol>
     38000                                        </TileMatrixLimits>
     38001                                        <TileMatrixLimits>
     38002                                                <TileMatrix>9</TileMatrix>
     38003                                                <MinTileRow>274</MinTileRow>
     38004                                                <MaxTileRow>274</MaxTileRow>
     38005                                                <MinTileCol>319</MinTileCol>
     38006                                                <MaxTileCol>320</MaxTileCol>
     38007                                        </TileMatrixLimits>
     38008                                </TileMatrixSetLimits>
     38009                        </TileMatrixSetLink>
     38010                </Layer>
     38011                <Layer>
     38012                        <ows:Title>Orthophotographies Geosud de MAYOTTE 2013</ows:Title>
     38013                        <ows:Abstract>Orthophotographies satellites de MAYOTTE issues du projet Geosud.</ows:Abstract>
     38014                        <ows:Keywords>
     38015                                <ows:Keyword>Photographies</ows:Keyword>
     38016                        </ows:Keywords>
     38017                        <ows:WGS84BoundingBox>
     38018                                <ows:LowerCorner>45.1565 -12.9354</ows:LowerCorner>
     38019                                <ows:UpperCorner>45.3227 -12.6007</ows:UpperCorner>
     38020                        </ows:WGS84BoundingBox>
     38021                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MAYOTTE-2013-04-26-26180576</ows:Identifier>
     38022                        <Style isDefault="true">
     38023                                <ows:Title>Données Brutes</ows:Title>
     38024                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38025                                <ows:Keywords>
     38026                                        <ows:Keyword>Défaut</ows:Keyword>
     38027                                </ows:Keywords>
     38028                                <ows:Identifier>normal</ows:Identifier>
     38029                                <LegendURL format="image/jpeg" height="200"
     38030                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38031                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38032                        </Style>
     38033                        <Format>image/jpeg</Format>
     38034                        <TileMatrixSetLink>
     38035                                <TileMatrixSet>PM</TileMatrixSet>
     38036                                <TileMatrixSetLimits>
     38037                                        <TileMatrixLimits>
     38038                                                <TileMatrix>0</TileMatrix>
     38039                                                <MinTileRow>0</MinTileRow>
     38040                                                <MaxTileRow>0</MaxTileRow>
     38041                                                <MinTileCol>0</MinTileCol>
     38042                                                <MaxTileCol>0</MaxTileCol>
     38043                                        </TileMatrixLimits>
     38044                                        <TileMatrixLimits>
     38045                                                <TileMatrix>1</TileMatrix>
     38046                                                <MinTileRow>1</MinTileRow>
     38047                                                <MaxTileRow>1</MaxTileRow>
     38048                                                <MinTileCol>1</MinTileCol>
     38049                                                <MaxTileCol>1</MaxTileCol>
     38050                                        </TileMatrixLimits>
     38051                                        <TileMatrixLimits>
     38052                                                <TileMatrix>10</TileMatrix>
     38053                                                <MinTileRow>548</MinTileRow>
     38054                                                <MaxTileRow>549</MaxTileRow>
     38055                                                <MinTileCol>640</MinTileCol>
     38056                                                <MaxTileCol>640</MaxTileCol>
     38057                                        </TileMatrixLimits>
     38058                                        <TileMatrixLimits>
     38059                                                <TileMatrix>11</TileMatrix>
     38060                                                <MinTileRow>1096</MinTileRow>
     38061                                                <MaxTileRow>1098</MaxTileRow>
     38062                                                <MinTileCol>1280</MinTileCol>
     38063                                                <MaxTileCol>1281</MaxTileCol>
     38064                                        </TileMatrixLimits>
     38065                                        <TileMatrixLimits>
     38066                                                <TileMatrix>12</TileMatrix>
     38067                                                <MinTileRow>2192</MinTileRow>
     38068                                                <MaxTileRow>2196</MaxTileRow>
     38069                                                <MinTileCol>2561</MinTileCol>
     38070                                                <MaxTileCol>2563</MaxTileCol>
     38071                                        </TileMatrixLimits>
     38072                                        <TileMatrixLimits>
     38073                                                <TileMatrix>13</TileMatrix>
     38074                                                <MinTileRow>4385</MinTileRow>
     38075                                                <MaxTileRow>4392</MaxTileRow>
     38076                                                <MinTileCol>5123</MinTileCol>
     38077                                                <MaxTileCol>5127</MaxTileCol>
     38078                                        </TileMatrixLimits>
     38079                                        <TileMatrixLimits>
     38080                                                <TileMatrix>14</TileMatrix>
     38081                                                <MinTileRow>8770</MinTileRow>
     38082                                                <MaxTileRow>8785</MaxTileRow>
     38083                                                <MinTileCol>10247</MinTileCol>
     38084                                                <MaxTileCol>10254</MaxTileCol>
     38085                                        </TileMatrixLimits>
     38086                                        <TileMatrixLimits>
     38087                                                <TileMatrix>15</TileMatrix>
     38088                                                <MinTileRow>17540</MinTileRow>
     38089                                                <MaxTileRow>17571</MaxTileRow>
     38090                                                <MinTileCol>20494</MinTileCol>
     38091                                                <MaxTileCol>20509</MaxTileCol>
     38092                                        </TileMatrixLimits>
     38093                                        <TileMatrixLimits>
     38094                                                <TileMatrix>16</TileMatrix>
     38095                                                <MinTileRow>35080</MinTileRow>
     38096                                                <MaxTileRow>35143</MaxTileRow>
     38097                                                <MinTileCol>40988</MinTileCol>
     38098                                                <MaxTileCol>41018</MaxTileCol>
     38099                                        </TileMatrixLimits>
     38100                                        <TileMatrixLimits>
     38101                                                <TileMatrix>17</TileMatrix>
     38102                                                <MinTileRow>70161</MinTileRow>
     38103                                                <MaxTileRow>70286</MaxTileRow>
     38104                                                <MinTileCol>81976</MinTileCol>
     38105                                                <MaxTileCol>82037</MaxTileCol>
     38106                                        </TileMatrixLimits>
     38107                                        <TileMatrixLimits>
     38108                                                <TileMatrix>18</TileMatrix>
     38109                                                <MinTileRow>140322</MinTileRow>
     38110                                                <MaxTileRow>140572</MaxTileRow>
     38111                                                <MinTileCol>163953</MinTileCol>
     38112                                                <MaxTileCol>164075</MaxTileCol>
     38113                                        </TileMatrixLimits>
     38114                                        <TileMatrixLimits>
     38115                                                <TileMatrix>2</TileMatrix>
     38116                                                <MinTileRow>2</MinTileRow>
     38117                                                <MaxTileRow>2</MaxTileRow>
     38118                                                <MinTileCol>2</MinTileCol>
     38119                                                <MaxTileCol>2</MaxTileCol>
     38120                                        </TileMatrixLimits>
     38121                                        <TileMatrixLimits>
     38122                                                <TileMatrix>3</TileMatrix>
     38123                                                <MinTileRow>4</MinTileRow>
     38124                                                <MaxTileRow>4</MaxTileRow>
     38125                                                <MinTileCol>5</MinTileCol>
     38126                                                <MaxTileCol>5</MaxTileCol>
     38127                                        </TileMatrixLimits>
     38128                                        <TileMatrixLimits>
     38129                                                <TileMatrix>4</TileMatrix>
     38130                                                <MinTileRow>8</MinTileRow>
     38131                                                <MaxTileRow>8</MaxTileRow>
     38132                                                <MinTileCol>10</MinTileCol>
     38133                                                <MaxTileCol>10</MaxTileCol>
     38134                                        </TileMatrixLimits>
     38135                                        <TileMatrixLimits>
     38136                                                <TileMatrix>5</TileMatrix>
     38137                                                <MinTileRow>17</MinTileRow>
     38138                                                <MaxTileRow>17</MaxTileRow>
     38139                                                <MinTileCol>20</MinTileCol>
     38140                                                <MaxTileCol>20</MaxTileCol>
     38141                                        </TileMatrixLimits>
     38142                                        <TileMatrixLimits>
     38143                                                <TileMatrix>6</TileMatrix>
     38144                                                <MinTileRow>34</MinTileRow>
     38145                                                <MaxTileRow>34</MaxTileRow>
     38146                                                <MinTileCol>40</MinTileCol>
     38147                                                <MaxTileCol>40</MaxTileCol>
     38148                                        </TileMatrixLimits>
     38149                                        <TileMatrixLimits>
     38150                                                <TileMatrix>7</TileMatrix>
     38151                                                <MinTileRow>68</MinTileRow>
     38152                                                <MaxTileRow>68</MaxTileRow>
     38153                                                <MinTileCol>80</MinTileCol>
     38154                                                <MaxTileCol>80</MaxTileCol>
     38155                                        </TileMatrixLimits>
     38156                                        <TileMatrixLimits>
     38157                                                <TileMatrix>8</TileMatrix>
     38158                                                <MinTileRow>137</MinTileRow>
     38159                                                <MaxTileRow>137</MaxTileRow>
     38160                                                <MinTileCol>160</MinTileCol>
     38161                                                <MaxTileCol>160</MaxTileCol>
     38162                                        </TileMatrixLimits>
     38163                                        <TileMatrixLimits>
     38164                                                <TileMatrix>9</TileMatrix>
     38165                                                <MinTileRow>274</MinTileRow>
     38166                                                <MaxTileRow>274</MaxTileRow>
     38167                                                <MinTileCol>320</MinTileCol>
     38168                                                <MaxTileCol>320</MaxTileCol>
     38169                                        </TileMatrixLimits>
     38170                                </TileMatrixSetLimits>
     38171                        </TileMatrixSetLink>
     38172                </Layer>
     38173                <Layer>
     38174                        <ows:Title>Orthophotographies Geosud de MIDI-PYRENEES 2014</ows:Title>
     38175                        <ows:Abstract>Orthophotographies satellites de MIDI-PYRENEES issues du projet Geosud.</ows:Abstract>
     38176                        <ows:Keywords>
     38177                                <ows:Keyword>Photographies</ows:Keyword>
     38178                        </ows:Keywords>
     38179                        <ows:WGS84BoundingBox>
     38180                                <ows:LowerCorner>-0.479173 42.5058</ows:LowerCorner>
     38181                                <ows:UpperCorner>3.48282 45.0672</ows:UpperCorner>
     38182                        </ows:WGS84BoundingBox>
     38183                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MIDI-PYRENEES-2014</ows:Identifier>
     38184                        <Style isDefault="true">
     38185                                <ows:Title>Données Brutes</ows:Title>
     38186                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38187                                <ows:Keywords>
     38188                                        <ows:Keyword>Défaut</ows:Keyword>
     38189                                </ows:Keywords>
     38190                                <ows:Identifier>normal</ows:Identifier>
     38191                                <LegendURL format="image/jpeg" height="200"
     38192                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38193                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38194                        </Style>
     38195                        <Format>image/jpeg</Format>
     38196                        <TileMatrixSetLink>
     38197                                <TileMatrixSet>PM</TileMatrixSet>
     38198                                <TileMatrixSetLimits>
     38199                                        <TileMatrixLimits>
     38200                                                <TileMatrix>0</TileMatrix>
     38201                                                <MinTileRow>0</MinTileRow>
     38202                                                <MaxTileRow>0</MaxTileRow>
     38203                                                <MinTileCol>0</MinTileCol>
     38204                                                <MaxTileCol>0</MaxTileCol>
     38205                                        </TileMatrixLimits>
     38206                                        <TileMatrixLimits>
     38207                                                <TileMatrix>1</TileMatrix>
     38208                                                <MinTileRow>0</MinTileRow>
     38209                                                <MaxTileRow>0</MaxTileRow>
     38210                                                <MinTileCol>0</MinTileCol>
     38211                                                <MaxTileCol>1</MaxTileCol>
     38212                                        </TileMatrixLimits>
     38213                                        <TileMatrixLimits>
     38214                                                <TileMatrix>10</TileMatrix>
     38215                                                <MinTileRow>368</MinTileRow>
     38216                                                <MaxTileRow>378</MaxTileRow>
     38217                                                <MinTileCol>510</MinTileCol>
     38218                                                <MaxTileCol>521</MaxTileCol>
     38219                                        </TileMatrixLimits>
     38220                                        <TileMatrixLimits>
     38221                                                <TileMatrix>11</TileMatrix>
     38222                                                <MinTileRow>736</MinTileRow>
     38223                                                <MaxTileRow>756</MaxTileRow>
     38224                                                <MinTileCol>1021</MinTileCol>
     38225                                                <MaxTileCol>1043</MaxTileCol>
     38226                                        </TileMatrixLimits>
     38227                                        <TileMatrixLimits>
     38228                                                <TileMatrix>12</TileMatrix>
     38229                                                <MinTileRow>1472</MinTileRow>
     38230                                                <MaxTileRow>1512</MaxTileRow>
     38231                                                <MinTileCol>2043</MinTileCol>
     38232                                                <MaxTileCol>2087</MaxTileCol>
     38233                                        </TileMatrixLimits>
     38234                                        <TileMatrixLimits>
     38235                                                <TileMatrix>13</TileMatrix>
     38236                                                <MinTileRow>2944</MinTileRow>
     38237                                                <MaxTileRow>3024</MaxTileRow>
     38238                                                <MinTileCol>4087</MinTileCol>
     38239                                                <MaxTileCol>4175</MaxTileCol>
     38240                                        </TileMatrixLimits>
     38241                                        <TileMatrixLimits>
     38242                                                <TileMatrix>14</TileMatrix>
     38243                                                <MinTileRow>5889</MinTileRow>
     38244                                                <MaxTileRow>6048</MaxTileRow>
     38245                                                <MinTileCol>8175</MinTileCol>
     38246                                                <MaxTileCol>8350</MaxTileCol>
     38247                                        </TileMatrixLimits>
     38248                                        <TileMatrixLimits>
     38249                                                <TileMatrix>15</TileMatrix>
     38250                                                <MinTileRow>11779</MinTileRow>
     38251                                                <MaxTileRow>12096</MaxTileRow>
     38252                                                <MinTileCol>16351</MinTileCol>
     38253                                                <MaxTileCol>16700</MaxTileCol>
     38254                                        </TileMatrixLimits>
     38255                                        <TileMatrixLimits>
     38256                                                <TileMatrix>16</TileMatrix>
     38257                                                <MinTileRow>23559</MinTileRow>
     38258                                                <MaxTileRow>24192</MaxTileRow>
     38259                                                <MinTileCol>32703</MinTileCol>
     38260                                                <MaxTileCol>33400</MaxTileCol>
     38261                                        </TileMatrixLimits>
     38262                                        <TileMatrixLimits>
     38263                                                <TileMatrix>17</TileMatrix>
     38264                                                <MinTileRow>47118</MinTileRow>
     38265                                                <MaxTileRow>48385</MaxTileRow>
     38266                                                <MinTileCol>65406</MinTileCol>
     38267                                                <MaxTileCol>66801</MaxTileCol>
     38268                                        </TileMatrixLimits>
     38269                                        <TileMatrixLimits>
     38270                                                <TileMatrix>2</TileMatrix>
     38271                                                <MinTileRow>1</MinTileRow>
     38272                                                <MaxTileRow>1</MaxTileRow>
     38273                                                <MinTileCol>1</MinTileCol>
     38274                                                <MaxTileCol>2</MaxTileCol>
     38275                                        </TileMatrixLimits>
     38276                                        <TileMatrixLimits>
     38277                                                <TileMatrix>3</TileMatrix>
     38278                                                <MinTileRow>2</MinTileRow>
     38279                                                <MaxTileRow>2</MaxTileRow>
     38280                                                <MinTileCol>3</MinTileCol>
     38281                                                <MaxTileCol>4</MaxTileCol>
     38282                                        </TileMatrixLimits>
     38283                                        <TileMatrixLimits>
     38284                                                <TileMatrix>4</TileMatrix>
     38285                                                <MinTileRow>5</MinTileRow>
     38286                                                <MaxTileRow>5</MaxTileRow>
     38287                                                <MinTileCol>7</MinTileCol>
     38288                                                <MaxTileCol>8</MaxTileCol>
     38289                                        </TileMatrixLimits>
     38290                                        <TileMatrixLimits>
     38291                                                <TileMatrix>5</TileMatrix>
     38292                                                <MinTileRow>11</MinTileRow>
     38293                                                <MaxTileRow>11</MaxTileRow>
     38294                                                <MinTileCol>15</MinTileCol>
     38295                                                <MaxTileCol>16</MaxTileCol>
     38296                                        </TileMatrixLimits>
     38297                                        <TileMatrixLimits>
     38298                                                <TileMatrix>6</TileMatrix>
     38299                                                <MinTileRow>23</MinTileRow>
     38300                                                <MaxTileRow>23</MaxTileRow>
     38301                                                <MinTileCol>31</MinTileCol>
     38302                                                <MaxTileCol>32</MaxTileCol>
     38303                                        </TileMatrixLimits>
     38304                                        <TileMatrixLimits>
     38305                                                <TileMatrix>7</TileMatrix>
     38306                                                <MinTileRow>46</MinTileRow>
     38307                                                <MaxTileRow>47</MaxTileRow>
     38308                                                <MinTileCol>63</MinTileCol>
     38309                                                <MaxTileCol>65</MaxTileCol>
     38310                                        </TileMatrixLimits>
     38311                                        <TileMatrixLimits>
     38312                                                <TileMatrix>8</TileMatrix>
     38313                                                <MinTileRow>92</MinTileRow>
     38314                                                <MaxTileRow>94</MaxTileRow>
     38315                                                <MinTileCol>127</MinTileCol>
     38316                                                <MaxTileCol>130</MaxTileCol>
     38317                                        </TileMatrixLimits>
     38318                                        <TileMatrixLimits>
     38319                                                <TileMatrix>9</TileMatrix>
     38320                                                <MinTileRow>184</MinTileRow>
     38321                                                <MaxTileRow>189</MaxTileRow>
     38322                                                <MinTileCol>255</MinTileCol>
     38323                                                <MaxTileCol>260</MaxTileCol>
     38324                                        </TileMatrixLimits>
     38325                                </TileMatrixSetLimits>
     38326                        </TileMatrixSetLink>
     38327                </Layer>
     38328                <Layer>
     38329                        <ows:Title>Orthophotographies Geosud de MONACO</ows:Title>
     38330                        <ows:Abstract>Orthophotographies satellites de Monaco issues du projet Geosud.</ows:Abstract>
     38331                        <ows:Keywords>
     38332                                <ows:Keyword>Photographies</ows:Keyword>
     38333                        </ows:Keywords>
     38334                        <ows:WGS84BoundingBox>
     38335                                <ows:LowerCorner>7.31411 43.6719</ows:LowerCorner>
     38336                                <ows:UpperCorner>7.54597 43.8504</ows:UpperCorner>
     38337                        </ows:WGS84BoundingBox>
     38338                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONACO-2013-11-06-37587641</ows:Identifier>
     38339                        <Style isDefault="true">
     38340                                <ows:Title>Données Brutes</ows:Title>
     38341                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38342                                <ows:Keywords>
     38343                                        <ows:Keyword>Défaut</ows:Keyword>
     38344                                </ows:Keywords>
     38345                                <ows:Identifier>normal</ows:Identifier>
     38346                                <LegendURL format="image/jpeg" height="200"
     38347                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38348                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38349                        </Style>
     38350                        <Format>image/jpeg</Format>
     38351                        <TileMatrixSetLink>
     38352                                <TileMatrixSet>PM</TileMatrixSet>
     38353                                <TileMatrixSetLimits>
     38354                                        <TileMatrixLimits>
     38355                                                <TileMatrix>0</TileMatrix>
     38356                                                <MinTileRow>0</MinTileRow>
     38357                                                <MaxTileRow>0</MaxTileRow>
     38358                                                <MinTileCol>0</MinTileCol>
     38359                                                <MaxTileCol>0</MaxTileCol>
     38360                                        </TileMatrixLimits>
     38361                                        <TileMatrixLimits>
     38362                                                <TileMatrix>1</TileMatrix>
     38363                                                <MinTileRow>0</MinTileRow>
     38364                                                <MaxTileRow>0</MaxTileRow>
     38365                                                <MinTileCol>1</MinTileCol>
     38366                                                <MaxTileCol>1</MaxTileCol>
     38367                                        </TileMatrixLimits>
     38368                                        <TileMatrixLimits>
     38369                                                <TileMatrix>10</TileMatrix>
     38370                                                <MinTileRow>372</MinTileRow>
     38371                                                <MaxTileRow>373</MaxTileRow>
     38372                                                <MinTileCol>532</MinTileCol>
     38373                                                <MaxTileCol>533</MaxTileCol>
     38374                                        </TileMatrixLimits>
     38375                                        <TileMatrixLimits>
     38376                                                <TileMatrix>11</TileMatrix>
     38377                                                <MinTileRow>745</MinTileRow>
     38378                                                <MaxTileRow>747</MaxTileRow>
     38379                                                <MinTileCol>1065</MinTileCol>
     38380                                                <MaxTileCol>1066</MaxTileCol>
     38381                                        </TileMatrixLimits>
     38382                                        <TileMatrixLimits>
     38383                                                <TileMatrix>12</TileMatrix>
     38384                                                <MinTileRow>1491</MinTileRow>
     38385                                                <MaxTileRow>1494</MaxTileRow>
     38386                                                <MinTileCol>2131</MinTileCol>
     38387                                                <MaxTileCol>2133</MaxTileCol>
     38388                                        </TileMatrixLimits>
     38389                                        <TileMatrixLimits>
     38390                                                <TileMatrix>13</TileMatrix>
     38391                                                <MinTileRow>2983</MinTileRow>
     38392                                                <MaxTileRow>2989</MaxTileRow>
     38393                                                <MinTileCol>4262</MinTileCol>
     38394                                                <MaxTileCol>4267</MaxTileCol>
     38395                                        </TileMatrixLimits>
     38396                                        <TileMatrixLimits>
     38397                                                <TileMatrix>14</TileMatrix>
     38398                                                <MinTileRow>5966</MinTileRow>
     38399                                                <MaxTileRow>5978</MaxTileRow>
     38400                                                <MinTileCol>8524</MinTileCol>
     38401                                                <MaxTileCol>8535</MaxTileCol>
     38402                                        </TileMatrixLimits>
     38403                                        <TileMatrixLimits>
     38404                                                <TileMatrix>15</TileMatrix>
     38405                                                <MinTileRow>11932</MinTileRow>
     38406                                                <MaxTileRow>11957</MaxTileRow>
     38407                                                <MinTileCol>17048</MinTileCol>
     38408                                                <MaxTileCol>17071</MaxTileCol>
     38409                                        </TileMatrixLimits>
     38410                                        <TileMatrixLimits>
     38411                                                <TileMatrix>16</TileMatrix>
     38412                                                <MinTileRow>23865</MinTileRow>
     38413                                                <MaxTileRow>23914</MaxTileRow>
     38414                                                <MinTileCol>34097</MinTileCol>
     38415                                                <MaxTileCol>34143</MaxTileCol>
     38416                                        </TileMatrixLimits>
     38417                                        <TileMatrixLimits>
     38418                                                <TileMatrix>17</TileMatrix>
     38419                                                <MinTileRow>47731</MinTileRow>
     38420                                                <MaxTileRow>47829</MaxTileRow>
     38421                                                <MinTileCol>68194</MinTileCol>
     38422                                                <MaxTileCol>68286</MaxTileCol>
     38423                                        </TileMatrixLimits>
     38424                                        <TileMatrixLimits>
     38425                                                <TileMatrix>18</TileMatrix>
     38426                                                <MinTileRow>95462</MinTileRow>
     38427                                                <MaxTileRow>95658</MaxTileRow>
     38428                                                <MinTileCol>136388</MinTileCol>
     38429                                                <MaxTileCol>136573</MaxTileCol>
     38430                                        </TileMatrixLimits>
     38431                                        <TileMatrixLimits>
     38432                                                <TileMatrix>2</TileMatrix>
     38433                                                <MinTileRow>1</MinTileRow>
     38434                                                <MaxTileRow>1</MaxTileRow>
     38435                                                <MinTileCol>2</MinTileCol>
     38436                                                <MaxTileCol>2</MaxTileCol>
     38437                                        </TileMatrixLimits>
     38438                                        <TileMatrixLimits>
     38439                                                <TileMatrix>3</TileMatrix>
     38440                                                <MinTileRow>2</MinTileRow>
     38441                                                <MaxTileRow>2</MaxTileRow>
     38442                                                <MinTileCol>4</MinTileCol>
     38443                                                <MaxTileCol>4</MaxTileCol>
     38444                                        </TileMatrixLimits>
     38445                                        <TileMatrixLimits>
     38446                                                <TileMatrix>4</TileMatrix>
     38447                                                <MinTileRow>5</MinTileRow>
     38448                                                <MaxTileRow>5</MaxTileRow>
     38449                                                <MinTileCol>8</MinTileCol>
     38450                                                <MaxTileCol>8</MaxTileCol>
     38451                                        </TileMatrixLimits>
     38452                                        <TileMatrixLimits>
     38453                                                <TileMatrix>5</TileMatrix>
     38454                                                <MinTileRow>11</MinTileRow>
     38455                                                <MaxTileRow>11</MaxTileRow>
     38456                                                <MinTileCol>16</MinTileCol>
     38457                                                <MaxTileCol>16</MaxTileCol>
     38458                                        </TileMatrixLimits>
     38459                                        <TileMatrixLimits>
     38460                                                <TileMatrix>6</TileMatrix>
     38461                                                <MinTileRow>23</MinTileRow>
     38462                                                <MaxTileRow>23</MaxTileRow>
     38463                                                <MinTileCol>33</MinTileCol>
     38464                                                <MaxTileCol>33</MaxTileCol>
     38465                                        </TileMatrixLimits>
     38466                                        <TileMatrixLimits>
     38467                                                <TileMatrix>7</TileMatrix>
     38468                                                <MinTileRow>46</MinTileRow>
     38469                                                <MaxTileRow>46</MaxTileRow>
     38470                                                <MinTileCol>66</MinTileCol>
     38471                                                <MaxTileCol>66</MaxTileCol>
     38472                                        </TileMatrixLimits>
     38473                                        <TileMatrixLimits>
     38474                                                <TileMatrix>8</TileMatrix>
     38475                                                <MinTileRow>93</MinTileRow>
     38476                                                <MaxTileRow>93</MaxTileRow>
     38477                                                <MinTileCol>133</MinTileCol>
     38478                                                <MaxTileCol>133</MaxTileCol>
     38479                                        </TileMatrixLimits>
     38480                                        <TileMatrixLimits>
     38481                                                <TileMatrix>9</TileMatrix>
     38482                                                <MinTileRow>186</MinTileRow>
     38483                                                <MaxTileRow>186</MaxTileRow>
     38484                                                <MinTileCol>266</MinTileCol>
     38485                                                <MaxTileCol>266</MaxTileCol>
     38486                                        </TileMatrixLimits>
     38487                                </TileMatrixSetLimits>
     38488                        </TileMatrixSetLink>
     38489                </Layer>
     38490                <Layer>
     38491                        <ows:Title>Orthophotographies Geosud de MONACO</ows:Title>
     38492                        <ows:Abstract>Orthophotographies satellites de Monaco issues du projet Geosud.</ows:Abstract>
     38493                        <ows:Keywords>
     38494                                <ows:Keyword>Photographies</ows:Keyword>
     38495                        </ows:Keywords>
     38496                        <ows:WGS84BoundingBox>
     38497                                <ows:LowerCorner>7.31411 43.6719</ows:LowerCorner>
     38498                                <ows:UpperCorner>7.54449 43.8501</ows:UpperCorner>
     38499                        </ows:WGS84BoundingBox>
     38500                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONACO-2013-11-06-37610766</ows:Identifier>
     38501                        <Style isDefault="true">
     38502                                <ows:Title>Données Brutes</ows:Title>
     38503                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38504                                <ows:Keywords>
     38505                                        <ows:Keyword>Défaut</ows:Keyword>
     38506                                </ows:Keywords>
     38507                                <ows:Identifier>normal</ows:Identifier>
     38508                                <LegendURL format="image/jpeg" height="200"
     38509                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38510                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38511                        </Style>
     38512                        <Format>image/jpeg</Format>
     38513                        <TileMatrixSetLink>
     38514                                <TileMatrixSet>PM</TileMatrixSet>
     38515                                <TileMatrixSetLimits>
     38516                                        <TileMatrixLimits>
     38517                                                <TileMatrix>0</TileMatrix>
     38518                                                <MinTileRow>0</MinTileRow>
     38519                                                <MaxTileRow>0</MaxTileRow>
     38520                                                <MinTileCol>0</MinTileCol>
     38521                                                <MaxTileCol>0</MaxTileCol>
     38522                                        </TileMatrixLimits>
     38523                                        <TileMatrixLimits>
     38524                                                <TileMatrix>1</TileMatrix>
     38525                                                <MinTileRow>0</MinTileRow>
     38526                                                <MaxTileRow>0</MaxTileRow>
     38527                                                <MinTileCol>1</MinTileCol>
     38528                                                <MaxTileCol>1</MaxTileCol>
     38529                                        </TileMatrixLimits>
     38530                                        <TileMatrixLimits>
     38531                                                <TileMatrix>10</TileMatrix>
     38532                                                <MinTileRow>372</MinTileRow>
     38533                                                <MaxTileRow>373</MaxTileRow>
     38534                                                <MinTileCol>532</MinTileCol>
     38535                                                <MaxTileCol>533</MaxTileCol>
     38536                                        </TileMatrixLimits>
     38537                                        <TileMatrixLimits>
     38538                                                <TileMatrix>11</TileMatrix>
     38539                                                <MinTileRow>745</MinTileRow>
     38540                                                <MaxTileRow>747</MaxTileRow>
     38541                                                <MinTileCol>1065</MinTileCol>
     38542                                                <MaxTileCol>1066</MaxTileCol>
     38543                                        </TileMatrixLimits>
     38544                                        <TileMatrixLimits>
     38545                                                <TileMatrix>12</TileMatrix>
     38546                                                <MinTileRow>1491</MinTileRow>
     38547                                                <MaxTileRow>1494</MaxTileRow>
     38548                                                <MinTileCol>2131</MinTileCol>
     38549                                                <MaxTileCol>2133</MaxTileCol>
     38550                                        </TileMatrixLimits>
     38551                                        <TileMatrixLimits>
     38552                                                <TileMatrix>13</TileMatrix>
     38553                                                <MinTileRow>2983</MinTileRow>
     38554                                                <MaxTileRow>2989</MaxTileRow>
     38555                                                <MinTileCol>4262</MinTileCol>
     38556                                                <MaxTileCol>4267</MaxTileCol>
     38557                                        </TileMatrixLimits>
     38558                                        <TileMatrixLimits>
     38559                                                <TileMatrix>14</TileMatrix>
     38560                                                <MinTileRow>5966</MinTileRow>
     38561                                                <MaxTileRow>5978</MaxTileRow>
     38562                                                <MinTileCol>8524</MinTileCol>
     38563                                                <MaxTileCol>8535</MaxTileCol>
     38564                                        </TileMatrixLimits>
     38565                                        <TileMatrixLimits>
     38566                                                <TileMatrix>15</TileMatrix>
     38567                                                <MinTileRow>11932</MinTileRow>
     38568                                                <MaxTileRow>11957</MaxTileRow>
     38569                                                <MinTileCol>17048</MinTileCol>
     38570                                                <MaxTileCol>17071</MaxTileCol>
     38571                                        </TileMatrixLimits>
     38572                                        <TileMatrixLimits>
     38573                                                <TileMatrix>16</TileMatrix>
     38574                                                <MinTileRow>23865</MinTileRow>
     38575                                                <MaxTileRow>23914</MaxTileRow>
     38576                                                <MinTileCol>34097</MinTileCol>
     38577                                                <MaxTileCol>34143</MaxTileCol>
     38578                                        </TileMatrixLimits>
     38579                                        <TileMatrixLimits>
     38580                                                <TileMatrix>17</TileMatrix>
     38581                                                <MinTileRow>47731</MinTileRow>
     38582                                                <MaxTileRow>47829</MaxTileRow>
     38583                                                <MinTileCol>68194</MinTileCol>
     38584                                                <MaxTileCol>68286</MaxTileCol>
     38585                                        </TileMatrixLimits>
     38586                                        <TileMatrixLimits>
     38587                                                <TileMatrix>18</TileMatrix>
     38588                                                <MinTileRow>95463</MinTileRow>
     38589                                                <MaxTileRow>95658</MaxTileRow>
     38590                                                <MinTileCol>136388</MinTileCol>
     38591                                                <MaxTileCol>136573</MaxTileCol>
     38592                                        </TileMatrixLimits>
     38593                                        <TileMatrixLimits>
     38594                                                <TileMatrix>2</TileMatrix>
     38595                                                <MinTileRow>1</MinTileRow>
     38596                                                <MaxTileRow>1</MaxTileRow>
     38597                                                <MinTileCol>2</MinTileCol>
     38598                                                <MaxTileCol>2</MaxTileCol>
     38599                                        </TileMatrixLimits>
     38600                                        <TileMatrixLimits>
     38601                                                <TileMatrix>3</TileMatrix>
     38602                                                <MinTileRow>2</MinTileRow>
     38603                                                <MaxTileRow>2</MaxTileRow>
     38604                                                <MinTileCol>4</MinTileCol>
     38605                                                <MaxTileCol>4</MaxTileCol>
     38606                                        </TileMatrixLimits>
     38607                                        <TileMatrixLimits>
     38608                                                <TileMatrix>4</TileMatrix>
     38609                                                <MinTileRow>5</MinTileRow>
     38610                                                <MaxTileRow>5</MaxTileRow>
     38611                                                <MinTileCol>8</MinTileCol>
     38612                                                <MaxTileCol>8</MaxTileCol>
     38613                                        </TileMatrixLimits>
     38614                                        <TileMatrixLimits>
     38615                                                <TileMatrix>5</TileMatrix>
     38616                                                <MinTileRow>11</MinTileRow>
     38617                                                <MaxTileRow>11</MaxTileRow>
     38618                                                <MinTileCol>16</MinTileCol>
     38619                                                <MaxTileCol>16</MaxTileCol>
     38620                                        </TileMatrixLimits>
     38621                                        <TileMatrixLimits>
     38622                                                <TileMatrix>6</TileMatrix>
     38623                                                <MinTileRow>23</MinTileRow>
     38624                                                <MaxTileRow>23</MaxTileRow>
     38625                                                <MinTileCol>33</MinTileCol>
     38626                                                <MaxTileCol>33</MaxTileCol>
     38627                                        </TileMatrixLimits>
     38628                                        <TileMatrixLimits>
     38629                                                <TileMatrix>7</TileMatrix>
     38630                                                <MinTileRow>46</MinTileRow>
     38631                                                <MaxTileRow>46</MaxTileRow>
     38632                                                <MinTileCol>66</MinTileCol>
     38633                                                <MaxTileCol>66</MaxTileCol>
     38634                                        </TileMatrixLimits>
     38635                                        <TileMatrixLimits>
     38636                                                <TileMatrix>8</TileMatrix>
     38637                                                <MinTileRow>93</MinTileRow>
     38638                                                <MaxTileRow>93</MaxTileRow>
     38639                                                <MinTileCol>133</MinTileCol>
     38640                                                <MaxTileCol>133</MaxTileCol>
     38641                                        </TileMatrixLimits>
     38642                                        <TileMatrixLimits>
     38643                                                <TileMatrix>9</TileMatrix>
     38644                                                <MinTileRow>186</MinTileRow>
     38645                                                <MaxTileRow>186</MaxTileRow>
     38646                                                <MinTileCol>266</MinTileCol>
     38647                                                <MaxTileCol>266</MaxTileCol>
     38648                                        </TileMatrixLimits>
     38649                                </TileMatrixSetLimits>
     38650                        </TileMatrixSetLink>
     38651                </Layer>
     38652                <Layer>
     38653                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     38654                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     38655                        <ows:Keywords>
     38656                                <ows:Keyword>Photographies</ows:Keyword>
     38657                        </ows:Keywords>
     38658                        <ows:WGS84BoundingBox>
     38659                                <ows:LowerCorner>6.822 45.7614</ows:LowerCorner>
     38660                                <ows:UpperCorner>7.08185 46.0263</ows:UpperCorner>
     38661                        </ows:WGS84BoundingBox>
     38662                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38209293</ows:Identifier>
     38663                        <Style isDefault="true">
     38664                                <ows:Title>Données Brutes</ows:Title>
     38665                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38666                                <ows:Keywords>
     38667                                        <ows:Keyword>Défaut</ows:Keyword>
     38668                                </ows:Keywords>
     38669                                <ows:Identifier>normal</ows:Identifier>
     38670                                <LegendURL format="image/jpeg" height="200"
     38671                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38672                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38673                        </Style>
     38674                        <Format>image/jpeg</Format>
     38675                        <TileMatrixSetLink>
     38676                                <TileMatrixSet>PM</TileMatrixSet>
     38677                                <TileMatrixSetLimits>
     38678                                        <TileMatrixLimits>
     38679                                                <TileMatrix>0</TileMatrix>
     38680                                                <MinTileRow>0</MinTileRow>
     38681                                                <MaxTileRow>0</MaxTileRow>
     38682                                                <MinTileCol>0</MinTileCol>
     38683                                                <MaxTileCol>0</MaxTileCol>
     38684                                        </TileMatrixLimits>
     38685                                        <TileMatrixLimits>
     38686                                                <TileMatrix>1</TileMatrix>
     38687                                                <MinTileRow>0</MinTileRow>
     38688                                                <MaxTileRow>0</MaxTileRow>
     38689                                                <MinTileCol>1</MinTileCol>
     38690                                                <MaxTileCol>1</MaxTileCol>
     38691                                        </TileMatrixLimits>
     38692                                        <TileMatrixLimits>
     38693                                                <TileMatrix>10</TileMatrix>
     38694                                                <MinTileRow>364</MinTileRow>
     38695                                                <MaxTileRow>365</MaxTileRow>
     38696                                                <MinTileCol>531</MinTileCol>
     38697                                                <MaxTileCol>532</MaxTileCol>
     38698                                        </TileMatrixLimits>
     38699                                        <TileMatrixLimits>
     38700                                                <TileMatrix>11</TileMatrix>
     38701                                                <MinTileRow>728</MinTileRow>
     38702                                                <MaxTileRow>730</MaxTileRow>
     38703                                                <MinTileCol>1062</MinTileCol>
     38704                                                <MaxTileCol>1064</MaxTileCol>
     38705                                        </TileMatrixLimits>
     38706                                        <TileMatrixLimits>
     38707                                                <TileMatrix>12</TileMatrix>
     38708                                                <MinTileRow>1456</MinTileRow>
     38709                                                <MaxTileRow>1461</MaxTileRow>
     38710                                                <MinTileCol>2125</MinTileCol>
     38711                                                <MaxTileCol>2128</MaxTileCol>
     38712                                        </TileMatrixLimits>
     38713                                        <TileMatrixLimits>
     38714                                                <TileMatrix>13</TileMatrix>
     38715                                                <MinTileRow>2913</MinTileRow>
     38716                                                <MaxTileRow>2922</MaxTileRow>
     38717                                                <MinTileCol>4250</MinTileCol>
     38718                                                <MaxTileCol>4257</MaxTileCol>
     38719                                        </TileMatrixLimits>
     38720                                        <TileMatrixLimits>
     38721                                                <TileMatrix>14</TileMatrix>
     38722                                                <MinTileRow>5826</MinTileRow>
     38723                                                <MaxTileRow>5844</MaxTileRow>
     38724                                                <MinTileCol>8501</MinTileCol>
     38725                                                <MaxTileCol>8514</MaxTileCol>
     38726                                        </TileMatrixLimits>
     38727                                        <TileMatrixLimits>
     38728                                                <TileMatrix>15</TileMatrix>
     38729                                                <MinTileRow>11653</MinTileRow>
     38730                                                <MaxTileRow>11689</MaxTileRow>
     38731                                                <MinTileCol>17003</MinTileCol>
     38732                                                <MaxTileCol>17028</MaxTileCol>
     38733                                        </TileMatrixLimits>
     38734                                        <TileMatrixLimits>
     38735                                                <TileMatrix>16</TileMatrix>
     38736                                                <MinTileRow>23306</MinTileRow>
     38737                                                <MaxTileRow>23378</MaxTileRow>
     38738                                                <MinTileCol>34007</MinTileCol>
     38739                                                <MaxTileCol>34057</MaxTileCol>
     38740                                        </TileMatrixLimits>
     38741                                        <TileMatrixLimits>
     38742                                                <TileMatrix>17</TileMatrix>
     38743                                                <MinTileRow>46613</MinTileRow>
     38744                                                <MaxTileRow>46756</MaxTileRow>
     38745                                                <MinTileCol>68015</MinTileCol>
     38746                                                <MaxTileCol>68115</MaxTileCol>
     38747                                        </TileMatrixLimits>
     38748                                        <TileMatrixLimits>
     38749                                                <TileMatrix>18</TileMatrix>
     38750                                                <MinTileRow>93226</MinTileRow>
     38751                                                <MaxTileRow>93513</MaxTileRow>
     38752                                                <MinTileCol>136030</MinTileCol>
     38753                                                <MaxTileCol>136231</MaxTileCol>
     38754                                        </TileMatrixLimits>
     38755                                        <TileMatrixLimits>
     38756                                                <TileMatrix>2</TileMatrix>
     38757                                                <MinTileRow>1</MinTileRow>
     38758                                                <MaxTileRow>1</MaxTileRow>
     38759                                                <MinTileCol>2</MinTileCol>
     38760                                                <MaxTileCol>2</MaxTileCol>
     38761                                        </TileMatrixLimits>
     38762                                        <TileMatrixLimits>
     38763                                                <TileMatrix>3</TileMatrix>
     38764                                                <MinTileRow>2</MinTileRow>
     38765                                                <MaxTileRow>2</MaxTileRow>
     38766                                                <MinTileCol>4</MinTileCol>
     38767                                                <MaxTileCol>4</MaxTileCol>
     38768                                        </TileMatrixLimits>
     38769                                        <TileMatrixLimits>
     38770                                                <TileMatrix>4</TileMatrix>
     38771                                                <MinTileRow>5</MinTileRow>
     38772                                                <MaxTileRow>5</MaxTileRow>
     38773                                                <MinTileCol>8</MinTileCol>
     38774                                                <MaxTileCol>8</MaxTileCol>
     38775                                        </TileMatrixLimits>
     38776                                        <TileMatrixLimits>
     38777                                                <TileMatrix>5</TileMatrix>
     38778                                                <MinTileRow>11</MinTileRow>
     38779                                                <MaxTileRow>11</MaxTileRow>
     38780                                                <MinTileCol>16</MinTileCol>
     38781                                                <MaxTileCol>16</MaxTileCol>
     38782                                        </TileMatrixLimits>
     38783                                        <TileMatrixLimits>
     38784                                                <TileMatrix>6</TileMatrix>
     38785                                                <MinTileRow>22</MinTileRow>
     38786                                                <MaxTileRow>22</MaxTileRow>
     38787                                                <MinTileCol>33</MinTileCol>
     38788                                                <MaxTileCol>33</MaxTileCol>
     38789                                        </TileMatrixLimits>
     38790                                        <TileMatrixLimits>
     38791                                                <TileMatrix>7</TileMatrix>
     38792                                                <MinTileRow>45</MinTileRow>
     38793                                                <MaxTileRow>45</MaxTileRow>
     38794                                                <MinTileCol>66</MinTileCol>
     38795                                                <MaxTileCol>66</MaxTileCol>
     38796                                        </TileMatrixLimits>
     38797                                        <TileMatrixLimits>
     38798                                                <TileMatrix>8</TileMatrix>
     38799                                                <MinTileRow>91</MinTileRow>
     38800                                                <MaxTileRow>91</MaxTileRow>
     38801                                                <MinTileCol>132</MinTileCol>
     38802                                                <MaxTileCol>133</MaxTileCol>
     38803                                        </TileMatrixLimits>
     38804                                        <TileMatrixLimits>
     38805                                                <TileMatrix>9</TileMatrix>
     38806                                                <MinTileRow>182</MinTileRow>
     38807                                                <MaxTileRow>182</MaxTileRow>
     38808                                                <MinTileCol>265</MinTileCol>
     38809                                                <MaxTileCol>266</MaxTileCol>
     38810                                        </TileMatrixLimits>
     38811                                </TileMatrixSetLimits>
     38812                        </TileMatrixSetLink>
     38813                </Layer>
     38814                <Layer>
     38815                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     38816                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     38817                        <ows:Keywords>
     38818                                <ows:Keyword>Photographies</ows:Keyword>
     38819                        </ows:Keywords>
     38820                        <ows:WGS84BoundingBox>
     38821                                <ows:LowerCorner>6.7342 45.7519</ows:LowerCorner>
     38822                                <ows:UpperCorner>6.92828 45.9277</ows:UpperCorner>
     38823                        </ows:WGS84BoundingBox>
     38824                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38219569</ows:Identifier>
     38825                        <Style isDefault="true">
     38826                                <ows:Title>Données Brutes</ows:Title>
     38827                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38828                                <ows:Keywords>
     38829                                        <ows:Keyword>Défaut</ows:Keyword>
     38830                                </ows:Keywords>
     38831                                <ows:Identifier>normal</ows:Identifier>
     38832                                <LegendURL format="image/jpeg" height="200"
     38833                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38834                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38835                        </Style>
     38836                        <Format>image/jpeg</Format>
     38837                        <TileMatrixSetLink>
     38838                                <TileMatrixSet>PM</TileMatrixSet>
     38839                                <TileMatrixSetLimits>
     38840                                        <TileMatrixLimits>
     38841                                                <TileMatrix>0</TileMatrix>
     38842                                                <MinTileRow>0</MinTileRow>
     38843                                                <MaxTileRow>0</MaxTileRow>
     38844                                                <MinTileCol>0</MinTileCol>
     38845                                                <MaxTileCol>0</MaxTileCol>
     38846                                        </TileMatrixLimits>
     38847                                        <TileMatrixLimits>
     38848                                                <TileMatrix>1</TileMatrix>
     38849                                                <MinTileRow>0</MinTileRow>
     38850                                                <MaxTileRow>0</MaxTileRow>
     38851                                                <MinTileCol>1</MinTileCol>
     38852                                                <MaxTileCol>1</MaxTileCol>
     38853                                        </TileMatrixLimits>
     38854                                        <TileMatrixLimits>
     38855                                                <TileMatrix>10</TileMatrix>
     38856                                                <MinTileRow>364</MinTileRow>
     38857                                                <MaxTileRow>365</MaxTileRow>
     38858                                                <MinTileCol>531</MinTileCol>
     38859                                                <MaxTileCol>531</MaxTileCol>
     38860                                        </TileMatrixLimits>
     38861                                        <TileMatrixLimits>
     38862                                                <TileMatrix>11</TileMatrix>
     38863                                                <MinTileRow>729</MinTileRow>
     38864                                                <MaxTileRow>730</MaxTileRow>
     38865                                                <MinTileCol>1062</MinTileCol>
     38866                                                <MaxTileCol>1063</MaxTileCol>
     38867                                        </TileMatrixLimits>
     38868                                        <TileMatrixLimits>
     38869                                                <TileMatrix>12</TileMatrix>
     38870                                                <MinTileRow>1458</MinTileRow>
     38871                                                <MaxTileRow>1461</MaxTileRow>
     38872                                                <MinTileCol>2124</MinTileCol>
     38873                                                <MaxTileCol>2126</MaxTileCol>
     38874                                        </TileMatrixLimits>
     38875                                        <TileMatrixLimits>
     38876                                                <TileMatrix>13</TileMatrix>
     38877                                                <MinTileRow>2916</MinTileRow>
     38878                                                <MaxTileRow>2922</MaxTileRow>
     38879                                                <MinTileCol>4248</MinTileCol>
     38880                                                <MaxTileCol>4253</MaxTileCol>
     38881                                        </TileMatrixLimits>
     38882                                        <TileMatrixLimits>
     38883                                                <TileMatrix>14</TileMatrix>
     38884                                                <MinTileRow>5833</MinTileRow>
     38885                                                <MaxTileRow>5845</MaxTileRow>
     38886                                                <MinTileCol>8497</MinTileCol>
     38887                                                <MaxTileCol>8507</MaxTileCol>
     38888                                        </TileMatrixLimits>
     38889                                        <TileMatrixLimits>
     38890                                                <TileMatrix>15</TileMatrix>
     38891                                                <MinTileRow>11666</MinTileRow>
     38892                                                <MaxTileRow>11691</MaxTileRow>
     38893                                                <MinTileCol>16995</MinTileCol>
     38894                                                <MaxTileCol>17015</MaxTileCol>
     38895                                        </TileMatrixLimits>
     38896                                        <TileMatrixLimits>
     38897                                                <TileMatrix>16</TileMatrix>
     38898                                                <MinTileRow>23333</MinTileRow>
     38899                                                <MaxTileRow>23382</MaxTileRow>
     38900                                                <MinTileCol>33991</MinTileCol>
     38901                                                <MaxTileCol>34030</MaxTileCol>
     38902                                        </TileMatrixLimits>
     38903                                        <TileMatrixLimits>
     38904                                                <TileMatrix>17</TileMatrix>
     38905                                                <MinTileRow>46666</MinTileRow>
     38906                                                <MaxTileRow>46764</MaxTileRow>
     38907                                                <MinTileCol>67982</MinTileCol>
     38908                                                <MaxTileCol>68061</MaxTileCol>
     38909                                        </TileMatrixLimits>
     38910                                        <TileMatrixLimits>
     38911                                                <TileMatrix>18</TileMatrix>
     38912                                                <MinTileRow>93333</MinTileRow>
     38913                                                <MaxTileRow>93529</MaxTileRow>
     38914                                                <MinTileCol>135965</MinTileCol>
     38915                                                <MaxTileCol>136123</MaxTileCol>
     38916                                        </TileMatrixLimits>
     38917                                        <TileMatrixLimits>
     38918                                                <TileMatrix>2</TileMatrix>
     38919                                                <MinTileRow>1</MinTileRow>
     38920                                                <MaxTileRow>1</MaxTileRow>
     38921                                                <MinTileCol>2</MinTileCol>
     38922                                                <MaxTileCol>2</MaxTileCol>
     38923                                        </TileMatrixLimits>
     38924                                        <TileMatrixLimits>
     38925                                                <TileMatrix>3</TileMatrix>
     38926                                                <MinTileRow>2</MinTileRow>
     38927                                                <MaxTileRow>2</MaxTileRow>
     38928                                                <MinTileCol>4</MinTileCol>
     38929                                                <MaxTileCol>4</MaxTileCol>
     38930                                        </TileMatrixLimits>
     38931                                        <TileMatrixLimits>
     38932                                                <TileMatrix>4</TileMatrix>
     38933                                                <MinTileRow>5</MinTileRow>
     38934                                                <MaxTileRow>5</MaxTileRow>
     38935                                                <MinTileCol>8</MinTileCol>
     38936                                                <MaxTileCol>8</MaxTileCol>
     38937                                        </TileMatrixLimits>
     38938                                        <TileMatrixLimits>
     38939                                                <TileMatrix>5</TileMatrix>
     38940                                                <MinTileRow>11</MinTileRow>
     38941                                                <MaxTileRow>11</MaxTileRow>
     38942                                                <MinTileCol>16</MinTileCol>
     38943                                                <MaxTileCol>16</MaxTileCol>
     38944                                        </TileMatrixLimits>
     38945                                        <TileMatrixLimits>
     38946                                                <TileMatrix>6</TileMatrix>
     38947                                                <MinTileRow>22</MinTileRow>
     38948                                                <MaxTileRow>22</MaxTileRow>
     38949                                                <MinTileCol>33</MinTileCol>
     38950                                                <MaxTileCol>33</MaxTileCol>
     38951                                        </TileMatrixLimits>
     38952                                        <TileMatrixLimits>
     38953                                                <TileMatrix>7</TileMatrix>
     38954                                                <MinTileRow>45</MinTileRow>
     38955                                                <MaxTileRow>45</MaxTileRow>
     38956                                                <MinTileCol>66</MinTileCol>
     38957                                                <MaxTileCol>66</MaxTileCol>
     38958                                        </TileMatrixLimits>
     38959                                        <TileMatrixLimits>
     38960                                                <TileMatrix>8</TileMatrix>
     38961                                                <MinTileRow>91</MinTileRow>
     38962                                                <MaxTileRow>91</MaxTileRow>
     38963                                                <MinTileCol>132</MinTileCol>
     38964                                                <MaxTileCol>132</MaxTileCol>
     38965                                        </TileMatrixLimits>
     38966                                        <TileMatrixLimits>
     38967                                                <TileMatrix>9</TileMatrix>
     38968                                                <MinTileRow>182</MinTileRow>
     38969                                                <MaxTileRow>182</MaxTileRow>
     38970                                                <MinTileCol>265</MinTileCol>
     38971                                                <MaxTileCol>265</MaxTileCol>
     38972                                        </TileMatrixLimits>
     38973                                </TileMatrixSetLimits>
     38974                        </TileMatrixSetLink>
     38975                </Layer>
     38976                <Layer>
     38977                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     38978                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     38979                        <ows:Keywords>
     38980                                <ows:Keyword>Photographies</ows:Keyword>
     38981                        </ows:Keywords>
     38982                        <ows:WGS84BoundingBox>
     38983                                <ows:LowerCorner>6.83126 45.7634</ows:LowerCorner>
     38984                                <ows:UpperCorner>7.08178 46.0263</ows:UpperCorner>
     38985                        </ows:WGS84BoundingBox>
     38986                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38240000</ows:Identifier>
     38987                        <Style isDefault="true">
     38988                                <ows:Title>Données Brutes</ows:Title>
     38989                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     38990                                <ows:Keywords>
     38991                                        <ows:Keyword>Défaut</ows:Keyword>
     38992                                </ows:Keywords>
     38993                                <ows:Identifier>normal</ows:Identifier>
     38994                                <LegendURL format="image/jpeg" height="200"
     38995                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     38996                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     38997                        </Style>
     38998                        <Format>image/jpeg</Format>
     38999                        <TileMatrixSetLink>
     39000                                <TileMatrixSet>PM</TileMatrixSet>
     39001                                <TileMatrixSetLimits>
     39002                                        <TileMatrixLimits>
     39003                                                <TileMatrix>0</TileMatrix>
     39004                                                <MinTileRow>0</MinTileRow>
     39005                                                <MaxTileRow>0</MaxTileRow>
     39006                                                <MinTileCol>0</MinTileCol>
     39007                                                <MaxTileCol>0</MaxTileCol>
     39008                                        </TileMatrixLimits>
     39009                                        <TileMatrixLimits>
     39010                                                <TileMatrix>1</TileMatrix>
     39011                                                <MinTileRow>0</MinTileRow>
     39012                                                <MaxTileRow>0</MaxTileRow>
     39013                                                <MinTileCol>1</MinTileCol>
     39014                                                <MaxTileCol>1</MaxTileCol>
     39015                                        </TileMatrixLimits>
     39016                                        <TileMatrixLimits>
     39017                                                <TileMatrix>10</TileMatrix>
     39018                                                <MinTileRow>364</MinTileRow>
     39019                                                <MaxTileRow>365</MaxTileRow>
     39020                                                <MinTileCol>531</MinTileCol>
     39021                                                <MaxTileCol>532</MaxTileCol>
     39022                                        </TileMatrixLimits>
     39023                                        <TileMatrixLimits>
     39024                                                <TileMatrix>11</TileMatrix>
     39025                                                <MinTileRow>728</MinTileRow>
     39026                                                <MaxTileRow>730</MaxTileRow>
     39027                                                <MinTileCol>1062</MinTileCol>
     39028                                                <MaxTileCol>1064</MaxTileCol>
     39029                                        </TileMatrixLimits>
     39030                                        <TileMatrixLimits>
     39031                                                <TileMatrix>12</TileMatrix>
     39032                                                <MinTileRow>1456</MinTileRow>
     39033                                                <MaxTileRow>1461</MaxTileRow>
     39034                                                <MinTileCol>2125</MinTileCol>
     39035                                                <MaxTileCol>2128</MaxTileCol>
     39036                                        </TileMatrixLimits>
     39037                                        <TileMatrixLimits>
     39038                                                <TileMatrix>13</TileMatrix>
     39039                                                <MinTileRow>2913</MinTileRow>
     39040                                                <MaxTileRow>2922</MaxTileRow>
     39041                                                <MinTileCol>4251</MinTileCol>
     39042                                                <MaxTileCol>4257</MaxTileCol>
     39043                                        </TileMatrixLimits>
     39044                                        <TileMatrixLimits>
     39045                                                <TileMatrix>14</TileMatrix>
     39046                                                <MinTileRow>5826</MinTileRow>
     39047                                                <MaxTileRow>5844</MaxTileRow>
     39048                                                <MinTileCol>8502</MinTileCol>
     39049                                                <MaxTileCol>8514</MaxTileCol>
     39050                                        </TileMatrixLimits>
     39051                                        <TileMatrixLimits>
     39052                                                <TileMatrix>15</TileMatrix>
     39053                                                <MinTileRow>11653</MinTileRow>
     39054                                                <MaxTileRow>11689</MaxTileRow>
     39055                                                <MinTileCol>17004</MinTileCol>
     39056                                                <MaxTileCol>17028</MaxTileCol>
     39057                                        </TileMatrixLimits>
     39058                                        <TileMatrixLimits>
     39059                                                <TileMatrix>16</TileMatrix>
     39060                                                <MinTileRow>23306</MinTileRow>
     39061                                                <MaxTileRow>23378</MaxTileRow>
     39062                                                <MinTileCol>34009</MinTileCol>
     39063                                                <MaxTileCol>34057</MaxTileCol>
     39064                                        </TileMatrixLimits>
     39065                                        <TileMatrixLimits>
     39066                                                <TileMatrix>17</TileMatrix>
     39067                                                <MinTileRow>46613</MinTileRow>
     39068                                                <MaxTileRow>46756</MaxTileRow>
     39069                                                <MinTileCol>68019</MinTileCol>
     39070                                                <MaxTileCol>68115</MaxTileCol>
     39071                                        </TileMatrixLimits>
     39072                                        <TileMatrixLimits>
     39073                                                <TileMatrix>18</TileMatrix>
     39074                                                <MinTileRow>93226</MinTileRow>
     39075                                                <MaxTileRow>93513</MaxTileRow>
     39076                                                <MinTileCol>136039</MinTileCol>
     39077                                                <MaxTileCol>136231</MaxTileCol>
     39078                                        </TileMatrixLimits>
     39079                                        <TileMatrixLimits>
     39080                                                <TileMatrix>2</TileMatrix>
     39081                                                <MinTileRow>1</MinTileRow>
     39082                                                <MaxTileRow>1</MaxTileRow>
     39083                                                <MinTileCol>2</MinTileCol>
     39084                                                <MaxTileCol>2</MaxTileCol>
     39085                                        </TileMatrixLimits>
     39086                                        <TileMatrixLimits>
     39087                                                <TileMatrix>3</TileMatrix>
     39088                                                <MinTileRow>2</MinTileRow>
     39089                                                <MaxTileRow>2</MaxTileRow>
     39090                                                <MinTileCol>4</MinTileCol>
     39091                                                <MaxTileCol>4</MaxTileCol>
     39092                                        </TileMatrixLimits>
     39093                                        <TileMatrixLimits>
     39094                                                <TileMatrix>4</TileMatrix>
     39095                                                <MinTileRow>5</MinTileRow>
     39096                                                <MaxTileRow>5</MaxTileRow>
     39097                                                <MinTileCol>8</MinTileCol>
     39098                                                <MaxTileCol>8</MaxTileCol>
     39099                                        </TileMatrixLimits>
     39100                                        <TileMatrixLimits>
     39101                                                <TileMatrix>5</TileMatrix>
     39102                                                <MinTileRow>11</MinTileRow>
     39103                                                <MaxTileRow>11</MaxTileRow>
     39104                                                <MinTileCol>16</MinTileCol>
     39105                                                <MaxTileCol>16</MaxTileCol>
     39106                                        </TileMatrixLimits>
     39107                                        <TileMatrixLimits>
     39108                                                <TileMatrix>6</TileMatrix>
     39109                                                <MinTileRow>22</MinTileRow>
     39110                                                <MaxTileRow>22</MaxTileRow>
     39111                                                <MinTileCol>33</MinTileCol>
     39112                                                <MaxTileCol>33</MaxTileCol>
     39113                                        </TileMatrixLimits>
     39114                                        <TileMatrixLimits>
     39115                                                <TileMatrix>7</TileMatrix>
     39116                                                <MinTileRow>45</MinTileRow>
     39117                                                <MaxTileRow>45</MaxTileRow>
     39118                                                <MinTileCol>66</MinTileCol>
     39119                                                <MaxTileCol>66</MaxTileCol>
     39120                                        </TileMatrixLimits>
     39121                                        <TileMatrixLimits>
     39122                                                <TileMatrix>8</TileMatrix>
     39123                                                <MinTileRow>91</MinTileRow>
     39124                                                <MaxTileRow>91</MaxTileRow>
     39125                                                <MinTileCol>132</MinTileCol>
     39126                                                <MaxTileCol>133</MaxTileCol>
     39127                                        </TileMatrixLimits>
     39128                                        <TileMatrixLimits>
     39129                                                <TileMatrix>9</TileMatrix>
     39130                                                <MinTileRow>182</MinTileRow>
     39131                                                <MaxTileRow>182</MaxTileRow>
     39132                                                <MinTileCol>265</MinTileCol>
     39133                                                <MaxTileCol>266</MaxTileCol>
     39134                                        </TileMatrixLimits>
     39135                                </TileMatrixSetLimits>
     39136                        </TileMatrixSetLink>
     39137                </Layer>
     39138                <Layer>
     39139                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     39140                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     39141                        <ows:Keywords>
     39142                                <ows:Keyword>Photographies</ows:Keyword>
     39143                        </ows:Keywords>
     39144                        <ows:WGS84BoundingBox>
     39145                                <ows:LowerCorner>6.73382 45.7519</ows:LowerCorner>
     39146                                <ows:UpperCorner>6.92364 45.9253</ows:UpperCorner>
     39147                        </ows:WGS84BoundingBox>
     39148                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38250819</ows:Identifier>
     39149                        <Style isDefault="true">
     39150                                <ows:Title>Données Brutes</ows:Title>
     39151                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39152                                <ows:Keywords>
     39153                                        <ows:Keyword>Défaut</ows:Keyword>
     39154                                </ows:Keywords>
     39155                                <ows:Identifier>normal</ows:Identifier>
     39156                                <LegendURL format="image/jpeg" height="200"
     39157                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39158                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39159                        </Style>
     39160                        <Format>image/jpeg</Format>
     39161                        <TileMatrixSetLink>
     39162                                <TileMatrixSet>PM</TileMatrixSet>
     39163                                <TileMatrixSetLimits>
     39164                                        <TileMatrixLimits>
     39165                                                <TileMatrix>0</TileMatrix>
     39166                                                <MinTileRow>0</MinTileRow>
     39167                                                <MaxTileRow>0</MaxTileRow>
     39168                                                <MinTileCol>0</MinTileCol>
     39169                                                <MaxTileCol>0</MaxTileCol>
     39170                                        </TileMatrixLimits>
     39171                                        <TileMatrixLimits>
     39172                                                <TileMatrix>1</TileMatrix>
     39173                                                <MinTileRow>0</MinTileRow>
     39174                                                <MaxTileRow>0</MaxTileRow>
     39175                                                <MinTileCol>1</MinTileCol>
     39176                                                <MaxTileCol>1</MaxTileCol>
     39177                                        </TileMatrixLimits>
     39178                                        <TileMatrixLimits>
     39179                                                <TileMatrix>10</TileMatrix>
     39180                                                <MinTileRow>364</MinTileRow>
     39181                                                <MaxTileRow>365</MaxTileRow>
     39182                                                <MinTileCol>531</MinTileCol>
     39183                                                <MaxTileCol>531</MaxTileCol>
     39184                                        </TileMatrixLimits>
     39185                                        <TileMatrixLimits>
     39186                                                <TileMatrix>11</TileMatrix>
     39187                                                <MinTileRow>729</MinTileRow>
     39188                                                <MaxTileRow>730</MaxTileRow>
     39189                                                <MinTileCol>1062</MinTileCol>
     39190                                                <MaxTileCol>1063</MaxTileCol>
     39191                                        </TileMatrixLimits>
     39192                                        <TileMatrixLimits>
     39193                                                <TileMatrix>12</TileMatrix>
     39194                                                <MinTileRow>1458</MinTileRow>
     39195                                                <MaxTileRow>1461</MaxTileRow>
     39196                                                <MinTileCol>2124</MinTileCol>
     39197                                                <MaxTileCol>2126</MaxTileCol>
     39198                                        </TileMatrixLimits>
     39199                                        <TileMatrixLimits>
     39200                                                <TileMatrix>13</TileMatrix>
     39201                                                <MinTileRow>2916</MinTileRow>
     39202                                                <MaxTileRow>2922</MaxTileRow>
     39203                                                <MinTileCol>4248</MinTileCol>
     39204                                                <MaxTileCol>4253</MaxTileCol>
     39205                                        </TileMatrixLimits>
     39206                                        <TileMatrixLimits>
     39207                                                <TileMatrix>14</TileMatrix>
     39208                                                <MinTileRow>5833</MinTileRow>
     39209                                                <MaxTileRow>5845</MaxTileRow>
     39210                                                <MinTileCol>8497</MinTileCol>
     39211                                                <MaxTileCol>8507</MaxTileCol>
     39212                                        </TileMatrixLimits>
     39213                                        <TileMatrixLimits>
     39214                                                <TileMatrix>15</TileMatrix>
     39215                                                <MinTileRow>11666</MinTileRow>
     39216                                                <MaxTileRow>11691</MaxTileRow>
     39217                                                <MinTileCol>16995</MinTileCol>
     39218                                                <MaxTileCol>17015</MaxTileCol>
     39219                                        </TileMatrixLimits>
     39220                                        <TileMatrixLimits>
     39221                                                <TileMatrix>16</TileMatrix>
     39222                                                <MinTileRow>23333</MinTileRow>
     39223                                                <MaxTileRow>23382</MaxTileRow>
     39224                                                <MinTileCol>33991</MinTileCol>
     39225                                                <MaxTileCol>34030</MaxTileCol>
     39226                                        </TileMatrixLimits>
     39227                                        <TileMatrixLimits>
     39228                                                <TileMatrix>17</TileMatrix>
     39229                                                <MinTileRow>46666</MinTileRow>
     39230                                                <MaxTileRow>46764</MaxTileRow>
     39231                                                <MinTileCol>67982</MinTileCol>
     39232                                                <MaxTileCol>68061</MaxTileCol>
     39233                                        </TileMatrixLimits>
     39234                                        <TileMatrixLimits>
     39235                                                <TileMatrix>18</TileMatrix>
     39236                                                <MinTileRow>93333</MinTileRow>
     39237                                                <MaxTileRow>93529</MaxTileRow>
     39238                                                <MinTileCol>135965</MinTileCol>
     39239                                                <MaxTileCol>136123</MaxTileCol>
     39240                                        </TileMatrixLimits>
     39241                                        <TileMatrixLimits>
     39242                                                <TileMatrix>2</TileMatrix>
     39243                                                <MinTileRow>1</MinTileRow>
     39244                                                <MaxTileRow>1</MaxTileRow>
     39245                                                <MinTileCol>2</MinTileCol>
     39246                                                <MaxTileCol>2</MaxTileCol>
     39247                                        </TileMatrixLimits>
     39248                                        <TileMatrixLimits>
     39249                                                <TileMatrix>3</TileMatrix>
     39250                                                <MinTileRow>2</MinTileRow>
     39251                                                <MaxTileRow>2</MaxTileRow>
     39252                                                <MinTileCol>4</MinTileCol>
     39253                                                <MaxTileCol>4</MaxTileCol>
     39254                                        </TileMatrixLimits>
     39255                                        <TileMatrixLimits>
     39256                                                <TileMatrix>4</TileMatrix>
     39257                                                <MinTileRow>5</MinTileRow>
     39258                                                <MaxTileRow>5</MaxTileRow>
     39259                                                <MinTileCol>8</MinTileCol>
     39260                                                <MaxTileCol>8</MaxTileCol>
     39261                                        </TileMatrixLimits>
     39262                                        <TileMatrixLimits>
     39263                                                <TileMatrix>5</TileMatrix>
     39264                                                <MinTileRow>11</MinTileRow>
     39265                                                <MaxTileRow>11</MaxTileRow>
     39266                                                <MinTileCol>16</MinTileCol>
     39267                                                <MaxTileCol>16</MaxTileCol>
     39268                                        </TileMatrixLimits>
     39269                                        <TileMatrixLimits>
     39270                                                <TileMatrix>6</TileMatrix>
     39271                                                <MinTileRow>22</MinTileRow>
     39272                                                <MaxTileRow>22</MaxTileRow>
     39273                                                <MinTileCol>33</MinTileCol>
     39274                                                <MaxTileCol>33</MaxTileCol>
     39275                                        </TileMatrixLimits>
     39276                                        <TileMatrixLimits>
     39277                                                <TileMatrix>7</TileMatrix>
     39278                                                <MinTileRow>45</MinTileRow>
     39279                                                <MaxTileRow>45</MaxTileRow>
     39280                                                <MinTileCol>66</MinTileCol>
     39281                                                <MaxTileCol>66</MaxTileCol>
     39282                                        </TileMatrixLimits>
     39283                                        <TileMatrixLimits>
     39284                                                <TileMatrix>8</TileMatrix>
     39285                                                <MinTileRow>91</MinTileRow>
     39286                                                <MaxTileRow>91</MaxTileRow>
     39287                                                <MinTileCol>132</MinTileCol>
     39288                                                <MaxTileCol>132</MaxTileCol>
     39289                                        </TileMatrixLimits>
     39290                                        <TileMatrixLimits>
     39291                                                <TileMatrix>9</TileMatrix>
     39292                                                <MinTileRow>182</MinTileRow>
     39293                                                <MaxTileRow>182</MaxTileRow>
     39294                                                <MinTileCol>265</MinTileCol>
     39295                                                <MaxTileCol>265</MaxTileCol>
     39296                                        </TileMatrixLimits>
     39297                                </TileMatrixSetLimits>
     39298                        </TileMatrixSetLink>
     39299                </Layer>
     39300                <Layer>
     39301                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     39302                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     39303                        <ows:Keywords>
     39304                                <ows:Keyword>Photographies</ows:Keyword>
     39305                        </ows:Keywords>
     39306                        <ows:WGS84BoundingBox>
     39307                                <ows:LowerCorner>6.82591 45.762</ows:LowerCorner>
     39308                                <ows:UpperCorner>7.08141 46.0263</ows:UpperCorner>
     39309                        </ows:WGS84BoundingBox>
     39310                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38274597</ows:Identifier>
     39311                        <Style isDefault="true">
     39312                                <ows:Title>Données Brutes</ows:Title>
     39313                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39314                                <ows:Keywords>
     39315                                        <ows:Keyword>Défaut</ows:Keyword>
     39316                                </ows:Keywords>
     39317                                <ows:Identifier>normal</ows:Identifier>
     39318                                <LegendURL format="image/jpeg" height="200"
     39319                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39320                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39321                        </Style>
     39322                        <Format>image/jpeg</Format>
     39323                        <TileMatrixSetLink>
     39324                                <TileMatrixSet>PM</TileMatrixSet>
     39325                                <TileMatrixSetLimits>
     39326                                        <TileMatrixLimits>
     39327                                                <TileMatrix>0</TileMatrix>
     39328                                                <MinTileRow>0</MinTileRow>
     39329                                                <MaxTileRow>0</MaxTileRow>
     39330                                                <MinTileCol>0</MinTileCol>
     39331                                                <MaxTileCol>0</MaxTileCol>
     39332                                        </TileMatrixLimits>
     39333                                        <TileMatrixLimits>
     39334                                                <TileMatrix>1</TileMatrix>
     39335                                                <MinTileRow>0</MinTileRow>
     39336                                                <MaxTileRow>0</MaxTileRow>
     39337                                                <MinTileCol>1</MinTileCol>
     39338                                                <MaxTileCol>1</MaxTileCol>
     39339                                        </TileMatrixLimits>
     39340                                        <TileMatrixLimits>
     39341                                                <TileMatrix>10</TileMatrix>
     39342                                                <MinTileRow>364</MinTileRow>
     39343                                                <MaxTileRow>365</MaxTileRow>
     39344                                                <MinTileCol>531</MinTileCol>
     39345                                                <MaxTileCol>532</MaxTileCol>
     39346                                        </TileMatrixLimits>
     39347                                        <TileMatrixLimits>
     39348                                                <TileMatrix>11</TileMatrix>
     39349                                                <MinTileRow>728</MinTileRow>
     39350                                                <MaxTileRow>730</MaxTileRow>
     39351                                                <MinTileCol>1062</MinTileCol>
     39352                                                <MaxTileCol>1064</MaxTileCol>
     39353                                        </TileMatrixLimits>
     39354                                        <TileMatrixLimits>
     39355                                                <TileMatrix>12</TileMatrix>
     39356                                                <MinTileRow>1456</MinTileRow>
     39357                                                <MaxTileRow>1461</MaxTileRow>
     39358                                                <MinTileCol>2125</MinTileCol>
     39359                                                <MaxTileCol>2128</MaxTileCol>
     39360                                        </TileMatrixLimits>
     39361                                        <TileMatrixLimits>
     39362                                                <TileMatrix>13</TileMatrix>
     39363                                                <MinTileRow>2913</MinTileRow>
     39364                                                <MaxTileRow>2922</MaxTileRow>
     39365                                                <MinTileCol>4251</MinTileCol>
     39366                                                <MaxTileCol>4257</MaxTileCol>
     39367                                        </TileMatrixLimits>
     39368                                        <TileMatrixLimits>
     39369                                                <TileMatrix>14</TileMatrix>
     39370                                                <MinTileRow>5826</MinTileRow>
     39371                                                <MaxTileRow>5844</MaxTileRow>
     39372                                                <MinTileCol>8502</MinTileCol>
     39373                                                <MaxTileCol>8514</MaxTileCol>
     39374                                        </TileMatrixLimits>
     39375                                        <TileMatrixLimits>
     39376                                                <TileMatrix>15</TileMatrix>
     39377                                                <MinTileRow>11653</MinTileRow>
     39378                                                <MaxTileRow>11689</MaxTileRow>
     39379                                                <MinTileCol>17004</MinTileCol>
     39380                                                <MaxTileCol>17028</MaxTileCol>
     39381                                        </TileMatrixLimits>
     39382                                        <TileMatrixLimits>
     39383                                                <TileMatrix>16</TileMatrix>
     39384                                                <MinTileRow>23306</MinTileRow>
     39385                                                <MaxTileRow>23378</MaxTileRow>
     39386                                                <MinTileCol>34008</MinTileCol>
     39387                                                <MaxTileCol>34057</MaxTileCol>
     39388                                        </TileMatrixLimits>
     39389                                        <TileMatrixLimits>
     39390                                                <TileMatrix>17</TileMatrix>
     39391                                                <MinTileRow>46613</MinTileRow>
     39392                                                <MaxTileRow>46756</MaxTileRow>
     39393                                                <MinTileCol>68016</MinTileCol>
     39394                                                <MaxTileCol>68115</MaxTileCol>
     39395                                        </TileMatrixLimits>
     39396                                        <TileMatrixLimits>
     39397                                                <TileMatrix>18</TileMatrix>
     39398                                                <MinTileRow>93226</MinTileRow>
     39399                                                <MaxTileRow>93513</MaxTileRow>
     39400                                                <MinTileCol>136032</MinTileCol>
     39401                                                <MaxTileCol>136231</MaxTileCol>
     39402                                        </TileMatrixLimits>
     39403                                        <TileMatrixLimits>
     39404                                                <TileMatrix>2</TileMatrix>
     39405                                                <MinTileRow>1</MinTileRow>
     39406                                                <MaxTileRow>1</MaxTileRow>
     39407                                                <MinTileCol>2</MinTileCol>
     39408                                                <MaxTileCol>2</MaxTileCol>
     39409                                        </TileMatrixLimits>
     39410                                        <TileMatrixLimits>
     39411                                                <TileMatrix>3</TileMatrix>
     39412                                                <MinTileRow>2</MinTileRow>
     39413                                                <MaxTileRow>2</MaxTileRow>
     39414                                                <MinTileCol>4</MinTileCol>
     39415                                                <MaxTileCol>4</MaxTileCol>
     39416                                        </TileMatrixLimits>
     39417                                        <TileMatrixLimits>
     39418                                                <TileMatrix>4</TileMatrix>
     39419                                                <MinTileRow>5</MinTileRow>
     39420                                                <MaxTileRow>5</MaxTileRow>
     39421                                                <MinTileCol>8</MinTileCol>
     39422                                                <MaxTileCol>8</MaxTileCol>
     39423                                        </TileMatrixLimits>
     39424                                        <TileMatrixLimits>
     39425                                                <TileMatrix>5</TileMatrix>
     39426                                                <MinTileRow>11</MinTileRow>
     39427                                                <MaxTileRow>11</MaxTileRow>
     39428                                                <MinTileCol>16</MinTileCol>
     39429                                                <MaxTileCol>16</MaxTileCol>
     39430                                        </TileMatrixLimits>
     39431                                        <TileMatrixLimits>
     39432                                                <TileMatrix>6</TileMatrix>
     39433                                                <MinTileRow>22</MinTileRow>
     39434                                                <MaxTileRow>22</MaxTileRow>
     39435                                                <MinTileCol>33</MinTileCol>
     39436                                                <MaxTileCol>33</MaxTileCol>
     39437                                        </TileMatrixLimits>
     39438                                        <TileMatrixLimits>
     39439                                                <TileMatrix>7</TileMatrix>
     39440                                                <MinTileRow>45</MinTileRow>
     39441                                                <MaxTileRow>45</MaxTileRow>
     39442                                                <MinTileCol>66</MinTileCol>
     39443                                                <MaxTileCol>66</MaxTileCol>
     39444                                        </TileMatrixLimits>
     39445                                        <TileMatrixLimits>
     39446                                                <TileMatrix>8</TileMatrix>
     39447                                                <MinTileRow>91</MinTileRow>
     39448                                                <MaxTileRow>91</MaxTileRow>
     39449                                                <MinTileCol>132</MinTileCol>
     39450                                                <MaxTileCol>133</MaxTileCol>
     39451                                        </TileMatrixLimits>
     39452                                        <TileMatrixLimits>
     39453                                                <TileMatrix>9</TileMatrix>
     39454                                                <MinTileRow>182</MinTileRow>
     39455                                                <MaxTileRow>182</MaxTileRow>
     39456                                                <MinTileCol>265</MinTileCol>
     39457                                                <MaxTileCol>266</MaxTileCol>
     39458                                        </TileMatrixLimits>
     39459                                </TileMatrixSetLimits>
     39460                        </TileMatrixSetLink>
     39461                </Layer>
     39462                <Layer>
     39463                        <ows:Title>Orthophotographies Geosud de MONT-BLANC</ows:Title>
     39464                        <ows:Abstract>Orthophotographies satellites de Mont-Blanc issues du projet Geosud.</ows:Abstract>
     39465                        <ows:Keywords>
     39466                                <ows:Keyword>Photographies</ows:Keyword>
     39467                        </ows:Keywords>
     39468                        <ows:WGS84BoundingBox>
     39469                                <ows:LowerCorner>6.73383 45.7519</ows:LowerCorner>
     39470                                <ows:UpperCorner>6.92769 45.9272</ows:UpperCorner>
     39471                        </ows:WGS84BoundingBox>
     39472                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-BLANC-2013-09-20-38285126</ows:Identifier>
     39473                        <Style isDefault="true">
     39474                                <ows:Title>Données Brutes</ows:Title>
     39475                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39476                                <ows:Keywords>
     39477                                        <ows:Keyword>Défaut</ows:Keyword>
     39478                                </ows:Keywords>
     39479                                <ows:Identifier>normal</ows:Identifier>
     39480                                <LegendURL format="image/jpeg" height="200"
     39481                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39482                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39483                        </Style>
     39484                        <Format>image/jpeg</Format>
     39485                        <TileMatrixSetLink>
     39486                                <TileMatrixSet>PM</TileMatrixSet>
     39487                                <TileMatrixSetLimits>
     39488                                        <TileMatrixLimits>
     39489                                                <TileMatrix>0</TileMatrix>
     39490                                                <MinTileRow>0</MinTileRow>
     39491                                                <MaxTileRow>0</MaxTileRow>
     39492                                                <MinTileCol>0</MinTileCol>
     39493                                                <MaxTileCol>0</MaxTileCol>
     39494                                        </TileMatrixLimits>
     39495                                        <TileMatrixLimits>
     39496                                                <TileMatrix>1</TileMatrix>
     39497                                                <MinTileRow>0</MinTileRow>
     39498                                                <MaxTileRow>0</MaxTileRow>
     39499                                                <MinTileCol>1</MinTileCol>
     39500                                                <MaxTileCol>1</MaxTileCol>
     39501                                        </TileMatrixLimits>
     39502                                        <TileMatrixLimits>
     39503                                                <TileMatrix>10</TileMatrix>
     39504                                                <MinTileRow>364</MinTileRow>
     39505                                                <MaxTileRow>365</MaxTileRow>
     39506                                                <MinTileCol>531</MinTileCol>
     39507                                                <MaxTileCol>531</MaxTileCol>
     39508                                        </TileMatrixLimits>
     39509                                        <TileMatrixLimits>
     39510                                                <TileMatrix>11</TileMatrix>
     39511                                                <MinTileRow>729</MinTileRow>
     39512                                                <MaxTileRow>730</MaxTileRow>
     39513                                                <MinTileCol>1062</MinTileCol>
     39514                                                <MaxTileCol>1063</MaxTileCol>
     39515                                        </TileMatrixLimits>
     39516                                        <TileMatrixLimits>
     39517                                                <TileMatrix>12</TileMatrix>
     39518                                                <MinTileRow>1458</MinTileRow>
     39519                                                <MaxTileRow>1461</MaxTileRow>
     39520                                                <MinTileCol>2124</MinTileCol>
     39521                                                <MaxTileCol>2126</MaxTileCol>
     39522                                        </TileMatrixLimits>
     39523                                        <TileMatrixLimits>
     39524                                                <TileMatrix>13</TileMatrix>
     39525                                                <MinTileRow>2916</MinTileRow>
     39526                                                <MaxTileRow>2922</MaxTileRow>
     39527                                                <MinTileCol>4248</MinTileCol>
     39528                                                <MaxTileCol>4253</MaxTileCol>
     39529                                        </TileMatrixLimits>
     39530                                        <TileMatrixLimits>
     39531                                                <TileMatrix>14</TileMatrix>
     39532                                                <MinTileRow>5833</MinTileRow>
     39533                                                <MaxTileRow>5845</MaxTileRow>
     39534                                                <MinTileCol>8497</MinTileCol>
     39535                                                <MaxTileCol>8507</MaxTileCol>
     39536                                        </TileMatrixLimits>
     39537                                        <TileMatrixLimits>
     39538                                                <TileMatrix>15</TileMatrix>
     39539                                                <MinTileRow>11666</MinTileRow>
     39540                                                <MaxTileRow>11691</MaxTileRow>
     39541                                                <MinTileCol>16995</MinTileCol>
     39542                                                <MaxTileCol>17015</MaxTileCol>
     39543                                        </TileMatrixLimits>
     39544                                        <TileMatrixLimits>
     39545                                                <TileMatrix>16</TileMatrix>
     39546                                                <MinTileRow>23333</MinTileRow>
     39547                                                <MaxTileRow>23382</MaxTileRow>
     39548                                                <MinTileCol>33991</MinTileCol>
     39549                                                <MaxTileCol>34030</MaxTileCol>
     39550                                        </TileMatrixLimits>
     39551                                        <TileMatrixLimits>
     39552                                                <TileMatrix>17</TileMatrix>
     39553                                                <MinTileRow>46666</MinTileRow>
     39554                                                <MaxTileRow>46764</MaxTileRow>
     39555                                                <MinTileCol>67982</MinTileCol>
     39556                                                <MaxTileCol>68061</MaxTileCol>
     39557                                        </TileMatrixLimits>
     39558                                        <TileMatrixLimits>
     39559                                                <TileMatrix>18</TileMatrix>
     39560                                                <MinTileRow>93333</MinTileRow>
     39561                                                <MaxTileRow>93529</MaxTileRow>
     39562                                                <MinTileCol>135965</MinTileCol>
     39563                                                <MaxTileCol>136123</MaxTileCol>
     39564                                        </TileMatrixLimits>
     39565                                        <TileMatrixLimits>
     39566                                                <TileMatrix>2</TileMatrix>
     39567                                                <MinTileRow>1</MinTileRow>
     39568                                                <MaxTileRow>1</MaxTileRow>
     39569                                                <MinTileCol>2</MinTileCol>
     39570                                                <MaxTileCol>2</MaxTileCol>
     39571                                        </TileMatrixLimits>
     39572                                        <TileMatrixLimits>
     39573                                                <TileMatrix>3</TileMatrix>
     39574                                                <MinTileRow>2</MinTileRow>
     39575                                                <MaxTileRow>2</MaxTileRow>
     39576                                                <MinTileCol>4</MinTileCol>
     39577                                                <MaxTileCol>4</MaxTileCol>
     39578                                        </TileMatrixLimits>
     39579                                        <TileMatrixLimits>
     39580                                                <TileMatrix>4</TileMatrix>
     39581                                                <MinTileRow>5</MinTileRow>
     39582                                                <MaxTileRow>5</MaxTileRow>
     39583                                                <MinTileCol>8</MinTileCol>
     39584                                                <MaxTileCol>8</MaxTileCol>
     39585                                        </TileMatrixLimits>
     39586                                        <TileMatrixLimits>
     39587                                                <TileMatrix>5</TileMatrix>
     39588                                                <MinTileRow>11</MinTileRow>
     39589                                                <MaxTileRow>11</MaxTileRow>
     39590                                                <MinTileCol>16</MinTileCol>
     39591                                                <MaxTileCol>16</MaxTileCol>
     39592                                        </TileMatrixLimits>
     39593                                        <TileMatrixLimits>
     39594                                                <TileMatrix>6</TileMatrix>
     39595                                                <MinTileRow>22</MinTileRow>
     39596                                                <MaxTileRow>22</MaxTileRow>
     39597                                                <MinTileCol>33</MinTileCol>
     39598                                                <MaxTileCol>33</MaxTileCol>
     39599                                        </TileMatrixLimits>
     39600                                        <TileMatrixLimits>
     39601                                                <TileMatrix>7</TileMatrix>
     39602                                                <MinTileRow>45</MinTileRow>
     39603                                                <MaxTileRow>45</MaxTileRow>
     39604                                                <MinTileCol>66</MinTileCol>
     39605                                                <MaxTileCol>66</MaxTileCol>
     39606                                        </TileMatrixLimits>
     39607                                        <TileMatrixLimits>
     39608                                                <TileMatrix>8</TileMatrix>
     39609                                                <MinTileRow>91</MinTileRow>
     39610                                                <MaxTileRow>91</MaxTileRow>
     39611                                                <MinTileCol>132</MinTileCol>
     39612                                                <MaxTileCol>132</MaxTileCol>
     39613                                        </TileMatrixLimits>
     39614                                        <TileMatrixLimits>
     39615                                                <TileMatrix>9</TileMatrix>
     39616                                                <MinTileRow>182</MinTileRow>
     39617                                                <MaxTileRow>182</MaxTileRow>
     39618                                                <MinTileCol>265</MinTileCol>
     39619                                                <MaxTileCol>265</MaxTileCol>
     39620                                        </TileMatrixLimits>
     39621                                </TileMatrixSetLimits>
     39622                        </TileMatrixSetLink>
     39623                </Layer>
     39624                <Layer>
     39625                        <ows:Title>Orthophotographies Geosud de MONT-SAINT-MICHEL 2014</ows:Title>
     39626                        <ows:Abstract>Orthophotographies Geosud de MONT-SAINT-MICHEL 2014</ows:Abstract>
     39627                        <ows:Keywords>
     39628                                <ows:Keyword>Photographies</ows:Keyword>
     39629                        </ows:Keywords>
     39630                        <ows:WGS84BoundingBox>
     39631                                <ows:LowerCorner>-1.5983 48.536</ows:LowerCorner>
     39632                                <ows:UpperCorner>-1.26986 48.7452</ows:UpperCorner>
     39633                        </ows:WGS84BoundingBox>
     39634                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONT-SAINT-MICHEL-2014-02-24-40653319</ows:Identifier>
     39635                        <Style isDefault="true">
     39636                                <ows:Title>Données Brutes</ows:Title>
     39637                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39638                                <ows:Keywords>
     39639                                        <ows:Keyword>Défaut</ows:Keyword>
     39640                                </ows:Keywords>
     39641                                <ows:Identifier>normal</ows:Identifier>
     39642                                <LegendURL format="image/jpeg" height="200"
     39643                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39644                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39645                        </Style>
     39646                        <Format>image/jpeg</Format>
     39647                        <TileMatrixSetLink>
     39648                                <TileMatrixSet>PM</TileMatrixSet>
     39649                                <TileMatrixSetLimits>
     39650                                        <TileMatrixLimits>
     39651                                                <TileMatrix>0</TileMatrix>
     39652                                                <MinTileRow>0</MinTileRow>
     39653                                                <MaxTileRow>0</MaxTileRow>
     39654                                                <MinTileCol>0</MinTileCol>
     39655                                                <MaxTileCol>0</MaxTileCol>
     39656                                        </TileMatrixLimits>
     39657                                        <TileMatrixLimits>
     39658                                                <TileMatrix>1</TileMatrix>
     39659                                                <MinTileRow>0</MinTileRow>
     39660                                                <MaxTileRow>0</MaxTileRow>
     39661                                                <MinTileCol>0</MinTileCol>
     39662                                                <MaxTileCol>0</MaxTileCol>
     39663                                        </TileMatrixLimits>
     39664                                        <TileMatrixLimits>
     39665                                                <TileMatrix>10</TileMatrix>
     39666                                                <MinTileRow>352</MinTileRow>
     39667                                                <MaxTileRow>353</MaxTileRow>
     39668                                                <MinTileCol>507</MinTileCol>
     39669                                                <MaxTileCol>508</MaxTileCol>
     39670                                        </TileMatrixLimits>
     39671                                        <TileMatrixLimits>
     39672                                                <TileMatrix>11</TileMatrix>
     39673                                                <MinTileRow>705</MinTileRow>
     39674                                                <MaxTileRow>707</MaxTileRow>
     39675                                                <MinTileCol>1014</MinTileCol>
     39676                                                <MaxTileCol>1016</MaxTileCol>
     39677                                        </TileMatrixLimits>
     39678                                        <TileMatrixLimits>
     39679                                                <TileMatrix>12</TileMatrix>
     39680                                                <MinTileRow>1411</MinTileRow>
     39681                                                <MaxTileRow>1414</MaxTileRow>
     39682                                                <MinTileCol>2029</MinTileCol>
     39683                                                <MaxTileCol>2033</MaxTileCol>
     39684                                        </TileMatrixLimits>
     39685                                        <TileMatrixLimits>
     39686                                                <TileMatrix>13</TileMatrix>
     39687                                                <MinTileRow>2822</MinTileRow>
     39688                                                <MaxTileRow>2829</MaxTileRow>
     39689                                                <MinTileCol>4059</MinTileCol>
     39690                                                <MaxTileCol>4066</MaxTileCol>
     39691                                        </TileMatrixLimits>
     39692                                        <TileMatrixLimits>
     39693                                                <TileMatrix>14</TileMatrix>
     39694                                                <MinTileRow>5644</MinTileRow>
     39695                                                <MaxTileRow>5658</MaxTileRow>
     39696                                                <MinTileCol>8119</MinTileCol>
     39697                                                <MaxTileCol>8133</MaxTileCol>
     39698                                        </TileMatrixLimits>
     39699                                        <TileMatrixLimits>
     39700                                                <TileMatrix>15</TileMatrix>
     39701                                                <MinTileRow>11289</MinTileRow>
     39702                                                <MaxTileRow>11316</MaxTileRow>
     39703                                                <MinTileCol>16239</MinTileCol>
     39704                                                <MaxTileCol>16267</MaxTileCol>
     39705                                        </TileMatrixLimits>
     39706                                        <TileMatrixLimits>
     39707                                                <TileMatrix>16</TileMatrix>
     39708                                                <MinTileRow>22578</MinTileRow>
     39709                                                <MaxTileRow>22633</MaxTileRow>
     39710                                                <MinTileCol>32478</MinTileCol>
     39711                                                <MaxTileCol>32535</MaxTileCol>
     39712                                        </TileMatrixLimits>
     39713                                        <TileMatrixLimits>
     39714                                                <TileMatrix>17</TileMatrix>
     39715                                                <MinTileRow>45156</MinTileRow>
     39716                                                <MaxTileRow>45266</MaxTileRow>
     39717                                                <MinTileCol>64957</MinTileCol>
     39718                                                <MaxTileCol>65071</MaxTileCol>
     39719                                        </TileMatrixLimits>
     39720                                        <TileMatrixLimits>
     39721                                                <TileMatrix>18</TileMatrix>
     39722                                                <MinTileRow>90312</MinTileRow>
     39723                                                <MaxTileRow>90532</MaxTileRow>
     39724                                                <MinTileCol>129914</MinTileCol>
     39725                                                <MaxTileCol>130143</MaxTileCol>
     39726                                        </TileMatrixLimits>
     39727                                        <TileMatrixLimits>
     39728                                                <TileMatrix>2</TileMatrix>
     39729                                                <MinTileRow>1</MinTileRow>
     39730                                                <MaxTileRow>1</MaxTileRow>
     39731                                                <MinTileCol>1</MinTileCol>
     39732                                                <MaxTileCol>1</MaxTileCol>
     39733                                        </TileMatrixLimits>
     39734                                        <TileMatrixLimits>
     39735                                                <TileMatrix>3</TileMatrix>
     39736                                                <MinTileRow>2</MinTileRow>
     39737                                                <MaxTileRow>2</MaxTileRow>
     39738                                                <MinTileCol>3</MinTileCol>
     39739                                                <MaxTileCol>3</MaxTileCol>
     39740                                        </TileMatrixLimits>
     39741                                        <TileMatrixLimits>
     39742                                                <TileMatrix>4</TileMatrix>
     39743                                                <MinTileRow>5</MinTileRow>
     39744                                                <MaxTileRow>5</MaxTileRow>
     39745                                                <MinTileCol>7</MinTileCol>
     39746                                                <MaxTileCol>7</MaxTileCol>
     39747                                        </TileMatrixLimits>
     39748                                        <TileMatrixLimits>
     39749                                                <TileMatrix>5</TileMatrix>
     39750                                                <MinTileRow>11</MinTileRow>
     39751                                                <MaxTileRow>11</MaxTileRow>
     39752                                                <MinTileCol>15</MinTileCol>
     39753                                                <MaxTileCol>15</MaxTileCol>
     39754                                        </TileMatrixLimits>
     39755                                        <TileMatrixLimits>
     39756                                                <TileMatrix>6</TileMatrix>
     39757                                                <MinTileRow>22</MinTileRow>
     39758                                                <MaxTileRow>22</MaxTileRow>
     39759                                                <MinTileCol>31</MinTileCol>
     39760                                                <MaxTileCol>31</MaxTileCol>
     39761                                        </TileMatrixLimits>
     39762                                        <TileMatrixLimits>
     39763                                                <TileMatrix>7</TileMatrix>
     39764                                                <MinTileRow>44</MinTileRow>
     39765                                                <MaxTileRow>44</MaxTileRow>
     39766                                                <MinTileCol>63</MinTileCol>
     39767                                                <MaxTileCol>63</MaxTileCol>
     39768                                        </TileMatrixLimits>
     39769                                        <TileMatrixLimits>
     39770                                                <TileMatrix>8</TileMatrix>
     39771                                                <MinTileRow>88</MinTileRow>
     39772                                                <MaxTileRow>88</MaxTileRow>
     39773                                                <MinTileCol>126</MinTileCol>
     39774                                                <MaxTileCol>127</MaxTileCol>
     39775                                        </TileMatrixLimits>
     39776                                        <TileMatrixLimits>
     39777                                                <TileMatrix>9</TileMatrix>
     39778                                                <MinTileRow>176</MinTileRow>
     39779                                                <MaxTileRow>176</MaxTileRow>
     39780                                                <MinTileCol>253</MinTileCol>
     39781                                                <MaxTileCol>254</MaxTileCol>
     39782                                        </TileMatrixLimits>
     39783                                </TileMatrixSetLimits>
     39784                        </TileMatrixSetLink>
     39785                </Layer>
     39786                <Layer>
     39787                        <ows:Title>Orthophotographies Geosud de MONTPELLIER</ows:Title>
     39788                        <ows:Abstract>Orthophotographies satellites de MONTPELLIER issues du projet Geosud.</ows:Abstract>
     39789                        <ows:Keywords>
     39790                                <ows:Keyword>Photographies</ows:Keyword>
     39791                        </ows:Keywords>
     39792                        <ows:WGS84BoundingBox>
     39793                                <ows:LowerCorner>3.75508 43.5061</ows:LowerCorner>
     39794                                <ows:UpperCorner>3.99125 43.7542</ows:UpperCorner>
     39795                        </ows:WGS84BoundingBox>
     39796                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MONTPELLIER-2013-04-15-39139580</ows:Identifier>
     39797                        <Style isDefault="true">
     39798                                <ows:Title>Données Brutes</ows:Title>
     39799                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39800                                <ows:Keywords>
     39801                                        <ows:Keyword>Défaut</ows:Keyword>
     39802                                </ows:Keywords>
     39803                                <ows:Identifier>normal</ows:Identifier>
     39804                                <LegendURL format="image/jpeg" height="200"
     39805                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39806                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39807                        </Style>
     39808                        <Format>image/jpeg</Format>
     39809                        <TileMatrixSetLink>
     39810                                <TileMatrixSet>PM</TileMatrixSet>
     39811                                <TileMatrixSetLimits>
     39812                                        <TileMatrixLimits>
     39813                                                <TileMatrix>0</TileMatrix>
     39814                                                <MinTileRow>0</MinTileRow>
     39815                                                <MaxTileRow>0</MaxTileRow>
     39816                                                <MinTileCol>0</MinTileCol>
     39817                                                <MaxTileCol>0</MaxTileCol>
     39818                                        </TileMatrixLimits>
     39819                                        <TileMatrixLimits>
     39820                                                <TileMatrix>1</TileMatrix>
     39821                                                <MinTileRow>0</MinTileRow>
     39822                                                <MaxTileRow>0</MaxTileRow>
     39823                                                <MinTileCol>1</MinTileCol>
     39824                                                <MaxTileCol>1</MaxTileCol>
     39825                                        </TileMatrixLimits>
     39826                                        <TileMatrixLimits>
     39827                                                <TileMatrix>10</TileMatrix>
     39828                                                <MinTileRow>373</MinTileRow>
     39829                                                <MaxTileRow>374</MaxTileRow>
     39830                                                <MinTileCol>522</MinTileCol>
     39831                                                <MaxTileCol>523</MaxTileCol>
     39832                                        </TileMatrixLimits>
     39833                                        <TileMatrixLimits>
     39834                                                <TileMatrix>11</TileMatrix>
     39835                                                <MinTileRow>746</MinTileRow>
     39836                                                <MaxTileRow>748</MaxTileRow>
     39837                                                <MinTileCol>1045</MinTileCol>
     39838                                                <MaxTileCol>1046</MaxTileCol>
     39839                                        </TileMatrixLimits>
     39840                                        <TileMatrixLimits>
     39841                                                <TileMatrix>12</TileMatrix>
     39842                                                <MinTileRow>1493</MinTileRow>
     39843                                                <MaxTileRow>1497</MaxTileRow>
     39844                                                <MinTileCol>2090</MinTileCol>
     39845                                                <MaxTileCol>2093</MaxTileCol>
     39846                                        </TileMatrixLimits>
     39847                                        <TileMatrixLimits>
     39848                                                <TileMatrix>13</TileMatrix>
     39849                                                <MinTileRow>2986</MinTileRow>
     39850                                                <MaxTileRow>2994</MaxTileRow>
     39851                                                <MinTileCol>4181</MinTileCol>
     39852                                                <MaxTileCol>4186</MaxTileCol>
     39853                                        </TileMatrixLimits>
     39854                                        <TileMatrixLimits>
     39855                                                <TileMatrix>14</TileMatrix>
     39856                                                <MinTileRow>5972</MinTileRow>
     39857                                                <MaxTileRow>5989</MaxTileRow>
     39858                                                <MinTileCol>8362</MinTileCol>
     39859                                                <MaxTileCol>8373</MaxTileCol>
     39860                                        </TileMatrixLimits>
     39861                                        <TileMatrixLimits>
     39862                                                <TileMatrix>15</TileMatrix>
     39863                                                <MinTileRow>11945</MinTileRow>
     39864                                                <MaxTileRow>11978</MaxTileRow>
     39865                                                <MinTileCol>16724</MinTileCol>
     39866                                                <MaxTileCol>16747</MaxTileCol>
     39867                                        </TileMatrixLimits>
     39868                                        <TileMatrixLimits>
     39869                                                <TileMatrix>16</TileMatrix>
     39870                                                <MinTileRow>23890</MinTileRow>
     39871                                                <MaxTileRow>23956</MaxTileRow>
     39872                                                <MinTileCol>33449</MinTileCol>
     39873                                                <MaxTileCol>33494</MaxTileCol>
     39874                                        </TileMatrixLimits>
     39875                                        <TileMatrixLimits>
     39876                                                <TileMatrix>17</TileMatrix>
     39877                                                <MinTileRow>47781</MinTileRow>
     39878                                                <MaxTileRow>47913</MaxTileRow>
     39879                                                <MinTileCol>66898</MinTileCol>
     39880                                                <MaxTileCol>66989</MaxTileCol>
     39881                                        </TileMatrixLimits>
     39882                                        <TileMatrixLimits>
     39883                                                <TileMatrix>18</TileMatrix>
     39884                                                <MinTileRow>95563</MinTileRow>
     39885                                                <MaxTileRow>95826</MaxTileRow>
     39886                                                <MinTileCol>133797</MinTileCol>
     39887                                                <MaxTileCol>133978</MaxTileCol>
     39888                                        </TileMatrixLimits>
     39889                                        <TileMatrixLimits>
     39890                                                <TileMatrix>2</TileMatrix>
     39891                                                <MinTileRow>1</MinTileRow>
     39892                                                <MaxTileRow>1</MaxTileRow>
     39893                                                <MinTileCol>2</MinTileCol>
     39894                                                <MaxTileCol>2</MaxTileCol>
     39895                                        </TileMatrixLimits>
     39896                                        <TileMatrixLimits>
     39897                                                <TileMatrix>3</TileMatrix>
     39898                                                <MinTileRow>2</MinTileRow>
     39899                                                <MaxTileRow>2</MaxTileRow>
     39900                                                <MinTileCol>4</MinTileCol>
     39901                                                <MaxTileCol>4</MaxTileCol>
     39902                                        </TileMatrixLimits>
     39903                                        <TileMatrixLimits>
     39904                                                <TileMatrix>4</TileMatrix>
     39905                                                <MinTileRow>5</MinTileRow>
     39906                                                <MaxTileRow>5</MaxTileRow>
     39907                                                <MinTileCol>8</MinTileCol>
     39908                                                <MaxTileCol>8</MaxTileCol>
     39909                                        </TileMatrixLimits>
     39910                                        <TileMatrixLimits>
     39911                                                <TileMatrix>5</TileMatrix>
     39912                                                <MinTileRow>11</MinTileRow>
     39913                                                <MaxTileRow>11</MaxTileRow>
     39914                                                <MinTileCol>16</MinTileCol>
     39915                                                <MaxTileCol>16</MaxTileCol>
     39916                                        </TileMatrixLimits>
     39917                                        <TileMatrixLimits>
     39918                                                <TileMatrix>6</TileMatrix>
     39919                                                <MinTileRow>23</MinTileRow>
     39920                                                <MaxTileRow>23</MaxTileRow>
     39921                                                <MinTileCol>32</MinTileCol>
     39922                                                <MaxTileCol>32</MaxTileCol>
     39923                                        </TileMatrixLimits>
     39924                                        <TileMatrixLimits>
     39925                                                <TileMatrix>7</TileMatrix>
     39926                                                <MinTileRow>46</MinTileRow>
     39927                                                <MaxTileRow>46</MaxTileRow>
     39928                                                <MinTileCol>65</MinTileCol>
     39929                                                <MaxTileCol>65</MaxTileCol>
     39930                                        </TileMatrixLimits>
     39931                                        <TileMatrixLimits>
     39932                                                <TileMatrix>8</TileMatrix>
     39933                                                <MinTileRow>93</MinTileRow>
     39934                                                <MaxTileRow>93</MaxTileRow>
     39935                                                <MinTileCol>130</MinTileCol>
     39936                                                <MaxTileCol>130</MaxTileCol>
     39937                                        </TileMatrixLimits>
     39938                                        <TileMatrixLimits>
     39939                                                <TileMatrix>9</TileMatrix>
     39940                                                <MinTileRow>186</MinTileRow>
     39941                                                <MaxTileRow>187</MaxTileRow>
     39942                                                <MinTileCol>261</MinTileCol>
     39943                                                <MaxTileCol>261</MaxTileCol>
     39944                                        </TileMatrixLimits>
     39945                                </TileMatrixSetLimits>
     39946                        </TileMatrixSetLink>
     39947                </Layer>
     39948                <Layer>
     39949                        <ows:Title>Orthophotographies Geosud de MULHOUSE-2014</ows:Title>
     39950                        <ows:Abstract>Orthophotographies satellites de MULHOUSE-2014 issues du projet Geosud.</ows:Abstract>
     39951                        <ows:Keywords>
     39952                                <ows:Keyword>Photographies</ows:Keyword>
     39953                        </ows:Keywords>
     39954                        <ows:WGS84BoundingBox>
     39955                                <ows:LowerCorner>7.17337 47.6656</ows:LowerCorner>
     39956                                <ows:UpperCorner>7.49837 47.9016</ows:UpperCorner>
     39957                        </ows:WGS84BoundingBox>
     39958                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_MULHOUSE-2014-02-17-38001324</ows:Identifier>
     39959                        <Style isDefault="true">
     39960                                <ows:Title>Données Brutes</ows:Title>
     39961                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     39962                                <ows:Keywords>
     39963                                        <ows:Keyword>Défaut</ows:Keyword>
     39964                                </ows:Keywords>
     39965                                <ows:Identifier>normal</ows:Identifier>
     39966                                <LegendURL format="image/jpeg" height="200"
     39967                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     39968                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     39969                        </Style>
     39970                        <Format>image/jpeg</Format>
     39971                        <TileMatrixSetLink>
     39972                                <TileMatrixSet>PM</TileMatrixSet>
     39973                                <TileMatrixSetLimits>
     39974                                        <TileMatrixLimits>
     39975                                                <TileMatrix>0</TileMatrix>
     39976                                                <MinTileRow>0</MinTileRow>
     39977                                                <MaxTileRow>0</MaxTileRow>
     39978                                                <MinTileCol>0</MinTileCol>
     39979                                                <MaxTileCol>0</MaxTileCol>
     39980                                        </TileMatrixLimits>
     39981                                        <TileMatrixLimits>
     39982                                                <TileMatrix>1</TileMatrix>
     39983                                                <MinTileRow>0</MinTileRow>
     39984                                                <MaxTileRow>0</MaxTileRow>
     39985                                                <MinTileCol>1</MinTileCol>
     39986                                                <MaxTileCol>1</MaxTileCol>
     39987                                        </TileMatrixLimits>
     39988                                        <TileMatrixLimits>
     39989                                                <TileMatrix>10</TileMatrix>
     39990                                                <MinTileRow>356</MinTileRow>
     39991                                                <MaxTileRow>357</MaxTileRow>
     39992                                                <MinTileCol>532</MinTileCol>
     39993                                                <MaxTileCol>533</MaxTileCol>
     39994                                        </TileMatrixLimits>
     39995                                        <TileMatrixLimits>
     39996                                                <TileMatrix>11</TileMatrix>
     39997                                                <MinTileRow>712</MinTileRow>
     39998                                                <MaxTileRow>714</MaxTileRow>
     39999                                                <MinTileCol>1064</MinTileCol>
     40000                                                <MaxTileCol>1066</MaxTileCol>
     40001                                        </TileMatrixLimits>
     40002                                        <TileMatrixLimits>
     40003                                                <TileMatrix>12</TileMatrix>
     40004                                                <MinTileRow>1425</MinTileRow>
     40005                                                <MaxTileRow>1429</MaxTileRow>
     40006                                                <MinTileCol>2129</MinTileCol>
     40007                                                <MaxTileCol>2133</MaxTileCol>
     40008                                        </TileMatrixLimits>
     40009                                        <TileMatrixLimits>
     40010                                                <TileMatrix>13</TileMatrix>
     40011                                                <MinTileRow>2851</MinTileRow>
     40012                                                <MaxTileRow>2858</MaxTileRow>
     40013                                                <MinTileCol>4259</MinTileCol>
     40014                                                <MaxTileCol>4266</MaxTileCol>
     40015                                        </TileMatrixLimits>
     40016                                        <TileMatrixLimits>
     40017                                                <TileMatrix>14</TileMatrix>
     40018                                                <MinTileRow>5702</MinTileRow>
     40019                                                <MaxTileRow>5717</MaxTileRow>
     40020                                                <MinTileCol>8518</MinTileCol>
     40021                                                <MaxTileCol>8532</MaxTileCol>
     40022                                        </TileMatrixLimits>
     40023                                        <TileMatrixLimits>
     40024                                                <TileMatrix>15</TileMatrix>
     40025                                                <MinTileRow>11404</MinTileRow>
     40026                                                <MaxTileRow>11434</MaxTileRow>
     40027                                                <MinTileCol>17037</MinTileCol>
     40028                                                <MaxTileCol>17065</MaxTileCol>
     40029                                        </TileMatrixLimits>
     40030                                        <TileMatrixLimits>
     40031                                                <TileMatrix>16</TileMatrix>
     40032                                                <MinTileRow>22809</MinTileRow>
     40033                                                <MaxTileRow>22869</MaxTileRow>
     40034                                                <MinTileCol>34075</MinTileCol>
     40035                                                <MaxTileCol>34131</MaxTileCol>
     40036                                        </TileMatrixLimits>
     40037                                        <TileMatrixLimits>
     40038                                                <TileMatrix>17</TileMatrix>
     40039                                                <MinTileRow>45619</MinTileRow>
     40040                                                <MaxTileRow>45739</MaxTileRow>
     40041                                                <MinTileCol>68151</MinTileCol>
     40042                                                <MaxTileCol>68263</MaxTileCol>
     40043                                        </TileMatrixLimits>
     40044                                        <TileMatrixLimits>
     40045                                                <TileMatrix>18</TileMatrix>
     40046                                                <MinTileRow>91238</MinTileRow>
     40047                                                <MaxTileRow>91478</MaxTileRow>
     40048                                                <MinTileCol>136303</MinTileCol>
     40049                                                <MaxTileCol>136527</MaxTileCol>
     40050                                        </TileMatrixLimits>
     40051                                        <TileMatrixLimits>
     40052                                                <TileMatrix>2</TileMatrix>
     40053                                                <MinTileRow>1</MinTileRow>
     40054                                                <MaxTileRow>1</MaxTileRow>
     40055                                                <MinTileCol>2</MinTileCol>
     40056                                                <MaxTileCol>2</MaxTileCol>
     40057                                        </TileMatrixLimits>
     40058                                        <TileMatrixLimits>
     40059                                                <TileMatrix>3</TileMatrix>
     40060                                                <MinTileRow>2</MinTileRow>
     40061                                                <MaxTileRow>2</MaxTileRow>
     40062                                                <MinTileCol>4</MinTileCol>
     40063                                                <MaxTileCol>4</MaxTileCol>
     40064                                        </TileMatrixLimits>
     40065                                        <TileMatrixLimits>
     40066                                                <TileMatrix>4</TileMatrix>
     40067                                                <MinTileRow>5</MinTileRow>
     40068                                                <MaxTileRow>5</MaxTileRow>
     40069                                                <MinTileCol>8</MinTileCol>
     40070                                                <MaxTileCol>8</MaxTileCol>
     40071                                        </TileMatrixLimits>
     40072                                        <TileMatrixLimits>
     40073                                                <TileMatrix>5</TileMatrix>
     40074                                                <MinTileRow>11</MinTileRow>
     40075                                                <MaxTileRow>11</MaxTileRow>
     40076                                                <MinTileCol>16</MinTileCol>
     40077                                                <MaxTileCol>16</MaxTileCol>
     40078                                        </TileMatrixLimits>
     40079                                        <TileMatrixLimits>
     40080                                                <TileMatrix>6</TileMatrix>
     40081                                                <MinTileRow>22</MinTileRow>
     40082                                                <MaxTileRow>22</MaxTileRow>
     40083                                                <MinTileCol>33</MinTileCol>
     40084                                                <MaxTileCol>33</MaxTileCol>
     40085                                        </TileMatrixLimits>
     40086                                        <TileMatrixLimits>
     40087                                                <TileMatrix>7</TileMatrix>
     40088                                                <MinTileRow>44</MinTileRow>
     40089                                                <MaxTileRow>44</MaxTileRow>
     40090                                                <MinTileCol>66</MinTileCol>
     40091                                                <MaxTileCol>66</MaxTileCol>
     40092                                        </TileMatrixLimits>
     40093                                        <TileMatrixLimits>
     40094                                                <TileMatrix>8</TileMatrix>
     40095                                                <MinTileRow>89</MinTileRow>
     40096                                                <MaxTileRow>89</MaxTileRow>
     40097                                                <MinTileCol>133</MinTileCol>
     40098                                                <MaxTileCol>133</MaxTileCol>
     40099                                        </TileMatrixLimits>
     40100                                        <TileMatrixLimits>
     40101                                                <TileMatrix>9</TileMatrix>
     40102                                                <MinTileRow>178</MinTileRow>
     40103                                                <MaxTileRow>178</MaxTileRow>
     40104                                                <MinTileCol>266</MinTileCol>
     40105                                                <MaxTileCol>266</MaxTileCol>
     40106                                        </TileMatrixLimits>
     40107                                </TileMatrixSetLimits>
     40108                        </TileMatrixSetLink>
     40109                </Layer>
     40110                <Layer>
     40111                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40112                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40113                        <ows:Keywords>
     40114                                <ows:Keyword>Photographies</ows:Keyword>
     40115                        </ows:Keywords>
     40116                        <ows:WGS84BoundingBox>
     40117                                <ows:LowerCorner>2.88956 42.9713</ows:LowerCorner>
     40118                                <ows:UpperCorner>3.14726 43.0882</ows:UpperCorner>
     40119                        </ows:WGS84BoundingBox>
     40120                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-04-22-38922694</ows:Identifier>
     40121                        <Style isDefault="true">
     40122                                <ows:Title>Données Brutes</ows:Title>
     40123                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40124                                <ows:Keywords>
     40125                                        <ows:Keyword>Défaut</ows:Keyword>
     40126                                </ows:Keywords>
     40127                                <ows:Identifier>normal</ows:Identifier>
     40128                                <LegendURL format="image/jpeg" height="200"
     40129                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40130                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40131                        </Style>
     40132                        <Format>image/jpeg</Format>
     40133                        <TileMatrixSetLink>
     40134                                <TileMatrixSet>PM</TileMatrixSet>
     40135                                <TileMatrixSetLimits>
     40136                                        <TileMatrixLimits>
     40137                                                <TileMatrix>0</TileMatrix>
     40138                                                <MinTileRow>0</MinTileRow>
     40139                                                <MaxTileRow>0</MaxTileRow>
     40140                                                <MinTileCol>0</MinTileCol>
     40141                                                <MaxTileCol>0</MaxTileCol>
     40142                                        </TileMatrixLimits>
     40143                                        <TileMatrixLimits>
     40144                                                <TileMatrix>1</TileMatrix>
     40145                                                <MinTileRow>0</MinTileRow>
     40146                                                <MaxTileRow>0</MaxTileRow>
     40147                                                <MinTileCol>1</MinTileCol>
     40148                                                <MaxTileCol>1</MaxTileCol>
     40149                                        </TileMatrixLimits>
     40150                                        <TileMatrixLimits>
     40151                                                <TileMatrix>10</TileMatrix>
     40152                                                <MinTileRow>375</MinTileRow>
     40153                                                <MaxTileRow>376</MaxTileRow>
     40154                                                <MinTileCol>520</MinTileCol>
     40155                                                <MaxTileCol>520</MaxTileCol>
     40156                                        </TileMatrixLimits>
     40157                                        <TileMatrixLimits>
     40158                                                <TileMatrix>11</TileMatrix>
     40159                                                <MinTileRow>751</MinTileRow>
     40160                                                <MaxTileRow>752</MaxTileRow>
     40161                                                <MinTileCol>1040</MinTileCol>
     40162                                                <MaxTileCol>1041</MaxTileCol>
     40163                                        </TileMatrixLimits>
     40164                                        <TileMatrixLimits>
     40165                                                <TileMatrix>12</TileMatrix>
     40166                                                <MinTileRow>1503</MinTileRow>
     40167                                                <MaxTileRow>1505</MaxTileRow>
     40168                                                <MinTileCol>2080</MinTileCol>
     40169                                                <MaxTileCol>2083</MaxTileCol>
     40170                                        </TileMatrixLimits>
     40171                                        <TileMatrixLimits>
     40172                                                <TileMatrix>13</TileMatrix>
     40173                                                <MinTileRow>3007</MinTileRow>
     40174                                                <MaxTileRow>3011</MaxTileRow>
     40175                                                <MinTileCol>4161</MinTileCol>
     40176                                                <MaxTileCol>4167</MaxTileCol>
     40177                                        </TileMatrixLimits>
     40178                                        <TileMatrixLimits>
     40179                                                <TileMatrix>14</TileMatrix>
     40180                                                <MinTileRow>6014</MinTileRow>
     40181                                                <MaxTileRow>6022</MaxTileRow>
     40182                                                <MinTileCol>8323</MinTileCol>
     40183                                                <MaxTileCol>8335</MaxTileCol>
     40184                                        </TileMatrixLimits>
     40185                                        <TileMatrixLimits>
     40186                                                <TileMatrix>15</TileMatrix>
     40187                                                <MinTileRow>12029</MinTileRow>
     40188                                                <MaxTileRow>12044</MaxTileRow>
     40189                                                <MinTileCol>16646</MinTileCol>
     40190                                                <MaxTileCol>16670</MaxTileCol>
     40191                                        </TileMatrixLimits>
     40192                                        <TileMatrixLimits>
     40193                                                <TileMatrix>16</TileMatrix>
     40194                                                <MinTileRow>24059</MinTileRow>
     40195                                                <MaxTileRow>24088</MaxTileRow>
     40196                                                <MinTileCol>33293</MinTileCol>
     40197                                                <MaxTileCol>33340</MaxTileCol>
     40198                                        </TileMatrixLimits>
     40199                                        <TileMatrixLimits>
     40200                                                <TileMatrix>17</TileMatrix>
     40201                                                <MinTileRow>48118</MinTileRow>
     40202                                                <MaxTileRow>48176</MaxTileRow>
     40203                                                <MinTileCol>66587</MinTileCol>
     40204                                                <MaxTileCol>66681</MaxTileCol>
     40205                                        </TileMatrixLimits>
     40206                                        <TileMatrixLimits>
     40207                                                <TileMatrix>18</TileMatrix>
     40208                                                <MinTileRow>96236</MinTileRow>
     40209                                                <MaxTileRow>96353</MaxTileRow>
     40210                                                <MinTileCol>133175</MinTileCol>
     40211                                                <MaxTileCol>133363</MaxTileCol>
     40212                                        </TileMatrixLimits>
     40213                                        <TileMatrixLimits>
     40214                                                <TileMatrix>2</TileMatrix>
     40215                                                <MinTileRow>1</MinTileRow>
     40216                                                <MaxTileRow>1</MaxTileRow>
     40217                                                <MinTileCol>2</MinTileCol>
     40218                                                <MaxTileCol>2</MaxTileCol>
     40219                                        </TileMatrixLimits>
     40220                                        <TileMatrixLimits>
     40221                                                <TileMatrix>3</TileMatrix>
     40222                                                <MinTileRow>2</MinTileRow>
     40223                                                <MaxTileRow>2</MaxTileRow>
     40224                                                <MinTileCol>4</MinTileCol>
     40225                                                <MaxTileCol>4</MaxTileCol>
     40226                                        </TileMatrixLimits>
     40227                                        <TileMatrixLimits>
     40228                                                <TileMatrix>4</TileMatrix>
     40229                                                <MinTileRow>5</MinTileRow>
     40230                                                <MaxTileRow>5</MaxTileRow>
     40231                                                <MinTileCol>8</MinTileCol>
     40232                                                <MaxTileCol>8</MaxTileCol>
     40233                                        </TileMatrixLimits>
     40234                                        <TileMatrixLimits>
     40235                                                <TileMatrix>5</TileMatrix>
     40236                                                <MinTileRow>11</MinTileRow>
     40237                                                <MaxTileRow>11</MaxTileRow>
     40238                                                <MinTileCol>16</MinTileCol>
     40239                                                <MaxTileCol>16</MaxTileCol>
     40240                                        </TileMatrixLimits>
     40241                                        <TileMatrixLimits>
     40242                                                <TileMatrix>6</TileMatrix>
     40243                                                <MinTileRow>23</MinTileRow>
     40244                                                <MaxTileRow>23</MaxTileRow>
     40245                                                <MinTileCol>32</MinTileCol>
     40246                                                <MaxTileCol>32</MaxTileCol>
     40247                                        </TileMatrixLimits>
     40248                                        <TileMatrixLimits>
     40249                                                <TileMatrix>7</TileMatrix>
     40250                                                <MinTileRow>46</MinTileRow>
     40251                                                <MaxTileRow>47</MaxTileRow>
     40252                                                <MinTileCol>65</MinTileCol>
     40253                                                <MaxTileCol>65</MaxTileCol>
     40254                                        </TileMatrixLimits>
     40255                                        <TileMatrixLimits>
     40256                                                <TileMatrix>8</TileMatrix>
     40257                                                <MinTileRow>93</MinTileRow>
     40258                                                <MaxTileRow>94</MaxTileRow>
     40259                                                <MinTileCol>130</MinTileCol>
     40260                                                <MaxTileCol>130</MaxTileCol>
     40261                                        </TileMatrixLimits>
     40262                                        <TileMatrixLimits>
     40263                                                <TileMatrix>9</TileMatrix>
     40264                                                <MinTileRow>187</MinTileRow>
     40265                                                <MaxTileRow>188</MaxTileRow>
     40266                                                <MinTileCol>260</MinTileCol>
     40267                                                <MaxTileCol>260</MaxTileCol>
     40268                                        </TileMatrixLimits>
     40269                                </TileMatrixSetLimits>
     40270                        </TileMatrixSetLink>
     40271                </Layer>
     40272                <Layer>
     40273                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40274                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40275                        <ows:Keywords>
     40276                                <ows:Keyword>Photographies</ows:Keyword>
     40277                        </ows:Keywords>
     40278                        <ows:WGS84BoundingBox>
     40279                                <ows:LowerCorner>2.88956 42.9713</ows:LowerCorner>
     40280                                <ows:UpperCorner>3.14726 43.0882</ows:UpperCorner>
     40281                        </ows:WGS84BoundingBox>
     40282                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-04-22-38943819</ows:Identifier>
     40283                        <Style isDefault="true">
     40284                                <ows:Title>Données Brutes</ows:Title>
     40285                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40286                                <ows:Keywords>
     40287                                        <ows:Keyword>Défaut</ows:Keyword>
     40288                                </ows:Keywords>
     40289                                <ows:Identifier>normal</ows:Identifier>
     40290                                <LegendURL format="image/jpeg" height="200"
     40291                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40292                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40293                        </Style>
     40294                        <Format>image/jpeg</Format>
     40295                        <TileMatrixSetLink>
     40296                                <TileMatrixSet>PM</TileMatrixSet>
     40297                                <TileMatrixSetLimits>
     40298                                        <TileMatrixLimits>
     40299                                                <TileMatrix>0</TileMatrix>
     40300                                                <MinTileRow>0</MinTileRow>
     40301                                                <MaxTileRow>0</MaxTileRow>
     40302                                                <MinTileCol>0</MinTileCol>
     40303                                                <MaxTileCol>0</MaxTileCol>
     40304                                        </TileMatrixLimits>
     40305                                        <TileMatrixLimits>
     40306                                                <TileMatrix>1</TileMatrix>
     40307                                                <MinTileRow>0</MinTileRow>
     40308                                                <MaxTileRow>0</MaxTileRow>
     40309                                                <MinTileCol>1</MinTileCol>
     40310                                                <MaxTileCol>1</MaxTileCol>
     40311                                        </TileMatrixLimits>
     40312                                        <TileMatrixLimits>
     40313                                                <TileMatrix>10</TileMatrix>
     40314                                                <MinTileRow>375</MinTileRow>
     40315                                                <MaxTileRow>376</MaxTileRow>
     40316                                                <MinTileCol>520</MinTileCol>
     40317                                                <MaxTileCol>520</MaxTileCol>
     40318                                        </TileMatrixLimits>
     40319                                        <TileMatrixLimits>
     40320                                                <TileMatrix>11</TileMatrix>
     40321                                                <MinTileRow>751</MinTileRow>
     40322                                                <MaxTileRow>752</MaxTileRow>
     40323                                                <MinTileCol>1040</MinTileCol>
     40324                                                <MaxTileCol>1041</MaxTileCol>
     40325                                        </TileMatrixLimits>
     40326                                        <TileMatrixLimits>
     40327                                                <TileMatrix>12</TileMatrix>
     40328                                                <MinTileRow>1503</MinTileRow>
     40329                                                <MaxTileRow>1505</MaxTileRow>
     40330                                                <MinTileCol>2080</MinTileCol>
     40331                                                <MaxTileCol>2083</MaxTileCol>
     40332                                        </TileMatrixLimits>
     40333                                        <TileMatrixLimits>
     40334                                                <TileMatrix>13</TileMatrix>
     40335                                                <MinTileRow>3007</MinTileRow>
     40336                                                <MaxTileRow>3011</MaxTileRow>
     40337                                                <MinTileCol>4161</MinTileCol>
     40338                                                <MaxTileCol>4167</MaxTileCol>
     40339                                        </TileMatrixLimits>
     40340                                        <TileMatrixLimits>
     40341                                                <TileMatrix>14</TileMatrix>
     40342                                                <MinTileRow>6014</MinTileRow>
     40343                                                <MaxTileRow>6022</MaxTileRow>
     40344                                                <MinTileCol>8323</MinTileCol>
     40345                                                <MaxTileCol>8335</MaxTileCol>
     40346                                        </TileMatrixLimits>
     40347                                        <TileMatrixLimits>
     40348                                                <TileMatrix>15</TileMatrix>
     40349                                                <MinTileRow>12029</MinTileRow>
     40350                                                <MaxTileRow>12044</MaxTileRow>
     40351                                                <MinTileCol>16646</MinTileCol>
     40352                                                <MaxTileCol>16670</MaxTileCol>
     40353                                        </TileMatrixLimits>
     40354                                        <TileMatrixLimits>
     40355                                                <TileMatrix>16</TileMatrix>
     40356                                                <MinTileRow>24059</MinTileRow>
     40357                                                <MaxTileRow>24088</MaxTileRow>
     40358                                                <MinTileCol>33293</MinTileCol>
     40359                                                <MaxTileCol>33340</MaxTileCol>
     40360                                        </TileMatrixLimits>
     40361                                        <TileMatrixLimits>
     40362                                                <TileMatrix>17</TileMatrix>
     40363                                                <MinTileRow>48118</MinTileRow>
     40364                                                <MaxTileRow>48176</MaxTileRow>
     40365                                                <MinTileCol>66587</MinTileCol>
     40366                                                <MaxTileCol>66681</MaxTileCol>
     40367                                        </TileMatrixLimits>
     40368                                        <TileMatrixLimits>
     40369                                                <TileMatrix>18</TileMatrix>
     40370                                                <MinTileRow>96236</MinTileRow>
     40371                                                <MaxTileRow>96353</MaxTileRow>
     40372                                                <MinTileCol>133175</MinTileCol>
     40373                                                <MaxTileCol>133363</MaxTileCol>
     40374                                        </TileMatrixLimits>
     40375                                        <TileMatrixLimits>
     40376                                                <TileMatrix>2</TileMatrix>
     40377                                                <MinTileRow>1</MinTileRow>
     40378                                                <MaxTileRow>1</MaxTileRow>
     40379                                                <MinTileCol>2</MinTileCol>
     40380                                                <MaxTileCol>2</MaxTileCol>
     40381                                        </TileMatrixLimits>
     40382                                        <TileMatrixLimits>
     40383                                                <TileMatrix>3</TileMatrix>
     40384                                                <MinTileRow>2</MinTileRow>
     40385                                                <MaxTileRow>2</MaxTileRow>
     40386                                                <MinTileCol>4</MinTileCol>
     40387                                                <MaxTileCol>4</MaxTileCol>
     40388                                        </TileMatrixLimits>
     40389                                        <TileMatrixLimits>
     40390                                                <TileMatrix>4</TileMatrix>
     40391                                                <MinTileRow>5</MinTileRow>
     40392                                                <MaxTileRow>5</MaxTileRow>
     40393                                                <MinTileCol>8</MinTileCol>
     40394                                                <MaxTileCol>8</MaxTileCol>
     40395                                        </TileMatrixLimits>
     40396                                        <TileMatrixLimits>
     40397                                                <TileMatrix>5</TileMatrix>
     40398                                                <MinTileRow>11</MinTileRow>
     40399                                                <MaxTileRow>11</MaxTileRow>
     40400                                                <MinTileCol>16</MinTileCol>
     40401                                                <MaxTileCol>16</MaxTileCol>
     40402                                        </TileMatrixLimits>
     40403                                        <TileMatrixLimits>
     40404                                                <TileMatrix>6</TileMatrix>
     40405                                                <MinTileRow>23</MinTileRow>
     40406                                                <MaxTileRow>23</MaxTileRow>
     40407                                                <MinTileCol>32</MinTileCol>
     40408                                                <MaxTileCol>32</MaxTileCol>
     40409                                        </TileMatrixLimits>
     40410                                        <TileMatrixLimits>
     40411                                                <TileMatrix>7</TileMatrix>
     40412                                                <MinTileRow>46</MinTileRow>
     40413                                                <MaxTileRow>47</MaxTileRow>
     40414                                                <MinTileCol>65</MinTileCol>
     40415                                                <MaxTileCol>65</MaxTileCol>
     40416                                        </TileMatrixLimits>
     40417                                        <TileMatrixLimits>
     40418                                                <TileMatrix>8</TileMatrix>
     40419                                                <MinTileRow>93</MinTileRow>
     40420                                                <MaxTileRow>94</MaxTileRow>
     40421                                                <MinTileCol>130</MinTileCol>
     40422                                                <MaxTileCol>130</MaxTileCol>
     40423                                        </TileMatrixLimits>
     40424                                        <TileMatrixLimits>
     40425                                                <TileMatrix>9</TileMatrix>
     40426                                                <MinTileRow>187</MinTileRow>
     40427                                                <MaxTileRow>188</MaxTileRow>
     40428                                                <MinTileCol>260</MinTileCol>
     40429                                                <MaxTileCol>260</MaxTileCol>
     40430                                        </TileMatrixLimits>
     40431                                </TileMatrixSetLimits>
     40432                        </TileMatrixSetLink>
     40433                </Layer>
     40434                <Layer>
     40435                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40436                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40437                        <ows:Keywords>
     40438                                <ows:Keyword>Photographies</ows:Keyword>
     40439                        </ows:Keywords>
     40440                        <ows:WGS84BoundingBox>
     40441                                <ows:LowerCorner>3.07363 43.0878</ows:LowerCorner>
     40442                                <ows:UpperCorner>3.33241 43.2772</ows:UpperCorner>
     40443                        </ows:WGS84BoundingBox>
     40444                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-07-29-38788199</ows:Identifier>
     40445                        <Style isDefault="true">
     40446                                <ows:Title>Données Brutes</ows:Title>
     40447                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40448                                <ows:Keywords>
     40449                                        <ows:Keyword>Défaut</ows:Keyword>
     40450                                </ows:Keywords>
     40451                                <ows:Identifier>normal</ows:Identifier>
     40452                                <LegendURL format="image/jpeg" height="200"
     40453                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40454                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40455                        </Style>
     40456                        <Format>image/jpeg</Format>
     40457                        <TileMatrixSetLink>
     40458                                <TileMatrixSet>PM</TileMatrixSet>
     40459                                <TileMatrixSetLimits>
     40460                                        <TileMatrixLimits>
     40461                                                <TileMatrix>0</TileMatrix>
     40462                                                <MinTileRow>0</MinTileRow>
     40463                                                <MaxTileRow>0</MaxTileRow>
     40464                                                <MinTileCol>0</MinTileCol>
     40465                                                <MaxTileCol>0</MaxTileCol>
     40466                                        </TileMatrixLimits>
     40467                                        <TileMatrixLimits>
     40468                                                <TileMatrix>1</TileMatrix>
     40469                                                <MinTileRow>0</MinTileRow>
     40470                                                <MaxTileRow>0</MaxTileRow>
     40471                                                <MinTileCol>1</MinTileCol>
     40472                                                <MaxTileCol>1</MaxTileCol>
     40473                                        </TileMatrixLimits>
     40474                                        <TileMatrixLimits>
     40475                                                <TileMatrix>10</TileMatrix>
     40476                                                <MinTileRow>375</MinTileRow>
     40477                                                <MaxTileRow>375</MaxTileRow>
     40478                                                <MinTileCol>520</MinTileCol>
     40479                                                <MaxTileCol>521</MaxTileCol>
     40480                                        </TileMatrixLimits>
     40481                                        <TileMatrixLimits>
     40482                                                <TileMatrix>11</TileMatrix>
     40483                                                <MinTileRow>750</MinTileRow>
     40484                                                <MaxTileRow>751</MaxTileRow>
     40485                                                <MinTileCol>1041</MinTileCol>
     40486                                                <MaxTileCol>1042</MaxTileCol>
     40487                                        </TileMatrixLimits>
     40488                                        <TileMatrixLimits>
     40489                                                <TileMatrix>12</TileMatrix>
     40490                                                <MinTileRow>1500</MinTileRow>
     40491                                                <MaxTileRow>1503</MaxTileRow>
     40492                                                <MinTileCol>2082</MinTileCol>
     40493                                                <MaxTileCol>2085</MaxTileCol>
     40494                                        </TileMatrixLimits>
     40495                                        <TileMatrixLimits>
     40496                                                <TileMatrix>13</TileMatrix>
     40497                                                <MinTileRow>3001</MinTileRow>
     40498                                                <MaxTileRow>3007</MaxTileRow>
     40499                                                <MinTileCol>4165</MinTileCol>
     40500                                                <MaxTileCol>4171</MaxTileCol>
     40501                                        </TileMatrixLimits>
     40502                                        <TileMatrixLimits>
     40503                                                <TileMatrix>14</TileMatrix>
     40504                                                <MinTileRow>6003</MinTileRow>
     40505                                                <MaxTileRow>6014</MaxTileRow>
     40506                                                <MinTileCol>8331</MinTileCol>
     40507                                                <MaxTileCol>8343</MaxTileCol>
     40508                                        </TileMatrixLimits>
     40509                                        <TileMatrixLimits>
     40510                                                <TileMatrix>15</TileMatrix>
     40511                                                <MinTileRow>12006</MinTileRow>
     40512                                                <MaxTileRow>12029</MaxTileRow>
     40513                                                <MinTileCol>16663</MinTileCol>
     40514                                                <MaxTileCol>16687</MaxTileCol>
     40515                                        </TileMatrixLimits>
     40516                                        <TileMatrixLimits>
     40517                                                <TileMatrix>16</TileMatrix>
     40518                                                <MinTileRow>24012</MinTileRow>
     40519                                                <MaxTileRow>24059</MaxTileRow>
     40520                                                <MinTileCol>33327</MinTileCol>
     40521                                                <MaxTileCol>33374</MaxTileCol>
     40522                                        </TileMatrixLimits>
     40523                                        <TileMatrixLimits>
     40524                                                <TileMatrix>17</TileMatrix>
     40525                                                <MinTileRow>48024</MinTileRow>
     40526                                                <MaxTileRow>48118</MaxTileRow>
     40527                                                <MinTileCol>66654</MinTileCol>
     40528                                                <MaxTileCol>66749</MaxTileCol>
     40529                                        </TileMatrixLimits>
     40530                                        <TileMatrixLimits>
     40531                                                <TileMatrix>18</TileMatrix>
     40532                                                <MinTileRow>96048</MinTileRow>
     40533                                                <MaxTileRow>96237</MaxTileRow>
     40534                                                <MinTileCol>133309</MinTileCol>
     40535                                                <MaxTileCol>133498</MaxTileCol>
     40536                                        </TileMatrixLimits>
     40537                                        <TileMatrixLimits>
     40538                                                <TileMatrix>2</TileMatrix>
     40539                                                <MinTileRow>1</MinTileRow>
     40540                                                <MaxTileRow>1</MaxTileRow>
     40541                                                <MinTileCol>2</MinTileCol>
     40542                                                <MaxTileCol>2</MaxTileCol>
     40543                                        </TileMatrixLimits>
     40544                                        <TileMatrixLimits>
     40545                                                <TileMatrix>3</TileMatrix>
     40546                                                <MinTileRow>2</MinTileRow>
     40547                                                <MaxTileRow>2</MaxTileRow>
     40548                                                <MinTileCol>4</MinTileCol>
     40549                                                <MaxTileCol>4</MaxTileCol>
     40550                                        </TileMatrixLimits>
     40551                                        <TileMatrixLimits>
     40552                                                <TileMatrix>4</TileMatrix>
     40553                                                <MinTileRow>5</MinTileRow>
     40554                                                <MaxTileRow>5</MaxTileRow>
     40555                                                <MinTileCol>8</MinTileCol>
     40556                                                <MaxTileCol>8</MaxTileCol>
     40557                                        </TileMatrixLimits>
     40558                                        <TileMatrixLimits>
     40559                                                <TileMatrix>5</TileMatrix>
     40560                                                <MinTileRow>11</MinTileRow>
     40561                                                <MaxTileRow>11</MaxTileRow>
     40562                                                <MinTileCol>16</MinTileCol>
     40563                                                <MaxTileCol>16</MaxTileCol>
     40564                                        </TileMatrixLimits>
     40565                                        <TileMatrixLimits>
     40566                                                <TileMatrix>6</TileMatrix>
     40567                                                <MinTileRow>23</MinTileRow>
     40568                                                <MaxTileRow>23</MaxTileRow>
     40569                                                <MinTileCol>32</MinTileCol>
     40570                                                <MaxTileCol>32</MaxTileCol>
     40571                                        </TileMatrixLimits>
     40572                                        <TileMatrixLimits>
     40573                                                <TileMatrix>7</TileMatrix>
     40574                                                <MinTileRow>46</MinTileRow>
     40575                                                <MaxTileRow>46</MaxTileRow>
     40576                                                <MinTileCol>65</MinTileCol>
     40577                                                <MaxTileCol>65</MaxTileCol>
     40578                                        </TileMatrixLimits>
     40579                                        <TileMatrixLimits>
     40580                                                <TileMatrix>8</TileMatrix>
     40581                                                <MinTileRow>93</MinTileRow>
     40582                                                <MaxTileRow>93</MaxTileRow>
     40583                                                <MinTileCol>130</MinTileCol>
     40584                                                <MaxTileCol>130</MaxTileCol>
     40585                                        </TileMatrixLimits>
     40586                                        <TileMatrixLimits>
     40587                                                <TileMatrix>9</TileMatrix>
     40588                                                <MinTileRow>187</MinTileRow>
     40589                                                <MaxTileRow>187</MaxTileRow>
     40590                                                <MinTileCol>260</MinTileCol>
     40591                                                <MaxTileCol>260</MaxTileCol>
     40592                                        </TileMatrixLimits>
     40593                                </TileMatrixSetLimits>
     40594                        </TileMatrixSetLink>
     40595                </Layer>
     40596                <Layer>
     40597                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40598                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40599                        <ows:Keywords>
     40600                                <ows:Keyword>Photographies</ows:Keyword>
     40601                        </ows:Keywords>
     40602                        <ows:WGS84BoundingBox>
     40603                                <ows:LowerCorner>3.07363 43.0878</ows:LowerCorner>
     40604                                <ows:UpperCorner>3.33241 43.2772</ows:UpperCorner>
     40605                        </ows:WGS84BoundingBox>
     40606                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-07-29-38802199</ows:Identifier>
     40607                        <Style isDefault="true">
     40608                                <ows:Title>Données Brutes</ows:Title>
     40609                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40610                                <ows:Keywords>
     40611                                        <ows:Keyword>Défaut</ows:Keyword>
     40612                                </ows:Keywords>
     40613                                <ows:Identifier>normal</ows:Identifier>
     40614                                <LegendURL format="image/jpeg" height="200"
     40615                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40616                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40617                        </Style>
     40618                        <Format>image/jpeg</Format>
     40619                        <TileMatrixSetLink>
     40620                                <TileMatrixSet>PM</TileMatrixSet>
     40621                                <TileMatrixSetLimits>
     40622                                        <TileMatrixLimits>
     40623                                                <TileMatrix>0</TileMatrix>
     40624                                                <MinTileRow>0</MinTileRow>
     40625                                                <MaxTileRow>0</MaxTileRow>
     40626                                                <MinTileCol>0</MinTileCol>
     40627                                                <MaxTileCol>0</MaxTileCol>
     40628                                        </TileMatrixLimits>
     40629                                        <TileMatrixLimits>
     40630                                                <TileMatrix>1</TileMatrix>
     40631                                                <MinTileRow>0</MinTileRow>
     40632                                                <MaxTileRow>0</MaxTileRow>
     40633                                                <MinTileCol>1</MinTileCol>
     40634                                                <MaxTileCol>1</MaxTileCol>
     40635                                        </TileMatrixLimits>
     40636                                        <TileMatrixLimits>
     40637                                                <TileMatrix>10</TileMatrix>
     40638                                                <MinTileRow>375</MinTileRow>
     40639                                                <MaxTileRow>375</MaxTileRow>
     40640                                                <MinTileCol>520</MinTileCol>
     40641                                                <MaxTileCol>521</MaxTileCol>
     40642                                        </TileMatrixLimits>
     40643                                        <TileMatrixLimits>
     40644                                                <TileMatrix>11</TileMatrix>
     40645                                                <MinTileRow>750</MinTileRow>
     40646                                                <MaxTileRow>751</MaxTileRow>
     40647                                                <MinTileCol>1041</MinTileCol>
     40648                                                <MaxTileCol>1042</MaxTileCol>
     40649                                        </TileMatrixLimits>
     40650                                        <TileMatrixLimits>
     40651                                                <TileMatrix>12</TileMatrix>
     40652                                                <MinTileRow>1500</MinTileRow>
     40653                                                <MaxTileRow>1503</MaxTileRow>
     40654                                                <MinTileCol>2082</MinTileCol>
     40655                                                <MaxTileCol>2085</MaxTileCol>
     40656                                        </TileMatrixLimits>
     40657                                        <TileMatrixLimits>
     40658                                                <TileMatrix>13</TileMatrix>
     40659                                                <MinTileRow>3001</MinTileRow>
     40660                                                <MaxTileRow>3007</MaxTileRow>
     40661                                                <MinTileCol>4165</MinTileCol>
     40662                                                <MaxTileCol>4171</MaxTileCol>
     40663                                        </TileMatrixLimits>
     40664                                        <TileMatrixLimits>
     40665                                                <TileMatrix>14</TileMatrix>
     40666                                                <MinTileRow>6003</MinTileRow>
     40667                                                <MaxTileRow>6014</MaxTileRow>
     40668                                                <MinTileCol>8331</MinTileCol>
     40669                                                <MaxTileCol>8343</MaxTileCol>
     40670                                        </TileMatrixLimits>
     40671                                        <TileMatrixLimits>
     40672                                                <TileMatrix>15</TileMatrix>
     40673                                                <MinTileRow>12006</MinTileRow>
     40674                                                <MaxTileRow>12029</MaxTileRow>
     40675                                                <MinTileCol>16663</MinTileCol>
     40676                                                <MaxTileCol>16687</MaxTileCol>
     40677                                        </TileMatrixLimits>
     40678                                        <TileMatrixLimits>
     40679                                                <TileMatrix>16</TileMatrix>
     40680                                                <MinTileRow>24012</MinTileRow>
     40681                                                <MaxTileRow>24059</MaxTileRow>
     40682                                                <MinTileCol>33327</MinTileCol>
     40683                                                <MaxTileCol>33374</MaxTileCol>
     40684                                        </TileMatrixLimits>
     40685                                        <TileMatrixLimits>
     40686                                                <TileMatrix>17</TileMatrix>
     40687                                                <MinTileRow>48024</MinTileRow>
     40688                                                <MaxTileRow>48118</MaxTileRow>
     40689                                                <MinTileCol>66654</MinTileCol>
     40690                                                <MaxTileCol>66749</MaxTileCol>
     40691                                        </TileMatrixLimits>
     40692                                        <TileMatrixLimits>
     40693                                                <TileMatrix>18</TileMatrix>
     40694                                                <MinTileRow>96048</MinTileRow>
     40695                                                <MaxTileRow>96237</MaxTileRow>
     40696                                                <MinTileCol>133309</MinTileCol>
     40697                                                <MaxTileCol>133498</MaxTileCol>
     40698                                        </TileMatrixLimits>
     40699                                        <TileMatrixLimits>
     40700                                                <TileMatrix>2</TileMatrix>
     40701                                                <MinTileRow>1</MinTileRow>
     40702                                                <MaxTileRow>1</MaxTileRow>
     40703                                                <MinTileCol>2</MinTileCol>
     40704                                                <MaxTileCol>2</MaxTileCol>
     40705                                        </TileMatrixLimits>
     40706                                        <TileMatrixLimits>
     40707                                                <TileMatrix>3</TileMatrix>
     40708                                                <MinTileRow>2</MinTileRow>
     40709                                                <MaxTileRow>2</MaxTileRow>
     40710                                                <MinTileCol>4</MinTileCol>
     40711                                                <MaxTileCol>4</MaxTileCol>
     40712                                        </TileMatrixLimits>
     40713                                        <TileMatrixLimits>
     40714                                                <TileMatrix>4</TileMatrix>
     40715                                                <MinTileRow>5</MinTileRow>
     40716                                                <MaxTileRow>5</MaxTileRow>
     40717                                                <MinTileCol>8</MinTileCol>
     40718                                                <MaxTileCol>8</MaxTileCol>
     40719                                        </TileMatrixLimits>
     40720                                        <TileMatrixLimits>
     40721                                                <TileMatrix>5</TileMatrix>
     40722                                                <MinTileRow>11</MinTileRow>
     40723                                                <MaxTileRow>11</MaxTileRow>
     40724                                                <MinTileCol>16</MinTileCol>
     40725                                                <MaxTileCol>16</MaxTileCol>
     40726                                        </TileMatrixLimits>
     40727                                        <TileMatrixLimits>
     40728                                                <TileMatrix>6</TileMatrix>
     40729                                                <MinTileRow>23</MinTileRow>
     40730                                                <MaxTileRow>23</MaxTileRow>
     40731                                                <MinTileCol>32</MinTileCol>
     40732                                                <MaxTileCol>32</MaxTileCol>
     40733                                        </TileMatrixLimits>
     40734                                        <TileMatrixLimits>
     40735                                                <TileMatrix>7</TileMatrix>
     40736                                                <MinTileRow>46</MinTileRow>
     40737                                                <MaxTileRow>46</MaxTileRow>
     40738                                                <MinTileCol>65</MinTileCol>
     40739                                                <MaxTileCol>65</MaxTileCol>
     40740                                        </TileMatrixLimits>
     40741                                        <TileMatrixLimits>
     40742                                                <TileMatrix>8</TileMatrix>
     40743                                                <MinTileRow>93</MinTileRow>
     40744                                                <MaxTileRow>93</MaxTileRow>
     40745                                                <MinTileCol>130</MinTileCol>
     40746                                                <MaxTileCol>130</MaxTileCol>
     40747                                        </TileMatrixLimits>
     40748                                        <TileMatrixLimits>
     40749                                                <TileMatrix>9</TileMatrix>
     40750                                                <MinTileRow>187</MinTileRow>
     40751                                                <MaxTileRow>187</MaxTileRow>
     40752                                                <MinTileCol>260</MinTileCol>
     40753                                                <MaxTileCol>260</MaxTileCol>
     40754                                        </TileMatrixLimits>
     40755                                </TileMatrixSetLimits>
     40756                        </TileMatrixSetLink>
     40757                </Layer>
     40758                <Layer>
     40759                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40760                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40761                        <ows:Keywords>
     40762                                <ows:Keyword>Photographies</ows:Keyword>
     40763                        </ows:Keywords>
     40764                        <ows:WGS84BoundingBox>
     40765                                <ows:LowerCorner>2.85233 43.0522</ows:LowerCorner>
     40766                                <ows:UpperCorner>3.13537 43.2501</ows:UpperCorner>
     40767                        </ows:WGS84BoundingBox>
     40768                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-08-31-38562324</ows:Identifier>
     40769                        <Style isDefault="true">
     40770                                <ows:Title>Données Brutes</ows:Title>
     40771                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40772                                <ows:Keywords>
     40773                                        <ows:Keyword>Défaut</ows:Keyword>
     40774                                </ows:Keywords>
     40775                                <ows:Identifier>normal</ows:Identifier>
     40776                                <LegendURL format="image/jpeg" height="200"
     40777                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40778                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40779                        </Style>
     40780                        <Format>image/jpeg</Format>
     40781                        <TileMatrixSetLink>
     40782                                <TileMatrixSet>PM</TileMatrixSet>
     40783                                <TileMatrixSetLimits>
     40784                                        <TileMatrixLimits>
     40785                                                <TileMatrix>0</TileMatrix>
     40786                                                <MinTileRow>0</MinTileRow>
     40787                                                <MaxTileRow>0</MaxTileRow>
     40788                                                <MinTileCol>0</MinTileCol>
     40789                                                <MaxTileCol>0</MaxTileCol>
     40790                                        </TileMatrixLimits>
     40791                                        <TileMatrixLimits>
     40792                                                <TileMatrix>1</TileMatrix>
     40793                                                <MinTileRow>0</MinTileRow>
     40794                                                <MaxTileRow>0</MaxTileRow>
     40795                                                <MinTileCol>1</MinTileCol>
     40796                                                <MaxTileCol>1</MaxTileCol>
     40797                                        </TileMatrixLimits>
     40798                                        <TileMatrixLimits>
     40799                                                <TileMatrix>10</TileMatrix>
     40800                                                <MinTileRow>375</MinTileRow>
     40801                                                <MaxTileRow>376</MaxTileRow>
     40802                                                <MinTileCol>520</MinTileCol>
     40803                                                <MaxTileCol>520</MaxTileCol>
     40804                                        </TileMatrixLimits>
     40805                                        <TileMatrixLimits>
     40806                                                <TileMatrix>11</TileMatrix>
     40807                                                <MinTileRow>750</MinTileRow>
     40808                                                <MaxTileRow>752</MaxTileRow>
     40809                                                <MinTileCol>1040</MinTileCol>
     40810                                                <MaxTileCol>1041</MaxTileCol>
     40811                                        </TileMatrixLimits>
     40812                                        <TileMatrixLimits>
     40813                                                <TileMatrix>12</TileMatrix>
     40814                                                <MinTileRow>1501</MinTileRow>
     40815                                                <MaxTileRow>1504</MaxTileRow>
     40816                                                <MinTileCol>2080</MinTileCol>
     40817                                                <MaxTileCol>2083</MaxTileCol>
     40818                                        </TileMatrixLimits>
     40819                                        <TileMatrixLimits>
     40820                                                <TileMatrix>13</TileMatrix>
     40821                                                <MinTileRow>3002</MinTileRow>
     40822                                                <MaxTileRow>3008</MaxTileRow>
     40823                                                <MinTileCol>4160</MinTileCol>
     40824                                                <MaxTileCol>4167</MaxTileCol>
     40825                                        </TileMatrixLimits>
     40826                                        <TileMatrixLimits>
     40827                                                <TileMatrix>14</TileMatrix>
     40828                                                <MinTileRow>6004</MinTileRow>
     40829                                                <MaxTileRow>6017</MaxTileRow>
     40830                                                <MinTileCol>8321</MinTileCol>
     40831                                                <MaxTileCol>8334</MaxTileCol>
     40832                                        </TileMatrixLimits>
     40833                                        <TileMatrixLimits>
     40834                                                <TileMatrix>15</TileMatrix>
     40835                                                <MinTileRow>12009</MinTileRow>
     40836                                                <MaxTileRow>12034</MaxTileRow>
     40837                                                <MinTileCol>16643</MinTileCol>
     40838                                                <MaxTileCol>16669</MaxTileCol>
     40839                                        </TileMatrixLimits>
     40840                                        <TileMatrixLimits>
     40841                                                <TileMatrix>16</TileMatrix>
     40842                                                <MinTileRow>24018</MinTileRow>
     40843                                                <MaxTileRow>24068</MaxTileRow>
     40844                                                <MinTileCol>33287</MinTileCol>
     40845                                                <MaxTileCol>33338</MaxTileCol>
     40846                                        </TileMatrixLimits>
     40847                                        <TileMatrixLimits>
     40848                                                <TileMatrix>17</TileMatrix>
     40849                                                <MinTileRow>48037</MinTileRow>
     40850                                                <MaxTileRow>48136</MaxTileRow>
     40851                                                <MinTileCol>66574</MinTileCol>
     40852                                                <MaxTileCol>66677</MaxTileCol>
     40853                                        </TileMatrixLimits>
     40854                                        <TileMatrixLimits>
     40855                                                <TileMatrix>18</TileMatrix>
     40856                                                <MinTileRow>96075</MinTileRow>
     40857                                                <MaxTileRow>96272</MaxTileRow>
     40858                                                <MinTileCol>133148</MinTileCol>
     40859                                                <MaxTileCol>133355</MaxTileCol>
     40860                                        </TileMatrixLimits>
     40861                                        <TileMatrixLimits>
     40862                                                <TileMatrix>2</TileMatrix>
     40863                                                <MinTileRow>1</MinTileRow>
     40864                                                <MaxTileRow>1</MaxTileRow>
     40865                                                <MinTileCol>2</MinTileCol>
     40866                                                <MaxTileCol>2</MaxTileCol>
     40867                                        </TileMatrixLimits>
     40868                                        <TileMatrixLimits>
     40869                                                <TileMatrix>3</TileMatrix>
     40870                                                <MinTileRow>2</MinTileRow>
     40871                                                <MaxTileRow>2</MaxTileRow>
     40872                                                <MinTileCol>4</MinTileCol>
     40873                                                <MaxTileCol>4</MaxTileCol>
     40874                                        </TileMatrixLimits>
     40875                                        <TileMatrixLimits>
     40876                                                <TileMatrix>4</TileMatrix>
     40877                                                <MinTileRow>5</MinTileRow>
     40878                                                <MaxTileRow>5</MaxTileRow>
     40879                                                <MinTileCol>8</MinTileCol>
     40880                                                <MaxTileCol>8</MaxTileCol>
     40881                                        </TileMatrixLimits>
     40882                                        <TileMatrixLimits>
     40883                                                <TileMatrix>5</TileMatrix>
     40884                                                <MinTileRow>11</MinTileRow>
     40885                                                <MaxTileRow>11</MaxTileRow>
     40886                                                <MinTileCol>16</MinTileCol>
     40887                                                <MaxTileCol>16</MaxTileCol>
     40888                                        </TileMatrixLimits>
     40889                                        <TileMatrixLimits>
     40890                                                <TileMatrix>6</TileMatrix>
     40891                                                <MinTileRow>23</MinTileRow>
     40892                                                <MaxTileRow>23</MaxTileRow>
     40893                                                <MinTileCol>32</MinTileCol>
     40894                                                <MaxTileCol>32</MaxTileCol>
     40895                                        </TileMatrixLimits>
     40896                                        <TileMatrixLimits>
     40897                                                <TileMatrix>7</TileMatrix>
     40898                                                <MinTileRow>46</MinTileRow>
     40899                                                <MaxTileRow>47</MaxTileRow>
     40900                                                <MinTileCol>65</MinTileCol>
     40901                                                <MaxTileCol>65</MaxTileCol>
     40902                                        </TileMatrixLimits>
     40903                                        <TileMatrixLimits>
     40904                                                <TileMatrix>8</TileMatrix>
     40905                                                <MinTileRow>93</MinTileRow>
     40906                                                <MaxTileRow>94</MaxTileRow>
     40907                                                <MinTileCol>130</MinTileCol>
     40908                                                <MaxTileCol>130</MaxTileCol>
     40909                                        </TileMatrixLimits>
     40910                                        <TileMatrixLimits>
     40911                                                <TileMatrix>9</TileMatrix>
     40912                                                <MinTileRow>187</MinTileRow>
     40913                                                <MaxTileRow>188</MaxTileRow>
     40914                                                <MinTileCol>260</MinTileCol>
     40915                                                <MaxTileCol>260</MaxTileCol>
     40916                                        </TileMatrixLimits>
     40917                                </TileMatrixSetLimits>
     40918                        </TileMatrixSetLink>
     40919                </Layer>
     40920                <Layer>
     40921                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     40922                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     40923                        <ows:Keywords>
     40924                                <ows:Keyword>Photographies</ows:Keyword>
     40925                        </ows:Keywords>
     40926                        <ows:WGS84BoundingBox>
     40927                                <ows:LowerCorner>2.85231 43.0522</ows:LowerCorner>
     40928                                <ows:UpperCorner>3.13539 43.2591</ows:UpperCorner>
     40929                        </ows:WGS84BoundingBox>
     40930                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NARBONNE-2013-08-31-38581699</ows:Identifier>
     40931                        <Style isDefault="true">
     40932                                <ows:Title>Données Brutes</ows:Title>
     40933                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     40934                                <ows:Keywords>
     40935                                        <ows:Keyword>Défaut</ows:Keyword>
     40936                                </ows:Keywords>
     40937                                <ows:Identifier>normal</ows:Identifier>
     40938                                <LegendURL format="image/jpeg" height="200"
     40939                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     40940                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     40941                        </Style>
     40942                        <Format>image/jpeg</Format>
     40943                        <TileMatrixSetLink>
     40944                                <TileMatrixSet>PM</TileMatrixSet>
     40945                                <TileMatrixSetLimits>
     40946                                        <TileMatrixLimits>
     40947                                                <TileMatrix>0</TileMatrix>
     40948                                                <MinTileRow>0</MinTileRow>
     40949                                                <MaxTileRow>0</MaxTileRow>
     40950                                                <MinTileCol>0</MinTileCol>
     40951                                                <MaxTileCol>0</MaxTileCol>
     40952                                        </TileMatrixLimits>
     40953                                        <TileMatrixLimits>
     40954                                                <TileMatrix>1</TileMatrix>
     40955                                                <MinTileRow>0</MinTileRow>
     40956                                                <MaxTileRow>0</MaxTileRow>
     40957                                                <MinTileCol>1</MinTileCol>
     40958                                                <MaxTileCol>1</MaxTileCol>
     40959                                        </TileMatrixLimits>
     40960                                        <TileMatrixLimits>
     40961                                                <TileMatrix>10</TileMatrix>
     40962                                                <MinTileRow>375</MinTileRow>
     40963                                                <MaxTileRow>376</MaxTileRow>
     40964                                                <MinTileCol>520</MinTileCol>
     40965                                                <MaxTileCol>520</MaxTileCol>
     40966                                        </TileMatrixLimits>
     40967                                        <TileMatrixLimits>
     40968                                                <TileMatrix>11</TileMatrix>
     40969                                                <MinTileRow>750</MinTileRow>
     40970                                                <MaxTileRow>752</MaxTileRow>
     40971                                                <MinTileCol>1040</MinTileCol>
     40972                                                <MaxTileCol>1041</MaxTileCol>
     40973                                        </TileMatrixLimits>
     40974                                        <TileMatrixLimits>
     40975                                                <TileMatrix>12</TileMatrix>
     40976                                                <MinTileRow>1501</MinTileRow>
     40977                                                <MaxTileRow>1504</MaxTileRow>
     40978                                                <MinTileCol>2080</MinTileCol>
     40979                                                <MaxTileCol>2083</MaxTileCol>
     40980                                        </TileMatrixLimits>
     40981                                        <TileMatrixLimits>
     40982                                                <TileMatrix>13</TileMatrix>
     40983                                                <MinTileRow>3002</MinTileRow>
     40984                                                <MaxTileRow>3008</MaxTileRow>
     40985                                                <MinTileCol>4160</MinTileCol>
     40986                                                <MaxTileCol>4167</MaxTileCol>
     40987                                        </TileMatrixLimits>
     40988                                        <TileMatrixLimits>
     40989                                                <TileMatrix>14</TileMatrix>
     40990                                                <MinTileRow>6004</MinTileRow>
     40991                                                <MaxTileRow>6017</MaxTileRow>
     40992                                                <MinTileCol>8321</MinTileCol>
     40993                                                <MaxTileCol>8334</MaxTileCol>
     40994                                        </TileMatrixLimits>
     40995                                        <TileMatrixLimits>
     40996                                                <TileMatrix>15</TileMatrix>
     40997                                                <MinTileRow>12008</MinTileRow>
     40998                                                <MaxTileRow>12034</MaxTileRow>
     40999                                                <MinTileCol>16643</MinTileCol>
     41000                                                <MaxTileCol>16669</MaxTileCol>
     41001                                        </TileMatrixLimits>
     41002                                        <TileMatrixLimits>
     41003                                                <TileMatrix>16</TileMatrix>
     41004                                                <MinTileRow>24016</MinTileRow>
     41005                                                <MaxTileRow>24068</MaxTileRow>
     41006                                                <MinTileCol>33287</MinTileCol>
     41007                                                <MaxTileCol>33338</MaxTileCol>
     41008                                        </TileMatrixLimits>
     41009                                        <TileMatrixLimits>
     41010                                                <TileMatrix>17</TileMatrix>
     41011                                                <MinTileRow>48033</MinTileRow>
     41012                                                <MaxTileRow>48136</MaxTileRow>
     41013                                                <MinTileCol>66574</MinTileCol>
     41014                                                <MaxTileCol>66677</MaxTileCol>
     41015                                        </TileMatrixLimits>
     41016                                        <TileMatrixLimits>
     41017                                                <TileMatrix>18</TileMatrix>
     41018                                                <MinTileRow>96066</MinTileRow>
     41019                                                <MaxTileRow>96272</MaxTileRow>
     41020                                                <MinTileCol>133148</MinTileCol>
     41021                                                <MaxTileCol>133355</MaxTileCol>
     41022                                        </TileMatrixLimits>
     41023                                        <TileMatrixLimits>
     41024                                                <TileMatrix>2</TileMatrix>
     41025                                                <MinTileRow>1</MinTileRow>
     41026                                                <MaxTileRow>1</MaxTileRow>
     41027                                                <MinTileCol>2</MinTileCol>
     41028                                                <MaxTileCol>2</MaxTileCol>
     41029                                        </TileMatrixLimits>
     41030                                        <TileMatrixLimits>
     41031                                                <TileMatrix>3</TileMatrix>
     41032                                                <MinTileRow>2</MinTileRow>
     41033                                                <MaxTileRow>2</MaxTileRow>
     41034                                                <MinTileCol>4</MinTileCol>
     41035                                                <MaxTileCol>4</MaxTileCol>
     41036                                        </TileMatrixLimits>
     41037                                        <TileMatrixLimits>
     41038                                                <TileMatrix>4</TileMatrix>
     41039                                                <MinTileRow>5</MinTileRow>
     41040                                                <MaxTileRow>5</MaxTileRow>
     41041                                                <MinTileCol>8</MinTileCol>
     41042                                                <MaxTileCol>8</MaxTileCol>
     41043                                        </TileMatrixLimits>
     41044                                        <TileMatrixLimits>
     41045                                                <TileMatrix>5</TileMatrix>
     41046                                                <MinTileRow>11</MinTileRow>
     41047                                                <MaxTileRow>11</MaxTileRow>
     41048                                                <MinTileCol>16</MinTileCol>
     41049                                                <MaxTileCol>16</MaxTileCol>
     41050                                        </TileMatrixLimits>
     41051                                        <TileMatrixLimits>
     41052                                                <TileMatrix>6</TileMatrix>
     41053                                                <MinTileRow>23</MinTileRow>
     41054                                                <MaxTileRow>23</MaxTileRow>
     41055                                                <MinTileCol>32</MinTileCol>
     41056                                                <MaxTileCol>32</MaxTileCol>
     41057                                        </TileMatrixLimits>
     41058                                        <TileMatrixLimits>
     41059                                                <TileMatrix>7</TileMatrix>
     41060                                                <MinTileRow>46</MinTileRow>
     41061                                                <MaxTileRow>47</MaxTileRow>
     41062                                                <MinTileCol>65</MinTileCol>
     41063                                                <MaxTileCol>65</MaxTileCol>
     41064                                        </TileMatrixLimits>
     41065                                        <TileMatrixLimits>
     41066                                                <TileMatrix>8</TileMatrix>
     41067                                                <MinTileRow>93</MinTileRow>
     41068                                                <MaxTileRow>94</MaxTileRow>
     41069                                                <MinTileCol>130</MinTileCol>
     41070                                                <MaxTileCol>130</MaxTileCol>
     41071                                        </TileMatrixLimits>
     41072                                        <TileMatrixLimits>
     41073                                                <TileMatrix>9</TileMatrix>
     41074                                                <MinTileRow>187</MinTileRow>
     41075                                                <MaxTileRow>188</MaxTileRow>
     41076                                                <MinTileCol>260</MinTileCol>
     41077                                                <MaxTileCol>260</MaxTileCol>
     41078                                        </TileMatrixLimits>
     41079                                </TileMatrixSetLimits>
     41080                        </TileMatrixSetLink>
     41081                </Layer>
     41082                <Layer>
     41083                        <ows:Title>Orthophotographies Geosud de Nice</ows:Title>
     41084                        <ows:Abstract>Orthophotographies satellites de NICE issues du projet Geosud.</ows:Abstract>
     41085                        <ows:Keywords>
     41086                                <ows:Keyword>Photographies</ows:Keyword>
     41087                        </ows:Keywords>
     41088                        <ows:WGS84BoundingBox>
     41089                                <ows:LowerCorner>7.07044 43.5242</ows:LowerCorner>
     41090                                <ows:UpperCorner>7.33573 43.7764</ows:UpperCorner>
     41091                        </ows:WGS84BoundingBox>
     41092                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NICE-2013-04-05-37773437</ows:Identifier>
     41093                        <Style isDefault="true">
     41094                                <ows:Title>Données Brutes</ows:Title>
     41095                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41096                                <ows:Keywords>
     41097                                        <ows:Keyword>Défaut</ows:Keyword>
     41098                                </ows:Keywords>
     41099                                <ows:Identifier>normal</ows:Identifier>
     41100                                <LegendURL format="image/jpeg" height="200"
     41101                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41102                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41103                        </Style>
     41104                        <Format>image/jpeg</Format>
     41105                        <TileMatrixSetLink>
     41106                                <TileMatrixSet>PM</TileMatrixSet>
     41107                                <TileMatrixSetLimits>
     41108                                        <TileMatrixLimits>
     41109                                                <TileMatrix>0</TileMatrix>
     41110                                                <MinTileRow>0</MinTileRow>
     41111                                                <MaxTileRow>0</MaxTileRow>
     41112                                                <MinTileCol>0</MinTileCol>
     41113                                                <MaxTileCol>0</MaxTileCol>
     41114                                        </TileMatrixLimits>
     41115                                        <TileMatrixLimits>
     41116                                                <TileMatrix>1</TileMatrix>
     41117                                                <MinTileRow>0</MinTileRow>
     41118                                                <MaxTileRow>0</MaxTileRow>
     41119                                                <MinTileCol>1</MinTileCol>
     41120                                                <MaxTileCol>1</MaxTileCol>
     41121                                        </TileMatrixLimits>
     41122                                        <TileMatrixLimits>
     41123                                                <TileMatrix>10</TileMatrix>
     41124                                                <MinTileRow>373</MinTileRow>
     41125                                                <MaxTileRow>374</MaxTileRow>
     41126                                                <MinTileCol>532</MinTileCol>
     41127                                                <MaxTileCol>532</MaxTileCol>
     41128                                        </TileMatrixLimits>
     41129                                        <TileMatrixLimits>
     41130                                                <TileMatrix>11</TileMatrix>
     41131                                                <MinTileRow>746</MinTileRow>
     41132                                                <MaxTileRow>748</MaxTileRow>
     41133                                                <MinTileCol>1064</MinTileCol>
     41134                                                <MaxTileCol>1065</MaxTileCol>
     41135                                        </TileMatrixLimits>
     41136                                        <TileMatrixLimits>
     41137                                                <TileMatrix>12</TileMatrix>
     41138                                                <MinTileRow>1492</MinTileRow>
     41139                                                <MaxTileRow>1496</MaxTileRow>
     41140                                                <MinTileCol>2128</MinTileCol>
     41141                                                <MaxTileCol>2131</MaxTileCol>
     41142                                        </TileMatrixLimits>
     41143                                        <TileMatrixLimits>
     41144                                                <TileMatrix>13</TileMatrix>
     41145                                                <MinTileRow>2985</MinTileRow>
     41146                                                <MaxTileRow>2993</MaxTileRow>
     41147                                                <MinTileCol>4257</MinTileCol>
     41148                                                <MaxTileCol>4262</MaxTileCol>
     41149                                        </TileMatrixLimits>
     41150                                        <TileMatrixLimits>
     41151                                                <TileMatrix>14</TileMatrix>
     41152                                                <MinTileRow>5971</MinTileRow>
     41153                                                <MaxTileRow>5987</MaxTileRow>
     41154                                                <MinTileCol>8514</MinTileCol>
     41155                                                <MaxTileCol>8525</MaxTileCol>
     41156                                        </TileMatrixLimits>
     41157                                        <TileMatrixLimits>
     41158                                                <TileMatrix>15</TileMatrix>
     41159                                                <MinTileRow>11943</MinTileRow>
     41160                                                <MaxTileRow>11974</MaxTileRow>
     41161                                                <MinTileCol>17028</MinTileCol>
     41162                                                <MaxTileCol>17051</MaxTileCol>
     41163                                        </TileMatrixLimits>
     41164                                        <TileMatrixLimits>
     41165                                                <TileMatrix>16</TileMatrix>
     41166                                                <MinTileRow>23887</MinTileRow>
     41167                                                <MaxTileRow>23948</MaxTileRow>
     41168                                                <MinTileCol>34056</MinTileCol>
     41169                                                <MaxTileCol>34102</MaxTileCol>
     41170                                        </TileMatrixLimits>
     41171                                        <TileMatrixLimits>
     41172                                                <TileMatrix>17</TileMatrix>
     41173                                                <MinTileRow>47775</MinTileRow>
     41174                                                <MaxTileRow>47896</MaxTileRow>
     41175                                                <MinTileCol>68112</MinTileCol>
     41176                                                <MaxTileCol>68205</MaxTileCol>
     41177                                        </TileMatrixLimits>
     41178                                        <TileMatrixLimits>
     41179                                                <TileMatrix>18</TileMatrix>
     41180                                                <MinTileRow>95550</MinTileRow>
     41181                                                <MaxTileRow>95792</MaxTileRow>
     41182                                                <MinTileCol>136224</MinTileCol>
     41183                                                <MaxTileCol>136411</MaxTileCol>
     41184                                        </TileMatrixLimits>
     41185                                        <TileMatrixLimits>
     41186                                                <TileMatrix>2</TileMatrix>
     41187                                                <MinTileRow>1</MinTileRow>
     41188                                                <MaxTileRow>1</MaxTileRow>
     41189                                                <MinTileCol>2</MinTileCol>
     41190                                                <MaxTileCol>2</MaxTileCol>
     41191                                        </TileMatrixLimits>
     41192                                        <TileMatrixLimits>
     41193                                                <TileMatrix>3</TileMatrix>
     41194                                                <MinTileRow>2</MinTileRow>
     41195                                                <MaxTileRow>2</MaxTileRow>
     41196                                                <MinTileCol>4</MinTileCol>
     41197                                                <MaxTileCol>4</MaxTileCol>
     41198                                        </TileMatrixLimits>
     41199                                        <TileMatrixLimits>
     41200                                                <TileMatrix>4</TileMatrix>
     41201                                                <MinTileRow>5</MinTileRow>
     41202                                                <MaxTileRow>5</MaxTileRow>
     41203                                                <MinTileCol>8</MinTileCol>
     41204                                                <MaxTileCol>8</MaxTileCol>
     41205                                        </TileMatrixLimits>
     41206                                        <TileMatrixLimits>
     41207                                                <TileMatrix>5</TileMatrix>
     41208                                                <MinTileRow>11</MinTileRow>
     41209                                                <MaxTileRow>11</MaxTileRow>
     41210                                                <MinTileCol>16</MinTileCol>
     41211                                                <MaxTileCol>16</MaxTileCol>
     41212                                        </TileMatrixLimits>
     41213                                        <TileMatrixLimits>
     41214                                                <TileMatrix>6</TileMatrix>
     41215                                                <MinTileRow>23</MinTileRow>
     41216                                                <MaxTileRow>23</MaxTileRow>
     41217                                                <MinTileCol>33</MinTileCol>
     41218                                                <MaxTileCol>33</MaxTileCol>
     41219                                        </TileMatrixLimits>
     41220                                        <TileMatrixLimits>
     41221                                                <TileMatrix>7</TileMatrix>
     41222                                                <MinTileRow>46</MinTileRow>
     41223                                                <MaxTileRow>46</MaxTileRow>
     41224                                                <MinTileCol>66</MinTileCol>
     41225                                                <MaxTileCol>66</MaxTileCol>
     41226                                        </TileMatrixLimits>
     41227                                        <TileMatrixLimits>
     41228                                                <TileMatrix>8</TileMatrix>
     41229                                                <MinTileRow>93</MinTileRow>
     41230                                                <MaxTileRow>93</MaxTileRow>
     41231                                                <MinTileCol>133</MinTileCol>
     41232                                                <MaxTileCol>133</MaxTileCol>
     41233                                        </TileMatrixLimits>
     41234                                        <TileMatrixLimits>
     41235                                                <TileMatrix>9</TileMatrix>
     41236                                                <MinTileRow>186</MinTileRow>
     41237                                                <MaxTileRow>187</MaxTileRow>
     41238                                                <MinTileCol>266</MinTileCol>
     41239                                                <MaxTileCol>266</MaxTileCol>
     41240                                        </TileMatrixLimits>
     41241                                </TileMatrixSetLimits>
     41242                        </TileMatrixSetLink>
     41243                </Layer>
     41244                <Layer>
     41245                        <ows:Title>Orthophotographies Geosud de Nice</ows:Title>
     41246                        <ows:Abstract>Orthophotographies satellites de NICE issues du projet Geosud.</ows:Abstract>
     41247                        <ows:Keywords>
     41248                                <ows:Keyword>Photographies</ows:Keyword>
     41249                        </ows:Keywords>
     41250                        <ows:WGS84BoundingBox>
     41251                                <ows:LowerCorner>7.07108 43.5332</ows:LowerCorner>
     41252                                <ows:UpperCorner>7.33573 43.7764</ows:UpperCorner>
     41253                        </ows:WGS84BoundingBox>
     41254                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NICE-2013-04-05-37787410</ows:Identifier>
     41255                        <Style isDefault="true">
     41256                                <ows:Title>Données Brutes</ows:Title>
     41257                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41258                                <ows:Keywords>
     41259                                        <ows:Keyword>Défaut</ows:Keyword>
     41260                                </ows:Keywords>
     41261                                <ows:Identifier>normal</ows:Identifier>
     41262                                <LegendURL format="image/jpeg" height="200"
     41263                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41264                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41265                        </Style>
     41266                        <Format>image/jpeg</Format>
     41267                        <TileMatrixSetLink>
     41268                                <TileMatrixSet>PM</TileMatrixSet>
     41269                                <TileMatrixSetLimits>
     41270                                        <TileMatrixLimits>
     41271                                                <TileMatrix>0</TileMatrix>
     41272                                                <MinTileRow>0</MinTileRow>
     41273                                                <MaxTileRow>0</MaxTileRow>
     41274                                                <MinTileCol>0</MinTileCol>
     41275                                                <MaxTileCol>0</MaxTileCol>
     41276                                        </TileMatrixLimits>
     41277                                        <TileMatrixLimits>
     41278                                                <TileMatrix>1</TileMatrix>
     41279                                                <MinTileRow>0</MinTileRow>
     41280                                                <MaxTileRow>0</MaxTileRow>
     41281                                                <MinTileCol>1</MinTileCol>
     41282                                                <MaxTileCol>1</MaxTileCol>
     41283                                        </TileMatrixLimits>
     41284                                        <TileMatrixLimits>
     41285                                                <TileMatrix>10</TileMatrix>
     41286                                                <MinTileRow>373</MinTileRow>
     41287                                                <MaxTileRow>374</MaxTileRow>
     41288                                                <MinTileCol>532</MinTileCol>
     41289                                                <MaxTileCol>532</MaxTileCol>
     41290                                        </TileMatrixLimits>
     41291                                        <TileMatrixLimits>
     41292                                                <TileMatrix>11</TileMatrix>
     41293                                                <MinTileRow>746</MinTileRow>
     41294                                                <MaxTileRow>748</MaxTileRow>
     41295                                                <MinTileCol>1064</MinTileCol>
     41296                                                <MaxTileCol>1065</MaxTileCol>
     41297                                        </TileMatrixLimits>
     41298                                        <TileMatrixLimits>
     41299                                                <TileMatrix>12</TileMatrix>
     41300                                                <MinTileRow>1492</MinTileRow>
     41301                                                <MaxTileRow>1496</MaxTileRow>
     41302                                                <MinTileCol>2128</MinTileCol>
     41303                                                <MaxTileCol>2131</MaxTileCol>
     41304                                        </TileMatrixLimits>
     41305                                        <TileMatrixLimits>
     41306                                                <TileMatrix>13</TileMatrix>
     41307                                                <MinTileRow>2985</MinTileRow>
     41308                                                <MaxTileRow>2993</MaxTileRow>
     41309                                                <MinTileCol>4257</MinTileCol>
     41310                                                <MaxTileCol>4262</MaxTileCol>
     41311                                        </TileMatrixLimits>
     41312                                        <TileMatrixLimits>
     41313                                                <TileMatrix>14</TileMatrix>
     41314                                                <MinTileRow>5971</MinTileRow>
     41315                                                <MaxTileRow>5986</MaxTileRow>
     41316                                                <MinTileCol>8514</MinTileCol>
     41317                                                <MaxTileCol>8525</MaxTileCol>
     41318                                        </TileMatrixLimits>
     41319                                        <TileMatrixLimits>
     41320                                                <TileMatrix>15</TileMatrix>
     41321                                                <MinTileRow>11943</MinTileRow>
     41322                                                <MaxTileRow>11973</MaxTileRow>
     41323                                                <MinTileCol>17028</MinTileCol>
     41324                                                <MaxTileCol>17051</MaxTileCol>
     41325                                        </TileMatrixLimits>
     41326                                        <TileMatrixLimits>
     41327                                                <TileMatrix>16</TileMatrix>
     41328                                                <MinTileRow>23887</MinTileRow>
     41329                                                <MaxTileRow>23946</MaxTileRow>
     41330                                                <MinTileCol>34056</MinTileCol>
     41331                                                <MaxTileCol>34102</MaxTileCol>
     41332                                        </TileMatrixLimits>
     41333                                        <TileMatrixLimits>
     41334                                                <TileMatrix>17</TileMatrix>
     41335                                                <MinTileRow>47775</MinTileRow>
     41336                                                <MaxTileRow>47892</MaxTileRow>
     41337                                                <MinTileCol>68112</MinTileCol>
     41338                                                <MaxTileCol>68205</MaxTileCol>
     41339                                        </TileMatrixLimits>
     41340                                        <TileMatrixLimits>
     41341                                                <TileMatrix>18</TileMatrix>
     41342                                                <MinTileRow>95550</MinTileRow>
     41343                                                <MaxTileRow>95785</MaxTileRow>
     41344                                                <MinTileCol>136224</MinTileCol>
     41345                                                <MaxTileCol>136411</MaxTileCol>
     41346                                        </TileMatrixLimits>
     41347                                        <TileMatrixLimits>
     41348                                                <TileMatrix>2</TileMatrix>
     41349                                                <MinTileRow>1</MinTileRow>
     41350                                                <MaxTileRow>1</MaxTileRow>
     41351                                                <MinTileCol>2</MinTileCol>
     41352                                                <MaxTileCol>2</MaxTileCol>
     41353                                        </TileMatrixLimits>
     41354                                        <TileMatrixLimits>
     41355                                                <TileMatrix>3</TileMatrix>
     41356                                                <MinTileRow>2</MinTileRow>
     41357                                                <MaxTileRow>2</MaxTileRow>
     41358                                                <MinTileCol>4</MinTileCol>
     41359                                                <MaxTileCol>4</MaxTileCol>
     41360                                        </TileMatrixLimits>
     41361                                        <TileMatrixLimits>
     41362                                                <TileMatrix>4</TileMatrix>
     41363                                                <MinTileRow>5</MinTileRow>
     41364                                                <MaxTileRow>5</MaxTileRow>
     41365                                                <MinTileCol>8</MinTileCol>
     41366                                                <MaxTileCol>8</MaxTileCol>
     41367                                        </TileMatrixLimits>
     41368                                        <TileMatrixLimits>
     41369                                                <TileMatrix>5</TileMatrix>
     41370                                                <MinTileRow>11</MinTileRow>
     41371                                                <MaxTileRow>11</MaxTileRow>
     41372                                                <MinTileCol>16</MinTileCol>
     41373                                                <MaxTileCol>16</MaxTileCol>
     41374                                        </TileMatrixLimits>
     41375                                        <TileMatrixLimits>
     41376                                                <TileMatrix>6</TileMatrix>
     41377                                                <MinTileRow>23</MinTileRow>
     41378                                                <MaxTileRow>23</MaxTileRow>
     41379                                                <MinTileCol>33</MinTileCol>
     41380                                                <MaxTileCol>33</MaxTileCol>
     41381                                        </TileMatrixLimits>
     41382                                        <TileMatrixLimits>
     41383                                                <TileMatrix>7</TileMatrix>
     41384                                                <MinTileRow>46</MinTileRow>
     41385                                                <MaxTileRow>46</MaxTileRow>
     41386                                                <MinTileCol>66</MinTileCol>
     41387                                                <MaxTileCol>66</MaxTileCol>
     41388                                        </TileMatrixLimits>
     41389                                        <TileMatrixLimits>
     41390                                                <TileMatrix>8</TileMatrix>
     41391                                                <MinTileRow>93</MinTileRow>
     41392                                                <MaxTileRow>93</MaxTileRow>
     41393                                                <MinTileCol>133</MinTileCol>
     41394                                                <MaxTileCol>133</MaxTileCol>
     41395                                        </TileMatrixLimits>
     41396                                        <TileMatrixLimits>
     41397                                                <TileMatrix>9</TileMatrix>
     41398                                                <MinTileRow>186</MinTileRow>
     41399                                                <MaxTileRow>187</MaxTileRow>
     41400                                                <MinTileCol>266</MinTileCol>
     41401                                                <MaxTileCol>266</MaxTileCol>
     41402                                        </TileMatrixLimits>
     41403                                </TileMatrixSetLimits>
     41404                        </TileMatrixSetLink>
     41405                </Layer>
     41406                <Layer>
     41407                        <ows:Title>Orthophotographies Geosud de Nimes</ows:Title>
     41408                        <ows:Abstract>Orthophotographies satellites de Nimes issues du projet Geosud.</ows:Abstract>
     41409                        <ows:Keywords>
     41410                                <ows:Keyword>Photographies</ows:Keyword>
     41411                        </ows:Keywords>
     41412                        <ows:WGS84BoundingBox>
     41413                                <ows:LowerCorner>4.21593 43.7168</ows:LowerCorner>
     41414                                <ows:UpperCorner>4.49447 43.9362</ows:UpperCorner>
     41415                        </ows:WGS84BoundingBox>
     41416                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NIMES-2013-07-23-38473694</ows:Identifier>
     41417                        <Style isDefault="true">
     41418                                <ows:Title>Données Brutes</ows:Title>
     41419                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41420                                <ows:Keywords>
     41421                                        <ows:Keyword>Défaut</ows:Keyword>
     41422                                </ows:Keywords>
     41423                                <ows:Identifier>normal</ows:Identifier>
     41424                                <LegendURL format="image/jpeg" height="200"
     41425                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41426                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41427                        </Style>
     41428                        <Format>image/jpeg</Format>
     41429                        <TileMatrixSetLink>
     41430                                <TileMatrixSet>PM</TileMatrixSet>
     41431                                <TileMatrixSetLimits>
     41432                                        <TileMatrixLimits>
     41433                                                <TileMatrix>0</TileMatrix>
     41434                                                <MinTileRow>0</MinTileRow>
     41435                                                <MaxTileRow>0</MaxTileRow>
     41436                                                <MinTileCol>0</MinTileCol>
     41437                                                <MaxTileCol>0</MaxTileCol>
     41438                                        </TileMatrixLimits>
     41439                                        <TileMatrixLimits>
     41440                                                <TileMatrix>1</TileMatrix>
     41441                                                <MinTileRow>0</MinTileRow>
     41442                                                <MaxTileRow>0</MaxTileRow>
     41443                                                <MinTileCol>1</MinTileCol>
     41444                                                <MaxTileCol>1</MaxTileCol>
     41445                                        </TileMatrixLimits>
     41446                                        <TileMatrixLimits>
     41447                                                <TileMatrix>10</TileMatrix>
     41448                                                <MinTileRow>372</MinTileRow>
     41449                                                <MaxTileRow>373</MaxTileRow>
     41450                                                <MinTileCol>523</MinTileCol>
     41451                                                <MaxTileCol>524</MaxTileCol>
     41452                                        </TileMatrixLimits>
     41453                                        <TileMatrixLimits>
     41454                                                <TileMatrix>11</TileMatrix>
     41455                                                <MinTileRow>745</MinTileRow>
     41456                                                <MaxTileRow>746</MaxTileRow>
     41457                                                <MinTileCol>1047</MinTileCol>
     41458                                                <MaxTileCol>1049</MaxTileCol>
     41459                                        </TileMatrixLimits>
     41460                                        <TileMatrixLimits>
     41461                                                <TileMatrix>12</TileMatrix>
     41462                                                <MinTileRow>1490</MinTileRow>
     41463                                                <MaxTileRow>1493</MaxTileRow>
     41464                                                <MinTileCol>2095</MinTileCol>
     41465                                                <MaxTileCol>2099</MaxTileCol>
     41466                                        </TileMatrixLimits>
     41467                                        <TileMatrixLimits>
     41468                                                <TileMatrix>13</TileMatrix>
     41469                                                <MinTileRow>2980</MinTileRow>
     41470                                                <MaxTileRow>2987</MaxTileRow>
     41471                                                <MinTileCol>4191</MinTileCol>
     41472                                                <MaxTileCol>4198</MaxTileCol>
     41473                                        </TileMatrixLimits>
     41474                                        <TileMatrixLimits>
     41475                                                <TileMatrix>14</TileMatrix>
     41476                                                <MinTileRow>5961</MinTileRow>
     41477                                                <MaxTileRow>5975</MaxTileRow>
     41478                                                <MinTileCol>8383</MinTileCol>
     41479                                                <MaxTileCol>8396</MaxTileCol>
     41480                                        </TileMatrixLimits>
     41481                                        <TileMatrixLimits>
     41482                                                <TileMatrix>15</TileMatrix>
     41483                                                <MinTileRow>11923</MinTileRow>
     41484                                                <MaxTileRow>11950</MaxTileRow>
     41485                                                <MinTileCol>16767</MinTileCol>
     41486                                                <MaxTileCol>16793</MaxTileCol>
     41487                                        </TileMatrixLimits>
     41488                                        <TileMatrixLimits>
     41489                                                <TileMatrix>16</TileMatrix>
     41490                                                <MinTileRow>23846</MinTileRow>
     41491                                                <MaxTileRow>23900</MaxTileRow>
     41492                                                <MinTileCol>33535</MinTileCol>
     41493                                                <MaxTileCol>33586</MaxTileCol>
     41494                                        </TileMatrixLimits>
     41495                                        <TileMatrixLimits>
     41496                                                <TileMatrix>17</TileMatrix>
     41497                                                <MinTileRow>47692</MinTileRow>
     41498                                                <MaxTileRow>47801</MaxTileRow>
     41499                                                <MinTileCol>67070</MinTileCol>
     41500                                                <MaxTileCol>67172</MaxTileCol>
     41501                                        </TileMatrixLimits>
     41502                                        <TileMatrixLimits>
     41503                                                <TileMatrix>18</TileMatrix>
     41504                                                <MinTileRow>95385</MinTileRow>
     41505                                                <MaxTileRow>95603</MaxTileRow>
     41506                                                <MinTileCol>134141</MinTileCol>
     41507                                                <MaxTileCol>134344</MaxTileCol>
     41508                                        </TileMatrixLimits>
     41509                                        <TileMatrixLimits>
     41510                                                <TileMatrix>2</TileMatrix>
     41511                                                <MinTileRow>1</MinTileRow>
     41512                                                <MaxTileRow>1</MaxTileRow>
     41513                                                <MinTileCol>2</MinTileCol>
     41514                                                <MaxTileCol>2</MaxTileCol>
     41515                                        </TileMatrixLimits>
     41516                                        <TileMatrixLimits>
     41517                                                <TileMatrix>3</TileMatrix>
     41518                                                <MinTileRow>2</MinTileRow>
     41519                                                <MaxTileRow>2</MaxTileRow>
     41520                                                <MinTileCol>4</MinTileCol>
     41521                                                <MaxTileCol>4</MaxTileCol>
     41522                                        </TileMatrixLimits>
     41523                                        <TileMatrixLimits>
     41524                                                <TileMatrix>4</TileMatrix>
     41525                                                <MinTileRow>5</MinTileRow>
     41526                                                <MaxTileRow>5</MaxTileRow>
     41527                                                <MinTileCol>8</MinTileCol>
     41528                                                <MaxTileCol>8</MaxTileCol>
     41529                                        </TileMatrixLimits>
     41530                                        <TileMatrixLimits>
     41531                                                <TileMatrix>5</TileMatrix>
     41532                                                <MinTileRow>11</MinTileRow>
     41533                                                <MaxTileRow>11</MaxTileRow>
     41534                                                <MinTileCol>16</MinTileCol>
     41535                                                <MaxTileCol>16</MaxTileCol>
     41536                                        </TileMatrixLimits>
     41537                                        <TileMatrixLimits>
     41538                                                <TileMatrix>6</TileMatrix>
     41539                                                <MinTileRow>23</MinTileRow>
     41540                                                <MaxTileRow>23</MaxTileRow>
     41541                                                <MinTileCol>32</MinTileCol>
     41542                                                <MaxTileCol>32</MaxTileCol>
     41543                                        </TileMatrixLimits>
     41544                                        <TileMatrixLimits>
     41545                                                <TileMatrix>7</TileMatrix>
     41546                                                <MinTileRow>46</MinTileRow>
     41547                                                <MaxTileRow>46</MaxTileRow>
     41548                                                <MinTileCol>65</MinTileCol>
     41549                                                <MaxTileCol>65</MaxTileCol>
     41550                                        </TileMatrixLimits>
     41551                                        <TileMatrixLimits>
     41552                                                <TileMatrix>8</TileMatrix>
     41553                                                <MinTileRow>93</MinTileRow>
     41554                                                <MaxTileRow>93</MaxTileRow>
     41555                                                <MinTileCol>130</MinTileCol>
     41556                                                <MaxTileCol>131</MaxTileCol>
     41557                                        </TileMatrixLimits>
     41558                                        <TileMatrixLimits>
     41559                                                <TileMatrix>9</TileMatrix>
     41560                                                <MinTileRow>186</MinTileRow>
     41561                                                <MaxTileRow>186</MaxTileRow>
     41562                                                <MinTileCol>261</MinTileCol>
     41563                                                <MaxTileCol>262</MaxTileCol>
     41564                                        </TileMatrixLimits>
     41565                                </TileMatrixSetLimits>
     41566                        </TileMatrixSetLink>
     41567                </Layer>
     41568                <Layer>
     41569                        <ows:Title>Orthophotographies Geosud de Niort</ows:Title>
     41570                        <ows:Abstract>Orthophotographies satellites de Niort issues du projet Geosud.</ows:Abstract>
     41571                        <ows:Keywords>
     41572                                <ows:Keyword>Photographies</ows:Keyword>
     41573                        </ows:Keywords>
     41574                        <ows:WGS84BoundingBox>
     41575                                <ows:LowerCorner>-0.592872 46.2275</ows:LowerCorner>
     41576                                <ows:UpperCorner>-0.297054 46.3981</ows:UpperCorner>
     41577                        </ows:WGS84BoundingBox>
     41578                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NIORT-2013-09-22-40320449</ows:Identifier>
     41579                        <Style isDefault="true">
     41580                                <ows:Title>Données Brutes</ows:Title>
     41581                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41582                                <ows:Keywords>
     41583                                        <ows:Keyword>Défaut</ows:Keyword>
     41584                                </ows:Keywords>
     41585                                <ows:Identifier>normal</ows:Identifier>
     41586                                <LegendURL format="image/jpeg" height="200"
     41587                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41588                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41589                        </Style>
     41590                        <Format>image/jpeg</Format>
     41591                        <TileMatrixSetLink>
     41592                                <TileMatrixSet>PM</TileMatrixSet>
     41593                                <TileMatrixSetLimits>
     41594                                        <TileMatrixLimits>
     41595                                                <TileMatrix>0</TileMatrix>
     41596                                                <MinTileRow>0</MinTileRow>
     41597                                                <MaxTileRow>0</MaxTileRow>
     41598                                                <MinTileCol>0</MinTileCol>
     41599                                                <MaxTileCol>0</MaxTileCol>
     41600                                        </TileMatrixLimits>
     41601                                        <TileMatrixLimits>
     41602                                                <TileMatrix>1</TileMatrix>
     41603                                                <MinTileRow>0</MinTileRow>
     41604                                                <MaxTileRow>0</MaxTileRow>
     41605                                                <MinTileCol>0</MinTileCol>
     41606                                                <MaxTileCol>0</MaxTileCol>
     41607                                        </TileMatrixLimits>
     41608                                        <TileMatrixLimits>
     41609                                                <TileMatrix>10</TileMatrix>
     41610                                                <MinTileRow>362</MinTileRow>
     41611                                                <MaxTileRow>363</MaxTileRow>
     41612                                                <MinTileCol>510</MinTileCol>
     41613                                                <MaxTileCol>511</MaxTileCol>
     41614                                        </TileMatrixLimits>
     41615                                        <TileMatrixLimits>
     41616                                                <TileMatrix>11</TileMatrix>
     41617                                                <MinTileRow>725</MinTileRow>
     41618                                                <MaxTileRow>726</MaxTileRow>
     41619                                                <MinTileCol>1020</MinTileCol>
     41620                                                <MaxTileCol>1022</MaxTileCol>
     41621                                        </TileMatrixLimits>
     41622                                        <TileMatrixLimits>
     41623                                                <TileMatrix>12</TileMatrix>
     41624                                                <MinTileRow>1450</MinTileRow>
     41625                                                <MaxTileRow>1453</MaxTileRow>
     41626                                                <MinTileCol>2041</MinTileCol>
     41627                                                <MaxTileCol>2044</MaxTileCol>
     41628                                        </TileMatrixLimits>
     41629                                        <TileMatrixLimits>
     41630                                                <TileMatrix>13</TileMatrix>
     41631                                                <MinTileRow>2901</MinTileRow>
     41632                                                <MaxTileRow>2906</MaxTileRow>
     41633                                                <MinTileCol>4082</MinTileCol>
     41634                                                <MaxTileCol>4089</MaxTileCol>
     41635                                        </TileMatrixLimits>
     41636                                        <TileMatrixLimits>
     41637                                                <TileMatrix>14</TileMatrix>
     41638                                                <MinTileRow>5803</MinTileRow>
     41639                                                <MaxTileRow>5813</MaxTileRow>
     41640                                                <MinTileCol>8165</MinTileCol>
     41641                                                <MaxTileCol>8178</MaxTileCol>
     41642                                        </TileMatrixLimits>
     41643                                        <TileMatrixLimits>
     41644                                                <TileMatrix>15</TileMatrix>
     41645                                                <MinTileRow>11606</MinTileRow>
     41646                                                <MaxTileRow>11626</MaxTileRow>
     41647                                                <MinTileCol>16330</MinTileCol>
     41648                                                <MaxTileCol>16356</MaxTileCol>
     41649                                        </TileMatrixLimits>
     41650                                        <TileMatrixLimits>
     41651                                                <TileMatrix>16</TileMatrix>
     41652                                                <MinTileRow>23212</MinTileRow>
     41653                                                <MaxTileRow>23253</MaxTileRow>
     41654                                                <MinTileCol>32660</MinTileCol>
     41655                                                <MaxTileCol>32712</MaxTileCol>
     41656                                        </TileMatrixLimits>
     41657                                        <TileMatrixLimits>
     41658                                                <TileMatrix>17</TileMatrix>
     41659                                                <MinTileRow>46424</MinTileRow>
     41660                                                <MaxTileRow>46507</MaxTileRow>
     41661                                                <MinTileCol>65320</MinTileCol>
     41662                                                <MaxTileCol>65425</MaxTileCol>
     41663                                        </TileMatrixLimits>
     41664                                        <TileMatrixLimits>
     41665                                                <TileMatrix>18</TileMatrix>
     41666                                                <MinTileRow>92848</MinTileRow>
     41667                                                <MaxTileRow>93014</MaxTileRow>
     41668                                                <MinTileCol>130640</MinTileCol>
     41669                                                <MaxTileCol>130850</MaxTileCol>
     41670                                        </TileMatrixLimits>
     41671                                        <TileMatrixLimits>
     41672                                                <TileMatrix>2</TileMatrix>
     41673                                                <MinTileRow>1</MinTileRow>
     41674                                                <MaxTileRow>1</MaxTileRow>
     41675                                                <MinTileCol>1</MinTileCol>
     41676                                                <MaxTileCol>1</MaxTileCol>
     41677                                        </TileMatrixLimits>
     41678                                        <TileMatrixLimits>
     41679                                                <TileMatrix>3</TileMatrix>
     41680                                                <MinTileRow>2</MinTileRow>
     41681                                                <MaxTileRow>2</MaxTileRow>
     41682                                                <MinTileCol>3</MinTileCol>
     41683                                                <MaxTileCol>3</MaxTileCol>
     41684                                        </TileMatrixLimits>
     41685                                        <TileMatrixLimits>
     41686                                                <TileMatrix>4</TileMatrix>
     41687                                                <MinTileRow>5</MinTileRow>
     41688                                                <MaxTileRow>5</MaxTileRow>
     41689                                                <MinTileCol>7</MinTileCol>
     41690                                                <MaxTileCol>7</MaxTileCol>
     41691                                        </TileMatrixLimits>
     41692                                        <TileMatrixLimits>
     41693                                                <TileMatrix>5</TileMatrix>
     41694                                                <MinTileRow>11</MinTileRow>
     41695                                                <MaxTileRow>11</MaxTileRow>
     41696                                                <MinTileCol>15</MinTileCol>
     41697                                                <MaxTileCol>15</MaxTileCol>
     41698                                        </TileMatrixLimits>
     41699                                        <TileMatrixLimits>
     41700                                                <TileMatrix>6</TileMatrix>
     41701                                                <MinTileRow>22</MinTileRow>
     41702                                                <MaxTileRow>22</MaxTileRow>
     41703                                                <MinTileCol>31</MinTileCol>
     41704                                                <MaxTileCol>31</MaxTileCol>
     41705                                        </TileMatrixLimits>
     41706                                        <TileMatrixLimits>
     41707                                                <TileMatrix>7</TileMatrix>
     41708                                                <MinTileRow>45</MinTileRow>
     41709                                                <MaxTileRow>45</MaxTileRow>
     41710                                                <MinTileCol>63</MinTileCol>
     41711                                                <MaxTileCol>63</MaxTileCol>
     41712                                        </TileMatrixLimits>
     41713                                        <TileMatrixLimits>
     41714                                                <TileMatrix>8</TileMatrix>
     41715                                                <MinTileRow>90</MinTileRow>
     41716                                                <MaxTileRow>90</MaxTileRow>
     41717                                                <MinTileCol>127</MinTileCol>
     41718                                                <MaxTileCol>127</MaxTileCol>
     41719                                        </TileMatrixLimits>
     41720                                        <TileMatrixLimits>
     41721                                                <TileMatrix>9</TileMatrix>
     41722                                                <MinTileRow>181</MinTileRow>
     41723                                                <MaxTileRow>181</MaxTileRow>
     41724                                                <MinTileCol>255</MinTileCol>
     41725                                                <MaxTileCol>255</MaxTileCol>
     41726                                        </TileMatrixLimits>
     41727                                </TileMatrixSetLimits>
     41728                        </TileMatrixSetLink>
     41729                </Layer>
     41730                <Layer>
     41731                        <ows:Title>Orthophotographies Geosud de NORD-PAS-DE-CALAIS 2014</ows:Title>
     41732                        <ows:Abstract>Orthophotographies satellites de NORD-PAS-DE-CALAIS issues du projet Geosud.</ows:Abstract>
     41733                        <ows:Keywords>
     41734                                <ows:Keyword>Photographies</ows:Keyword>
     41735                        </ows:Keywords>
     41736                        <ows:WGS84BoundingBox>
     41737                                <ows:LowerCorner>1.49006 49.9457</ows:LowerCorner>
     41738                                <ows:UpperCorner>4.26782 51.106</ows:UpperCorner>
     41739                        </ows:WGS84BoundingBox>
     41740                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_NORD-PAS-DE-CALAIS-2014</ows:Identifier>
     41741                        <Style isDefault="true">
     41742                                <ows:Title>Données Brutes</ows:Title>
     41743                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41744                                <ows:Keywords>
     41745                                        <ows:Keyword>Défaut</ows:Keyword>
     41746                                </ows:Keywords>
     41747                                <ows:Identifier>normal</ows:Identifier>
     41748                                <LegendURL format="image/jpeg" height="200"
     41749                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41750                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41751                        </Style>
     41752                        <Format>image/jpeg</Format>
     41753                        <TileMatrixSetLink>
     41754                                <TileMatrixSet>PM</TileMatrixSet>
     41755                                <TileMatrixSetLimits>
     41756                                        <TileMatrixLimits>
     41757                                                <TileMatrix>0</TileMatrix>
     41758                                                <MinTileRow>0</MinTileRow>
     41759                                                <MaxTileRow>0</MaxTileRow>
     41760                                                <MinTileCol>0</MinTileCol>
     41761                                                <MaxTileCol>0</MaxTileCol>
     41762                                        </TileMatrixLimits>
     41763                                        <TileMatrixLimits>
     41764                                                <TileMatrix>1</TileMatrix>
     41765                                                <MinTileRow>0</MinTileRow>
     41766                                                <MaxTileRow>0</MaxTileRow>
     41767                                                <MinTileCol>1</MinTileCol>
     41768                                                <MaxTileCol>1</MaxTileCol>
     41769                                        </TileMatrixLimits>
     41770                                        <TileMatrixLimits>
     41771                                                <TileMatrix>10</TileMatrix>
     41772                                                <MinTileRow>342</MinTileRow>
     41773                                                <MaxTileRow>347</MaxTileRow>
     41774                                                <MinTileCol>516</MinTileCol>
     41775                                                <MaxTileCol>524</MaxTileCol>
     41776                                        </TileMatrixLimits>
     41777                                        <TileMatrixLimits>
     41778                                                <TileMatrix>11</TileMatrix>
     41779                                                <MinTileRow>684</MinTileRow>
     41780                                                <MaxTileRow>695</MaxTileRow>
     41781                                                <MinTileCol>1032</MinTileCol>
     41782                                                <MaxTileCol>1048</MaxTileCol>
     41783                                        </TileMatrixLimits>
     41784                                        <TileMatrixLimits>
     41785                                                <TileMatrix>12</TileMatrix>
     41786                                                <MinTileRow>1369</MinTileRow>
     41787                                                <MaxTileRow>1390</MaxTileRow>
     41788                                                <MinTileCol>2065</MinTileCol>
     41789                                                <MaxTileCol>2096</MaxTileCol>
     41790                                        </TileMatrixLimits>
     41791                                        <TileMatrixLimits>
     41792                                                <TileMatrix>13</TileMatrix>
     41793                                                <MinTileRow>2738</MinTileRow>
     41794                                                <MaxTileRow>2780</MaxTileRow>
     41795                                                <MinTileCol>4130</MinTileCol>
     41796                                                <MaxTileCol>4192</MaxTileCol>
     41797                                        </TileMatrixLimits>
     41798                                        <TileMatrixLimits>
     41799                                                <TileMatrix>14</TileMatrix>
     41800                                                <MinTileRow>5476</MinTileRow>
     41801                                                <MaxTileRow>5560</MaxTileRow>
     41802                                                <MinTileCol>8260</MinTileCol>
     41803                                                <MaxTileCol>8385</MaxTileCol>
     41804                                        </TileMatrixLimits>
     41805                                        <TileMatrixLimits>
     41806                                                <TileMatrix>15</TileMatrix>
     41807                                                <MinTileRow>10953</MinTileRow>
     41808                                                <MaxTileRow>11120</MaxTileRow>
     41809                                                <MinTileCol>16521</MinTileCol>
     41810                                                <MaxTileCol>16770</MaxTileCol>
     41811                                        </TileMatrixLimits>
     41812                                        <TileMatrixLimits>
     41813                                                <TileMatrix>16</TileMatrix>
     41814                                                <MinTileRow>21907</MinTileRow>
     41815                                                <MaxTileRow>22240</MaxTileRow>
     41816                                                <MinTileCol>33042</MinTileCol>
     41817                                                <MaxTileCol>33541</MaxTileCol>
     41818                                        </TileMatrixLimits>
     41819                                        <TileMatrixLimits>
     41820                                                <TileMatrix>17</TileMatrix>
     41821                                                <MinTileRow>43815</MinTileRow>
     41822                                                <MaxTileRow>44481</MaxTileRow>
     41823                                                <MinTileCol>66085</MinTileCol>
     41824                                                <MaxTileCol>67082</MaxTileCol>
     41825                                        </TileMatrixLimits>
     41826                                        <TileMatrixLimits>
     41827                                                <TileMatrix>2</TileMatrix>
     41828                                                <MinTileRow>1</MinTileRow>
     41829                                                <MaxTileRow>1</MaxTileRow>
     41830                                                <MinTileCol>2</MinTileCol>
     41831                                                <MaxTileCol>2</MaxTileCol>
     41832                                        </TileMatrixLimits>
     41833                                        <TileMatrixLimits>
     41834                                                <TileMatrix>3</TileMatrix>
     41835                                                <MinTileRow>2</MinTileRow>
     41836                                                <MaxTileRow>2</MaxTileRow>
     41837                                                <MinTileCol>4</MinTileCol>
     41838                                                <MaxTileCol>4</MaxTileCol>
     41839                                        </TileMatrixLimits>
     41840                                        <TileMatrixLimits>
     41841                                                <TileMatrix>4</TileMatrix>
     41842                                                <MinTileRow>5</MinTileRow>
     41843                                                <MaxTileRow>5</MaxTileRow>
     41844                                                <MinTileCol>8</MinTileCol>
     41845                                                <MaxTileCol>8</MaxTileCol>
     41846                                        </TileMatrixLimits>
     41847                                        <TileMatrixLimits>
     41848                                                <TileMatrix>5</TileMatrix>
     41849                                                <MinTileRow>10</MinTileRow>
     41850                                                <MaxTileRow>10</MaxTileRow>
     41851                                                <MinTileCol>16</MinTileCol>
     41852                                                <MaxTileCol>16</MaxTileCol>
     41853                                        </TileMatrixLimits>
     41854                                        <TileMatrixLimits>
     41855                                                <TileMatrix>6</TileMatrix>
     41856                                                <MinTileRow>21</MinTileRow>
     41857                                                <MaxTileRow>21</MaxTileRow>
     41858                                                <MinTileCol>32</MinTileCol>
     41859                                                <MaxTileCol>32</MaxTileCol>
     41860                                        </TileMatrixLimits>
     41861                                        <TileMatrixLimits>
     41862                                                <TileMatrix>7</TileMatrix>
     41863                                                <MinTileRow>42</MinTileRow>
     41864                                                <MaxTileRow>43</MaxTileRow>
     41865                                                <MinTileCol>64</MinTileCol>
     41866                                                <MaxTileCol>65</MaxTileCol>
     41867                                        </TileMatrixLimits>
     41868                                        <TileMatrixLimits>
     41869                                                <TileMatrix>8</TileMatrix>
     41870                                                <MinTileRow>85</MinTileRow>
     41871                                                <MaxTileRow>86</MaxTileRow>
     41872                                                <MinTileCol>129</MinTileCol>
     41873                                                <MaxTileCol>131</MaxTileCol>
     41874                                        </TileMatrixLimits>
     41875                                        <TileMatrixLimits>
     41876                                                <TileMatrix>9</TileMatrix>
     41877                                                <MinTileRow>171</MinTileRow>
     41878                                                <MaxTileRow>173</MaxTileRow>
     41879                                                <MinTileCol>258</MinTileCol>
     41880                                                <MaxTileCol>262</MaxTileCol>
     41881                                        </TileMatrixLimits>
     41882                                </TileMatrixSetLimits>
     41883                        </TileMatrixSetLink>
     41884                </Layer>
     41885                <Layer>
     41886                        <ows:Title>Orthophotographies Geosud de PACA 2014</ows:Title>
     41887                        <ows:Abstract>Orthophotographies satellites de PACA issues du projet Geosud.</ows:Abstract>
     41888                        <ows:Keywords>
     41889                                <ows:Keyword>Photographies</ows:Keyword>
     41890                        </ows:Keywords>
     41891                        <ows:WGS84BoundingBox>
     41892                                <ows:LowerCorner>4.18621 42.9109</ows:LowerCorner>
     41893                                <ows:UpperCorner>7.8182 45.1911</ows:UpperCorner>
     41894                        </ows:WGS84BoundingBox>
     41895                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-2014</ows:Identifier>
     41896                        <Style isDefault="true">
     41897                                <ows:Title>Données Brutes</ows:Title>
     41898                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     41899                                <ows:Keywords>
     41900                                        <ows:Keyword>Défaut</ows:Keyword>
     41901                                </ows:Keywords>
     41902                                <ows:Identifier>normal</ows:Identifier>
     41903                                <LegendURL format="image/jpeg" height="200"
     41904                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     41905                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     41906                        </Style>
     41907                        <Format>image/jpeg</Format>
     41908                        <TileMatrixSetLink>
     41909                                <TileMatrixSet>PM</TileMatrixSet>
     41910                                <TileMatrixSetLimits>
     41911                                        <TileMatrixLimits>
     41912                                                <TileMatrix>0</TileMatrix>
     41913                                                <MinTileRow>0</MinTileRow>
     41914                                                <MaxTileRow>0</MaxTileRow>
     41915                                                <MinTileCol>0</MinTileCol>
     41916                                                <MaxTileCol>0</MaxTileCol>
     41917                                        </TileMatrixLimits>
     41918                                        <TileMatrixLimits>
     41919                                                <TileMatrix>1</TileMatrix>
     41920                                                <MinTileRow>0</MinTileRow>
     41921                                                <MaxTileRow>0</MaxTileRow>
     41922                                                <MinTileCol>1</MinTileCol>
     41923                                                <MaxTileCol>1</MaxTileCol>
     41924                                        </TileMatrixLimits>
     41925                                        <TileMatrixLimits>
     41926                                                <TileMatrix>10</TileMatrix>
     41927                                                <MinTileRow>367</MinTileRow>
     41928                                                <MaxTileRow>376</MaxTileRow>
     41929                                                <MinTileCol>523</MinTileCol>
     41930                                                <MaxTileCol>534</MaxTileCol>
     41931                                        </TileMatrixLimits>
     41932                                        <TileMatrixLimits>
     41933                                                <TileMatrix>11</TileMatrix>
     41934                                                <MinTileRow>735</MinTileRow>
     41935                                                <MaxTileRow>752</MaxTileRow>
     41936                                                <MinTileCol>1047</MinTileCol>
     41937                                                <MaxTileCol>1068</MaxTileCol>
     41938                                        </TileMatrixLimits>
     41939                                        <TileMatrixLimits>
     41940                                                <TileMatrix>12</TileMatrix>
     41941                                                <MinTileRow>1470</MinTileRow>
     41942                                                <MaxTileRow>1505</MaxTileRow>
     41943                                                <MinTileCol>2095</MinTileCol>
     41944                                                <MaxTileCol>2136</MaxTileCol>
     41945                                        </TileMatrixLimits>
     41946                                        <TileMatrixLimits>
     41947                                                <TileMatrix>13</TileMatrix>
     41948                                                <MinTileRow>2941</MinTileRow>
     41949                                                <MaxTileRow>3011</MaxTileRow>
     41950                                                <MinTileCol>4191</MinTileCol>
     41951                                                <MaxTileCol>4272</MaxTileCol>
     41952                                        </TileMatrixLimits>
     41953                                        <TileMatrixLimits>
     41954                                                <TileMatrix>14</TileMatrix>
     41955                                                <MinTileRow>5883</MinTileRow>
     41956                                                <MaxTileRow>6022</MaxTileRow>
     41957                                                <MinTileCol>8382</MinTileCol>
     41958                                                <MaxTileCol>8544</MaxTileCol>
     41959                                        </TileMatrixLimits>
     41960                                        <TileMatrixLimits>
     41961                                                <TileMatrix>15</TileMatrix>
     41962                                                <MinTileRow>11767</MinTileRow>
     41963                                                <MaxTileRow>12045</MaxTileRow>
     41964                                                <MinTileCol>16765</MinTileCol>
     41965                                                <MaxTileCol>17088</MaxTileCol>
     41966                                        </TileMatrixLimits>
     41967                                        <TileMatrixLimits>
     41968                                                <TileMatrix>16</TileMatrix>
     41969                                                <MinTileRow>23535</MinTileRow>
     41970                                                <MaxTileRow>24090</MaxTileRow>
     41971                                                <MinTileCol>33531</MinTileCol>
     41972                                                <MaxTileCol>34176</MaxTileCol>
     41973                                        </TileMatrixLimits>
     41974                                        <TileMatrixLimits>
     41975                                                <TileMatrix>17</TileMatrix>
     41976                                                <MinTileRow>47071</MinTileRow>
     41977                                                <MaxTileRow>48181</MaxTileRow>
     41978                                                <MinTileCol>67063</MinTileCol>
     41979                                                <MaxTileCol>68352</MaxTileCol>
     41980                                        </TileMatrixLimits>
     41981                                        <TileMatrixLimits>
     41982                                                <TileMatrix>2</TileMatrix>
     41983                                                <MinTileRow>1</MinTileRow>
     41984                                                <MaxTileRow>1</MaxTileRow>
     41985                                                <MinTileCol>2</MinTileCol>
     41986                                                <MaxTileCol>2</MaxTileCol>
     41987                                        </TileMatrixLimits>
     41988                                        <TileMatrixLimits>
     41989                                                <TileMatrix>3</TileMatrix>
     41990                                                <MinTileRow>2</MinTileRow>
     41991                                                <MaxTileRow>2</MaxTileRow>
     41992                                                <MinTileCol>4</MinTileCol>
     41993                                                <MaxTileCol>4</MaxTileCol>
     41994                                        </TileMatrixLimits>
     41995                                        <TileMatrixLimits>
     41996                                                <TileMatrix>4</TileMatrix>
     41997                                                <MinTileRow>5</MinTileRow>
     41998                                                <MaxTileRow>5</MaxTileRow>
     41999                                                <MinTileCol>8</MinTileCol>
     42000                                                <MaxTileCol>8</MaxTileCol>
     42001                                        </TileMatrixLimits>
     42002                                        <TileMatrixLimits>
     42003                                                <TileMatrix>5</TileMatrix>
     42004                                                <MinTileRow>11</MinTileRow>
     42005                                                <MaxTileRow>11</MaxTileRow>
     42006                                                <MinTileCol>16</MinTileCol>
     42007                                                <MaxTileCol>16</MaxTileCol>
     42008                                        </TileMatrixLimits>
     42009                                        <TileMatrixLimits>
     42010                                                <TileMatrix>6</TileMatrix>
     42011                                                <MinTileRow>22</MinTileRow>
     42012                                                <MaxTileRow>23</MaxTileRow>
     42013                                                <MinTileCol>32</MinTileCol>
     42014                                                <MaxTileCol>33</MaxTileCol>
     42015                                        </TileMatrixLimits>
     42016                                        <TileMatrixLimits>
     42017                                                <TileMatrix>7</TileMatrix>
     42018                                                <MinTileRow>45</MinTileRow>
     42019                                                <MaxTileRow>47</MaxTileRow>
     42020                                                <MinTileCol>65</MinTileCol>
     42021                                                <MaxTileCol>66</MaxTileCol>
     42022                                        </TileMatrixLimits>
     42023                                        <TileMatrixLimits>
     42024                                                <TileMatrix>8</TileMatrix>
     42025                                                <MinTileRow>91</MinTileRow>
     42026                                                <MaxTileRow>94</MaxTileRow>
     42027                                                <MinTileCol>130</MinTileCol>
     42028                                                <MaxTileCol>133</MaxTileCol>
     42029                                        </TileMatrixLimits>
     42030                                        <TileMatrixLimits>
     42031                                                <TileMatrix>9</TileMatrix>
     42032                                                <MinTileRow>183</MinTileRow>
     42033                                                <MaxTileRow>188</MaxTileRow>
     42034                                                <MinTileCol>261</MinTileCol>
     42035                                                <MaxTileCol>267</MaxTileCol>
     42036                                        </TileMatrixLimits>
     42037                                </TileMatrixSetLimits>
     42038                        </TileMatrixSetLink>
     42039                </Layer>
     42040                <Layer>
     42041                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     42042                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     42043                        <ows:Keywords>
     42044                                <ows:Keyword>Photographies</ows:Keyword>
     42045                        </ows:Keywords>
     42046                        <ows:WGS84BoundingBox>
     42047                                <ows:LowerCorner>7.07108 43.5332</ows:LowerCorner>
     42048                                <ows:UpperCorner>7.33573 43.7764</ows:UpperCorner>
     42049                        </ows:WGS84BoundingBox>
     42050                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-04-05-37787410</ows:Identifier>
     42051                        <Style isDefault="true">
     42052                                <ows:Title>Données Brutes</ows:Title>
     42053                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42054                                <ows:Keywords>
     42055                                        <ows:Keyword>Défaut</ows:Keyword>
     42056                                </ows:Keywords>
     42057                                <ows:Identifier>normal</ows:Identifier>
     42058                                <LegendURL format="image/jpeg" height="200"
     42059                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42060                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42061                        </Style>
     42062                        <Format>image/jpeg</Format>
     42063                        <TileMatrixSetLink>
     42064                                <TileMatrixSet>PM</TileMatrixSet>
     42065                                <TileMatrixSetLimits>
     42066                                        <TileMatrixLimits>
     42067                                                <TileMatrix>0</TileMatrix>
     42068                                                <MinTileRow>0</MinTileRow>
     42069                                                <MaxTileRow>0</MaxTileRow>
     42070                                                <MinTileCol>0</MinTileCol>
     42071                                                <MaxTileCol>0</MaxTileCol>
     42072                                        </TileMatrixLimits>
     42073                                        <TileMatrixLimits>
     42074                                                <TileMatrix>1</TileMatrix>
     42075                                                <MinTileRow>0</MinTileRow>
     42076                                                <MaxTileRow>0</MaxTileRow>
     42077                                                <MinTileCol>1</MinTileCol>
     42078                                                <MaxTileCol>1</MaxTileCol>
     42079                                        </TileMatrixLimits>
     42080                                        <TileMatrixLimits>
     42081                                                <TileMatrix>10</TileMatrix>
     42082                                                <MinTileRow>373</MinTileRow>
     42083                                                <MaxTileRow>374</MaxTileRow>
     42084                                                <MinTileCol>532</MinTileCol>
     42085                                                <MaxTileCol>532</MaxTileCol>
     42086                                        </TileMatrixLimits>
     42087                                        <TileMatrixLimits>
     42088                                                <TileMatrix>11</TileMatrix>
     42089                                                <MinTileRow>746</MinTileRow>
     42090                                                <MaxTileRow>748</MaxTileRow>
     42091                                                <MinTileCol>1064</MinTileCol>
     42092                                                <MaxTileCol>1065</MaxTileCol>
     42093                                        </TileMatrixLimits>
     42094                                        <TileMatrixLimits>
     42095                                                <TileMatrix>12</TileMatrix>
     42096                                                <MinTileRow>1492</MinTileRow>
     42097                                                <MaxTileRow>1496</MaxTileRow>
     42098                                                <MinTileCol>2128</MinTileCol>
     42099                                                <MaxTileCol>2131</MaxTileCol>
     42100                                        </TileMatrixLimits>
     42101                                        <TileMatrixLimits>
     42102                                                <TileMatrix>13</TileMatrix>
     42103                                                <MinTileRow>2985</MinTileRow>
     42104                                                <MaxTileRow>2993</MaxTileRow>
     42105                                                <MinTileCol>4257</MinTileCol>
     42106                                                <MaxTileCol>4262</MaxTileCol>
     42107                                        </TileMatrixLimits>
     42108                                        <TileMatrixLimits>
     42109                                                <TileMatrix>14</TileMatrix>
     42110                                                <MinTileRow>5971</MinTileRow>
     42111                                                <MaxTileRow>5986</MaxTileRow>
     42112                                                <MinTileCol>8514</MinTileCol>
     42113                                                <MaxTileCol>8525</MaxTileCol>
     42114                                        </TileMatrixLimits>
     42115                                        <TileMatrixLimits>
     42116                                                <TileMatrix>15</TileMatrix>
     42117                                                <MinTileRow>11943</MinTileRow>
     42118                                                <MaxTileRow>11973</MaxTileRow>
     42119                                                <MinTileCol>17028</MinTileCol>
     42120                                                <MaxTileCol>17051</MaxTileCol>
     42121                                        </TileMatrixLimits>
     42122                                        <TileMatrixLimits>
     42123                                                <TileMatrix>16</TileMatrix>
     42124                                                <MinTileRow>23887</MinTileRow>
     42125                                                <MaxTileRow>23946</MaxTileRow>
     42126                                                <MinTileCol>34056</MinTileCol>
     42127                                                <MaxTileCol>34102</MaxTileCol>
     42128                                        </TileMatrixLimits>
     42129                                        <TileMatrixLimits>
     42130                                                <TileMatrix>17</TileMatrix>
     42131                                                <MinTileRow>47775</MinTileRow>
     42132                                                <MaxTileRow>47892</MaxTileRow>
     42133                                                <MinTileCol>68112</MinTileCol>
     42134                                                <MaxTileCol>68205</MaxTileCol>
     42135                                        </TileMatrixLimits>
     42136                                        <TileMatrixLimits>
     42137                                                <TileMatrix>18</TileMatrix>
     42138                                                <MinTileRow>95550</MinTileRow>
     42139                                                <MaxTileRow>95785</MaxTileRow>
     42140                                                <MinTileCol>136224</MinTileCol>
     42141                                                <MaxTileCol>136411</MaxTileCol>
     42142                                        </TileMatrixLimits>
     42143                                        <TileMatrixLimits>
     42144                                                <TileMatrix>2</TileMatrix>
     42145                                                <MinTileRow>1</MinTileRow>
     42146                                                <MaxTileRow>1</MaxTileRow>
     42147                                                <MinTileCol>2</MinTileCol>
     42148                                                <MaxTileCol>2</MaxTileCol>
     42149                                        </TileMatrixLimits>
     42150                                        <TileMatrixLimits>
     42151                                                <TileMatrix>3</TileMatrix>
     42152                                                <MinTileRow>2</MinTileRow>
     42153                                                <MaxTileRow>2</MaxTileRow>
     42154                                                <MinTileCol>4</MinTileCol>
     42155                                                <MaxTileCol>4</MaxTileCol>
     42156                                        </TileMatrixLimits>
     42157                                        <TileMatrixLimits>
     42158                                                <TileMatrix>4</TileMatrix>
     42159                                                <MinTileRow>5</MinTileRow>
     42160                                                <MaxTileRow>5</MaxTileRow>
     42161                                                <MinTileCol>8</MinTileCol>
     42162                                                <MaxTileCol>8</MaxTileCol>
     42163                                        </TileMatrixLimits>
     42164                                        <TileMatrixLimits>
     42165                                                <TileMatrix>5</TileMatrix>
     42166                                                <MinTileRow>11</MinTileRow>
     42167                                                <MaxTileRow>11</MaxTileRow>
     42168                                                <MinTileCol>16</MinTileCol>
     42169                                                <MaxTileCol>16</MaxTileCol>
     42170                                        </TileMatrixLimits>
     42171                                        <TileMatrixLimits>
     42172                                                <TileMatrix>6</TileMatrix>
     42173                                                <MinTileRow>23</MinTileRow>
     42174                                                <MaxTileRow>23</MaxTileRow>
     42175                                                <MinTileCol>33</MinTileCol>
     42176                                                <MaxTileCol>33</MaxTileCol>
     42177                                        </TileMatrixLimits>
     42178                                        <TileMatrixLimits>
     42179                                                <TileMatrix>7</TileMatrix>
     42180                                                <MinTileRow>46</MinTileRow>
     42181                                                <MaxTileRow>46</MaxTileRow>
     42182                                                <MinTileCol>66</MinTileCol>
     42183                                                <MaxTileCol>66</MaxTileCol>
     42184                                        </TileMatrixLimits>
     42185                                        <TileMatrixLimits>
     42186                                                <TileMatrix>8</TileMatrix>
     42187                                                <MinTileRow>93</MinTileRow>
     42188                                                <MaxTileRow>93</MaxTileRow>
     42189                                                <MinTileCol>133</MinTileCol>
     42190                                                <MaxTileCol>133</MaxTileCol>
     42191                                        </TileMatrixLimits>
     42192                                        <TileMatrixLimits>
     42193                                                <TileMatrix>9</TileMatrix>
     42194                                                <MinTileRow>186</MinTileRow>
     42195                                                <MaxTileRow>187</MaxTileRow>
     42196                                                <MinTileCol>266</MinTileCol>
     42197                                                <MaxTileCol>266</MaxTileCol>
     42198                                        </TileMatrixLimits>
     42199                                </TileMatrixSetLimits>
     42200                        </TileMatrixSetLink>
     42201                </Layer>
     42202                <Layer>
     42203                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     42204                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     42205                        <ows:Keywords>
     42206                                <ows:Keyword>Photographies</ows:Keyword>
     42207                        </ows:Keywords>
     42208                        <ows:WGS84BoundingBox>
     42209                                <ows:LowerCorner>5.20907 43.4017</ows:LowerCorner>
     42210                                <ows:UpperCorner>5.48819 43.5875</ows:UpperCorner>
     42211                        </ows:WGS84BoundingBox>
     42212                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38422951</ows:Identifier>
     42213                        <Style isDefault="true">
     42214                                <ows:Title>Données Brutes</ows:Title>
     42215                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42216                                <ows:Keywords>
     42217                                        <ows:Keyword>Défaut</ows:Keyword>
     42218                                </ows:Keywords>
     42219                                <ows:Identifier>normal</ows:Identifier>
     42220                                <LegendURL format="image/jpeg" height="200"
     42221                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42222                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42223                        </Style>
     42224                        <Format>image/jpeg</Format>
     42225                        <TileMatrixSetLink>
     42226                                <TileMatrixSet>PM</TileMatrixSet>
     42227                                <TileMatrixSetLimits>
     42228                                        <TileMatrixLimits>
     42229                                                <TileMatrix>0</TileMatrix>
     42230                                                <MinTileRow>0</MinTileRow>
     42231                                                <MaxTileRow>0</MaxTileRow>
     42232                                                <MinTileCol>0</MinTileCol>
     42233                                                <MaxTileCol>0</MaxTileCol>
     42234                                        </TileMatrixLimits>
     42235                                        <TileMatrixLimits>
     42236                                                <TileMatrix>1</TileMatrix>
     42237                                                <MinTileRow>0</MinTileRow>
     42238                                                <MaxTileRow>0</MaxTileRow>
     42239                                                <MinTileCol>1</MinTileCol>
     42240                                                <MaxTileCol>1</MaxTileCol>
     42241                                        </TileMatrixLimits>
     42242                                        <TileMatrixLimits>
     42243                                                <TileMatrix>10</TileMatrix>
     42244                                                <MinTileRow>373</MinTileRow>
     42245                                                <MaxTileRow>374</MaxTileRow>
     42246                                                <MinTileCol>526</MinTileCol>
     42247                                                <MaxTileCol>527</MaxTileCol>
     42248                                        </TileMatrixLimits>
     42249                                        <TileMatrixLimits>
     42250                                                <TileMatrix>11</TileMatrix>
     42251                                                <MinTileRow>747</MinTileRow>
     42252                                                <MaxTileRow>749</MaxTileRow>
     42253                                                <MinTileCol>1053</MinTileCol>
     42254                                                <MaxTileCol>1055</MaxTileCol>
     42255                                        </TileMatrixLimits>
     42256                                        <TileMatrixLimits>
     42257                                                <TileMatrix>12</TileMatrix>
     42258                                                <MinTileRow>1495</MinTileRow>
     42259                                                <MaxTileRow>1498</MaxTileRow>
     42260                                                <MinTileCol>2107</MinTileCol>
     42261                                                <MaxTileCol>2110</MaxTileCol>
     42262                                        </TileMatrixLimits>
     42263                                        <TileMatrixLimits>
     42264                                                <TileMatrix>13</TileMatrix>
     42265                                                <MinTileRow>2991</MinTileRow>
     42266                                                <MaxTileRow>2997</MaxTileRow>
     42267                                                <MinTileCol>4214</MinTileCol>
     42268                                                <MaxTileCol>4220</MaxTileCol>
     42269                                        </TileMatrixLimits>
     42270                                        <TileMatrixLimits>
     42271                                                <TileMatrix>14</TileMatrix>
     42272                                                <MinTileRow>5983</MinTileRow>
     42273                                                <MaxTileRow>5994</MaxTileRow>
     42274                                                <MinTileCol>8429</MinTileCol>
     42275                                                <MaxTileCol>8441</MaxTileCol>
     42276                                        </TileMatrixLimits>
     42277                                        <TileMatrixLimits>
     42278                                                <TileMatrix>15</TileMatrix>
     42279                                                <MinTileRow>11967</MinTileRow>
     42280                                                <MaxTileRow>11989</MaxTileRow>
     42281                                                <MinTileCol>16858</MinTileCol>
     42282                                                <MaxTileCol>16882</MaxTileCol>
     42283                                        </TileMatrixLimits>
     42284                                        <TileMatrixLimits>
     42285                                                <TileMatrix>16</TileMatrix>
     42286                                                <MinTileRow>23934</MinTileRow>
     42287                                                <MaxTileRow>23979</MaxTileRow>
     42288                                                <MinTileCol>33716</MinTileCol>
     42289                                                <MaxTileCol>33765</MaxTileCol>
     42290                                        </TileMatrixLimits>
     42291                                        <TileMatrixLimits>
     42292                                                <TileMatrix>17</TileMatrix>
     42293                                                <MinTileRow>47868</MinTileRow>
     42294                                                <MaxTileRow>47959</MaxTileRow>
     42295                                                <MinTileCol>67432</MinTileCol>
     42296                                                <MaxTileCol>67531</MaxTileCol>
     42297                                        </TileMatrixLimits>
     42298                                        <TileMatrixLimits>
     42299                                                <TileMatrix>18</TileMatrix>
     42300                                                <MinTileRow>95736</MinTileRow>
     42301                                                <MaxTileRow>95918</MaxTileRow>
     42302                                                <MinTileCol>134865</MinTileCol>
     42303                                                <MaxTileCol>135063</MaxTileCol>
     42304                                        </TileMatrixLimits>
     42305                                        <TileMatrixLimits>
     42306                                                <TileMatrix>2</TileMatrix>
     42307                                                <MinTileRow>1</MinTileRow>
     42308                                                <MaxTileRow>1</MaxTileRow>
     42309                                                <MinTileCol>2</MinTileCol>
     42310                                                <MaxTileCol>2</MaxTileCol>
     42311                                        </TileMatrixLimits>
     42312                                        <TileMatrixLimits>
     42313                                                <TileMatrix>3</TileMatrix>
     42314                                                <MinTileRow>2</MinTileRow>
     42315                                                <MaxTileRow>2</MaxTileRow>
     42316                                                <MinTileCol>4</MinTileCol>
     42317                                                <MaxTileCol>4</MaxTileCol>
     42318                                        </TileMatrixLimits>
     42319                                        <TileMatrixLimits>
     42320                                                <TileMatrix>4</TileMatrix>
     42321                                                <MinTileRow>5</MinTileRow>
     42322                                                <MaxTileRow>5</MaxTileRow>
     42323                                                <MinTileCol>8</MinTileCol>
     42324                                                <MaxTileCol>8</MaxTileCol>
     42325                                        </TileMatrixLimits>
     42326                                        <TileMatrixLimits>
     42327                                                <TileMatrix>5</TileMatrix>
     42328                                                <MinTileRow>11</MinTileRow>
     42329                                                <MaxTileRow>11</MaxTileRow>
     42330                                                <MinTileCol>16</MinTileCol>
     42331                                                <MaxTileCol>16</MaxTileCol>
     42332                                        </TileMatrixLimits>
     42333                                        <TileMatrixLimits>
     42334                                                <TileMatrix>6</TileMatrix>
     42335                                                <MinTileRow>23</MinTileRow>
     42336                                                <MaxTileRow>23</MaxTileRow>
     42337                                                <MinTileCol>32</MinTileCol>
     42338                                                <MaxTileCol>32</MaxTileCol>
     42339                                        </TileMatrixLimits>
     42340                                        <TileMatrixLimits>
     42341                                                <TileMatrix>7</TileMatrix>
     42342                                                <MinTileRow>46</MinTileRow>
     42343                                                <MaxTileRow>46</MaxTileRow>
     42344                                                <MinTileCol>65</MinTileCol>
     42345                                                <MaxTileCol>65</MaxTileCol>
     42346                                        </TileMatrixLimits>
     42347                                        <TileMatrixLimits>
     42348                                                <TileMatrix>8</TileMatrix>
     42349                                                <MinTileRow>93</MinTileRow>
     42350                                                <MaxTileRow>93</MaxTileRow>
     42351                                                <MinTileCol>131</MinTileCol>
     42352                                                <MaxTileCol>131</MaxTileCol>
     42353                                        </TileMatrixLimits>
     42354                                        <TileMatrixLimits>
     42355                                                <TileMatrix>9</TileMatrix>
     42356                                                <MinTileRow>186</MinTileRow>
     42357                                                <MaxTileRow>187</MaxTileRow>
     42358                                                <MinTileCol>263</MinTileCol>
     42359                                                <MaxTileCol>263</MaxTileCol>
     42360                                        </TileMatrixLimits>
     42361                                </TileMatrixSetLimits>
     42362                        </TileMatrixSetLink>
     42363                </Layer>
     42364                <Layer>
     42365                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     42366                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     42367                        <ows:Keywords>
     42368                                <ows:Keyword>Photographies</ows:Keyword>
     42369                        </ows:Keywords>
     42370                        <ows:WGS84BoundingBox>
     42371                                <ows:LowerCorner>4.99128 43.1723</ows:LowerCorner>
     42372                                <ows:UpperCorner>5.29096 43.6095</ows:UpperCorner>
     42373                        </ows:WGS84BoundingBox>
     42374                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38438564</ows:Identifier>
     42375                        <Style isDefault="true">
     42376                                <ows:Title>Données Brutes</ows:Title>
     42377                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42378                                <ows:Keywords>
     42379                                        <ows:Keyword>Défaut</ows:Keyword>
     42380                                </ows:Keywords>
     42381                                <ows:Identifier>normal</ows:Identifier>
     42382                                <LegendURL format="image/jpeg" height="200"
     42383                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42384                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42385                        </Style>
     42386                        <Format>image/jpeg</Format>
     42387                        <TileMatrixSetLink>
     42388                                <TileMatrixSet>PM</TileMatrixSet>
     42389                                <TileMatrixSetLimits>
     42390                                        <TileMatrixLimits>
     42391                                                <TileMatrix>0</TileMatrix>
     42392                                                <MinTileRow>0</MinTileRow>
     42393                                                <MaxTileRow>0</MaxTileRow>
     42394                                                <MinTileCol>0</MinTileCol>
     42395                                                <MaxTileCol>0</MaxTileCol>
     42396                                        </TileMatrixLimits>
     42397                                        <TileMatrixLimits>
     42398                                                <TileMatrix>1</TileMatrix>
     42399                                                <MinTileRow>0</MinTileRow>
     42400                                                <MaxTileRow>0</MaxTileRow>
     42401                                                <MinTileCol>1</MinTileCol>
     42402                                                <MaxTileCol>1</MaxTileCol>
     42403                                        </TileMatrixLimits>
     42404                                        <TileMatrixLimits>
     42405                                                <TileMatrix>10</TileMatrix>
     42406                                                <MinTileRow>373</MinTileRow>
     42407                                                <MaxTileRow>375</MaxTileRow>
     42408                                                <MinTileCol>526</MinTileCol>
     42409                                                <MaxTileCol>527</MaxTileCol>
     42410                                        </TileMatrixLimits>
     42411                                        <TileMatrixLimits>
     42412                                                <TileMatrix>11</TileMatrix>
     42413                                                <MinTileRow>747</MinTileRow>
     42414                                                <MaxTileRow>751</MaxTileRow>
     42415                                                <MinTileCol>1052</MinTileCol>
     42416                                                <MaxTileCol>1054</MaxTileCol>
     42417                                        </TileMatrixLimits>
     42418                                        <TileMatrixLimits>
     42419                                                <TileMatrix>12</TileMatrix>
     42420                                                <MinTileRow>1495</MinTileRow>
     42421                                                <MaxTileRow>1502</MaxTileRow>
     42422                                                <MinTileCol>2104</MinTileCol>
     42423                                                <MaxTileCol>2108</MaxTileCol>
     42424                                        </TileMatrixLimits>
     42425                                        <TileMatrixLimits>
     42426                                                <TileMatrix>13</TileMatrix>
     42427                                                <MinTileRow>2991</MinTileRow>
     42428                                                <MaxTileRow>3004</MaxTileRow>
     42429                                                <MinTileCol>4209</MinTileCol>
     42430                                                <MaxTileCol>4216</MaxTileCol>
     42431                                        </TileMatrixLimits>
     42432                                        <TileMatrixLimits>
     42433                                                <TileMatrix>14</TileMatrix>
     42434                                                <MinTileRow>5982</MinTileRow>
     42435                                                <MaxTileRow>6009</MaxTileRow>
     42436                                                <MinTileCol>8419</MinTileCol>
     42437                                                <MaxTileCol>8432</MaxTileCol>
     42438                                        </TileMatrixLimits>
     42439                                        <TileMatrixLimits>
     42440                                                <TileMatrix>15</TileMatrix>
     42441                                                <MinTileRow>11964</MinTileRow>
     42442                                                <MaxTileRow>12019</MaxTileRow>
     42443                                                <MinTileCol>16839</MinTileCol>
     42444                                                <MaxTileCol>16864</MaxTileCol>
     42445                                        </TileMatrixLimits>
     42446                                        <TileMatrixLimits>
     42447                                                <TileMatrix>16</TileMatrix>
     42448                                                <MinTileRow>23928</MinTileRow>
     42449                                                <MaxTileRow>24038</MaxTileRow>
     42450                                                <MinTileCol>33678</MinTileCol>
     42451                                                <MaxTileCol>33729</MaxTileCol>
     42452                                        </TileMatrixLimits>
     42453                                        <TileMatrixLimits>
     42454                                                <TileMatrix>17</TileMatrix>
     42455                                                <MinTileRow>47857</MinTileRow>
     42456                                                <MaxTileRow>48076</MaxTileRow>
     42457                                                <MinTileCol>67356</MinTileCol>
     42458                                                <MaxTileCol>67458</MaxTileCol>
     42459                                        </TileMatrixLimits>
     42460                                        <TileMatrixLimits>
     42461                                                <TileMatrix>18</TileMatrix>
     42462                                                <MinTileRow>95715</MinTileRow>
     42463                                                <MaxTileRow>96152</MaxTileRow>
     42464                                                <MinTileCol>134712</MinTileCol>
     42465                                                <MaxTileCol>134917</MaxTileCol>
     42466                                        </TileMatrixLimits>
     42467                                        <TileMatrixLimits>
     42468                                                <TileMatrix>2</TileMatrix>
     42469                                                <MinTileRow>1</MinTileRow>
     42470                                                <MaxTileRow>1</MaxTileRow>
     42471                                                <MinTileCol>2</MinTileCol>
     42472                                                <MaxTileCol>2</MaxTileCol>
     42473                                        </TileMatrixLimits>
     42474                                        <TileMatrixLimits>
     42475                                                <TileMatrix>3</TileMatrix>
     42476                                                <MinTileRow>2</MinTileRow>
     42477                                                <MaxTileRow>2</MaxTileRow>
     42478                                                <MinTileCol>4</MinTileCol>
     42479                                                <MaxTileCol>4</MaxTileCol>
     42480                                        </TileMatrixLimits>
     42481                                        <TileMatrixLimits>
     42482                                                <TileMatrix>4</TileMatrix>
     42483                                                <MinTileRow>5</MinTileRow>
     42484                                                <MaxTileRow>5</MaxTileRow>
     42485                                                <MinTileCol>8</MinTileCol>
     42486                                                <MaxTileCol>8</MaxTileCol>
     42487                                        </TileMatrixLimits>
     42488                                        <TileMatrixLimits>
     42489                                                <TileMatrix>5</TileMatrix>
     42490                                                <MinTileRow>11</MinTileRow>
     42491                                                <MaxTileRow>11</MaxTileRow>
     42492                                                <MinTileCol>16</MinTileCol>
     42493                                                <MaxTileCol>16</MaxTileCol>
     42494                                        </TileMatrixLimits>
     42495                                        <TileMatrixLimits>
     42496                                                <TileMatrix>6</TileMatrix>
     42497                                                <MinTileRow>23</MinTileRow>
     42498                                                <MaxTileRow>23</MaxTileRow>
     42499                                                <MinTileCol>32</MinTileCol>
     42500                                                <MaxTileCol>32</MaxTileCol>
     42501                                        </TileMatrixLimits>
     42502                                        <TileMatrixLimits>
     42503                                                <TileMatrix>7</TileMatrix>
     42504                                                <MinTileRow>46</MinTileRow>
     42505                                                <MaxTileRow>46</MaxTileRow>
     42506                                                <MinTileCol>65</MinTileCol>
     42507                                                <MaxTileCol>65</MaxTileCol>
     42508                                        </TileMatrixLimits>
     42509                                        <TileMatrixLimits>
     42510                                                <TileMatrix>8</TileMatrix>
     42511                                                <MinTileRow>93</MinTileRow>
     42512                                                <MaxTileRow>93</MaxTileRow>
     42513                                                <MinTileCol>131</MinTileCol>
     42514                                                <MaxTileCol>131</MaxTileCol>
     42515                                        </TileMatrixLimits>
     42516                                        <TileMatrixLimits>
     42517                                                <TileMatrix>9</TileMatrix>
     42518                                                <MinTileRow>186</MinTileRow>
     42519                                                <MaxTileRow>187</MaxTileRow>
     42520                                                <MinTileCol>263</MinTileCol>
     42521                                                <MaxTileCol>263</MaxTileCol>
     42522                                        </TileMatrixLimits>
     42523                                </TileMatrixSetLimits>
     42524                        </TileMatrixSetLink>
     42525                </Layer>
     42526                <Layer>
     42527                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     42528                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     42529                        <ows:Keywords>
     42530                                <ows:Keyword>Photographies</ows:Keyword>
     42531                        </ows:Keywords>
     42532                        <ows:WGS84BoundingBox>
     42533                                <ows:LowerCorner>4.78991 43.4197</ows:LowerCorner>
     42534                                <ows:UpperCorner>5.05578 43.6132</ows:UpperCorner>
     42535                        </ows:WGS84BoundingBox>
     42536                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38460965</ows:Identifier>
     42537                        <Style isDefault="true">
     42538                                <ows:Title>Données Brutes</ows:Title>
     42539                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42540                                <ows:Keywords>
     42541                                        <ows:Keyword>Défaut</ows:Keyword>
     42542                                </ows:Keywords>
     42543                                <ows:Identifier>normal</ows:Identifier>
     42544                                <LegendURL format="image/jpeg" height="200"
     42545                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42546                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42547                        </Style>
     42548                        <Format>image/jpeg</Format>
     42549                        <TileMatrixSetLink>
     42550                                <TileMatrixSet>PM</TileMatrixSet>
     42551                                <TileMatrixSetLimits>
     42552                                        <TileMatrixLimits>
     42553                                                <TileMatrix>0</TileMatrix>
     42554                                                <MinTileRow>0</MinTileRow>
     42555                                                <MaxTileRow>0</MaxTileRow>
     42556                                                <MinTileCol>0</MinTileCol>
     42557                                                <MaxTileCol>0</MaxTileCol>
     42558                                        </TileMatrixLimits>
     42559                                        <TileMatrixLimits>
     42560                                                <TileMatrix>1</TileMatrix>
     42561                                                <MinTileRow>0</MinTileRow>
     42562                                                <MaxTileRow>0</MaxTileRow>
     42563                                                <MinTileCol>1</MinTileCol>
     42564                                                <MaxTileCol>1</MaxTileCol>
     42565                                        </TileMatrixLimits>
     42566                                        <TileMatrixLimits>
     42567                                                <TileMatrix>10</TileMatrix>
     42568                                                <MinTileRow>373</MinTileRow>
     42569                                                <MaxTileRow>374</MaxTileRow>
     42570                                                <MinTileCol>525</MinTileCol>
     42571                                                <MaxTileCol>526</MaxTileCol>
     42572                                        </TileMatrixLimits>
     42573                                        <TileMatrixLimits>
     42574                                                <TileMatrix>11</TileMatrix>
     42575                                                <MinTileRow>747</MinTileRow>
     42576                                                <MaxTileRow>749</MaxTileRow>
     42577                                                <MinTileCol>1051</MinTileCol>
     42578                                                <MaxTileCol>1052</MaxTileCol>
     42579                                        </TileMatrixLimits>
     42580                                        <TileMatrixLimits>
     42581                                                <TileMatrix>12</TileMatrix>
     42582                                                <MinTileRow>1495</MinTileRow>
     42583                                                <MaxTileRow>1498</MaxTileRow>
     42584                                                <MinTileCol>2102</MinTileCol>
     42585                                                <MaxTileCol>2105</MaxTileCol>
     42586                                        </TileMatrixLimits>
     42587                                        <TileMatrixLimits>
     42588                                                <TileMatrix>13</TileMatrix>
     42589                                                <MinTileRow>2991</MinTileRow>
     42590                                                <MaxTileRow>2996</MaxTileRow>
     42591                                                <MinTileCol>4204</MinTileCol>
     42592                                                <MaxTileCol>4211</MaxTileCol>
     42593                                        </TileMatrixLimits>
     42594                                        <TileMatrixLimits>
     42595                                                <TileMatrix>14</TileMatrix>
     42596                                                <MinTileRow>5982</MinTileRow>
     42597                                                <MaxTileRow>5993</MaxTileRow>
     42598                                                <MinTileCol>8409</MinTileCol>
     42599                                                <MaxTileCol>8422</MaxTileCol>
     42600                                        </TileMatrixLimits>
     42601                                        <TileMatrixLimits>
     42602                                                <TileMatrix>15</TileMatrix>
     42603                                                <MinTileRow>11964</MinTileRow>
     42604                                                <MaxTileRow>11987</MaxTileRow>
     42605                                                <MinTileCol>16819</MinTileCol>
     42606                                                <MaxTileCol>16844</MaxTileCol>
     42607                                        </TileMatrixLimits>
     42608                                        <TileMatrixLimits>
     42609                                                <TileMatrix>16</TileMatrix>
     42610                                                <MinTileRow>23928</MinTileRow>
     42611                                                <MaxTileRow>23975</MaxTileRow>
     42612                                                <MinTileCol>33639</MinTileCol>
     42613                                                <MaxTileCol>33688</MaxTileCol>
     42614                                        </TileMatrixLimits>
     42615                                        <TileMatrixLimits>
     42616                                                <TileMatrix>17</TileMatrix>
     42617                                                <MinTileRow>47857</MinTileRow>
     42618                                                <MaxTileRow>47951</MaxTileRow>
     42619                                                <MinTileCol>67279</MinTileCol>
     42620                                                <MaxTileCol>67376</MaxTileCol>
     42621                                        </TileMatrixLimits>
     42622                                        <TileMatrixLimits>
     42623                                                <TileMatrix>18</TileMatrix>
     42624                                                <MinTileRow>95715</MinTileRow>
     42625                                                <MaxTileRow>95903</MaxTileRow>
     42626                                                <MinTileCol>134559</MinTileCol>
     42627                                                <MaxTileCol>134753</MaxTileCol>
     42628                                        </TileMatrixLimits>
     42629                                        <TileMatrixLimits>
     42630                                                <TileMatrix>2</TileMatrix>
     42631                                                <MinTileRow>1</MinTileRow>
     42632                                                <MaxTileRow>1</MaxTileRow>
     42633                                                <MinTileCol>2</MinTileCol>
     42634                                                <MaxTileCol>2</MaxTileCol>
     42635                                        </TileMatrixLimits>
     42636                                        <TileMatrixLimits>
     42637                                                <TileMatrix>3</TileMatrix>
     42638                                                <MinTileRow>2</MinTileRow>
     42639                                                <MaxTileRow>2</MaxTileRow>
     42640                                                <MinTileCol>4</MinTileCol>
     42641                                                <MaxTileCol>4</MaxTileCol>
     42642                                        </TileMatrixLimits>
     42643                                        <TileMatrixLimits>
     42644                                                <TileMatrix>4</TileMatrix>
     42645                                                <MinTileRow>5</MinTileRow>
     42646                                                <MaxTileRow>5</MaxTileRow>
     42647                                                <MinTileCol>8</MinTileCol>
     42648                                                <MaxTileCol>8</MaxTileCol>
     42649                                        </TileMatrixLimits>
     42650                                        <TileMatrixLimits>
     42651                                                <TileMatrix>5</TileMatrix>
     42652                                                <MinTileRow>11</MinTileRow>
     42653                                                <MaxTileRow>11</MaxTileRow>
     42654                                                <MinTileCol>16</MinTileCol>
     42655                                                <MaxTileCol>16</MaxTileCol>
     42656                                        </TileMatrixLimits>
     42657                                        <TileMatrixLimits>
     42658                                                <TileMatrix>6</TileMatrix>
     42659                                                <MinTileRow>23</MinTileRow>
     42660                                                <MaxTileRow>23</MaxTileRow>
     42661                                                <MinTileCol>32</MinTileCol>
     42662                                                <MaxTileCol>32</MaxTileCol>
     42663                                        </TileMatrixLimits>
     42664                                        <TileMatrixLimits>
     42665                                                <TileMatrix>7</TileMatrix>
     42666                                                <MinTileRow>46</MinTileRow>
     42667                                                <MaxTileRow>46</MaxTileRow>
     42668                                                <MinTileCol>65</MinTileCol>
     42669                                                <MaxTileCol>65</MaxTileCol>
     42670                                        </TileMatrixLimits>
     42671                                        <TileMatrixLimits>
     42672                                                <TileMatrix>8</TileMatrix>
     42673                                                <MinTileRow>93</MinTileRow>
     42674                                                <MaxTileRow>93</MaxTileRow>
     42675                                                <MinTileCol>131</MinTileCol>
     42676                                                <MaxTileCol>131</MaxTileCol>
     42677                                        </TileMatrixLimits>
     42678                                        <TileMatrixLimits>
     42679                                                <TileMatrix>9</TileMatrix>
     42680                                                <MinTileRow>186</MinTileRow>
     42681                                                <MaxTileRow>187</MaxTileRow>
     42682                                                <MinTileCol>262</MinTileCol>
     42683                                                <MaxTileCol>263</MaxTileCol>
     42684                                        </TileMatrixLimits>
     42685                                </TileMatrixSetLimits>
     42686                        </TileMatrixSetLink>
     42687                </Layer>
     42688                <Layer>
     42689                        <ows:Title>Orthophotographies Geosud de Narbonne</ows:Title>
     42690                        <ows:Abstract>Orthophotographies satellites de Narbonne issues du projet Geosud.</ows:Abstract>
     42691                        <ows:Keywords>
     42692                                <ows:Keyword>Photographies</ows:Keyword>
     42693                        </ows:Keywords>
     42694                        <ows:WGS84BoundingBox>
     42695                                <ows:LowerCorner>4.56485 43.3156</ows:LowerCorner>
     42696                                <ows:UpperCorner>4.84504 43.6077</ows:UpperCorner>
     42697                        </ows:WGS84BoundingBox>
     42698                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38479629</ows:Identifier>
     42699                        <Style isDefault="true">
     42700                                <ows:Title>Données Brutes</ows:Title>
     42701                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42702                                <ows:Keywords>
     42703                                        <ows:Keyword>Défaut</ows:Keyword>
     42704                                </ows:Keywords>
     42705                                <ows:Identifier>normal</ows:Identifier>
     42706                                <LegendURL format="image/jpeg" height="200"
     42707                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42708                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42709                        </Style>
     42710                        <Format>image/jpeg</Format>
     42711                        <TileMatrixSetLink>
     42712                                <TileMatrixSet>PM</TileMatrixSet>
     42713                                <TileMatrixSetLimits>
     42714                                        <TileMatrixLimits>
     42715                                                <TileMatrix>0</TileMatrix>
     42716                                                <MinTileRow>0</MinTileRow>
     42717                                                <MaxTileRow>0</MaxTileRow>
     42718                                                <MinTileCol>0</MinTileCol>
     42719                                                <MaxTileCol>0</MaxTileCol>
     42720                                        </TileMatrixLimits>
     42721                                        <TileMatrixLimits>
     42722                                                <TileMatrix>1</TileMatrix>
     42723                                                <MinTileRow>0</MinTileRow>
     42724                                                <MaxTileRow>0</MaxTileRow>
     42725                                                <MinTileCol>1</MinTileCol>
     42726                                                <MaxTileCol>1</MaxTileCol>
     42727                                        </TileMatrixLimits>
     42728                                        <TileMatrixLimits>
     42729                                                <TileMatrix>10</TileMatrix>
     42730                                                <MinTileRow>373</MinTileRow>
     42731                                                <MaxTileRow>375</MaxTileRow>
     42732                                                <MinTileCol>524</MinTileCol>
     42733                                                <MaxTileCol>525</MaxTileCol>
     42734                                        </TileMatrixLimits>
     42735                                        <TileMatrixLimits>
     42736                                                <TileMatrix>11</TileMatrix>
     42737                                                <MinTileRow>747</MinTileRow>
     42738                                                <MaxTileRow>750</MaxTileRow>
     42739                                                <MinTileCol>1049</MinTileCol>
     42740                                                <MaxTileCol>1051</MaxTileCol>
     42741                                        </TileMatrixLimits>
     42742                                        <TileMatrixLimits>
     42743                                                <TileMatrix>12</TileMatrix>
     42744                                                <MinTileRow>1495</MinTileRow>
     42745                                                <MaxTileRow>1500</MaxTileRow>
     42746                                                <MinTileCol>2099</MinTileCol>
     42747                                                <MaxTileCol>2103</MaxTileCol>
     42748                                        </TileMatrixLimits>
     42749                                        <TileMatrixLimits>
     42750                                                <TileMatrix>13</TileMatrix>
     42751                                                <MinTileRow>2991</MinTileRow>
     42752                                                <MaxTileRow>3000</MaxTileRow>
     42753                                                <MinTileCol>4199</MinTileCol>
     42754                                                <MaxTileCol>4206</MaxTileCol>
     42755                                        </TileMatrixLimits>
     42756                                        <TileMatrixLimits>
     42757                                                <TileMatrix>14</TileMatrix>
     42758                                                <MinTileRow>5982</MinTileRow>
     42759                                                <MaxTileRow>6000</MaxTileRow>
     42760                                                <MinTileCol>8399</MinTileCol>
     42761                                                <MaxTileCol>8412</MaxTileCol>
     42762                                        </TileMatrixLimits>
     42763                                        <TileMatrixLimits>
     42764                                                <TileMatrix>15</TileMatrix>
     42765                                                <MinTileRow>11964</MinTileRow>
     42766                                                <MaxTileRow>12001</MaxTileRow>
     42767                                                <MinTileCol>16799</MinTileCol>
     42768                                                <MaxTileCol>16824</MaxTileCol>
     42769                                        </TileMatrixLimits>
     42770                                        <TileMatrixLimits>
     42771                                                <TileMatrix>16</TileMatrix>
     42772                                                <MinTileRow>23929</MinTileRow>
     42773                                                <MaxTileRow>24002</MaxTileRow>
     42774                                                <MinTileCol>33599</MinTileCol>
     42775                                                <MaxTileCol>33649</MaxTileCol>
     42776                                        </TileMatrixLimits>
     42777                                        <TileMatrixLimits>
     42778                                                <TileMatrix>17</TileMatrix>
     42779                                                <MinTileRow>47858</MinTileRow>
     42780                                                <MaxTileRow>48004</MaxTileRow>
     42781                                                <MinTileCol>67199</MinTileCol>
     42782                                                <MaxTileCol>67299</MaxTileCol>
     42783                                        </TileMatrixLimits>
     42784                                        <TileMatrixLimits>
     42785                                                <TileMatrix>18</TileMatrix>
     42786                                                <MinTileRow>95716</MinTileRow>
     42787                                                <MaxTileRow>96009</MaxTileRow>
     42788                                                <MinTileCol>134399</MinTileCol>
     42789                                                <MaxTileCol>134599</MaxTileCol>
     42790                                        </TileMatrixLimits>
     42791                                        <TileMatrixLimits>
     42792                                                <TileMatrix>2</TileMatrix>
     42793                                                <MinTileRow>1</MinTileRow>
     42794                                                <MaxTileRow>1</MaxTileRow>
     42795                                                <MinTileCol>2</MinTileCol>
     42796                                                <MaxTileCol>2</MaxTileCol>
     42797                                        </TileMatrixLimits>
     42798                                        <TileMatrixLimits>
     42799                                                <TileMatrix>3</TileMatrix>
     42800                                                <MinTileRow>2</MinTileRow>
     42801                                                <MaxTileRow>2</MaxTileRow>
     42802                                                <MinTileCol>4</MinTileCol>
     42803                                                <MaxTileCol>4</MaxTileCol>
     42804                                        </TileMatrixLimits>
     42805                                        <TileMatrixLimits>
     42806                                                <TileMatrix>4</TileMatrix>
     42807                                                <MinTileRow>5</MinTileRow>
     42808                                                <MaxTileRow>5</MaxTileRow>
     42809                                                <MinTileCol>8</MinTileCol>
     42810                                                <MaxTileCol>8</MaxTileCol>
     42811                                        </TileMatrixLimits>
     42812                                        <TileMatrixLimits>
     42813                                                <TileMatrix>5</TileMatrix>
     42814                                                <MinTileRow>11</MinTileRow>
     42815                                                <MaxTileRow>11</MaxTileRow>
     42816                                                <MinTileCol>16</MinTileCol>
     42817                                                <MaxTileCol>16</MaxTileCol>
     42818                                        </TileMatrixLimits>
     42819                                        <TileMatrixLimits>
     42820                                                <TileMatrix>6</TileMatrix>
     42821                                                <MinTileRow>23</MinTileRow>
     42822                                                <MaxTileRow>23</MaxTileRow>
     42823                                                <MinTileCol>32</MinTileCol>
     42824                                                <MaxTileCol>32</MaxTileCol>
     42825                                        </TileMatrixLimits>
     42826                                        <TileMatrixLimits>
     42827                                                <TileMatrix>7</TileMatrix>
     42828                                                <MinTileRow>46</MinTileRow>
     42829                                                <MaxTileRow>46</MaxTileRow>
     42830                                                <MinTileCol>65</MinTileCol>
     42831                                                <MaxTileCol>65</MaxTileCol>
     42832                                        </TileMatrixLimits>
     42833                                        <TileMatrixLimits>
     42834                                                <TileMatrix>8</TileMatrix>
     42835                                                <MinTileRow>93</MinTileRow>
     42836                                                <MaxTileRow>93</MaxTileRow>
     42837                                                <MinTileCol>131</MinTileCol>
     42838                                                <MaxTileCol>131</MaxTileCol>
     42839                                        </TileMatrixLimits>
     42840                                        <TileMatrixLimits>
     42841                                                <TileMatrix>9</TileMatrix>
     42842                                                <MinTileRow>186</MinTileRow>
     42843                                                <MaxTileRow>187</MaxTileRow>
     42844                                                <MinTileCol>262</MinTileCol>
     42845                                                <MaxTileCol>262</MaxTileCol>
     42846                                        </TileMatrixLimits>
     42847                                </TileMatrixSetLimits>
     42848                        </TileMatrixSetLink>
     42849                </Layer>
     42850                <Layer>
     42851                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     42852                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     42853                        <ows:Keywords>
     42854                                <ows:Keyword>Photographies</ows:Keyword>
     42855                        </ows:Keywords>
     42856                        <ows:WGS84BoundingBox>
     42857                                <ows:LowerCorner>4.34331 43.3279</ows:LowerCorner>
     42858                                <ows:UpperCorner>4.6346 43.6107</ows:UpperCorner>
     42859                        </ows:WGS84BoundingBox>
     42860                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38496655</ows:Identifier>
     42861                        <Style isDefault="true">
     42862                                <ows:Title>Données Brutes</ows:Title>
     42863                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     42864                                <ows:Keywords>
     42865                                        <ows:Keyword>Défaut</ows:Keyword>
     42866                                </ows:Keywords>
     42867                                <ows:Identifier>normal</ows:Identifier>
     42868                                <LegendURL format="image/jpeg" height="200"
     42869                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     42870                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     42871                        </Style>
     42872                        <Format>image/jpeg</Format>
     42873                        <TileMatrixSetLink>
     42874                                <TileMatrixSet>PM</TileMatrixSet>
     42875                                <TileMatrixSetLimits>
     42876                                        <TileMatrixLimits>
     42877                                                <TileMatrix>0</TileMatrix>
     42878                                                <MinTileRow>0</MinTileRow>
     42879                                                <MaxTileRow>0</MaxTileRow>
     42880                                                <MinTileCol>0</MinTileCol>
     42881                                                <MaxTileCol>0</MaxTileCol>
     42882                                        </TileMatrixLimits>
     42883                                        <TileMatrixLimits>
     42884                                                <TileMatrix>1</TileMatrix>
     42885                                                <MinTileRow>0</MinTileRow>
     42886                                                <MaxTileRow>0</MaxTileRow>
     42887                                                <MinTileCol>1</MinTileCol>
     42888                                                <MaxTileCol>1</MaxTileCol>
     42889                                        </TileMatrixLimits>
     42890                                        <TileMatrixLimits>
     42891                                                <TileMatrix>10</TileMatrix>
     42892                                                <MinTileRow>373</MinTileRow>
     42893                                                <MaxTileRow>374</MaxTileRow>
     42894                                                <MinTileCol>524</MinTileCol>
     42895                                                <MaxTileCol>525</MaxTileCol>
     42896                                        </TileMatrixLimits>
     42897                                        <TileMatrixLimits>
     42898                                                <TileMatrix>11</TileMatrix>
     42899                                                <MinTileRow>747</MinTileRow>
     42900                                                <MaxTileRow>749</MaxTileRow>
     42901                                                <MinTileCol>1048</MinTileCol>
     42902                                                <MaxTileCol>1050</MaxTileCol>
     42903                                        </TileMatrixLimits>
     42904                                        <TileMatrixLimits>
     42905                                                <TileMatrix>12</TileMatrix>
     42906                                                <MinTileRow>1495</MinTileRow>
     42907                                                <MaxTileRow>1499</MaxTileRow>
     42908                                                <MinTileCol>2097</MinTileCol>
     42909                                                <MaxTileCol>2100</MaxTileCol>
     42910                                        </TileMatrixLimits>
     42911                                        <TileMatrixLimits>
     42912                                                <TileMatrix>13</TileMatrix>
     42913                                                <MinTileRow>2991</MinTileRow>
     42914                                                <MaxTileRow>2999</MaxTileRow>
     42915                                                <MinTileCol>4194</MinTileCol>
     42916                                                <MaxTileCol>4201</MaxTileCol>
     42917                                        </TileMatrixLimits>
     42918                                        <TileMatrixLimits>
     42919                                                <TileMatrix>14</TileMatrix>
     42920                                                <MinTileRow>5982</MinTileRow>
     42921                                                <MaxTileRow>5999</MaxTileRow>
     42922                                                <MinTileCol>8389</MinTileCol>
     42923                                                <MaxTileCol>8402</MaxTileCol>
     42924                                        </TileMatrixLimits>
     42925                                        <TileMatrixLimits>
     42926                                                <TileMatrix>15</TileMatrix>
     42927                                                <MinTileRow>11964</MinTileRow>
     42928                                                <MaxTileRow>11999</MaxTileRow>
     42929                                                <MinTileCol>16779</MinTileCol>
     42930                                                <MaxTileCol>16805</MaxTileCol>
     42931                                        </TileMatrixLimits>
     42932                                        <TileMatrixLimits>
     42933                                                <TileMatrix>16</TileMatrix>
     42934                                                <MinTileRow>23928</MinTileRow>
     42935                                                <MaxTileRow>23999</MaxTileRow>
     42936                                                <MinTileCol>33559</MinTileCol>
     42937                                                <MaxTileCol>33611</MaxTileCol>
     42938                                        </TileMatrixLimits>
     42939                                        <TileMatrixLimits>
     42940                                                <TileMatrix>17</TileMatrix>
     42941                                                <MinTileRow>47857</MinTileRow>
     42942                                                <MaxTileRow>47998</MaxTileRow>
     42943                                                <MinTileCol>67118</MinTileCol>
     42944                                                <MaxTileCol>67222</MaxTileCol>
     42945                                        </TileMatrixLimits>
     42946                                        <TileMatrixLimits>
     42947                                                <TileMatrix>18</TileMatrix>
     42948                                                <MinTileRow>95714</MinTileRow>
     42949                                                <MaxTileRow>95997</MaxTileRow>
     42950                                                <MinTileCol>134237</MinTileCol>
     42951                                                <MaxTileCol>134444</MaxTileCol>
     42952                                        </TileMatrixLimits>
     42953                                        <TileMatrixLimits>
     42954                                                <TileMatrix>2</TileMatrix>
     42955                                                <MinTileRow>1</MinTileRow>
     42956                                                <MaxTileRow>1</MaxTileRow>
     42957                                                <MinTileCol>2</MinTileCol>
     42958                                                <MaxTileCol>2</MaxTileCol>
     42959                                        </TileMatrixLimits>
     42960                                        <TileMatrixLimits>
     42961                                                <TileMatrix>3</TileMatrix>
     42962                                                <MinTileRow>2</MinTileRow>
     42963                                                <MaxTileRow>2</MaxTileRow>
     42964                                                <MinTileCol>4</MinTileCol>
     42965                                                <MaxTileCol>4</MaxTileCol>
     42966                                        </TileMatrixLimits>
     42967                                        <TileMatrixLimits>
     42968                                                <TileMatrix>4</TileMatrix>
     42969                                                <MinTileRow>5</MinTileRow>
     42970                                                <MaxTileRow>5</MaxTileRow>
     42971                                                <MinTileCol>8</MinTileCol>
     42972                                                <MaxTileCol>8</MaxTileCol>
     42973                                        </TileMatrixLimits>
     42974                                        <TileMatrixLimits>
     42975                                                <TileMatrix>5</TileMatrix>
     42976                                                <MinTileRow>11</MinTileRow>
     42977                                                <MaxTileRow>11</MaxTileRow>
     42978                                                <MinTileCol>16</MinTileCol>
     42979                                                <MaxTileCol>16</MaxTileCol>
     42980                                        </TileMatrixLimits>
     42981                                        <TileMatrixLimits>
     42982                                                <TileMatrix>6</TileMatrix>
     42983                                                <MinTileRow>23</MinTileRow>
     42984                                                <MaxTileRow>23</MaxTileRow>
     42985                                                <MinTileCol>32</MinTileCol>
     42986                                                <MaxTileCol>32</MaxTileCol>
     42987                                        </TileMatrixLimits>
     42988                                        <TileMatrixLimits>
     42989                                                <TileMatrix>7</TileMatrix>
     42990                                                <MinTileRow>46</MinTileRow>
     42991                                                <MaxTileRow>46</MaxTileRow>
     42992                                                <MinTileCol>65</MinTileCol>
     42993                                                <MaxTileCol>65</MaxTileCol>
     42994                                        </TileMatrixLimits>
     42995                                        <TileMatrixLimits>
     42996                                                <TileMatrix>8</TileMatrix>
     42997                                                <MinTileRow>93</MinTileRow>
     42998                                                <MaxTileRow>93</MaxTileRow>
     42999                                                <MinTileCol>131</MinTileCol>
     43000                                                <MaxTileCol>131</MaxTileCol>
     43001                                        </TileMatrixLimits>
     43002                                        <TileMatrixLimits>
     43003                                                <TileMatrix>9</TileMatrix>
     43004                                                <MinTileRow>186</MinTileRow>
     43005                                                <MaxTileRow>187</MaxTileRow>
     43006                                                <MinTileCol>262</MinTileCol>
     43007                                                <MaxTileCol>262</MaxTileCol>
     43008                                        </TileMatrixLimits>
     43009                                </TileMatrixSetLimits>
     43010                        </TileMatrixSetLink>
     43011                </Layer>
     43012                <Layer>
     43013                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43014                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43015                        <ows:Keywords>
     43016                                <ows:Keyword>Photographies</ows:Keyword>
     43017                        </ows:Keywords>
     43018                        <ows:WGS84BoundingBox>
     43019                                <ows:LowerCorner>4.18313 43.3307</ows:LowerCorner>
     43020                                <ows:UpperCorner>4.43651 43.6125</ows:UpperCorner>
     43021                        </ows:WGS84BoundingBox>
     43022                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-06-38508696</ows:Identifier>
     43023                        <Style isDefault="true">
     43024                                <ows:Title>Données Brutes</ows:Title>
     43025                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43026                                <ows:Keywords>
     43027                                        <ows:Keyword>Défaut</ows:Keyword>
     43028                                </ows:Keywords>
     43029                                <ows:Identifier>normal</ows:Identifier>
     43030                                <LegendURL format="image/jpeg" height="200"
     43031                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43032                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43033                        </Style>
     43034                        <Format>image/jpeg</Format>
     43035                        <TileMatrixSetLink>
     43036                                <TileMatrixSet>PM</TileMatrixSet>
     43037                                <TileMatrixSetLimits>
     43038                                        <TileMatrixLimits>
     43039                                                <TileMatrix>0</TileMatrix>
     43040                                                <MinTileRow>0</MinTileRow>
     43041                                                <MaxTileRow>0</MaxTileRow>
     43042                                                <MinTileCol>0</MinTileCol>
     43043                                                <MaxTileCol>0</MaxTileCol>
     43044                                        </TileMatrixLimits>
     43045                                        <TileMatrixLimits>
     43046                                                <TileMatrix>1</TileMatrix>
     43047                                                <MinTileRow>0</MinTileRow>
     43048                                                <MaxTileRow>0</MaxTileRow>
     43049                                                <MinTileCol>1</MinTileCol>
     43050                                                <MaxTileCol>1</MaxTileCol>
     43051                                        </TileMatrixLimits>
     43052                                        <TileMatrixLimits>
     43053                                                <TileMatrix>10</TileMatrix>
     43054                                                <MinTileRow>373</MinTileRow>
     43055                                                <MaxTileRow>374</MaxTileRow>
     43056                                                <MinTileCol>523</MinTileCol>
     43057                                                <MaxTileCol>524</MaxTileCol>
     43058                                        </TileMatrixLimits>
     43059                                        <TileMatrixLimits>
     43060                                                <TileMatrix>11</TileMatrix>
     43061                                                <MinTileRow>747</MinTileRow>
     43062                                                <MaxTileRow>749</MaxTileRow>
     43063                                                <MinTileCol>1047</MinTileCol>
     43064                                                <MaxTileCol>1049</MaxTileCol>
     43065                                        </TileMatrixLimits>
     43066                                        <TileMatrixLimits>
     43067                                                <TileMatrix>12</TileMatrix>
     43068                                                <MinTileRow>1495</MinTileRow>
     43069                                                <MaxTileRow>1499</MaxTileRow>
     43070                                                <MinTileCol>2095</MinTileCol>
     43071                                                <MaxTileCol>2098</MaxTileCol>
     43072                                        </TileMatrixLimits>
     43073                                        <TileMatrixLimits>
     43074                                                <TileMatrix>13</TileMatrix>
     43075                                                <MinTileRow>2991</MinTileRow>
     43076                                                <MaxTileRow>2999</MaxTileRow>
     43077                                                <MinTileCol>4191</MinTileCol>
     43078                                                <MaxTileCol>4196</MaxTileCol>
     43079                                        </TileMatrixLimits>
     43080                                        <TileMatrixLimits>
     43081                                                <TileMatrix>14</TileMatrix>
     43082                                                <MinTileRow>5982</MinTileRow>
     43083                                                <MaxTileRow>5999</MaxTileRow>
     43084                                                <MinTileCol>8382</MinTileCol>
     43085                                                <MaxTileCol>8393</MaxTileCol>
     43086                                        </TileMatrixLimits>
     43087                                        <TileMatrixLimits>
     43088                                                <TileMatrix>15</TileMatrix>
     43089                                                <MinTileRow>11964</MinTileRow>
     43090                                                <MaxTileRow>11999</MaxTileRow>
     43091                                                <MinTileCol>16764</MinTileCol>
     43092                                                <MaxTileCol>16787</MaxTileCol>
     43093                                        </TileMatrixLimits>
     43094                                        <TileMatrixLimits>
     43095                                                <TileMatrix>16</TileMatrix>
     43096                                                <MinTileRow>23928</MinTileRow>
     43097                                                <MaxTileRow>23998</MaxTileRow>
     43098                                                <MinTileCol>33529</MinTileCol>
     43099                                                <MaxTileCol>33575</MaxTileCol>
     43100                                        </TileMatrixLimits>
     43101                                        <TileMatrixLimits>
     43102                                                <TileMatrix>17</TileMatrix>
     43103                                                <MinTileRow>47857</MinTileRow>
     43104                                                <MaxTileRow>47997</MaxTileRow>
     43105                                                <MinTileCol>67059</MinTileCol>
     43106                                                <MaxTileCol>67150</MaxTileCol>
     43107                                        </TileMatrixLimits>
     43108                                        <TileMatrixLimits>
     43109                                                <TileMatrix>18</TileMatrix>
     43110                                                <MinTileRow>95714</MinTileRow>
     43111                                                <MaxTileRow>95994</MaxTileRow>
     43112                                                <MinTileCol>134118</MinTileCol>
     43113                                                <MaxTileCol>134301</MaxTileCol>
     43114                                        </TileMatrixLimits>
     43115                                        <TileMatrixLimits>
     43116                                                <TileMatrix>2</TileMatrix>
     43117                                                <MinTileRow>1</MinTileRow>
     43118                                                <MaxTileRow>1</MaxTileRow>
     43119                                                <MinTileCol>2</MinTileCol>
     43120                                                <MaxTileCol>2</MaxTileCol>
     43121                                        </TileMatrixLimits>
     43122                                        <TileMatrixLimits>
     43123                                                <TileMatrix>3</TileMatrix>
     43124                                                <MinTileRow>2</MinTileRow>
     43125                                                <MaxTileRow>2</MaxTileRow>
     43126                                                <MinTileCol>4</MinTileCol>
     43127                                                <MaxTileCol>4</MaxTileCol>
     43128                                        </TileMatrixLimits>
     43129                                        <TileMatrixLimits>
     43130                                                <TileMatrix>4</TileMatrix>
     43131                                                <MinTileRow>5</MinTileRow>
     43132                                                <MaxTileRow>5</MaxTileRow>
     43133                                                <MinTileCol>8</MinTileCol>
     43134                                                <MaxTileCol>8</MaxTileCol>
     43135                                        </TileMatrixLimits>
     43136                                        <TileMatrixLimits>
     43137                                                <TileMatrix>5</TileMatrix>
     43138                                                <MinTileRow>11</MinTileRow>
     43139                                                <MaxTileRow>11</MaxTileRow>
     43140                                                <MinTileCol>16</MinTileCol>
     43141                                                <MaxTileCol>16</MaxTileCol>
     43142                                        </TileMatrixLimits>
     43143                                        <TileMatrixLimits>
     43144                                                <TileMatrix>6</TileMatrix>
     43145                                                <MinTileRow>23</MinTileRow>
     43146                                                <MaxTileRow>23</MaxTileRow>
     43147                                                <MinTileCol>32</MinTileCol>
     43148                                                <MaxTileCol>32</MaxTileCol>
     43149                                        </TileMatrixLimits>
     43150                                        <TileMatrixLimits>
     43151                                                <TileMatrix>7</TileMatrix>
     43152                                                <MinTileRow>46</MinTileRow>
     43153                                                <MaxTileRow>46</MaxTileRow>
     43154                                                <MinTileCol>65</MinTileCol>
     43155                                                <MaxTileCol>65</MaxTileCol>
     43156                                        </TileMatrixLimits>
     43157                                        <TileMatrixLimits>
     43158                                                <TileMatrix>8</TileMatrix>
     43159                                                <MinTileRow>93</MinTileRow>
     43160                                                <MaxTileRow>93</MaxTileRow>
     43161                                                <MinTileCol>130</MinTileCol>
     43162                                                <MaxTileCol>131</MaxTileCol>
     43163                                        </TileMatrixLimits>
     43164                                        <TileMatrixLimits>
     43165                                                <TileMatrix>9</TileMatrix>
     43166                                                <MinTileRow>186</MinTileRow>
     43167                                                <MaxTileRow>187</MaxTileRow>
     43168                                                <MinTileCol>261</MinTileCol>
     43169                                                <MaxTileCol>262</MaxTileCol>
     43170                                        </TileMatrixLimits>
     43171                                </TileMatrixSetLimits>
     43172                        </TileMatrixSetLink>
     43173                </Layer>
     43174                <Layer>
     43175                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43176                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43177                        <ows:Keywords>
     43178                                <ows:Keyword>Photographies</ows:Keyword>
     43179                        </ows:Keywords>
     43180                        <ows:WGS84BoundingBox>
     43181                                <ows:LowerCorner>5.41046 43.198</ows:LowerCorner>
     43182                                <ows:UpperCorner>5.72959 43.4571</ows:UpperCorner>
     43183                        </ows:WGS84BoundingBox>
     43184                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-11-39155146</ows:Identifier>
     43185                        <Style isDefault="true">
     43186                                <ows:Title>Données Brutes</ows:Title>
     43187                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43188                                <ows:Keywords>
     43189                                        <ows:Keyword>Défaut</ows:Keyword>
     43190                                </ows:Keywords>
     43191                                <ows:Identifier>normal</ows:Identifier>
     43192                                <LegendURL format="image/jpeg" height="200"
     43193                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43194                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43195                        </Style>
     43196                        <Format>image/jpeg</Format>
     43197                        <TileMatrixSetLink>
     43198                                <TileMatrixSet>PM</TileMatrixSet>
     43199                                <TileMatrixSetLimits>
     43200                                        <TileMatrixLimits>
     43201                                                <TileMatrix>0</TileMatrix>
     43202                                                <MinTileRow>0</MinTileRow>
     43203                                                <MaxTileRow>0</MaxTileRow>
     43204                                                <MinTileCol>0</MinTileCol>
     43205                                                <MaxTileCol>0</MaxTileCol>
     43206                                        </TileMatrixLimits>
     43207                                        <TileMatrixLimits>
     43208                                                <TileMatrix>1</TileMatrix>
     43209                                                <MinTileRow>0</MinTileRow>
     43210                                                <MaxTileRow>0</MaxTileRow>
     43211                                                <MinTileCol>1</MinTileCol>
     43212                                                <MaxTileCol>1</MaxTileCol>
     43213                                        </TileMatrixLimits>
     43214                                        <TileMatrixLimits>
     43215                                                <TileMatrix>10</TileMatrix>
     43216                                                <MinTileRow>374</MinTileRow>
     43217                                                <MaxTileRow>375</MaxTileRow>
     43218                                                <MinTileCol>527</MinTileCol>
     43219                                                <MaxTileCol>528</MaxTileCol>
     43220                                        </TileMatrixLimits>
     43221                                        <TileMatrixLimits>
     43222                                                <TileMatrix>11</TileMatrix>
     43223                                                <MinTileRow>748</MinTileRow>
     43224                                                <MaxTileRow>750</MaxTileRow>
     43225                                                <MinTileCol>1054</MinTileCol>
     43226                                                <MaxTileCol>1056</MaxTileCol>
     43227                                        </TileMatrixLimits>
     43228                                        <TileMatrixLimits>
     43229                                                <TileMatrix>12</TileMatrix>
     43230                                                <MinTileRow>1497</MinTileRow>
     43231                                                <MaxTileRow>1501</MaxTileRow>
     43232                                                <MinTileCol>2109</MinTileCol>
     43233                                                <MaxTileCol>2113</MaxTileCol>
     43234                                        </TileMatrixLimits>
     43235                                        <TileMatrixLimits>
     43236                                                <TileMatrix>13</TileMatrix>
     43237                                                <MinTileRow>2995</MinTileRow>
     43238                                                <MaxTileRow>3003</MaxTileRow>
     43239                                                <MinTileCol>4219</MinTileCol>
     43240                                                <MaxTileCol>4226</MaxTileCol>
     43241                                        </TileMatrixLimits>
     43242                                        <TileMatrixLimits>
     43243                                                <TileMatrix>14</TileMatrix>
     43244                                                <MinTileRow>5991</MinTileRow>
     43245                                                <MaxTileRow>6007</MaxTileRow>
     43246                                                <MinTileCol>8438</MinTileCol>
     43247                                                <MaxTileCol>8452</MaxTileCol>
     43248                                        </TileMatrixLimits>
     43249                                        <TileMatrixLimits>
     43250                                                <TileMatrix>15</TileMatrix>
     43251                                                <MinTileRow>11983</MinTileRow>
     43252                                                <MaxTileRow>12015</MaxTileRow>
     43253                                                <MinTileCol>16876</MinTileCol>
     43254                                                <MaxTileCol>16904</MaxTileCol>
     43255                                        </TileMatrixLimits>
     43256                                        <TileMatrixLimits>
     43257                                                <TileMatrix>16</TileMatrix>
     43258                                                <MinTileRow>23966</MinTileRow>
     43259                                                <MaxTileRow>24031</MaxTileRow>
     43260                                                <MinTileCol>33753</MinTileCol>
     43261                                                <MaxTileCol>33809</MaxTileCol>
     43262                                        </TileMatrixLimits>
     43263                                        <TileMatrixLimits>
     43264                                                <TileMatrix>17</TileMatrix>
     43265                                                <MinTileRow>47933</MinTileRow>
     43266                                                <MaxTileRow>48063</MaxTileRow>
     43267                                                <MinTileCol>67507</MinTileCol>
     43268                                                <MaxTileCol>67619</MaxTileCol>
     43269                                        </TileMatrixLimits>
     43270                                        <TileMatrixLimits>
     43271                                                <TileMatrix>18</TileMatrix>
     43272                                                <MinTileRow>95867</MinTileRow>
     43273                                                <MaxTileRow>96127</MaxTileRow>
     43274                                                <MinTileCol>135015</MinTileCol>
     43275                                                <MaxTileCol>135238</MaxTileCol>
     43276                                        </TileMatrixLimits>
     43277                                        <TileMatrixLimits>
     43278                                                <TileMatrix>2</TileMatrix>
     43279                                                <MinTileRow>1</MinTileRow>
     43280                                                <MaxTileRow>1</MaxTileRow>
     43281                                                <MinTileCol>2</MinTileCol>
     43282                                                <MaxTileCol>2</MaxTileCol>
     43283                                        </TileMatrixLimits>
     43284                                        <TileMatrixLimits>
     43285                                                <TileMatrix>3</TileMatrix>
     43286                                                <MinTileRow>2</MinTileRow>
     43287                                                <MaxTileRow>2</MaxTileRow>
     43288                                                <MinTileCol>4</MinTileCol>
     43289                                                <MaxTileCol>4</MaxTileCol>
     43290                                        </TileMatrixLimits>
     43291                                        <TileMatrixLimits>
     43292                                                <TileMatrix>4</TileMatrix>
     43293                                                <MinTileRow>5</MinTileRow>
     43294                                                <MaxTileRow>5</MaxTileRow>
     43295                                                <MinTileCol>8</MinTileCol>
     43296                                                <MaxTileCol>8</MaxTileCol>
     43297                                        </TileMatrixLimits>
     43298                                        <TileMatrixLimits>
     43299                                                <TileMatrix>5</TileMatrix>
     43300                                                <MinTileRow>11</MinTileRow>
     43301                                                <MaxTileRow>11</MaxTileRow>
     43302                                                <MinTileCol>16</MinTileCol>
     43303                                                <MaxTileCol>16</MaxTileCol>
     43304                                        </TileMatrixLimits>
     43305                                        <TileMatrixLimits>
     43306                                                <TileMatrix>6</TileMatrix>
     43307                                                <MinTileRow>23</MinTileRow>
     43308                                                <MaxTileRow>23</MaxTileRow>
     43309                                                <MinTileCol>32</MinTileCol>
     43310                                                <MaxTileCol>33</MaxTileCol>
     43311                                        </TileMatrixLimits>
     43312                                        <TileMatrixLimits>
     43313                                                <TileMatrix>7</TileMatrix>
     43314                                                <MinTileRow>46</MinTileRow>
     43315                                                <MaxTileRow>46</MaxTileRow>
     43316                                                <MinTileCol>65</MinTileCol>
     43317                                                <MaxTileCol>66</MaxTileCol>
     43318                                        </TileMatrixLimits>
     43319                                        <TileMatrixLimits>
     43320                                                <TileMatrix>8</TileMatrix>
     43321                                                <MinTileRow>93</MinTileRow>
     43322                                                <MaxTileRow>93</MaxTileRow>
     43323                                                <MinTileCol>131</MinTileCol>
     43324                                                <MaxTileCol>132</MaxTileCol>
     43325                                        </TileMatrixLimits>
     43326                                        <TileMatrixLimits>
     43327                                                <TileMatrix>9</TileMatrix>
     43328                                                <MinTileRow>187</MinTileRow>
     43329                                                <MaxTileRow>187</MaxTileRow>
     43330                                                <MinTileCol>263</MinTileCol>
     43331                                                <MaxTileCol>264</MaxTileCol>
     43332                                        </TileMatrixLimits>
     43333                                </TileMatrixSetLimits>
     43334                        </TileMatrixSetLink>
     43335                </Layer>
     43336                <Layer>
     43337                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43338                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43339                        <ows:Keywords>
     43340                                <ows:Keyword>Photographies</ows:Keyword>
     43341                        </ows:Keywords>
     43342                        <ows:WGS84BoundingBox>
     43343                                <ows:LowerCorner>5.18174 43.005</ows:LowerCorner>
     43344                                <ows:UpperCorner>5.53211 43.4618</ows:UpperCorner>
     43345                        </ows:WGS84BoundingBox>
     43346                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-11-39166949</ows:Identifier>
     43347                        <Style isDefault="true">
     43348                                <ows:Title>Données Brutes</ows:Title>
     43349                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43350                                <ows:Keywords>
     43351                                        <ows:Keyword>Défaut</ows:Keyword>
     43352                                </ows:Keywords>
     43353                                <ows:Identifier>normal</ows:Identifier>
     43354                                <LegendURL format="image/jpeg" height="200"
     43355                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43356                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43357                        </Style>
     43358                        <Format>image/jpeg</Format>
     43359                        <TileMatrixSetLink>
     43360                                <TileMatrixSet>PM</TileMatrixSet>
     43361                                <TileMatrixSetLimits>
     43362                                        <TileMatrixLimits>
     43363                                                <TileMatrix>0</TileMatrix>
     43364                                                <MinTileRow>0</MinTileRow>
     43365                                                <MaxTileRow>0</MaxTileRow>
     43366                                                <MinTileCol>0</MinTileCol>
     43367                                                <MaxTileCol>0</MaxTileCol>
     43368                                        </TileMatrixLimits>
     43369                                        <TileMatrixLimits>
     43370                                                <TileMatrix>1</TileMatrix>
     43371                                                <MinTileRow>0</MinTileRow>
     43372                                                <MaxTileRow>0</MaxTileRow>
     43373                                                <MinTileCol>1</MinTileCol>
     43374                                                <MaxTileCol>1</MaxTileCol>
     43375                                        </TileMatrixLimits>
     43376                                        <TileMatrixLimits>
     43377                                                <TileMatrix>10</TileMatrix>
     43378                                                <MinTileRow>374</MinTileRow>
     43379                                                <MaxTileRow>376</MaxTileRow>
     43380                                                <MinTileCol>526</MinTileCol>
     43381                                                <MaxTileCol>527</MaxTileCol>
     43382                                        </TileMatrixLimits>
     43383                                        <TileMatrixLimits>
     43384                                                <TileMatrix>11</TileMatrix>
     43385                                                <MinTileRow>748</MinTileRow>
     43386                                                <MaxTileRow>752</MaxTileRow>
     43387                                                <MinTileCol>1053</MinTileCol>
     43388                                                <MaxTileCol>1055</MaxTileCol>
     43389                                        </TileMatrixLimits>
     43390                                        <TileMatrixLimits>
     43391                                                <TileMatrix>12</TileMatrix>
     43392                                                <MinTileRow>1497</MinTileRow>
     43393                                                <MaxTileRow>1504</MaxTileRow>
     43394                                                <MinTileCol>2107</MinTileCol>
     43395                                                <MaxTileCol>2110</MaxTileCol>
     43396                                        </TileMatrixLimits>
     43397                                        <TileMatrixLimits>
     43398                                                <TileMatrix>13</TileMatrix>
     43399                                                <MinTileRow>2995</MinTileRow>
     43400                                                <MaxTileRow>3009</MaxTileRow>
     43401                                                <MinTileCol>4214</MinTileCol>
     43402                                                <MaxTileCol>4221</MaxTileCol>
     43403                                        </TileMatrixLimits>
     43404                                        <TileMatrixLimits>
     43405                                                <TileMatrix>14</TileMatrix>
     43406                                                <MinTileRow>5991</MinTileRow>
     43407                                                <MaxTileRow>6019</MaxTileRow>
     43408                                                <MinTileCol>8428</MinTileCol>
     43409                                                <MaxTileCol>8442</MaxTileCol>
     43410                                        </TileMatrixLimits>
     43411                                        <TileMatrixLimits>
     43412                                                <TileMatrix>15</TileMatrix>
     43413                                                <MinTileRow>11983</MinTileRow>
     43414                                                <MaxTileRow>12039</MaxTileRow>
     43415                                                <MinTileCol>16857</MinTileCol>
     43416                                                <MaxTileCol>16885</MaxTileCol>
     43417                                        </TileMatrixLimits>
     43418                                        <TileMatrixLimits>
     43419                                                <TileMatrix>16</TileMatrix>
     43420                                                <MinTileRow>23966</MinTileRow>
     43421                                                <MaxTileRow>24079</MaxTileRow>
     43422                                                <MinTileCol>33714</MinTileCol>
     43423                                                <MaxTileCol>33771</MaxTileCol>
     43424                                        </TileMatrixLimits>
     43425                                        <TileMatrixLimits>
     43426                                                <TileMatrix>17</TileMatrix>
     43427                                                <MinTileRow>47933</MinTileRow>
     43428                                                <MaxTileRow>48159</MaxTileRow>
     43429                                                <MinTileCol>67428</MinTileCol>
     43430                                                <MaxTileCol>67543</MaxTileCol>
     43431                                        </TileMatrixLimits>
     43432                                        <TileMatrixLimits>
     43433                                                <TileMatrix>18</TileMatrix>
     43434                                                <MinTileRow>95866</MinTileRow>
     43435                                                <MaxTileRow>96319</MaxTileRow>
     43436                                                <MinTileCol>134856</MinTileCol>
     43437                                                <MaxTileCol>135087</MaxTileCol>
     43438                                        </TileMatrixLimits>
     43439                                        <TileMatrixLimits>
     43440                                                <TileMatrix>2</TileMatrix>
     43441                                                <MinTileRow>1</MinTileRow>
     43442                                                <MaxTileRow>1</MaxTileRow>
     43443                                                <MinTileCol>2</MinTileCol>
     43444                                                <MaxTileCol>2</MaxTileCol>
     43445                                        </TileMatrixLimits>
     43446                                        <TileMatrixLimits>
     43447                                                <TileMatrix>3</TileMatrix>
     43448                                                <MinTileRow>2</MinTileRow>
     43449                                                <MaxTileRow>2</MaxTileRow>
     43450                                                <MinTileCol>4</MinTileCol>
     43451                                                <MaxTileCol>4</MaxTileCol>
     43452                                        </TileMatrixLimits>
     43453                                        <TileMatrixLimits>
     43454                                                <TileMatrix>4</TileMatrix>
     43455                                                <MinTileRow>5</MinTileRow>
     43456                                                <MaxTileRow>5</MaxTileRow>
     43457                                                <MinTileCol>8</MinTileCol>
     43458                                                <MaxTileCol>8</MaxTileCol>
     43459                                        </TileMatrixLimits>
     43460                                        <TileMatrixLimits>
     43461                                                <TileMatrix>5</TileMatrix>
     43462                                                <MinTileRow>11</MinTileRow>
     43463                                                <MaxTileRow>11</MaxTileRow>
     43464                                                <MinTileCol>16</MinTileCol>
     43465                                                <MaxTileCol>16</MaxTileCol>
     43466                                        </TileMatrixLimits>
     43467                                        <TileMatrixLimits>
     43468                                                <TileMatrix>6</TileMatrix>
     43469                                                <MinTileRow>23</MinTileRow>
     43470                                                <MaxTileRow>23</MaxTileRow>
     43471                                                <MinTileCol>32</MinTileCol>
     43472                                                <MaxTileCol>32</MaxTileCol>
     43473                                        </TileMatrixLimits>
     43474                                        <TileMatrixLimits>
     43475                                                <TileMatrix>7</TileMatrix>
     43476                                                <MinTileRow>46</MinTileRow>
     43477                                                <MaxTileRow>47</MaxTileRow>
     43478                                                <MinTileCol>65</MinTileCol>
     43479                                                <MaxTileCol>65</MaxTileCol>
     43480                                        </TileMatrixLimits>
     43481                                        <TileMatrixLimits>
     43482                                                <TileMatrix>8</TileMatrix>
     43483                                                <MinTileRow>93</MinTileRow>
     43484                                                <MaxTileRow>94</MaxTileRow>
     43485                                                <MinTileCol>131</MinTileCol>
     43486                                                <MaxTileCol>131</MaxTileCol>
     43487                                        </TileMatrixLimits>
     43488                                        <TileMatrixLimits>
     43489                                                <TileMatrix>9</TileMatrix>
     43490                                                <MinTileRow>187</MinTileRow>
     43491                                                <MaxTileRow>188</MaxTileRow>
     43492                                                <MinTileCol>263</MinTileCol>
     43493                                                <MaxTileCol>263</MaxTileCol>
     43494                                        </TileMatrixLimits>
     43495                                </TileMatrixSetLimits>
     43496                        </TileMatrixSetLink>
     43497                </Layer>
     43498                <Layer>
     43499                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43500                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43501                        <ows:Keywords>
     43502                                <ows:Keyword>Photographies</ows:Keyword>
     43503                        </ows:Keywords>
     43504                        <ows:WGS84BoundingBox>
     43505                                <ows:LowerCorner>5.63535 43.0038</ows:LowerCorner>
     43506                                <ows:UpperCorner>5.93204 43.3077</ows:UpperCorner>
     43507                        </ows:WGS84BoundingBox>
     43508                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38739122</ows:Identifier>
     43509                        <Style isDefault="true">
     43510                                <ows:Title>Données Brutes</ows:Title>
     43511                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43512                                <ows:Keywords>
     43513                                        <ows:Keyword>Défaut</ows:Keyword>
     43514                                </ows:Keywords>
     43515                                <ows:Identifier>normal</ows:Identifier>
     43516                                <LegendURL format="image/jpeg" height="200"
     43517                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43518                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43519                        </Style>
     43520                        <Format>image/jpeg</Format>
     43521                        <TileMatrixSetLink>
     43522                                <TileMatrixSet>PM</TileMatrixSet>
     43523                                <TileMatrixSetLimits>
     43524                                        <TileMatrixLimits>
     43525                                                <TileMatrix>0</TileMatrix>
     43526                                                <MinTileRow>0</MinTileRow>
     43527                                                <MaxTileRow>0</MaxTileRow>
     43528                                                <MinTileCol>0</MinTileCol>
     43529                                                <MaxTileCol>0</MaxTileCol>
     43530                                        </TileMatrixLimits>
     43531                                        <TileMatrixLimits>
     43532                                                <TileMatrix>1</TileMatrix>
     43533                                                <MinTileRow>0</MinTileRow>
     43534                                                <MaxTileRow>0</MaxTileRow>
     43535                                                <MinTileCol>1</MinTileCol>
     43536                                                <MaxTileCol>1</MaxTileCol>
     43537                                        </TileMatrixLimits>
     43538                                        <TileMatrixLimits>
     43539                                                <TileMatrix>10</TileMatrix>
     43540                                                <MinTileRow>375</MinTileRow>
     43541                                                <MaxTileRow>376</MaxTileRow>
     43542                                                <MinTileCol>528</MinTileCol>
     43543                                                <MaxTileCol>528</MaxTileCol>
     43544                                        </TileMatrixLimits>
     43545                                        <TileMatrixLimits>
     43546                                                <TileMatrix>11</TileMatrix>
     43547                                                <MinTileRow>750</MinTileRow>
     43548                                                <MaxTileRow>752</MaxTileRow>
     43549                                                <MinTileCol>1056</MinTileCol>
     43550                                                <MaxTileCol>1057</MaxTileCol>
     43551                                        </TileMatrixLimits>
     43552                                        <TileMatrixLimits>
     43553                                                <TileMatrix>12</TileMatrix>
     43554                                                <MinTileRow>1500</MinTileRow>
     43555                                                <MaxTileRow>1505</MaxTileRow>
     43556                                                <MinTileCol>2112</MinTileCol>
     43557                                                <MaxTileCol>2115</MaxTileCol>
     43558                                        </TileMatrixLimits>
     43559                                        <TileMatrixLimits>
     43560                                                <TileMatrix>13</TileMatrix>
     43561                                                <MinTileRow>3000</MinTileRow>
     43562                                                <MaxTileRow>3010</MaxTileRow>
     43563                                                <MinTileCol>4224</MinTileCol>
     43564                                                <MaxTileCol>4230</MaxTileCol>
     43565                                        </TileMatrixLimits>
     43566                                        <TileMatrixLimits>
     43567                                                <TileMatrix>14</TileMatrix>
     43568                                                <MinTileRow>6001</MinTileRow>
     43569                                                <MaxTileRow>6020</MaxTileRow>
     43570                                                <MinTileCol>8448</MinTileCol>
     43571                                                <MaxTileCol>8461</MaxTileCol>
     43572                                        </TileMatrixLimits>
     43573                                        <TileMatrixLimits>
     43574                                                <TileMatrix>15</TileMatrix>
     43575                                                <MinTileRow>12002</MinTileRow>
     43576                                                <MaxTileRow>12040</MaxTileRow>
     43577                                                <MinTileCol>16897</MinTileCol>
     43578                                                <MaxTileCol>16923</MaxTileCol>
     43579                                        </TileMatrixLimits>
     43580                                        <TileMatrixLimits>
     43581                                                <TileMatrix>16</TileMatrix>
     43582                                                <MinTileRow>24004</MinTileRow>
     43583                                                <MaxTileRow>24080</MaxTileRow>
     43584                                                <MinTileCol>33795</MinTileCol>
     43585                                                <MaxTileCol>33846</MaxTileCol>
     43586                                        </TileMatrixLimits>
     43587                                        <TileMatrixLimits>
     43588                                                <TileMatrix>17</TileMatrix>
     43589                                                <MinTileRow>48008</MinTileRow>
     43590                                                <MaxTileRow>48160</MaxTileRow>
     43591                                                <MinTileCol>67590</MinTileCol>
     43592                                                <MaxTileCol>67693</MaxTileCol>
     43593                                        </TileMatrixLimits>
     43594                                        <TileMatrixLimits>
     43595                                                <TileMatrix>18</TileMatrix>
     43596                                                <MinTileRow>96017</MinTileRow>
     43597                                                <MaxTileRow>96320</MaxTileRow>
     43598                                                <MinTileCol>135181</MinTileCol>
     43599                                                <MaxTileCol>135387</MaxTileCol>
     43600                                        </TileMatrixLimits>
     43601                                        <TileMatrixLimits>
     43602                                                <TileMatrix>2</TileMatrix>
     43603                                                <MinTileRow>1</MinTileRow>
     43604                                                <MaxTileRow>1</MaxTileRow>
     43605                                                <MinTileCol>2</MinTileCol>
     43606                                                <MaxTileCol>2</MaxTileCol>
     43607                                        </TileMatrixLimits>
     43608                                        <TileMatrixLimits>
     43609                                                <TileMatrix>3</TileMatrix>
     43610                                                <MinTileRow>2</MinTileRow>
     43611                                                <MaxTileRow>2</MaxTileRow>
     43612                                                <MinTileCol>4</MinTileCol>
     43613                                                <MaxTileCol>4</MaxTileCol>
     43614                                        </TileMatrixLimits>
     43615                                        <TileMatrixLimits>
     43616                                                <TileMatrix>4</TileMatrix>
     43617                                                <MinTileRow>5</MinTileRow>
     43618                                                <MaxTileRow>5</MaxTileRow>
     43619                                                <MinTileCol>8</MinTileCol>
     43620                                                <MaxTileCol>8</MaxTileCol>
     43621                                        </TileMatrixLimits>
     43622                                        <TileMatrixLimits>
     43623                                                <TileMatrix>5</TileMatrix>
     43624                                                <MinTileRow>11</MinTileRow>
     43625                                                <MaxTileRow>11</MaxTileRow>
     43626                                                <MinTileCol>16</MinTileCol>
     43627                                                <MaxTileCol>16</MaxTileCol>
     43628                                        </TileMatrixLimits>
     43629                                        <TileMatrixLimits>
     43630                                                <TileMatrix>6</TileMatrix>
     43631                                                <MinTileRow>23</MinTileRow>
     43632                                                <MaxTileRow>23</MaxTileRow>
     43633                                                <MinTileCol>33</MinTileCol>
     43634                                                <MaxTileCol>33</MaxTileCol>
     43635                                        </TileMatrixLimits>
     43636                                        <TileMatrixLimits>
     43637                                                <TileMatrix>7</TileMatrix>
     43638                                                <MinTileRow>46</MinTileRow>
     43639                                                <MaxTileRow>47</MaxTileRow>
     43640                                                <MinTileCol>66</MinTileCol>
     43641                                                <MaxTileCol>66</MaxTileCol>
     43642                                        </TileMatrixLimits>
     43643                                        <TileMatrixLimits>
     43644                                                <TileMatrix>8</TileMatrix>
     43645                                                <MinTileRow>93</MinTileRow>
     43646                                                <MaxTileRow>94</MaxTileRow>
     43647                                                <MinTileCol>132</MinTileCol>
     43648                                                <MaxTileCol>132</MaxTileCol>
     43649                                        </TileMatrixLimits>
     43650                                        <TileMatrixLimits>
     43651                                                <TileMatrix>9</TileMatrix>
     43652                                                <MinTileRow>187</MinTileRow>
     43653                                                <MaxTileRow>188</MaxTileRow>
     43654                                                <MinTileCol>264</MinTileCol>
     43655                                                <MaxTileCol>264</MaxTileCol>
     43656                                        </TileMatrixLimits>
     43657                                </TileMatrixSetLimits>
     43658                        </TileMatrixSetLink>
     43659                </Layer>
     43660                <Layer>
     43661                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43662                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43663                        <ows:Keywords>
     43664                                <ows:Keyword>Photographies</ows:Keyword>
     43665                        </ows:Keywords>
     43666                        <ows:WGS84BoundingBox>
     43667                                <ows:LowerCorner>5.84974 43.1234</ows:LowerCorner>
     43668                                <ows:UpperCorner>6.15356 43.3024</ows:UpperCorner>
     43669                        </ows:WGS84BoundingBox>
     43670                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38786877</ows:Identifier>
     43671                        <Style isDefault="true">
     43672                                <ows:Title>Données Brutes</ows:Title>
     43673                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43674                                <ows:Keywords>
     43675                                        <ows:Keyword>Défaut</ows:Keyword>
     43676                                </ows:Keywords>
     43677                                <ows:Identifier>normal</ows:Identifier>
     43678                                <LegendURL format="image/jpeg" height="200"
     43679                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43680                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43681                        </Style>
     43682                        <Format>image/jpeg</Format>
     43683                        <TileMatrixSetLink>
     43684                                <TileMatrixSet>PM</TileMatrixSet>
     43685                                <TileMatrixSetLimits>
     43686                                        <TileMatrixLimits>
     43687                                                <TileMatrix>0</TileMatrix>
     43688                                                <MinTileRow>0</MinTileRow>
     43689                                                <MaxTileRow>0</MaxTileRow>
     43690                                                <MinTileCol>0</MinTileCol>
     43691                                                <MaxTileCol>0</MaxTileCol>
     43692                                        </TileMatrixLimits>
     43693                                        <TileMatrixLimits>
     43694                                                <TileMatrix>1</TileMatrix>
     43695                                                <MinTileRow>0</MinTileRow>
     43696                                                <MaxTileRow>0</MaxTileRow>
     43697                                                <MinTileCol>1</MinTileCol>
     43698                                                <MaxTileCol>1</MaxTileCol>
     43699                                        </TileMatrixLimits>
     43700                                        <TileMatrixLimits>
     43701                                                <TileMatrix>10</TileMatrix>
     43702                                                <MinTileRow>375</MinTileRow>
     43703                                                <MaxTileRow>375</MaxTileRow>
     43704                                                <MinTileCol>528</MinTileCol>
     43705                                                <MaxTileCol>529</MaxTileCol>
     43706                                        </TileMatrixLimits>
     43707                                        <TileMatrixLimits>
     43708                                                <TileMatrix>11</TileMatrix>
     43709                                                <MinTileRow>750</MinTileRow>
     43710                                                <MaxTileRow>751</MaxTileRow>
     43711                                                <MinTileCol>1057</MinTileCol>
     43712                                                <MaxTileCol>1059</MaxTileCol>
     43713                                        </TileMatrixLimits>
     43714                                        <TileMatrixLimits>
     43715                                                <TileMatrix>12</TileMatrix>
     43716                                                <MinTileRow>1500</MinTileRow>
     43717                                                <MaxTileRow>1503</MaxTileRow>
     43718                                                <MinTileCol>2114</MinTileCol>
     43719                                                <MaxTileCol>2118</MaxTileCol>
     43720                                        </TileMatrixLimits>
     43721                                        <TileMatrixLimits>
     43722                                                <TileMatrix>13</TileMatrix>
     43723                                                <MinTileRow>3000</MinTileRow>
     43724                                                <MaxTileRow>3006</MaxTileRow>
     43725                                                <MinTileCol>4229</MinTileCol>
     43726                                                <MaxTileCol>4236</MaxTileCol>
     43727                                        </TileMatrixLimits>
     43728                                        <TileMatrixLimits>
     43729                                                <TileMatrix>14</TileMatrix>
     43730                                                <MinTileRow>6001</MinTileRow>
     43731                                                <MaxTileRow>6012</MaxTileRow>
     43732                                                <MinTileCol>8458</MinTileCol>
     43733                                                <MaxTileCol>8472</MaxTileCol>
     43734                                        </TileMatrixLimits>
     43735                                        <TileMatrixLimits>
     43736                                                <TileMatrix>15</TileMatrix>
     43737                                                <MinTileRow>12003</MinTileRow>
     43738                                                <MaxTileRow>12024</MaxTileRow>
     43739                                                <MinTileCol>16916</MinTileCol>
     43740                                                <MaxTileCol>16944</MaxTileCol>
     43741                                        </TileMatrixLimits>
     43742                                        <TileMatrixLimits>
     43743                                                <TileMatrix>16</TileMatrix>
     43744                                                <MinTileRow>24007</MinTileRow>
     43745                                                <MaxTileRow>24048</MaxTileRow>
     43746                                                <MinTileCol>33833</MinTileCol>
     43747                                                <MaxTileCol>33888</MaxTileCol>
     43748                                        </TileMatrixLimits>
     43749                                        <TileMatrixLimits>
     43750                                                <TileMatrix>17</TileMatrix>
     43751                                                <MinTileRow>48014</MinTileRow>
     43752                                                <MaxTileRow>48097</MaxTileRow>
     43753                                                <MinTileCol>67666</MinTileCol>
     43754                                                <MaxTileCol>67776</MaxTileCol>
     43755                                        </TileMatrixLimits>
     43756                                        <TileMatrixLimits>
     43757                                                <TileMatrix>18</TileMatrix>
     43758                                                <MinTileRow>96029</MinTileRow>
     43759                                                <MaxTileRow>96194</MaxTileRow>
     43760                                                <MinTileCol>135333</MinTileCol>
     43761                                                <MaxTileCol>135553</MaxTileCol>
     43762                                        </TileMatrixLimits>
     43763                                        <TileMatrixLimits>
     43764                                                <TileMatrix>2</TileMatrix>
     43765                                                <MinTileRow>1</MinTileRow>
     43766                                                <MaxTileRow>1</MaxTileRow>
     43767                                                <MinTileCol>2</MinTileCol>
     43768                                                <MaxTileCol>2</MaxTileCol>
     43769                                        </TileMatrixLimits>
     43770                                        <TileMatrixLimits>
     43771                                                <TileMatrix>3</TileMatrix>
     43772                                                <MinTileRow>2</MinTileRow>
     43773                                                <MaxTileRow>2</MaxTileRow>
     43774                                                <MinTileCol>4</MinTileCol>
     43775                                                <MaxTileCol>4</MaxTileCol>
     43776                                        </TileMatrixLimits>
     43777                                        <TileMatrixLimits>
     43778                                                <TileMatrix>4</TileMatrix>
     43779                                                <MinTileRow>5</MinTileRow>
     43780                                                <MaxTileRow>5</MaxTileRow>
     43781                                                <MinTileCol>8</MinTileCol>
     43782                                                <MaxTileCol>8</MaxTileCol>
     43783                                        </TileMatrixLimits>
     43784                                        <TileMatrixLimits>
     43785                                                <TileMatrix>5</TileMatrix>
     43786                                                <MinTileRow>11</MinTileRow>
     43787                                                <MaxTileRow>11</MaxTileRow>
     43788                                                <MinTileCol>16</MinTileCol>
     43789                                                <MaxTileCol>16</MaxTileCol>
     43790                                        </TileMatrixLimits>
     43791                                        <TileMatrixLimits>
     43792                                                <TileMatrix>6</TileMatrix>
     43793                                                <MinTileRow>23</MinTileRow>
     43794                                                <MaxTileRow>23</MaxTileRow>
     43795                                                <MinTileCol>33</MinTileCol>
     43796                                                <MaxTileCol>33</MaxTileCol>
     43797                                        </TileMatrixLimits>
     43798                                        <TileMatrixLimits>
     43799                                                <TileMatrix>7</TileMatrix>
     43800                                                <MinTileRow>46</MinTileRow>
     43801                                                <MaxTileRow>46</MaxTileRow>
     43802                                                <MinTileCol>66</MinTileCol>
     43803                                                <MaxTileCol>66</MaxTileCol>
     43804                                        </TileMatrixLimits>
     43805                                        <TileMatrixLimits>
     43806                                                <TileMatrix>8</TileMatrix>
     43807                                                <MinTileRow>93</MinTileRow>
     43808                                                <MaxTileRow>93</MaxTileRow>
     43809                                                <MinTileCol>132</MinTileCol>
     43810                                                <MaxTileCol>132</MaxTileCol>
     43811                                        </TileMatrixLimits>
     43812                                        <TileMatrixLimits>
     43813                                                <TileMatrix>9</TileMatrix>
     43814                                                <MinTileRow>187</MinTileRow>
     43815                                                <MaxTileRow>187</MaxTileRow>
     43816                                                <MinTileCol>264</MinTileCol>
     43817                                                <MaxTileCol>264</MaxTileCol>
     43818                                        </TileMatrixLimits>
     43819                                </TileMatrixSetLimits>
     43820                        </TileMatrixSetLink>
     43821                </Layer>
     43822                <Layer>
     43823                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43824                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43825                        <ows:Keywords>
     43826                                <ows:Keyword>Photographies</ows:Keyword>
     43827                        </ows:Keywords>
     43828                        <ows:WGS84BoundingBox>
     43829                                <ows:LowerCorner>5.41448 42.9999</ows:LowerCorner>
     43830                                <ows:UpperCorner>5.73253 43.259</ows:UpperCorner>
     43831                        </ows:WGS84BoundingBox>
     43832                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-12-38794949</ows:Identifier>
     43833                        <Style isDefault="true">
     43834                                <ows:Title>Données Brutes</ows:Title>
     43835                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43836                                <ows:Keywords>
     43837                                        <ows:Keyword>Défaut</ows:Keyword>
     43838                                </ows:Keywords>
     43839                                <ows:Identifier>normal</ows:Identifier>
     43840                                <LegendURL format="image/jpeg" height="200"
     43841                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     43842                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     43843                        </Style>
     43844                        <Format>image/jpeg</Format>
     43845                        <TileMatrixSetLink>
     43846                                <TileMatrixSet>PM</TileMatrixSet>
     43847                                <TileMatrixSetLimits>
     43848                                        <TileMatrixLimits>
     43849                                                <TileMatrix>0</TileMatrix>
     43850                                                <MinTileRow>0</MinTileRow>
     43851                                                <MaxTileRow>0</MaxTileRow>
     43852                                                <MinTileCol>0</MinTileCol>
     43853                                                <MaxTileCol>0</MaxTileCol>
     43854                                        </TileMatrixLimits>
     43855                                        <TileMatrixLimits>
     43856                                                <TileMatrix>1</TileMatrix>
     43857                                                <MinTileRow>0</MinTileRow>
     43858                                                <MaxTileRow>0</MaxTileRow>
     43859                                                <MinTileCol>1</MinTileCol>
     43860                                                <MaxTileCol>1</MaxTileCol>
     43861                                        </TileMatrixLimits>
     43862                                        <TileMatrixLimits>
     43863                                                <TileMatrix>10</TileMatrix>
     43864                                                <MinTileRow>375</MinTileRow>
     43865                                                <MaxTileRow>376</MaxTileRow>
     43866                                                <MinTileCol>527</MinTileCol>
     43867                                                <MaxTileCol>528</MaxTileCol>
     43868                                        </TileMatrixLimits>
     43869                                        <TileMatrixLimits>
     43870                                                <TileMatrix>11</TileMatrix>
     43871                                                <MinTileRow>750</MinTileRow>
     43872                                                <MaxTileRow>752</MaxTileRow>
     43873                                                <MinTileCol>1054</MinTileCol>
     43874                                                <MaxTileCol>1056</MaxTileCol>
     43875                                        </TileMatrixLimits>
     43876                                        <TileMatrixLimits>
     43877                                                <TileMatrix>12</TileMatrix>
     43878                                                <MinTileRow>1501</MinTileRow>
     43879                                                <MaxTileRow>1505</MaxTileRow>
     43880                                                <MinTileCol>2109</MinTileCol>
     43881                                                <MaxTileCol>2113</MaxTileCol>
     43882                                        </TileMatrixLimits>
     43883                                        <TileMatrixLimits>
     43884                                                <TileMatrix>13</TileMatrix>
     43885                                                <MinTileRow>3002</MinTileRow>
     43886                                                <MaxTileRow>3010</MaxTileRow>
     43887                                                <MinTileCol>4219</MinTileCol>
     43888                                                <MaxTileCol>4226</MaxTileCol>
     43889                                        </TileMatrixLimits>
     43890                                        <TileMatrixLimits>
     43891                                                <TileMatrix>14</TileMatrix>
     43892                                                <MinTileRow>6004</MinTileRow>
     43893                                                <MaxTileRow>6020</MaxTileRow>
     43894                                                <MinTileCol>8438</MinTileCol>
     43895                                                <MaxTileCol>8452</MaxTileCol>
     43896                                        </TileMatrixLimits>
     43897                                        <TileMatrixLimits>
     43898                                                <TileMatrix>15</TileMatrix>
     43899                                                <MinTileRow>12009</MinTileRow>
     43900                                                <MaxTileRow>12040</MaxTileRow>
     43901                                                <MinTileCol>16877</MinTileCol>
     43902                                                <MaxTileCol>16904</MaxTileCol>
     43903                                        </TileMatrixLimits>
     43904                                        <TileMatrixLimits>
     43905                                                <TileMatrix>16</TileMatrix>
     43906                                                <MinTileRow>24018</MinTileRow>
     43907                                                <MaxTileRow>24080</MaxTileRow>
     43908                                                <MinTileCol>33754</MinTileCol>
     43909                                                <MaxTileCol>33809</MaxTileCol>
     43910                                        </TileMatrixLimits>
     43911                                        <TileMatrixLimits>
     43912                                                <TileMatrix>17</TileMatrix>
     43913                                                <MinTileRow>48036</MinTileRow>
     43914                                                <MaxTileRow>48160</MaxTileRow>
     43915                                                <MinTileCol>67509</MinTileCol>
     43916                                                <MaxTileCol>67619</MaxTileCol>
     43917                                        </TileMatrixLimits>
     43918                                        <TileMatrixLimits>
     43919                                                <TileMatrix>18</TileMatrix>
     43920                                                <MinTileRow>96072</MinTileRow>
     43921                                                <MaxTileRow>96320</MaxTileRow>
     43922                                                <MinTileCol>135019</MinTileCol>
     43923                                                <MaxTileCol>135239</MaxTileCol>
     43924                                        </TileMatrixLimits>
     43925                                        <TileMatrixLimits>
     43926                                                <TileMatrix>2</TileMatrix>
     43927                                                <MinTileRow>1</MinTileRow>
     43928                                                <MaxTileRow>1</MaxTileRow>
     43929                                                <MinTileCol>2</MinTileCol>
     43930                                                <MaxTileCol>2</MaxTileCol>
     43931                                        </TileMatrixLimits>
     43932                                        <TileMatrixLimits>
     43933                                                <TileMatrix>3</TileMatrix>
     43934                                                <MinTileRow>2</MinTileRow>
     43935                                                <MaxTileRow>2</MaxTileRow>
     43936                                                <MinTileCol>4</MinTileCol>
     43937                                                <MaxTileCol>4</MaxTileCol>
     43938                                        </TileMatrixLimits>
     43939                                        <TileMatrixLimits>
     43940                                                <TileMatrix>4</TileMatrix>
     43941                                                <MinTileRow>5</MinTileRow>
     43942                                                <MaxTileRow>5</MaxTileRow>
     43943                                                <MinTileCol>8</MinTileCol>
     43944                                                <MaxTileCol>8</MaxTileCol>
     43945                                        </TileMatrixLimits>
     43946                                        <TileMatrixLimits>
     43947                                                <TileMatrix>5</TileMatrix>
     43948                                                <MinTileRow>11</MinTileRow>
     43949                                                <MaxTileRow>11</MaxTileRow>
     43950                                                <MinTileCol>16</MinTileCol>
     43951                                                <MaxTileCol>16</MaxTileCol>
     43952                                        </TileMatrixLimits>
     43953                                        <TileMatrixLimits>
     43954                                                <TileMatrix>6</TileMatrix>
     43955                                                <MinTileRow>23</MinTileRow>
     43956                                                <MaxTileRow>23</MaxTileRow>
     43957                                                <MinTileCol>32</MinTileCol>
     43958                                                <MaxTileCol>33</MaxTileCol>
     43959                                        </TileMatrixLimits>
     43960                                        <TileMatrixLimits>
     43961                                                <TileMatrix>7</TileMatrix>
     43962                                                <MinTileRow>46</MinTileRow>
     43963                                                <MaxTileRow>47</MaxTileRow>
     43964                                                <MinTileCol>65</MinTileCol>
     43965                                                <MaxTileCol>66</MaxTileCol>
     43966                                        </TileMatrixLimits>
     43967                                        <TileMatrixLimits>
     43968                                                <TileMatrix>8</TileMatrix>
     43969                                                <MinTileRow>93</MinTileRow>
     43970                                                <MaxTileRow>94</MaxTileRow>
     43971                                                <MinTileCol>131</MinTileCol>
     43972                                                <MaxTileCol>132</MaxTileCol>
     43973                                        </TileMatrixLimits>
     43974                                        <TileMatrixLimits>
     43975                                                <TileMatrix>9</TileMatrix>
     43976                                                <MinTileRow>187</MinTileRow>
     43977                                                <MaxTileRow>188</MaxTileRow>
     43978                                                <MinTileCol>263</MinTileCol>
     43979                                                <MaxTileCol>264</MaxTileCol>
     43980                                        </TileMatrixLimits>
     43981                                </TileMatrixSetLimits>
     43982                        </TileMatrixSetLink>
     43983                </Layer>
     43984                <Layer>
     43985                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     43986                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     43987                        <ows:Keywords>
     43988                                <ows:Keyword>Photographies</ows:Keyword>
     43989                        </ows:Keywords>
     43990                        <ows:WGS84BoundingBox>
     43991                                <ows:LowerCorner>6.71699 43.4197</ows:LowerCorner>
     43992                                <ows:UpperCorner>7.00323 43.645</ows:UpperCorner>
     43993                        </ows:WGS84BoundingBox>
     43994                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38211417</ows:Identifier>
     43995                        <Style isDefault="true">
     43996                                <ows:Title>Données Brutes</ows:Title>
     43997                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     43998                                <ows:Keywords>
     43999                                        <ows:Keyword>Défaut</ows:Keyword>
     44000                                </ows:Keywords>
     44001                                <ows:Identifier>normal</ows:Identifier>
     44002                                <LegendURL format="image/jpeg" height="200"
     44003                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44004                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44005                        </Style>
     44006                        <Format>image/jpeg</Format>
     44007                        <TileMatrixSetLink>
     44008                                <TileMatrixSet>PM</TileMatrixSet>
     44009                                <TileMatrixSetLimits>
     44010                                        <TileMatrixLimits>
     44011                                                <TileMatrix>0</TileMatrix>
     44012                                                <MinTileRow>0</MinTileRow>
     44013                                                <MaxTileRow>0</MaxTileRow>
     44014                                                <MinTileCol>0</MinTileCol>
     44015                                                <MaxTileCol>0</MaxTileCol>
     44016                                        </TileMatrixLimits>
     44017                                        <TileMatrixLimits>
     44018                                                <TileMatrix>1</TileMatrix>
     44019                                                <MinTileRow>0</MinTileRow>
     44020                                                <MaxTileRow>0</MaxTileRow>
     44021                                                <MinTileCol>1</MinTileCol>
     44022                                                <MaxTileCol>1</MaxTileCol>
     44023                                        </TileMatrixLimits>
     44024                                        <TileMatrixLimits>
     44025                                                <TileMatrix>10</TileMatrix>
     44026                                                <MinTileRow>373</MinTileRow>
     44027                                                <MaxTileRow>374</MaxTileRow>
     44028                                                <MinTileCol>531</MinTileCol>
     44029                                                <MaxTileCol>531</MaxTileCol>
     44030                                        </TileMatrixLimits>
     44031                                        <TileMatrixLimits>
     44032                                                <TileMatrix>11</TileMatrix>
     44033                                                <MinTileRow>747</MinTileRow>
     44034                                                <MaxTileRow>749</MaxTileRow>
     44035                                                <MinTileCol>1062</MinTileCol>
     44036                                                <MaxTileCol>1063</MaxTileCol>
     44037                                        </TileMatrixLimits>
     44038                                        <TileMatrixLimits>
     44039                                                <TileMatrix>12</TileMatrix>
     44040                                                <MinTileRow>1495</MinTileRow>
     44041                                                <MaxTileRow>1498</MaxTileRow>
     44042                                                <MinTileCol>2124</MinTileCol>
     44043                                                <MaxTileCol>2127</MaxTileCol>
     44044                                        </TileMatrixLimits>
     44045                                        <TileMatrixLimits>
     44046                                                <TileMatrix>13</TileMatrix>
     44047                                                <MinTileRow>2990</MinTileRow>
     44048                                                <MaxTileRow>2996</MaxTileRow>
     44049                                                <MinTileCol>4248</MinTileCol>
     44050                                                <MaxTileCol>4255</MaxTileCol>
     44051                                        </TileMatrixLimits>
     44052                                        <TileMatrixLimits>
     44053                                                <TileMatrix>14</TileMatrix>
     44054                                                <MinTileRow>5980</MinTileRow>
     44055                                                <MaxTileRow>5993</MaxTileRow>
     44056                                                <MinTileCol>8497</MinTileCol>
     44057                                                <MaxTileCol>8510</MaxTileCol>
     44058                                        </TileMatrixLimits>
     44059                                        <TileMatrixLimits>
     44060                                                <TileMatrix>15</TileMatrix>
     44061                                                <MinTileRow>11960</MinTileRow>
     44062                                                <MaxTileRow>11987</MaxTileRow>
     44063                                                <MinTileCol>16995</MinTileCol>
     44064                                                <MaxTileCol>17021</MaxTileCol>
     44065                                        </TileMatrixLimits>
     44066                                        <TileMatrixLimits>
     44067                                                <TileMatrix>16</TileMatrix>
     44068                                                <MinTileRow>23921</MinTileRow>
     44069                                                <MaxTileRow>23975</MaxTileRow>
     44070                                                <MinTileCol>33991</MinTileCol>
     44071                                                <MaxTileCol>34042</MaxTileCol>
     44072                                        </TileMatrixLimits>
     44073                                        <TileMatrixLimits>
     44074                                                <TileMatrix>17</TileMatrix>
     44075                                                <MinTileRow>47843</MinTileRow>
     44076                                                <MaxTileRow>47951</MaxTileRow>
     44077                                                <MinTileCol>67983</MinTileCol>
     44078                                                <MaxTileCol>68084</MaxTileCol>
     44079                                        </TileMatrixLimits>
     44080                                        <TileMatrixLimits>
     44081                                                <TileMatrix>18</TileMatrix>
     44082                                                <MinTileRow>95686</MinTileRow>
     44083                                                <MaxTileRow>95903</MaxTileRow>
     44084                                                <MinTileCol>135966</MinTileCol>
     44085                                                <MaxTileCol>136168</MaxTileCol>
     44086                                        </TileMatrixLimits>
     44087                                        <TileMatrixLimits>
     44088                                                <TileMatrix>2</TileMatrix>
     44089                                                <MinTileRow>1</MinTileRow>
     44090                                                <MaxTileRow>1</MaxTileRow>
     44091                                                <MinTileCol>2</MinTileCol>
     44092                                                <MaxTileCol>2</MaxTileCol>
     44093                                        </TileMatrixLimits>
     44094                                        <TileMatrixLimits>
     44095                                                <TileMatrix>3</TileMatrix>
     44096                                                <MinTileRow>2</MinTileRow>
     44097                                                <MaxTileRow>2</MaxTileRow>
     44098                                                <MinTileCol>4</MinTileCol>
     44099                                                <MaxTileCol>4</MaxTileCol>
     44100                                        </TileMatrixLimits>
     44101                                        <TileMatrixLimits>
     44102                                                <TileMatrix>4</TileMatrix>
     44103                                                <MinTileRow>5</MinTileRow>
     44104                                                <MaxTileRow>5</MaxTileRow>
     44105                                                <MinTileCol>8</MinTileCol>
     44106                                                <MaxTileCol>8</MaxTileCol>
     44107                                        </TileMatrixLimits>
     44108                                        <TileMatrixLimits>
     44109                                                <TileMatrix>5</TileMatrix>
     44110                                                <MinTileRow>11</MinTileRow>
     44111                                                <MaxTileRow>11</MaxTileRow>
     44112                                                <MinTileCol>16</MinTileCol>
     44113                                                <MaxTileCol>16</MaxTileCol>
     44114                                        </TileMatrixLimits>
     44115                                        <TileMatrixLimits>
     44116                                                <TileMatrix>6</TileMatrix>
     44117                                                <MinTileRow>23</MinTileRow>
     44118                                                <MaxTileRow>23</MaxTileRow>
     44119                                                <MinTileCol>33</MinTileCol>
     44120                                                <MaxTileCol>33</MaxTileCol>
     44121                                        </TileMatrixLimits>
     44122                                        <TileMatrixLimits>
     44123                                                <TileMatrix>7</TileMatrix>
     44124                                                <MinTileRow>46</MinTileRow>
     44125                                                <MaxTileRow>46</MaxTileRow>
     44126                                                <MinTileCol>66</MinTileCol>
     44127                                                <MaxTileCol>66</MaxTileCol>
     44128                                        </TileMatrixLimits>
     44129                                        <TileMatrixLimits>
     44130                                                <TileMatrix>8</TileMatrix>
     44131                                                <MinTileRow>93</MinTileRow>
     44132                                                <MaxTileRow>93</MaxTileRow>
     44133                                                <MinTileCol>132</MinTileCol>
     44134                                                <MaxTileCol>132</MaxTileCol>
     44135                                        </TileMatrixLimits>
     44136                                        <TileMatrixLimits>
     44137                                                <TileMatrix>9</TileMatrix>
     44138                                                <MinTileRow>186</MinTileRow>
     44139                                                <MaxTileRow>187</MaxTileRow>
     44140                                                <MinTileCol>265</MinTileCol>
     44141                                                <MaxTileCol>265</MaxTileCol>
     44142                                        </TileMatrixLimits>
     44143                                </TileMatrixSetLimits>
     44144                        </TileMatrixSetLink>
     44145                </Layer>
     44146                <Layer>
     44147                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44148                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44149                        <ows:Keywords>
     44150                                <ows:Keyword>Photographies</ows:Keyword>
     44151                        </ows:Keywords>
     44152                        <ows:WGS84BoundingBox>
     44153                                <ows:LowerCorner>6.28381 42.9756</ows:LowerCorner>
     44154                                <ows:UpperCorner>6.57911 43.4066</ows:UpperCorner>
     44155                        </ows:WGS84BoundingBox>
     44156                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38228180</ows:Identifier>
     44157                        <Style isDefault="true">
     44158                                <ows:Title>Données Brutes</ows:Title>
     44159                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44160                                <ows:Keywords>
     44161                                        <ows:Keyword>Défaut</ows:Keyword>
     44162                                </ows:Keywords>
     44163                                <ows:Identifier>normal</ows:Identifier>
     44164                                <LegendURL format="image/jpeg" height="200"
     44165                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44166                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44167                        </Style>
     44168                        <Format>image/jpeg</Format>
     44169                        <TileMatrixSetLink>
     44170                                <TileMatrixSet>PM</TileMatrixSet>
     44171                                <TileMatrixSetLimits>
     44172                                        <TileMatrixLimits>
     44173                                                <TileMatrix>0</TileMatrix>
     44174                                                <MinTileRow>0</MinTileRow>
     44175                                                <MaxTileRow>0</MaxTileRow>
     44176                                                <MinTileCol>0</MinTileCol>
     44177                                                <MaxTileCol>0</MaxTileCol>
     44178                                        </TileMatrixLimits>
     44179                                        <TileMatrixLimits>
     44180                                                <TileMatrix>1</TileMatrix>
     44181                                                <MinTileRow>0</MinTileRow>
     44182                                                <MaxTileRow>0</MaxTileRow>
     44183                                                <MinTileCol>1</MinTileCol>
     44184                                                <MaxTileCol>1</MaxTileCol>
     44185                                        </TileMatrixLimits>
     44186                                        <TileMatrixLimits>
     44187                                                <TileMatrix>10</TileMatrix>
     44188                                                <MinTileRow>374</MinTileRow>
     44189                                                <MaxTileRow>376</MaxTileRow>
     44190                                                <MinTileCol>529</MinTileCol>
     44191                                                <MaxTileCol>530</MaxTileCol>
     44192                                        </TileMatrixLimits>
     44193                                        <TileMatrixLimits>
     44194                                                <TileMatrix>11</TileMatrix>
     44195                                                <MinTileRow>749</MinTileRow>
     44196                                                <MaxTileRow>752</MaxTileRow>
     44197                                                <MinTileCol>1059</MinTileCol>
     44198                                                <MaxTileCol>1061</MaxTileCol>
     44199                                        </TileMatrixLimits>
     44200                                        <TileMatrixLimits>
     44201                                                <TileMatrix>12</TileMatrix>
     44202                                                <MinTileRow>1498</MinTileRow>
     44203                                                <MaxTileRow>1505</MaxTileRow>
     44204                                                <MinTileCol>2119</MinTileCol>
     44205                                                <MaxTileCol>2122</MaxTileCol>
     44206                                        </TileMatrixLimits>
     44207                                        <TileMatrixLimits>
     44208                                                <TileMatrix>13</TileMatrix>
     44209                                                <MinTileRow>2997</MinTileRow>
     44210                                                <MaxTileRow>3010</MaxTileRow>
     44211                                                <MinTileCol>4239</MinTileCol>
     44212                                                <MaxTileCol>4245</MaxTileCol>
     44213                                        </TileMatrixLimits>
     44214                                        <TileMatrixLimits>
     44215                                                <TileMatrix>14</TileMatrix>
     44216                                                <MinTileRow>5995</MinTileRow>
     44217                                                <MaxTileRow>6021</MaxTileRow>
     44218                                                <MinTileCol>8478</MinTileCol>
     44219                                                <MaxTileCol>8491</MaxTileCol>
     44220                                        </TileMatrixLimits>
     44221                                        <TileMatrixLimits>
     44222                                                <TileMatrix>15</TileMatrix>
     44223                                                <MinTileRow>11990</MinTileRow>
     44224                                                <MaxTileRow>12042</MaxTileRow>
     44225                                                <MinTileCol>16957</MinTileCol>
     44226                                                <MaxTileCol>16982</MaxTileCol>
     44227                                        </TileMatrixLimits>
     44228                                        <TileMatrixLimits>
     44229                                                <TileMatrix>16</TileMatrix>
     44230                                                <MinTileRow>23981</MinTileRow>
     44231                                                <MaxTileRow>24085</MaxTileRow>
     44232                                                <MinTileCol>33914</MinTileCol>
     44233                                                <MaxTileCol>33964</MaxTileCol>
     44234                                        </TileMatrixLimits>
     44235                                        <TileMatrixLimits>
     44236                                                <TileMatrix>17</TileMatrix>
     44237                                                <MinTileRow>47963</MinTileRow>
     44238                                                <MaxTileRow>48171</MaxTileRow>
     44239                                                <MinTileCol>67828</MinTileCol>
     44240                                                <MaxTileCol>67929</MaxTileCol>
     44241                                        </TileMatrixLimits>
     44242                                        <TileMatrixLimits>
     44243                                                <TileMatrix>18</TileMatrix>
     44244                                                <MinTileRow>95926</MinTileRow>
     44245                                                <MaxTileRow>96342</MaxTileRow>
     44246                                                <MinTileCol>135657</MinTileCol>
     44247                                                <MaxTileCol>135858</MaxTileCol>
     44248                                        </TileMatrixLimits>
     44249                                        <TileMatrixLimits>
     44250                                                <TileMatrix>2</TileMatrix>
     44251                                                <MinTileRow>1</MinTileRow>
     44252                                                <MaxTileRow>1</MaxTileRow>
     44253                                                <MinTileCol>2</MinTileCol>
     44254                                                <MaxTileCol>2</MaxTileCol>
     44255                                        </TileMatrixLimits>
     44256                                        <TileMatrixLimits>
     44257                                                <TileMatrix>3</TileMatrix>
     44258                                                <MinTileRow>2</MinTileRow>
     44259                                                <MaxTileRow>2</MaxTileRow>
     44260                                                <MinTileCol>4</MinTileCol>
     44261                                                <MaxTileCol>4</MaxTileCol>
     44262                                        </TileMatrixLimits>
     44263                                        <TileMatrixLimits>
     44264                                                <TileMatrix>4</TileMatrix>
     44265                                                <MinTileRow>5</MinTileRow>
     44266                                                <MaxTileRow>5</MaxTileRow>
     44267                                                <MinTileCol>8</MinTileCol>
     44268                                                <MaxTileCol>8</MaxTileCol>
     44269                                        </TileMatrixLimits>
     44270                                        <TileMatrixLimits>
     44271                                                <TileMatrix>5</TileMatrix>
     44272                                                <MinTileRow>11</MinTileRow>
     44273                                                <MaxTileRow>11</MaxTileRow>
     44274                                                <MinTileCol>16</MinTileCol>
     44275                                                <MaxTileCol>16</MaxTileCol>
     44276                                        </TileMatrixLimits>
     44277                                        <TileMatrixLimits>
     44278                                                <TileMatrix>6</TileMatrix>
     44279                                                <MinTileRow>23</MinTileRow>
     44280                                                <MaxTileRow>23</MaxTileRow>
     44281                                                <MinTileCol>33</MinTileCol>
     44282                                                <MaxTileCol>33</MaxTileCol>
     44283                                        </TileMatrixLimits>
     44284                                        <TileMatrixLimits>
     44285                                                <TileMatrix>7</TileMatrix>
     44286                                                <MinTileRow>46</MinTileRow>
     44287                                                <MaxTileRow>47</MaxTileRow>
     44288                                                <MinTileCol>66</MinTileCol>
     44289                                                <MaxTileCol>66</MaxTileCol>
     44290                                        </TileMatrixLimits>
     44291                                        <TileMatrixLimits>
     44292                                                <TileMatrix>8</TileMatrix>
     44293                                                <MinTileRow>93</MinTileRow>
     44294                                                <MaxTileRow>94</MaxTileRow>
     44295                                                <MinTileCol>132</MinTileCol>
     44296                                                <MaxTileCol>132</MaxTileCol>
     44297                                        </TileMatrixLimits>
     44298                                        <TileMatrixLimits>
     44299                                                <TileMatrix>9</TileMatrix>
     44300                                                <MinTileRow>187</MinTileRow>
     44301                                                <MaxTileRow>188</MaxTileRow>
     44302                                                <MinTileCol>264</MinTileCol>
     44303                                                <MaxTileCol>265</MaxTileCol>
     44304                                        </TileMatrixLimits>
     44305                                </TileMatrixSetLimits>
     44306                        </TileMatrixSetLink>
     44307                </Layer>
     44308                <Layer>
     44309                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44310                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44311                        <ows:Keywords>
     44312                                <ows:Keyword>Photographies</ows:Keyword>
     44313                        </ows:Keywords>
     44314                        <ows:WGS84BoundingBox>
     44315                                <ows:LowerCorner>6.07829 43.2616</ows:LowerCorner>
     44316                                <ows:UpperCorner>6.33865 43.3053</ows:UpperCorner>
     44317                        </ows:WGS84BoundingBox>
     44318                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38263771</ows:Identifier>
     44319                        <Style isDefault="true">
     44320                                <ows:Title>Données Brutes</ows:Title>
     44321                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44322                                <ows:Keywords>
     44323                                        <ows:Keyword>Défaut</ows:Keyword>
     44324                                </ows:Keywords>
     44325                                <ows:Identifier>normal</ows:Identifier>
     44326                                <LegendURL format="image/jpeg" height="200"
     44327                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44328                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44329                        </Style>
     44330                        <Format>image/jpeg</Format>
     44331                        <TileMatrixSetLink>
     44332                                <TileMatrixSet>PM</TileMatrixSet>
     44333                                <TileMatrixSetLimits>
     44334                                        <TileMatrixLimits>
     44335                                                <TileMatrix>0</TileMatrix>
     44336                                                <MinTileRow>0</MinTileRow>
     44337                                                <MaxTileRow>0</MaxTileRow>
     44338                                                <MinTileCol>0</MinTileCol>
     44339                                                <MaxTileCol>0</MaxTileCol>
     44340                                        </TileMatrixLimits>
     44341                                        <TileMatrixLimits>
     44342                                                <TileMatrix>1</TileMatrix>
     44343                                                <MinTileRow>0</MinTileRow>
     44344                                                <MaxTileRow>0</MaxTileRow>
     44345                                                <MinTileCol>1</MinTileCol>
     44346                                                <MaxTileCol>1</MaxTileCol>
     44347                                        </TileMatrixLimits>
     44348                                        <TileMatrixLimits>
     44349                                                <TileMatrix>10</TileMatrix>
     44350                                                <MinTileRow>375</MinTileRow>
     44351                                                <MaxTileRow>375</MaxTileRow>
     44352                                                <MinTileCol>529</MinTileCol>
     44353                                                <MaxTileCol>530</MaxTileCol>
     44354                                        </TileMatrixLimits>
     44355                                        <TileMatrixLimits>
     44356                                                <TileMatrix>11</TileMatrix>
     44357                                                <MinTileRow>750</MinTileRow>
     44358                                                <MaxTileRow>750</MaxTileRow>
     44359                                                <MinTileCol>1058</MinTileCol>
     44360                                                <MaxTileCol>1060</MaxTileCol>
     44361                                        </TileMatrixLimits>
     44362                                        <TileMatrixLimits>
     44363                                                <TileMatrix>12</TileMatrix>
     44364                                                <MinTileRow>1500</MinTileRow>
     44365                                                <MaxTileRow>1500</MaxTileRow>
     44366                                                <MinTileCol>2117</MinTileCol>
     44367                                                <MaxTileCol>2120</MaxTileCol>
     44368                                        </TileMatrixLimits>
     44369                                        <TileMatrixLimits>
     44370                                                <TileMatrix>13</TileMatrix>
     44371                                                <MinTileRow>3000</MinTileRow>
     44372                                                <MaxTileRow>3001</MaxTileRow>
     44373                                                <MinTileCol>4234</MinTileCol>
     44374                                                <MaxTileCol>4240</MaxTileCol>
     44375                                        </TileMatrixLimits>
     44376                                        <TileMatrixLimits>
     44377                                                <TileMatrix>14</TileMatrix>
     44378                                                <MinTileRow>6001</MinTileRow>
     44379                                                <MaxTileRow>6003</MaxTileRow>
     44380                                                <MinTileCol>8468</MinTileCol>
     44381                                                <MaxTileCol>8480</MaxTileCol>
     44382                                        </TileMatrixLimits>
     44383                                        <TileMatrixLimits>
     44384                                                <TileMatrix>15</TileMatrix>
     44385                                                <MinTileRow>12003</MinTileRow>
     44386                                                <MaxTileRow>12007</MaxTileRow>
     44387                                                <MinTileCol>16937</MinTileCol>
     44388                                                <MaxTileCol>16960</MaxTileCol>
     44389                                        </TileMatrixLimits>
     44390                                        <TileMatrixLimits>
     44391                                                <TileMatrix>16</TileMatrix>
     44392                                                <MinTileRow>24006</MinTileRow>
     44393                                                <MaxTileRow>24014</MaxTileRow>
     44394                                                <MinTileCol>33874</MinTileCol>
     44395                                                <MaxTileCol>33921</MaxTileCol>
     44396                                        </TileMatrixLimits>
     44397                                        <TileMatrixLimits>
     44398                                                <TileMatrix>17</TileMatrix>
     44399                                                <MinTileRow>48012</MinTileRow>
     44400                                                <MaxTileRow>48028</MaxTileRow>
     44401                                                <MinTileCol>67748</MinTileCol>
     44402                                                <MaxTileCol>67843</MaxTileCol>
     44403                                        </TileMatrixLimits>
     44404                                        <TileMatrixLimits>
     44405                                                <TileMatrix>18</TileMatrix>
     44406                                                <MinTileRow>96025</MinTileRow>
     44407                                                <MaxTileRow>96057</MaxTileRow>
     44408                                                <MinTileCol>135497</MinTileCol>
     44409                                                <MaxTileCol>135687</MaxTileCol>
     44410                                        </TileMatrixLimits>
     44411                                        <TileMatrixLimits>
     44412                                                <TileMatrix>2</TileMatrix>
     44413                                                <MinTileRow>1</MinTileRow>
     44414                                                <MaxTileRow>1</MaxTileRow>
     44415                                                <MinTileCol>2</MinTileCol>
     44416                                                <MaxTileCol>2</MaxTileCol>
     44417                                        </TileMatrixLimits>
     44418                                        <TileMatrixLimits>
     44419                                                <TileMatrix>3</TileMatrix>
     44420                                                <MinTileRow>2</MinTileRow>
     44421                                                <MaxTileRow>2</MaxTileRow>
     44422                                                <MinTileCol>4</MinTileCol>
     44423                                                <MaxTileCol>4</MaxTileCol>
     44424                                        </TileMatrixLimits>
     44425                                        <TileMatrixLimits>
     44426                                                <TileMatrix>4</TileMatrix>
     44427                                                <MinTileRow>5</MinTileRow>
     44428                                                <MaxTileRow>5</MaxTileRow>
     44429                                                <MinTileCol>8</MinTileCol>
     44430                                                <MaxTileCol>8</MaxTileCol>
     44431                                        </TileMatrixLimits>
     44432                                        <TileMatrixLimits>
     44433                                                <TileMatrix>5</TileMatrix>
     44434                                                <MinTileRow>11</MinTileRow>
     44435                                                <MaxTileRow>11</MaxTileRow>
     44436                                                <MinTileCol>16</MinTileCol>
     44437                                                <MaxTileCol>16</MaxTileCol>
     44438                                        </TileMatrixLimits>
     44439                                        <TileMatrixLimits>
     44440                                                <TileMatrix>6</TileMatrix>
     44441                                                <MinTileRow>23</MinTileRow>
     44442                                                <MaxTileRow>23</MaxTileRow>
     44443                                                <MinTileCol>33</MinTileCol>
     44444                                                <MaxTileCol>33</MaxTileCol>
     44445                                        </TileMatrixLimits>
     44446                                        <TileMatrixLimits>
     44447                                                <TileMatrix>7</TileMatrix>
     44448                                                <MinTileRow>46</MinTileRow>
     44449                                                <MaxTileRow>46</MaxTileRow>
     44450                                                <MinTileCol>66</MinTileCol>
     44451                                                <MaxTileCol>66</MaxTileCol>
     44452                                        </TileMatrixLimits>
     44453                                        <TileMatrixLimits>
     44454                                                <TileMatrix>8</TileMatrix>
     44455                                                <MinTileRow>93</MinTileRow>
     44456                                                <MaxTileRow>93</MaxTileRow>
     44457                                                <MinTileCol>132</MinTileCol>
     44458                                                <MaxTileCol>132</MaxTileCol>
     44459                                        </TileMatrixLimits>
     44460                                        <TileMatrixLimits>
     44461                                                <TileMatrix>9</TileMatrix>
     44462                                                <MinTileRow>187</MinTileRow>
     44463                                                <MaxTileRow>187</MaxTileRow>
     44464                                                <MinTileCol>264</MinTileCol>
     44465                                                <MaxTileCol>265</MaxTileCol>
     44466                                        </TileMatrixLimits>
     44467                                </TileMatrixSetLimits>
     44468                        </TileMatrixSetLink>
     44469                </Layer>
     44470                <Layer>
     44471                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44472                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44473                        <ows:Keywords>
     44474                                <ows:Keyword>Photographies</ows:Keyword>
     44475                        </ows:Keywords>
     44476                        <ows:WGS84BoundingBox>
     44477                                <ows:LowerCorner>6.48772 43.105</ows:LowerCorner>
     44478                                <ows:UpperCorner>6.73174 43.2835</ows:UpperCorner>
     44479                        </ows:WGS84BoundingBox>
     44480                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38281820</ows:Identifier>
     44481                        <Style isDefault="true">
     44482                                <ows:Title>Données Brutes</ows:Title>
     44483                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44484                                <ows:Keywords>
     44485                                        <ows:Keyword>Défaut</ows:Keyword>
     44486                                </ows:Keywords>
     44487                                <ows:Identifier>normal</ows:Identifier>
     44488                                <LegendURL format="image/jpeg" height="200"
     44489                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44490                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44491                        </Style>
     44492                        <Format>image/jpeg</Format>
     44493                        <TileMatrixSetLink>
     44494                                <TileMatrixSet>PM</TileMatrixSet>
     44495                                <TileMatrixSetLimits>
     44496                                        <TileMatrixLimits>
     44497                                                <TileMatrix>0</TileMatrix>
     44498                                                <MinTileRow>0</MinTileRow>
     44499                                                <MaxTileRow>0</MaxTileRow>
     44500                                                <MinTileCol>0</MinTileCol>
     44501                                                <MaxTileCol>0</MaxTileCol>
     44502                                        </TileMatrixLimits>
     44503                                        <TileMatrixLimits>
     44504                                                <TileMatrix>1</TileMatrix>
     44505                                                <MinTileRow>0</MinTileRow>
     44506                                                <MaxTileRow>0</MaxTileRow>
     44507                                                <MinTileCol>1</MinTileCol>
     44508                                                <MaxTileCol>1</MaxTileCol>
     44509                                        </TileMatrixLimits>
     44510                                        <TileMatrixLimits>
     44511                                                <TileMatrix>10</TileMatrix>
     44512                                                <MinTileRow>375</MinTileRow>
     44513                                                <MaxTileRow>375</MaxTileRow>
     44514                                                <MinTileCol>530</MinTileCol>
     44515                                                <MaxTileCol>531</MaxTileCol>
     44516                                        </TileMatrixLimits>
     44517                                        <TileMatrixLimits>
     44518                                                <TileMatrix>11</TileMatrix>
     44519                                                <MinTileRow>750</MinTileRow>
     44520                                                <MaxTileRow>751</MaxTileRow>
     44521                                                <MinTileCol>1060</MinTileCol>
     44522                                                <MaxTileCol>1062</MaxTileCol>
     44523                                        </TileMatrixLimits>
     44524                                        <TileMatrixLimits>
     44525                                                <TileMatrix>12</TileMatrix>
     44526                                                <MinTileRow>1500</MinTileRow>
     44527                                                <MaxTileRow>1503</MaxTileRow>
     44528                                                <MinTileCol>2121</MinTileCol>
     44529                                                <MaxTileCol>2124</MaxTileCol>
     44530                                        </TileMatrixLimits>
     44531                                        <TileMatrixLimits>
     44532                                                <TileMatrix>13</TileMatrix>
     44533                                                <MinTileRow>3001</MinTileRow>
     44534                                                <MaxTileRow>3006</MaxTileRow>
     44535                                                <MinTileCol>4243</MinTileCol>
     44536                                                <MaxTileCol>4249</MaxTileCol>
     44537                                        </TileMatrixLimits>
     44538                                        <TileMatrixLimits>
     44539                                                <TileMatrix>14</TileMatrix>
     44540                                                <MinTileRow>6002</MinTileRow>
     44541                                                <MaxTileRow>6013</MaxTileRow>
     44542                                                <MinTileCol>8487</MinTileCol>
     44543                                                <MaxTileCol>8498</MaxTileCol>
     44544                                        </TileMatrixLimits>
     44545                                        <TileMatrixLimits>
     44546                                                <TileMatrix>15</TileMatrix>
     44547                                                <MinTileRow>12005</MinTileRow>
     44548                                                <MaxTileRow>12026</MaxTileRow>
     44549                                                <MinTileCol>16974</MinTileCol>
     44550                                                <MaxTileCol>16996</MaxTileCol>
     44551                                        </TileMatrixLimits>
     44552                                        <TileMatrixLimits>
     44553                                                <TileMatrix>16</TileMatrix>
     44554                                                <MinTileRow>24011</MinTileRow>
     44555                                                <MaxTileRow>24053</MaxTileRow>
     44556                                                <MinTileCol>33949</MinTileCol>
     44557                                                <MaxTileCol>33993</MaxTileCol>
     44558                                        </TileMatrixLimits>
     44559                                        <TileMatrixLimits>
     44560                                                <TileMatrix>17</TileMatrix>
     44561                                                <MinTileRow>48023</MinTileRow>
     44562                                                <MaxTileRow>48106</MaxTileRow>
     44563                                                <MinTileCol>67898</MinTileCol>
     44564                                                <MaxTileCol>67987</MaxTileCol>
     44565                                        </TileMatrixLimits>
     44566                                        <TileMatrixLimits>
     44567                                                <TileMatrix>18</TileMatrix>
     44568                                                <MinTileRow>96046</MinTileRow>
     44569                                                <MaxTileRow>96213</MaxTileRow>
     44570                                                <MinTileCol>135796</MinTileCol>
     44571                                                <MaxTileCol>135974</MaxTileCol>
     44572                                        </TileMatrixLimits>
     44573                                        <TileMatrixLimits>
     44574                                                <TileMatrix>2</TileMatrix>
     44575                                                <MinTileRow>1</MinTileRow>
     44576                                                <MaxTileRow>1</MaxTileRow>
     44577                                                <MinTileCol>2</MinTileCol>
     44578                                                <MaxTileCol>2</MaxTileCol>
     44579                                        </TileMatrixLimits>
     44580                                        <TileMatrixLimits>
     44581                                                <TileMatrix>3</TileMatrix>
     44582                                                <MinTileRow>2</MinTileRow>
     44583                                                <MaxTileRow>2</MaxTileRow>
     44584                                                <MinTileCol>4</MinTileCol>
     44585                                                <MaxTileCol>4</MaxTileCol>
     44586                                        </TileMatrixLimits>
     44587                                        <TileMatrixLimits>
     44588                                                <TileMatrix>4</TileMatrix>
     44589                                                <MinTileRow>5</MinTileRow>
     44590                                                <MaxTileRow>5</MaxTileRow>
     44591                                                <MinTileCol>8</MinTileCol>
     44592                                                <MaxTileCol>8</MaxTileCol>
     44593                                        </TileMatrixLimits>
     44594                                        <TileMatrixLimits>
     44595                                                <TileMatrix>5</TileMatrix>
     44596                                                <MinTileRow>11</MinTileRow>
     44597                                                <MaxTileRow>11</MaxTileRow>
     44598                                                <MinTileCol>16</MinTileCol>
     44599                                                <MaxTileCol>16</MaxTileCol>
     44600                                        </TileMatrixLimits>
     44601                                        <TileMatrixLimits>
     44602                                                <TileMatrix>6</TileMatrix>
     44603                                                <MinTileRow>23</MinTileRow>
     44604                                                <MaxTileRow>23</MaxTileRow>
     44605                                                <MinTileCol>33</MinTileCol>
     44606                                                <MaxTileCol>33</MaxTileCol>
     44607                                        </TileMatrixLimits>
     44608                                        <TileMatrixLimits>
     44609                                                <TileMatrix>7</TileMatrix>
     44610                                                <MinTileRow>46</MinTileRow>
     44611                                                <MaxTileRow>46</MaxTileRow>
     44612                                                <MinTileCol>66</MinTileCol>
     44613                                                <MaxTileCol>66</MaxTileCol>
     44614                                        </TileMatrixLimits>
     44615                                        <TileMatrixLimits>
     44616                                                <TileMatrix>8</TileMatrix>
     44617                                                <MinTileRow>93</MinTileRow>
     44618                                                <MaxTileRow>93</MaxTileRow>
     44619                                                <MinTileCol>132</MinTileCol>
     44620                                                <MaxTileCol>132</MaxTileCol>
     44621                                        </TileMatrixLimits>
     44622                                        <TileMatrixLimits>
     44623                                                <TileMatrix>9</TileMatrix>
     44624                                                <MinTileRow>187</MinTileRow>
     44625                                                <MaxTileRow>187</MaxTileRow>
     44626                                                <MinTileCol>265</MinTileCol>
     44627                                                <MaxTileCol>265</MaxTileCol>
     44628                                        </TileMatrixLimits>
     44629                                </TileMatrixSetLimits>
     44630                        </TileMatrixSetLink>
     44631                </Layer>
     44632                <Layer>
     44633                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44634                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44635                        <ows:Keywords>
     44636                                <ows:Keyword>Photographies</ows:Keyword>
     44637                        </ows:Keywords>
     44638                        <ows:WGS84BoundingBox>
     44639                                <ows:LowerCorner>6.06206 42.955</ows:LowerCorner>
     44640                                <ows:UpperCorner>6.37503 43.2963</ows:UpperCorner>
     44641                        </ows:WGS84BoundingBox>
     44642                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-13-38291319</ows:Identifier>
     44643                        <Style isDefault="true">
     44644                                <ows:Title>Données Brutes</ows:Title>
     44645                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44646                                <ows:Keywords>
     44647                                        <ows:Keyword>Défaut</ows:Keyword>
     44648                                </ows:Keywords>
     44649                                <ows:Identifier>normal</ows:Identifier>
     44650                                <LegendURL format="image/jpeg" height="200"
     44651                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44652                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44653                        </Style>
     44654                        <Format>image/jpeg</Format>
     44655                        <TileMatrixSetLink>
     44656                                <TileMatrixSet>PM</TileMatrixSet>
     44657                                <TileMatrixSetLimits>
     44658                                        <TileMatrixLimits>
     44659                                                <TileMatrix>0</TileMatrix>
     44660                                                <MinTileRow>0</MinTileRow>
     44661                                                <MaxTileRow>0</MaxTileRow>
     44662                                                <MinTileCol>0</MinTileCol>
     44663                                                <MaxTileCol>0</MaxTileCol>
     44664                                        </TileMatrixLimits>
     44665                                        <TileMatrixLimits>
     44666                                                <TileMatrix>1</TileMatrix>
     44667                                                <MinTileRow>0</MinTileRow>
     44668                                                <MaxTileRow>0</MaxTileRow>
     44669                                                <MinTileCol>1</MinTileCol>
     44670                                                <MaxTileCol>1</MaxTileCol>
     44671                                        </TileMatrixLimits>
     44672                                        <TileMatrixLimits>
     44673                                                <TileMatrix>10</TileMatrix>
     44674                                                <MinTileRow>375</MinTileRow>
     44675                                                <MaxTileRow>376</MaxTileRow>
     44676                                                <MinTileCol>529</MinTileCol>
     44677                                                <MaxTileCol>530</MaxTileCol>
     44678                                        </TileMatrixLimits>
     44679                                        <TileMatrixLimits>
     44680                                                <TileMatrix>11</TileMatrix>
     44681                                                <MinTileRow>750</MinTileRow>
     44682                                                <MaxTileRow>752</MaxTileRow>
     44683                                                <MinTileCol>1058</MinTileCol>
     44684                                                <MaxTileCol>1060</MaxTileCol>
     44685                                        </TileMatrixLimits>
     44686                                        <TileMatrixLimits>
     44687                                                <TileMatrix>12</TileMatrix>
     44688                                                <MinTileRow>1500</MinTileRow>
     44689                                                <MaxTileRow>1505</MaxTileRow>
     44690                                                <MinTileCol>2117</MinTileCol>
     44691                                                <MaxTileCol>2120</MaxTileCol>
     44692                                        </TileMatrixLimits>
     44693                                        <TileMatrixLimits>
     44694                                                <TileMatrix>13</TileMatrix>
     44695                                                <MinTileRow>3001</MinTileRow>
     44696                                                <MaxTileRow>3011</MaxTileRow>
     44697                                                <MinTileCol>4234</MinTileCol>
     44698                                                <MaxTileCol>4240</MaxTileCol>
     44699                                        </TileMatrixLimits>
     44700                                        <TileMatrixLimits>
     44701                                                <TileMatrix>14</TileMatrix>
     44702                                                <MinTileRow>6002</MinTileRow>
     44703                                                <MaxTileRow>6022</MaxTileRow>
     44704                                                <MinTileCol>8468</MinTileCol>
     44705                                                <MaxTileCol>8481</MaxTileCol>
     44706                                        </TileMatrixLimits>
     44707                                        <TileMatrixLimits>
     44708                                                <TileMatrix>15</TileMatrix>
     44709                                                <MinTileRow>12004</MinTileRow>
     44710                                                <MaxTileRow>12045</MaxTileRow>
     44711                                                <MinTileCol>16936</MinTileCol>
     44712                                                <MaxTileCol>16963</MaxTileCol>
     44713                                        </TileMatrixLimits>
     44714                                        <TileMatrixLimits>
     44715                                                <TileMatrix>16</TileMatrix>
     44716                                                <MinTileRow>24008</MinTileRow>
     44717                                                <MaxTileRow>24091</MaxTileRow>
     44718                                                <MinTileCol>33873</MinTileCol>
     44719                                                <MaxTileCol>33927</MaxTileCol>
     44720                                        </TileMatrixLimits>
     44721                                        <TileMatrixLimits>
     44722                                                <TileMatrix>17</TileMatrix>
     44723                                                <MinTileRow>48016</MinTileRow>
     44724                                                <MaxTileRow>48182</MaxTileRow>
     44725                                                <MinTileCol>67747</MinTileCol>
     44726                                                <MaxTileCol>67854</MaxTileCol>
     44727                                        </TileMatrixLimits>
     44728                                        <TileMatrixLimits>
     44729                                                <TileMatrix>18</TileMatrix>
     44730                                                <MinTileRow>96033</MinTileRow>
     44731                                                <MaxTileRow>96364</MaxTileRow>
     44732                                                <MinTileCol>135494</MinTileCol>
     44733                                                <MaxTileCol>135708</MaxTileCol>
     44734                                        </TileMatrixLimits>
     44735                                        <TileMatrixLimits>
     44736                                                <TileMatrix>2</TileMatrix>
     44737                                                <MinTileRow>1</MinTileRow>
     44738                                                <MaxTileRow>1</MaxTileRow>
     44739                                                <MinTileCol>2</MinTileCol>
     44740                                                <MaxTileCol>2</MaxTileCol>
     44741                                        </TileMatrixLimits>
     44742                                        <TileMatrixLimits>
     44743                                                <TileMatrix>3</TileMatrix>
     44744                                                <MinTileRow>2</MinTileRow>
     44745                                                <MaxTileRow>2</MaxTileRow>
     44746                                                <MinTileCol>4</MinTileCol>
     44747                                                <MaxTileCol>4</MaxTileCol>
     44748                                        </TileMatrixLimits>
     44749                                        <TileMatrixLimits>
     44750                                                <TileMatrix>4</TileMatrix>
     44751                                                <MinTileRow>5</MinTileRow>
     44752                                                <MaxTileRow>5</MaxTileRow>
     44753                                                <MinTileCol>8</MinTileCol>
     44754                                                <MaxTileCol>8</MaxTileCol>
     44755                                        </TileMatrixLimits>
     44756                                        <TileMatrixLimits>
     44757                                                <TileMatrix>5</TileMatrix>
     44758                                                <MinTileRow>11</MinTileRow>
     44759                                                <MaxTileRow>11</MaxTileRow>
     44760                                                <MinTileCol>16</MinTileCol>
     44761                                                <MaxTileCol>16</MaxTileCol>
     44762                                        </TileMatrixLimits>
     44763                                        <TileMatrixLimits>
     44764                                                <TileMatrix>6</TileMatrix>
     44765                                                <MinTileRow>23</MinTileRow>
     44766                                                <MaxTileRow>23</MaxTileRow>
     44767                                                <MinTileCol>33</MinTileCol>
     44768                                                <MaxTileCol>33</MaxTileCol>
     44769                                        </TileMatrixLimits>
     44770                                        <TileMatrixLimits>
     44771                                                <TileMatrix>7</TileMatrix>
     44772                                                <MinTileRow>46</MinTileRow>
     44773                                                <MaxTileRow>47</MaxTileRow>
     44774                                                <MinTileCol>66</MinTileCol>
     44775                                                <MaxTileCol>66</MaxTileCol>
     44776                                        </TileMatrixLimits>
     44777                                        <TileMatrixLimits>
     44778                                                <TileMatrix>8</TileMatrix>
     44779                                                <MinTileRow>93</MinTileRow>
     44780                                                <MaxTileRow>94</MaxTileRow>
     44781                                                <MinTileCol>132</MinTileCol>
     44782                                                <MaxTileCol>132</MaxTileCol>
     44783                                        </TileMatrixLimits>
     44784                                        <TileMatrixLimits>
     44785                                                <TileMatrix>9</TileMatrix>
     44786                                                <MinTileRow>187</MinTileRow>
     44787                                                <MaxTileRow>188</MaxTileRow>
     44788                                                <MinTileCol>264</MinTileCol>
     44789                                                <MaxTileCol>265</MaxTileCol>
     44790                                        </TileMatrixLimits>
     44791                                </TileMatrixSetLimits>
     44792                        </TileMatrixSetLink>
     44793                </Layer>
     44794                <Layer>
     44795                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44796                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44797                        <ows:Keywords>
     44798                                <ows:Keyword>Photographies</ows:Keyword>
     44799                        </ows:Keywords>
     44800                        <ows:WGS84BoundingBox>
     44801                                <ows:LowerCorner>4.77259 43.2574</ows:LowerCorner>
     44802                                <ows:UpperCorner>5.07501 43.4605</ows:UpperCorner>
     44803                        </ows:WGS84BoundingBox>
     44804                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37856075</ows:Identifier>
     44805                        <Style isDefault="true">
     44806                                <ows:Title>Données Brutes</ows:Title>
     44807                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44808                                <ows:Keywords>
     44809                                        <ows:Keyword>Défaut</ows:Keyword>
     44810                                </ows:Keywords>
     44811                                <ows:Identifier>normal</ows:Identifier>
     44812                                <LegendURL format="image/jpeg" height="200"
     44813                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44814                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44815                        </Style>
     44816                        <Format>image/jpeg</Format>
     44817                        <TileMatrixSetLink>
     44818                                <TileMatrixSet>PM</TileMatrixSet>
     44819                                <TileMatrixSetLimits>
     44820                                        <TileMatrixLimits>
     44821                                                <TileMatrix>0</TileMatrix>
     44822                                                <MinTileRow>0</MinTileRow>
     44823                                                <MaxTileRow>0</MaxTileRow>
     44824                                                <MinTileCol>0</MinTileCol>
     44825                                                <MaxTileCol>0</MaxTileCol>
     44826                                        </TileMatrixLimits>
     44827                                        <TileMatrixLimits>
     44828                                                <TileMatrix>1</TileMatrix>
     44829                                                <MinTileRow>0</MinTileRow>
     44830                                                <MaxTileRow>0</MaxTileRow>
     44831                                                <MinTileCol>1</MinTileCol>
     44832                                                <MaxTileCol>1</MaxTileCol>
     44833                                        </TileMatrixLimits>
     44834                                        <TileMatrixLimits>
     44835                                                <TileMatrix>10</TileMatrix>
     44836                                                <MinTileRow>374</MinTileRow>
     44837                                                <MaxTileRow>375</MaxTileRow>
     44838                                                <MinTileCol>525</MinTileCol>
     44839                                                <MaxTileCol>526</MaxTileCol>
     44840                                        </TileMatrixLimits>
     44841                                        <TileMatrixLimits>
     44842                                                <TileMatrix>11</TileMatrix>
     44843                                                <MinTileRow>748</MinTileRow>
     44844                                                <MaxTileRow>750</MaxTileRow>
     44845                                                <MinTileCol>1051</MinTileCol>
     44846                                                <MaxTileCol>1052</MaxTileCol>
     44847                                        </TileMatrixLimits>
     44848                                        <TileMatrixLimits>
     44849                                                <TileMatrix>12</TileMatrix>
     44850                                                <MinTileRow>1497</MinTileRow>
     44851                                                <MaxTileRow>1501</MaxTileRow>
     44852                                                <MinTileCol>2102</MinTileCol>
     44853                                                <MaxTileCol>2105</MaxTileCol>
     44854                                        </TileMatrixLimits>
     44855                                        <TileMatrixLimits>
     44856                                                <TileMatrix>13</TileMatrix>
     44857                                                <MinTileRow>2995</MinTileRow>
     44858                                                <MaxTileRow>3002</MaxTileRow>
     44859                                                <MinTileCol>4204</MinTileCol>
     44860                                                <MaxTileCol>4211</MaxTileCol>
     44861                                        </TileMatrixLimits>
     44862                                        <TileMatrixLimits>
     44863                                                <TileMatrix>14</TileMatrix>
     44864                                                <MinTileRow>5991</MinTileRow>
     44865                                                <MaxTileRow>6004</MaxTileRow>
     44866                                                <MinTileCol>8409</MinTileCol>
     44867                                                <MaxTileCol>8422</MaxTileCol>
     44868                                        </TileMatrixLimits>
     44869                                        <TileMatrixLimits>
     44870                                                <TileMatrix>15</TileMatrix>
     44871                                                <MinTileRow>11983</MinTileRow>
     44872                                                <MaxTileRow>12008</MaxTileRow>
     44873                                                <MinTileCol>16818</MinTileCol>
     44874                                                <MaxTileCol>16845</MaxTileCol>
     44875                                        </TileMatrixLimits>
     44876                                        <TileMatrixLimits>
     44877                                                <TileMatrix>16</TileMatrix>
     44878                                                <MinTileRow>23966</MinTileRow>
     44879                                                <MaxTileRow>24016</MaxTileRow>
     44880                                                <MinTileCol>33637</MinTileCol>
     44881                                                <MaxTileCol>33691</MaxTileCol>
     44882                                        </TileMatrixLimits>
     44883                                        <TileMatrixLimits>
     44884                                                <TileMatrix>17</TileMatrix>
     44885                                                <MinTileRow>47932</MinTileRow>
     44886                                                <MaxTileRow>48033</MaxTileRow>
     44887                                                <MinTileCol>67274</MinTileCol>
     44888                                                <MaxTileCol>67383</MaxTileCol>
     44889                                        </TileMatrixLimits>
     44890                                        <TileMatrixLimits>
     44891                                                <TileMatrix>18</TileMatrix>
     44892                                                <MinTileRow>95864</MinTileRow>
     44893                                                <MaxTileRow>96067</MaxTileRow>
     44894                                                <MinTileCol>134548</MinTileCol>
     44895                                                <MaxTileCol>134767</MaxTileCol>
     44896                                        </TileMatrixLimits>
     44897                                        <TileMatrixLimits>
     44898                                                <TileMatrix>2</TileMatrix>
     44899                                                <MinTileRow>1</MinTileRow>
     44900                                                <MaxTileRow>1</MaxTileRow>
     44901                                                <MinTileCol>2</MinTileCol>
     44902                                                <MaxTileCol>2</MaxTileCol>
     44903                                        </TileMatrixLimits>
     44904                                        <TileMatrixLimits>
     44905                                                <TileMatrix>3</TileMatrix>
     44906                                                <MinTileRow>2</MinTileRow>
     44907                                                <MaxTileRow>2</MaxTileRow>
     44908                                                <MinTileCol>4</MinTileCol>
     44909                                                <MaxTileCol>4</MaxTileCol>
     44910                                        </TileMatrixLimits>
     44911                                        <TileMatrixLimits>
     44912                                                <TileMatrix>4</TileMatrix>
     44913                                                <MinTileRow>5</MinTileRow>
     44914                                                <MaxTileRow>5</MaxTileRow>
     44915                                                <MinTileCol>8</MinTileCol>
     44916                                                <MaxTileCol>8</MaxTileCol>
     44917                                        </TileMatrixLimits>
     44918                                        <TileMatrixLimits>
     44919                                                <TileMatrix>5</TileMatrix>
     44920                                                <MinTileRow>11</MinTileRow>
     44921                                                <MaxTileRow>11</MaxTileRow>
     44922                                                <MinTileCol>16</MinTileCol>
     44923                                                <MaxTileCol>16</MaxTileCol>
     44924                                        </TileMatrixLimits>
     44925                                        <TileMatrixLimits>
     44926                                                <TileMatrix>6</TileMatrix>
     44927                                                <MinTileRow>23</MinTileRow>
     44928                                                <MaxTileRow>23</MaxTileRow>
     44929                                                <MinTileCol>32</MinTileCol>
     44930                                                <MaxTileCol>32</MaxTileCol>
     44931                                        </TileMatrixLimits>
     44932                                        <TileMatrixLimits>
     44933                                                <TileMatrix>7</TileMatrix>
     44934                                                <MinTileRow>46</MinTileRow>
     44935                                                <MaxTileRow>46</MaxTileRow>
     44936                                                <MinTileCol>65</MinTileCol>
     44937                                                <MaxTileCol>65</MaxTileCol>
     44938                                        </TileMatrixLimits>
     44939                                        <TileMatrixLimits>
     44940                                                <TileMatrix>8</TileMatrix>
     44941                                                <MinTileRow>93</MinTileRow>
     44942                                                <MaxTileRow>93</MaxTileRow>
     44943                                                <MinTileCol>131</MinTileCol>
     44944                                                <MaxTileCol>131</MaxTileCol>
     44945                                        </TileMatrixLimits>
     44946                                        <TileMatrixLimits>
     44947                                                <TileMatrix>9</TileMatrix>
     44948                                                <MinTileRow>187</MinTileRow>
     44949                                                <MaxTileRow>187</MaxTileRow>
     44950                                                <MinTileCol>262</MinTileCol>
     44951                                                <MaxTileCol>263</MaxTileCol>
     44952                                        </TileMatrixLimits>
     44953                                </TileMatrixSetLimits>
     44954                        </TileMatrixSetLink>
     44955                </Layer>
     44956                <Layer>
     44957                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     44958                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     44959                        <ows:Keywords>
     44960                                <ows:Keyword>Photographies</ows:Keyword>
     44961                        </ows:Keywords>
     44962                        <ows:WGS84BoundingBox>
     44963                                <ows:LowerCorner>5.85536 42.9886</ows:LowerCorner>
     44964                                <ows:UpperCorner>6.14718 43.1852</ows:UpperCorner>
     44965                        </ows:WGS84BoundingBox>
     44966                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37890449</ows:Identifier>
     44967                        <Style isDefault="true">
     44968                                <ows:Title>Données Brutes</ows:Title>
     44969                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     44970                                <ows:Keywords>
     44971                                        <ows:Keyword>Défaut</ows:Keyword>
     44972                                </ows:Keywords>
     44973                                <ows:Identifier>normal</ows:Identifier>
     44974                                <LegendURL format="image/jpeg" height="200"
     44975                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     44976                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     44977                        </Style>
     44978                        <Format>image/jpeg</Format>
     44979                        <TileMatrixSetLink>
     44980                                <TileMatrixSet>PM</TileMatrixSet>
     44981                                <TileMatrixSetLimits>
     44982                                        <TileMatrixLimits>
     44983                                                <TileMatrix>0</TileMatrix>
     44984                                                <MinTileRow>0</MinTileRow>
     44985                                                <MaxTileRow>0</MaxTileRow>
     44986                                                <MinTileCol>0</MinTileCol>
     44987                                                <MaxTileCol>0</MaxTileCol>
     44988                                        </TileMatrixLimits>
     44989                                        <TileMatrixLimits>
     44990                                                <TileMatrix>1</TileMatrix>
     44991                                                <MinTileRow>0</MinTileRow>
     44992                                                <MaxTileRow>0</MaxTileRow>
     44993                                                <MinTileCol>1</MinTileCol>
     44994                                                <MaxTileCol>1</MaxTileCol>
     44995                                        </TileMatrixLimits>
     44996                                        <TileMatrixLimits>
     44997                                                <TileMatrix>10</TileMatrix>
     44998                                                <MinTileRow>375</MinTileRow>
     44999                                                <MaxTileRow>376</MaxTileRow>
     45000                                                <MinTileCol>528</MinTileCol>
     45001                                                <MaxTileCol>529</MaxTileCol>
     45002                                        </TileMatrixLimits>
     45003                                        <TileMatrixLimits>
     45004                                                <TileMatrix>11</TileMatrix>
     45005                                                <MinTileRow>751</MinTileRow>
     45006                                                <MaxTileRow>752</MaxTileRow>
     45007                                                <MinTileCol>1057</MinTileCol>
     45008                                                <MaxTileCol>1058</MaxTileCol>
     45009                                        </TileMatrixLimits>
     45010                                        <TileMatrixLimits>
     45011                                                <TileMatrix>12</TileMatrix>
     45012                                                <MinTileRow>1502</MinTileRow>
     45013                                                <MaxTileRow>1505</MaxTileRow>
     45014                                                <MinTileCol>2114</MinTileCol>
     45015                                                <MaxTileCol>2117</MaxTileCol>
     45016                                        </TileMatrixLimits>
     45017                                        <TileMatrixLimits>
     45018                                                <TileMatrix>13</TileMatrix>
     45019                                                <MinTileRow>3004</MinTileRow>
     45020                                                <MaxTileRow>3010</MaxTileRow>
     45021                                                <MinTileCol>4229</MinTileCol>
     45022                                                <MaxTileCol>4235</MaxTileCol>
     45023                                        </TileMatrixLimits>
     45024                                        <TileMatrixLimits>
     45025                                                <TileMatrix>14</TileMatrix>
     45026                                                <MinTileRow>6008</MinTileRow>
     45027                                                <MaxTileRow>6020</MaxTileRow>
     45028                                                <MinTileCol>8458</MinTileCol>
     45029                                                <MaxTileCol>8471</MaxTileCol>
     45030                                        </TileMatrixLimits>
     45031                                        <TileMatrixLimits>
     45032                                                <TileMatrix>15</TileMatrix>
     45033                                                <MinTileRow>12017</MinTileRow>
     45034                                                <MaxTileRow>12041</MaxTileRow>
     45035                                                <MinTileCol>16917</MinTileCol>
     45036                                                <MaxTileCol>16943</MaxTileCol>
     45037                                        </TileMatrixLimits>
     45038                                        <TileMatrixLimits>
     45039                                                <TileMatrix>16</TileMatrix>
     45040                                                <MinTileRow>24034</MinTileRow>
     45041                                                <MaxTileRow>24083</MaxTileRow>
     45042                                                <MinTileCol>33834</MinTileCol>
     45043                                                <MaxTileCol>33887</MaxTileCol>
     45044                                        </TileMatrixLimits>
     45045                                        <TileMatrixLimits>
     45046                                                <TileMatrix>17</TileMatrix>
     45047                                                <MinTileRow>48069</MinTileRow>
     45048                                                <MaxTileRow>48167</MaxTileRow>
     45049                                                <MinTileCol>67668</MinTileCol>
     45050                                                <MaxTileCol>67774</MaxTileCol>
     45051                                        </TileMatrixLimits>
     45052                                        <TileMatrixLimits>
     45053                                                <TileMatrix>18</TileMatrix>
     45054                                                <MinTileRow>96139</MinTileRow>
     45055                                                <MaxTileRow>96335</MaxTileRow>
     45056                                                <MinTileCol>135336</MinTileCol>
     45057                                                <MaxTileCol>135548</MaxTileCol>
     45058                                        </TileMatrixLimits>
     45059                                        <TileMatrixLimits>
     45060                                                <TileMatrix>2</TileMatrix>
     45061                                                <MinTileRow>1</MinTileRow>
     45062                                                <MaxTileRow>1</MaxTileRow>
     45063                                                <MinTileCol>2</MinTileCol>
     45064                                                <MaxTileCol>2</MaxTileCol>
     45065                                        </TileMatrixLimits>
     45066                                        <TileMatrixLimits>
     45067                                                <TileMatrix>3</TileMatrix>
     45068                                                <MinTileRow>2</MinTileRow>
     45069                                                <MaxTileRow>2</MaxTileRow>
     45070                                                <MinTileCol>4</MinTileCol>
     45071                                                <MaxTileCol>4</MaxTileCol>
     45072                                        </TileMatrixLimits>
     45073                                        <TileMatrixLimits>
     45074                                                <TileMatrix>4</TileMatrix>
     45075                                                <MinTileRow>5</MinTileRow>
     45076                                                <MaxTileRow>5</MaxTileRow>
     45077                                                <MinTileCol>8</MinTileCol>
     45078                                                <MaxTileCol>8</MaxTileCol>
     45079                                        </TileMatrixLimits>
     45080                                        <TileMatrixLimits>
     45081                                                <TileMatrix>5</TileMatrix>
     45082                                                <MinTileRow>11</MinTileRow>
     45083                                                <MaxTileRow>11</MaxTileRow>
     45084                                                <MinTileCol>16</MinTileCol>
     45085                                                <MaxTileCol>16</MaxTileCol>
     45086                                        </TileMatrixLimits>
     45087                                        <TileMatrixLimits>
     45088                                                <TileMatrix>6</TileMatrix>
     45089                                                <MinTileRow>23</MinTileRow>
     45090                                                <MaxTileRow>23</MaxTileRow>
     45091                                                <MinTileCol>33</MinTileCol>
     45092                                                <MaxTileCol>33</MaxTileCol>
     45093                                        </TileMatrixLimits>
     45094                                        <TileMatrixLimits>
     45095                                                <TileMatrix>7</TileMatrix>
     45096                                                <MinTileRow>46</MinTileRow>
     45097                                                <MaxTileRow>47</MaxTileRow>
     45098                                                <MinTileCol>66</MinTileCol>
     45099                                                <MaxTileCol>66</MaxTileCol>
     45100                                        </TileMatrixLimits>
     45101                                        <TileMatrixLimits>
     45102                                                <TileMatrix>8</TileMatrix>
     45103                                                <MinTileRow>93</MinTileRow>
     45104                                                <MaxTileRow>94</MaxTileRow>
     45105                                                <MinTileCol>132</MinTileCol>
     45106                                                <MaxTileCol>132</MaxTileCol>
     45107                                        </TileMatrixLimits>
     45108                                        <TileMatrixLimits>
     45109                                                <TileMatrix>9</TileMatrix>
     45110                                                <MinTileRow>187</MinTileRow>
     45111                                                <MaxTileRow>188</MaxTileRow>
     45112                                                <MinTileCol>264</MinTileCol>
     45113                                                <MaxTileCol>264</MaxTileCol>
     45114                                        </TileMatrixLimits>
     45115                                </TileMatrixSetLimits>
     45116                        </TileMatrixSetLink>
     45117                </Layer>
     45118                <Layer>
     45119                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     45120                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     45121                        <ows:Keywords>
     45122                                <ows:Keyword>Photographies</ows:Keyword>
     45123                        </ows:Keywords>
     45124                        <ows:WGS84BoundingBox>
     45125                                <ows:LowerCorner>6.28279 42.9581</ows:LowerCorner>
     45126                                <ows:UpperCorner>6.54299 43.0201</ows:UpperCorner>
     45127                        </ows:WGS84BoundingBox>
     45128                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-05-14-37898824</ows:Identifier>
     45129                        <Style isDefault="true">
     45130                                <ows:Title>Données Brutes</ows:Title>
     45131                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45132                                <ows:Keywords>
     45133                                        <ows:Keyword>Défaut</ows:Keyword>
     45134                                </ows:Keywords>
     45135                                <ows:Identifier>normal</ows:Identifier>
     45136                                <LegendURL format="image/jpeg" height="200"
     45137                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45138                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45139                        </Style>
     45140                        <Format>image/jpeg</Format>
     45141                        <TileMatrixSetLink>
     45142                                <TileMatrixSet>PM</TileMatrixSet>
     45143                                <TileMatrixSetLimits>
     45144                                        <TileMatrixLimits>
     45145                                                <TileMatrix>0</TileMatrix>
     45146                                                <MinTileRow>0</MinTileRow>
     45147                                                <MaxTileRow>0</MaxTileRow>
     45148                                                <MinTileCol>0</MinTileCol>
     45149                                                <MaxTileCol>0</MaxTileCol>
     45150                                        </TileMatrixLimits>
     45151                                        <TileMatrixLimits>
     45152                                                <TileMatrix>1</TileMatrix>
     45153                                                <MinTileRow>0</MinTileRow>
     45154                                                <MaxTileRow>0</MaxTileRow>
     45155                                                <MinTileCol>1</MinTileCol>
     45156                                                <MaxTileCol>1</MaxTileCol>
     45157                                        </TileMatrixLimits>
     45158                                        <TileMatrixLimits>
     45159                                                <TileMatrix>10</TileMatrix>
     45160                                                <MinTileRow>376</MinTileRow>
     45161                                                <MaxTileRow>376</MaxTileRow>
     45162                                                <MinTileCol>529</MinTileCol>
     45163                                                <MaxTileCol>530</MaxTileCol>
     45164                                        </TileMatrixLimits>
     45165                                        <TileMatrixLimits>
     45166                                                <TileMatrix>11</TileMatrix>
     45167                                                <MinTileRow>752</MinTileRow>
     45168                                                <MaxTileRow>752</MaxTileRow>
     45169                                                <MinTileCol>1059</MinTileCol>
     45170                                                <MaxTileCol>1061</MaxTileCol>
     45171                                        </TileMatrixLimits>
     45172                                        <TileMatrixLimits>
     45173                                                <TileMatrix>12</TileMatrix>
     45174                                                <MinTileRow>1504</MinTileRow>
     45175                                                <MaxTileRow>1505</MaxTileRow>
     45176                                                <MinTileCol>2119</MinTileCol>
     45177                                                <MaxTileCol>2122</MaxTileCol>
     45178                                        </TileMatrixLimits>
     45179                                        <TileMatrixLimits>
     45180                                                <TileMatrix>13</TileMatrix>
     45181                                                <MinTileRow>3009</MinTileRow>
     45182                                                <MaxTileRow>3011</MaxTileRow>
     45183                                                <MinTileCol>4238</MinTileCol>
     45184                                                <MaxTileCol>4244</MaxTileCol>
     45185                                        </TileMatrixLimits>
     45186                                        <TileMatrixLimits>
     45187                                                <TileMatrix>14</TileMatrix>
     45188                                                <MinTileRow>6019</MinTileRow>
     45189                                                <MaxTileRow>6022</MaxTileRow>
     45190                                                <MinTileCol>8477</MinTileCol>
     45191                                                <MaxTileCol>8489</MaxTileCol>
     45192                                        </TileMatrixLimits>
     45193                                        <TileMatrixLimits>
     45194                                                <TileMatrix>15</TileMatrix>
     45195                                                <MinTileRow>12038</MinTileRow>
     45196                                                <MaxTileRow>12045</MaxTileRow>
     45197                                                <MinTileCol>16955</MinTileCol>
     45198                                                <MaxTileCol>16979</MaxTileCol>
     45199                                        </TileMatrixLimits>
     45200                                        <TileMatrixLimits>
     45201                                                <TileMatrix>16</TileMatrix>
     45202                                                <MinTileRow>24076</MinTileRow>
     45203                                                <MaxTileRow>24090</MaxTileRow>
     45204                                                <MinTileCol>33911</MinTileCol>
     45205                                                <MaxTileCol>33958</MaxTileCol>
     45206                                        </TileMatrixLimits>
     45207                                        <TileMatrixLimits>
     45208                                                <TileMatrix>17</TileMatrix>
     45209                                                <MinTileRow>48152</MinTileRow>
     45210                                                <MaxTileRow>48181</MaxTileRow>
     45211                                                <MinTileCol>67823</MinTileCol>
     45212                                                <MaxTileCol>67917</MaxTileCol>
     45213                                        </TileMatrixLimits>
     45214                                        <TileMatrixLimits>
     45215                                                <TileMatrix>18</TileMatrix>
     45216                                                <MinTileRow>96304</MinTileRow>
     45217                                                <MaxTileRow>96363</MaxTileRow>
     45218                                                <MinTileCol>135646</MinTileCol>
     45219                                                <MaxTileCol>135835</MaxTileCol>
     45220                                        </TileMatrixLimits>
     45221                                        <TileMatrixLimits>
     45222                                                <TileMatrix>2</TileMatrix>
     45223                                                <MinTileRow>1</MinTileRow>
     45224                                                <MaxTileRow>1</MaxTileRow>
     45225                                                <MinTileCol>2</MinTileCol>
     45226                                                <MaxTileCol>2</MaxTileCol>
     45227                                        </TileMatrixLimits>
     45228                                        <TileMatrixLimits>
     45229                                                <TileMatrix>3</TileMatrix>
     45230                                                <MinTileRow>2</MinTileRow>
     45231                                                <MaxTileRow>2</MaxTileRow>
     45232                                                <MinTileCol>4</MinTileCol>
     45233                                                <MaxTileCol>4</MaxTileCol>
     45234                                        </TileMatrixLimits>
     45235                                        <TileMatrixLimits>
     45236                                                <TileMatrix>4</TileMatrix>
     45237                                                <MinTileRow>5</MinTileRow>
     45238                                                <MaxTileRow>5</MaxTileRow>
     45239                                                <MinTileCol>8</MinTileCol>
     45240                                                <MaxTileCol>8</MaxTileCol>
     45241                                        </TileMatrixLimits>
     45242                                        <TileMatrixLimits>
     45243                                                <TileMatrix>5</TileMatrix>
     45244                                                <MinTileRow>11</MinTileRow>
     45245                                                <MaxTileRow>11</MaxTileRow>
     45246                                                <MinTileCol>16</MinTileCol>
     45247                                                <MaxTileCol>16</MaxTileCol>
     45248                                        </TileMatrixLimits>
     45249                                        <TileMatrixLimits>
     45250                                                <TileMatrix>6</TileMatrix>
     45251                                                <MinTileRow>23</MinTileRow>
     45252                                                <MaxTileRow>23</MaxTileRow>
     45253                                                <MinTileCol>33</MinTileCol>
     45254                                                <MaxTileCol>33</MaxTileCol>
     45255                                        </TileMatrixLimits>
     45256                                        <TileMatrixLimits>
     45257                                                <TileMatrix>7</TileMatrix>
     45258                                                <MinTileRow>47</MinTileRow>
     45259                                                <MaxTileRow>47</MaxTileRow>
     45260                                                <MinTileCol>66</MinTileCol>
     45261                                                <MaxTileCol>66</MaxTileCol>
     45262                                        </TileMatrixLimits>
     45263                                        <TileMatrixLimits>
     45264                                                <TileMatrix>8</TileMatrix>
     45265                                                <MinTileRow>94</MinTileRow>
     45266                                                <MaxTileRow>94</MaxTileRow>
     45267                                                <MinTileCol>132</MinTileCol>
     45268                                                <MaxTileCol>132</MaxTileCol>
     45269                                        </TileMatrixLimits>
     45270                                        <TileMatrixLimits>
     45271                                                <TileMatrix>9</TileMatrix>
     45272                                                <MinTileRow>188</MinTileRow>
     45273                                                <MaxTileRow>188</MaxTileRow>
     45274                                                <MinTileCol>264</MinTileCol>
     45275                                                <MaxTileCol>265</MaxTileCol>
     45276                                        </TileMatrixLimits>
     45277                                </TileMatrixSetLimits>
     45278                        </TileMatrixSetLink>
     45279                </Layer>
     45280                <Layer>
     45281                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     45282                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     45283                        <ows:Keywords>
     45284                                <ows:Keyword>Photographies</ows:Keyword>
     45285                        </ows:Keywords>
     45286                        <ows:WGS84BoundingBox>
     45287                                <ows:LowerCorner>6.50762 43.2308</ows:LowerCorner>
     45288                                <ows:UpperCorner>6.74692 43.5168</ows:UpperCorner>
     45289                        </ows:WGS84BoundingBox>
     45290                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-07-23-38490559</ows:Identifier>
     45291                        <Style isDefault="true">
     45292                                <ows:Title>Données Brutes</ows:Title>
     45293                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45294                                <ows:Keywords>
     45295                                        <ows:Keyword>Défaut</ows:Keyword>
     45296                                </ows:Keywords>
     45297                                <ows:Identifier>normal</ows:Identifier>
     45298                                <LegendURL format="image/jpeg" height="200"
     45299                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45300                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45301                        </Style>
     45302                        <Format>image/jpeg</Format>
     45303                        <TileMatrixSetLink>
     45304                                <TileMatrixSet>PM</TileMatrixSet>
     45305                                <TileMatrixSetLimits>
     45306                                        <TileMatrixLimits>
     45307                                                <TileMatrix>0</TileMatrix>
     45308                                                <MinTileRow>0</MinTileRow>
     45309                                                <MaxTileRow>0</MaxTileRow>
     45310                                                <MinTileCol>0</MinTileCol>
     45311                                                <MaxTileCol>0</MaxTileCol>
     45312                                        </TileMatrixLimits>
     45313                                        <TileMatrixLimits>
     45314                                                <TileMatrix>1</TileMatrix>
     45315                                                <MinTileRow>0</MinTileRow>
     45316                                                <MaxTileRow>0</MaxTileRow>
     45317                                                <MinTileCol>1</MinTileCol>
     45318                                                <MaxTileCol>1</MaxTileCol>
     45319                                        </TileMatrixLimits>
     45320                                        <TileMatrixLimits>
     45321                                                <TileMatrix>10</TileMatrix>
     45322                                                <MinTileRow>374</MinTileRow>
     45323                                                <MaxTileRow>375</MaxTileRow>
     45324                                                <MinTileCol>530</MinTileCol>
     45325                                                <MaxTileCol>531</MaxTileCol>
     45326                                        </TileMatrixLimits>
     45327                                        <TileMatrixLimits>
     45328                                                <TileMatrix>11</TileMatrix>
     45329                                                <MinTileRow>748</MinTileRow>
     45330                                                <MaxTileRow>750</MaxTileRow>
     45331                                                <MinTileCol>1061</MinTileCol>
     45332                                                <MaxTileCol>1062</MaxTileCol>
     45333                                        </TileMatrixLimits>
     45334                                        <TileMatrixLimits>
     45335                                                <TileMatrix>12</TileMatrix>
     45336                                                <MinTileRow>1497</MinTileRow>
     45337                                                <MaxTileRow>1501</MaxTileRow>
     45338                                                <MinTileCol>2122</MinTileCol>
     45339                                                <MaxTileCol>2124</MaxTileCol>
     45340                                        </TileMatrixLimits>
     45341                                        <TileMatrixLimits>
     45342                                                <TileMatrix>13</TileMatrix>
     45343                                                <MinTileRow>2994</MinTileRow>
     45344                                                <MaxTileRow>3002</MaxTileRow>
     45345                                                <MinTileCol>4244</MinTileCol>
     45346                                                <MaxTileCol>4249</MaxTileCol>
     45347                                        </TileMatrixLimits>
     45348                                        <TileMatrixLimits>
     45349                                                <TileMatrix>14</TileMatrix>
     45350                                                <MinTileRow>5988</MinTileRow>
     45351                                                <MaxTileRow>6005</MaxTileRow>
     45352                                                <MinTileCol>8488</MinTileCol>
     45353                                                <MaxTileCol>8498</MaxTileCol>
     45354                                        </TileMatrixLimits>
     45355                                        <TileMatrixLimits>
     45356                                                <TileMatrix>15</TileMatrix>
     45357                                                <MinTileRow>11976</MinTileRow>
     45358                                                <MaxTileRow>12011</MaxTileRow>
     45359                                                <MinTileCol>16976</MinTileCol>
     45360                                                <MaxTileCol>16997</MaxTileCol>
     45361                                        </TileMatrixLimits>
     45362                                        <TileMatrixLimits>
     45363                                                <TileMatrix>16</TileMatrix>
     45364                                                <MinTileRow>23953</MinTileRow>
     45365                                                <MaxTileRow>24023</MaxTileRow>
     45366                                                <MinTileCol>33953</MinTileCol>
     45367                                                <MaxTileCol>33995</MaxTileCol>
     45368                                        </TileMatrixLimits>
     45369                                        <TileMatrixLimits>
     45370                                                <TileMatrix>17</TileMatrix>
     45371                                                <MinTileRow>47906</MinTileRow>
     45372                                                <MaxTileRow>48046</MaxTileRow>
     45373                                                <MinTileCol>67906</MinTileCol>
     45374                                                <MaxTileCol>67990</MaxTileCol>
     45375                                        </TileMatrixLimits>
     45376                                        <TileMatrixLimits>
     45377                                                <TileMatrix>18</TileMatrix>
     45378                                                <MinTileRow>95813</MinTileRow>
     45379                                                <MaxTileRow>96093</MaxTileRow>
     45380                                                <MinTileCol>135813</MinTileCol>
     45381                                                <MaxTileCol>135980</MaxTileCol>
     45382                                        </TileMatrixLimits>
     45383                                        <TileMatrixLimits>
     45384                                                <TileMatrix>2</TileMatrix>
     45385                                                <MinTileRow>1</MinTileRow>
     45386                                                <MaxTileRow>1</MaxTileRow>
     45387                                                <MinTileCol>2</MinTileCol>
     45388                                                <MaxTileCol>2</MaxTileCol>
     45389                                        </TileMatrixLimits>
     45390                                        <TileMatrixLimits>
     45391                                                <TileMatrix>3</TileMatrix>
     45392                                                <MinTileRow>2</MinTileRow>
     45393                                                <MaxTileRow>2</MaxTileRow>
     45394                                                <MinTileCol>4</MinTileCol>
     45395                                                <MaxTileCol>4</MaxTileCol>
     45396                                        </TileMatrixLimits>
     45397                                        <TileMatrixLimits>
     45398                                                <TileMatrix>4</TileMatrix>
     45399                                                <MinTileRow>5</MinTileRow>
     45400                                                <MaxTileRow>5</MaxTileRow>
     45401                                                <MinTileCol>8</MinTileCol>
     45402                                                <MaxTileCol>8</MaxTileCol>
     45403                                        </TileMatrixLimits>
     45404                                        <TileMatrixLimits>
     45405                                                <TileMatrix>5</TileMatrix>
     45406                                                <MinTileRow>11</MinTileRow>
     45407                                                <MaxTileRow>11</MaxTileRow>
     45408                                                <MinTileCol>16</MinTileCol>
     45409                                                <MaxTileCol>16</MaxTileCol>
     45410                                        </TileMatrixLimits>
     45411                                        <TileMatrixLimits>
     45412                                                <TileMatrix>6</TileMatrix>
     45413                                                <MinTileRow>23</MinTileRow>
     45414                                                <MaxTileRow>23</MaxTileRow>
     45415                                                <MinTileCol>33</MinTileCol>
     45416                                                <MaxTileCol>33</MaxTileCol>
     45417                                        </TileMatrixLimits>
     45418                                        <TileMatrixLimits>
     45419                                                <TileMatrix>7</TileMatrix>
     45420                                                <MinTileRow>46</MinTileRow>
     45421                                                <MaxTileRow>46</MaxTileRow>
     45422                                                <MinTileCol>66</MinTileCol>
     45423                                                <MaxTileCol>66</MaxTileCol>
     45424                                        </TileMatrixLimits>
     45425                                        <TileMatrixLimits>
     45426                                                <TileMatrix>8</TileMatrix>
     45427                                                <MinTileRow>93</MinTileRow>
     45428                                                <MaxTileRow>93</MaxTileRow>
     45429                                                <MinTileCol>132</MinTileCol>
     45430                                                <MaxTileCol>132</MaxTileCol>
     45431                                        </TileMatrixLimits>
     45432                                        <TileMatrixLimits>
     45433                                                <TileMatrix>9</TileMatrix>
     45434                                                <MinTileRow>187</MinTileRow>
     45435                                                <MaxTileRow>187</MaxTileRow>
     45436                                                <MinTileCol>265</MinTileCol>
     45437                                                <MaxTileCol>265</MaxTileCol>
     45438                                        </TileMatrixLimits>
     45439                                </TileMatrixSetLimits>
     45440                        </TileMatrixSetLink>
     45441                </Layer>
     45442                <Layer>
     45443                        <ows:Title>Orthophotographies Geosud de PACA-Littoral</ows:Title>
     45444                        <ows:Abstract>Orthophotographies satellites de PACA-Littoral issues du projet Geosud.</ows:Abstract>
     45445                        <ows:Keywords>
     45446                                <ows:Keyword>Photographies</ows:Keyword>
     45447                        </ows:Keywords>
     45448                        <ows:WGS84BoundingBox>
     45449                                <ows:LowerCorner>6.89143 43.443</ows:LowerCorner>
     45450                                <ows:UpperCorner>7.10414 43.6659</ows:UpperCorner>
     45451                        </ows:WGS84BoundingBox>
     45452                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PACA-Littoral-2013-12-01-38097894</ows:Identifier>
     45453                        <Style isDefault="true">
     45454                                <ows:Title>Données Brutes</ows:Title>
     45455                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45456                                <ows:Keywords>
     45457                                        <ows:Keyword>Défaut</ows:Keyword>
     45458                                </ows:Keywords>
     45459                                <ows:Identifier>normal</ows:Identifier>
     45460                                <LegendURL format="image/jpeg" height="200"
     45461                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45462                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45463                        </Style>
     45464                        <Format>image/jpeg</Format>
     45465                        <TileMatrixSetLink>
     45466                                <TileMatrixSet>PM</TileMatrixSet>
     45467                                <TileMatrixSetLimits>
     45468                                        <TileMatrixLimits>
     45469                                                <TileMatrix>0</TileMatrix>
     45470                                                <MinTileRow>0</MinTileRow>
     45471                                                <MaxTileRow>0</MaxTileRow>
     45472                                                <MinTileCol>0</MinTileCol>
     45473                                                <MaxTileCol>0</MaxTileCol>
     45474                                        </TileMatrixLimits>
     45475                                        <TileMatrixLimits>
     45476                                                <TileMatrix>1</TileMatrix>
     45477                                                <MinTileRow>0</MinTileRow>
     45478                                                <MaxTileRow>0</MaxTileRow>
     45479                                                <MinTileCol>1</MinTileCol>
     45480                                                <MaxTileCol>1</MaxTileCol>
     45481                                        </TileMatrixLimits>
     45482                                        <TileMatrixLimits>
     45483                                                <TileMatrix>10</TileMatrix>
     45484                                                <MinTileRow>373</MinTileRow>
     45485                                                <MaxTileRow>374</MaxTileRow>
     45486                                                <MinTileCol>531</MinTileCol>
     45487                                                <MaxTileCol>532</MaxTileCol>
     45488                                        </TileMatrixLimits>
     45489                                        <TileMatrixLimits>
     45490                                                <TileMatrix>11</TileMatrix>
     45491                                                <MinTileRow>747</MinTileRow>
     45492                                                <MaxTileRow>749</MaxTileRow>
     45493                                                <MinTileCol>1063</MinTileCol>
     45494                                                <MaxTileCol>1064</MaxTileCol>
     45495                                        </TileMatrixLimits>
     45496                                        <TileMatrixLimits>
     45497                                                <TileMatrix>12</TileMatrix>
     45498                                                <MinTileRow>1494</MinTileRow>
     45499                                                <MaxTileRow>1498</MaxTileRow>
     45500                                                <MinTileCol>2126</MinTileCol>
     45501                                                <MaxTileCol>2128</MaxTileCol>
     45502                                        </TileMatrixLimits>
     45503                                        <TileMatrixLimits>
     45504                                                <TileMatrix>13</TileMatrix>
     45505                                                <MinTileRow>2989</MinTileRow>
     45506                                                <MaxTileRow>2996</MaxTileRow>
     45507                                                <MinTileCol>4252</MinTileCol>
     45508                                                <MaxTileCol>4257</MaxTileCol>
     45509                                        </TileMatrixLimits>
     45510                                        <TileMatrixLimits>
     45511                                                <TileMatrix>14</TileMatrix>
     45512                                                <MinTileRow>5978</MinTileRow>
     45513                                                <MaxTileRow>5992</MaxTileRow>
     45514                                                <MinTileCol>8505</MinTileCol>
     45515                                                <MaxTileCol>8515</MaxTileCol>
     45516                                        </TileMatrixLimits>
     45517                                        <TileMatrixLimits>
     45518                                                <TileMatrix>15</TileMatrix>
     45519                                                <MinTileRow>11957</MinTileRow>
     45520                                                <MaxTileRow>11984</MaxTileRow>
     45521                                                <MinTileCol>17011</MinTileCol>
     45522                                                <MaxTileCol>17030</MaxTileCol>
     45523                                        </TileMatrixLimits>
     45524                                        <TileMatrixLimits>
     45525                                                <TileMatrix>16</TileMatrix>
     45526                                                <MinTileRow>23915</MinTileRow>
     45527                                                <MaxTileRow>23969</MaxTileRow>
     45528                                                <MinTileCol>34023</MinTileCol>
     45529                                                <MaxTileCol>34061</MaxTileCol>
     45530                                        </TileMatrixLimits>
     45531                                        <TileMatrixLimits>
     45532                                                <TileMatrix>17</TileMatrix>
     45533                                                <MinTileRow>47831</MinTileRow>
     45534                                                <MaxTileRow>47938</MaxTileRow>
     45535                                                <MinTileCol>68047</MinTileCol>
     45536                                                <MaxTileCol>68122</MaxTileCol>
     45537                                        </TileMatrixLimits>
     45538                                        <TileMatrixLimits>
     45539                                                <TileMatrix>18</TileMatrix>
     45540                                                <MinTileRow>95663</MinTileRow>
     45541                                                <MaxTileRow>95877</MaxTileRow>
     45542                                                <MinTileCol>136095</MinTileCol>
     45543                                                <MaxTileCol>136245</MaxTileCol>
     45544                                        </TileMatrixLimits>
     45545                                        <TileMatrixLimits>
     45546                                                <TileMatrix>2</TileMatrix>
     45547                                                <MinTileRow>1</MinTileRow>
     45548                                                <MaxTileRow>1</MaxTileRow>
     45549                                                <MinTileCol>2</MinTileCol>
     45550                                                <MaxTileCol>2</MaxTileCol>
     45551                                        </TileMatrixLimits>
     45552                                        <TileMatrixLimits>
     45553                                                <TileMatrix>3</TileMatrix>
     45554                                                <MinTileRow>2</MinTileRow>
     45555                                                <MaxTileRow>2</MaxTileRow>
     45556                                                <MinTileCol>4</MinTileCol>
     45557                                                <MaxTileCol>4</MaxTileCol>
     45558                                        </TileMatrixLimits>
     45559                                        <TileMatrixLimits>
     45560                                                <TileMatrix>4</TileMatrix>
     45561                                                <MinTileRow>5</MinTileRow>
     45562                                                <MaxTileRow>5</MaxTileRow>
     45563                                                <MinTileCol>8</MinTileCol>
     45564                                                <MaxTileCol>8</MaxTileCol>
     45565                                        </TileMatrixLimits>
     45566                                        <TileMatrixLimits>
     45567                                                <TileMatrix>5</TileMatrix>
     45568                                                <MinTileRow>11</MinTileRow>
     45569                                                <MaxTileRow>11</MaxTileRow>
     45570                                                <MinTileCol>16</MinTileCol>
     45571                                                <MaxTileCol>16</MaxTileCol>
     45572                                        </TileMatrixLimits>
     45573                                        <TileMatrixLimits>
     45574                                                <TileMatrix>6</TileMatrix>
     45575                                                <MinTileRow>23</MinTileRow>
     45576                                                <MaxTileRow>23</MaxTileRow>
     45577                                                <MinTileCol>33</MinTileCol>
     45578                                                <MaxTileCol>33</MaxTileCol>
     45579                                        </TileMatrixLimits>
     45580                                        <TileMatrixLimits>
     45581                                                <TileMatrix>7</TileMatrix>
     45582                                                <MinTileRow>46</MinTileRow>
     45583                                                <MaxTileRow>46</MaxTileRow>
     45584                                                <MinTileCol>66</MinTileCol>
     45585                                                <MaxTileCol>66</MaxTileCol>
     45586                                        </TileMatrixLimits>
     45587                                        <TileMatrixLimits>
     45588                                                <TileMatrix>8</TileMatrix>
     45589                                                <MinTileRow>93</MinTileRow>
     45590                                                <MaxTileRow>93</MaxTileRow>
     45591                                                <MinTileCol>132</MinTileCol>
     45592                                                <MaxTileCol>133</MaxTileCol>
     45593                                        </TileMatrixLimits>
     45594                                        <TileMatrixLimits>
     45595                                                <TileMatrix>9</TileMatrix>
     45596                                                <MinTileRow>186</MinTileRow>
     45597                                                <MaxTileRow>187</MaxTileRow>
     45598                                                <MinTileCol>265</MinTileCol>
     45599                                                <MaxTileCol>266</MaxTileCol>
     45600                                        </TileMatrixLimits>
     45601                                </TileMatrixSetLimits>
     45602                        </TileMatrixSetLink>
     45603                </Layer>
     45604                <Layer>
     45605                        <ows:Title>Orthophotographies Geosud de PARIS-CENTRE</ows:Title>
     45606                        <ows:Abstract>Orthophotographies satellites de PARIS-CENTRE issues du projet Geosud.</ows:Abstract>
     45607                        <ows:Keywords>
     45608                                <ows:Keyword>Photographies</ows:Keyword>
     45609                        </ows:Keywords>
     45610                        <ows:WGS84BoundingBox>
     45611                                <ows:LowerCorner>2.18208 48.7405</ows:LowerCorner>
     45612                                <ows:UpperCorner>2.46181 48.9602</ows:UpperCorner>
     45613                        </ows:WGS84BoundingBox>
     45614                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PARIS-CENTRE-2013-07-21-39303694</ows:Identifier>
     45615                        <Style isDefault="true">
     45616                                <ows:Title>Données Brutes</ows:Title>
     45617                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45618                                <ows:Keywords>
     45619                                        <ows:Keyword>Défaut</ows:Keyword>
     45620                                </ows:Keywords>
     45621                                <ows:Identifier>normal</ows:Identifier>
     45622                                <LegendURL format="image/jpeg" height="200"
     45623                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45624                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45625                        </Style>
     45626                        <Format>image/jpeg</Format>
     45627                        <TileMatrixSetLink>
     45628                                <TileMatrixSet>PM</TileMatrixSet>
     45629                                <TileMatrixSetLimits>
     45630                                        <TileMatrixLimits>
     45631                                                <TileMatrix>0</TileMatrix>
     45632                                                <MinTileRow>0</MinTileRow>
     45633                                                <MaxTileRow>0</MaxTileRow>
     45634                                                <MinTileCol>0</MinTileCol>
     45635                                                <MaxTileCol>0</MaxTileCol>
     45636                                        </TileMatrixLimits>
     45637                                        <TileMatrixLimits>
     45638                                                <TileMatrix>1</TileMatrix>
     45639                                                <MinTileRow>0</MinTileRow>
     45640                                                <MaxTileRow>0</MaxTileRow>
     45641                                                <MinTileCol>1</MinTileCol>
     45642                                                <MaxTileCol>1</MaxTileCol>
     45643                                        </TileMatrixLimits>
     45644                                        <TileMatrixLimits>
     45645                                                <TileMatrix>10</TileMatrix>
     45646                                                <MinTileRow>351</MinTileRow>
     45647                                                <MaxTileRow>352</MaxTileRow>
     45648                                                <MinTileCol>518</MinTileCol>
     45649                                                <MaxTileCol>519</MaxTileCol>
     45650                                        </TileMatrixLimits>
     45651                                        <TileMatrixLimits>
     45652                                                <TileMatrix>11</TileMatrix>
     45653                                                <MinTileRow>703</MinTileRow>
     45654                                                <MaxTileRow>705</MaxTileRow>
     45655                                                <MinTileCol>1036</MinTileCol>
     45656                                                <MaxTileCol>1038</MaxTileCol>
     45657                                        </TileMatrixLimits>
     45658                                        <TileMatrixLimits>
     45659                                                <TileMatrix>12</TileMatrix>
     45660                                                <MinTileRow>1407</MinTileRow>
     45661                                                <MaxTileRow>1411</MaxTileRow>
     45662                                                <MinTileCol>2072</MinTileCol>
     45663                                                <MaxTileCol>2076</MaxTileCol>
     45664                                        </TileMatrixLimits>
     45665                                        <TileMatrixLimits>
     45666                                                <TileMatrix>13</TileMatrix>
     45667                                                <MinTileRow>2814</MinTileRow>
     45668                                                <MaxTileRow>2822</MaxTileRow>
     45669                                                <MinTileCol>4145</MinTileCol>
     45670                                                <MaxTileCol>4152</MaxTileCol>
     45671                                        </TileMatrixLimits>
     45672                                        <TileMatrixLimits>
     45673                                                <TileMatrix>14</TileMatrix>
     45674                                                <MinTileRow>5629</MinTileRow>
     45675                                                <MaxTileRow>5644</MaxTileRow>
     45676                                                <MinTileCol>8290</MinTileCol>
     45677                                                <MaxTileCol>8304</MaxTileCol>
     45678                                        </TileMatrixLimits>
     45679                                        <TileMatrixLimits>
     45680                                                <TileMatrix>15</TileMatrix>
     45681                                                <MinTileRow>11258</MinTileRow>
     45682                                                <MaxTileRow>11289</MaxTileRow>
     45683                                                <MinTileCol>16581</MinTileCol>
     45684                                                <MaxTileCol>16608</MaxTileCol>
     45685                                        </TileMatrixLimits>
     45686                                        <TileMatrixLimits>
     45687                                                <TileMatrix>16</TileMatrix>
     45688                                                <MinTileRow>22516</MinTileRow>
     45689                                                <MaxTileRow>22578</MaxTileRow>
     45690                                                <MinTileCol>33162</MinTileCol>
     45691                                                <MaxTileCol>33217</MaxTileCol>
     45692                                        </TileMatrixLimits>
     45693                                        <TileMatrixLimits>
     45694                                                <TileMatrix>17</TileMatrix>
     45695                                                <MinTileRow>45032</MinTileRow>
     45696                                                <MaxTileRow>45157</MaxTileRow>
     45697                                                <MinTileCol>66325</MinTileCol>
     45698                                                <MaxTileCol>66435</MaxTileCol>
     45699                                        </TileMatrixLimits>
     45700                                        <TileMatrixLimits>
     45701                                                <TileMatrix>18</TileMatrix>
     45702                                                <MinTileRow>90065</MinTileRow>
     45703                                                <MaxTileRow>90315</MaxTileRow>
     45704                                                <MinTileCol>132651</MinTileCol>
     45705                                                <MaxTileCol>132870</MaxTileCol>
     45706                                        </TileMatrixLimits>
     45707                                        <TileMatrixLimits>
     45708                                                <TileMatrix>2</TileMatrix>
     45709                                                <MinTileRow>1</MinTileRow>
     45710                                                <MaxTileRow>1</MaxTileRow>
     45711                                                <MinTileCol>2</MinTileCol>
     45712                                                <MaxTileCol>2</MaxTileCol>
     45713                                        </TileMatrixLimits>
     45714                                        <TileMatrixLimits>
     45715                                                <TileMatrix>3</TileMatrix>
     45716                                                <MinTileRow>2</MinTileRow>
     45717                                                <MaxTileRow>2</MaxTileRow>
     45718                                                <MinTileCol>4</MinTileCol>
     45719                                                <MaxTileCol>4</MaxTileCol>
     45720                                        </TileMatrixLimits>
     45721                                        <TileMatrixLimits>
     45722                                                <TileMatrix>4</TileMatrix>
     45723                                                <MinTileRow>5</MinTileRow>
     45724                                                <MaxTileRow>5</MaxTileRow>
     45725                                                <MinTileCol>8</MinTileCol>
     45726                                                <MaxTileCol>8</MaxTileCol>
     45727                                        </TileMatrixLimits>
     45728                                        <TileMatrixLimits>
     45729                                                <TileMatrix>5</TileMatrix>
     45730                                                <MinTileRow>10</MinTileRow>
     45731                                                <MaxTileRow>11</MaxTileRow>
     45732                                                <MinTileCol>16</MinTileCol>
     45733                                                <MaxTileCol>16</MaxTileCol>
     45734                                        </TileMatrixLimits>
     45735                                        <TileMatrixLimits>
     45736                                                <TileMatrix>6</TileMatrix>
     45737                                                <MinTileRow>21</MinTileRow>
     45738                                                <MaxTileRow>22</MaxTileRow>
     45739                                                <MinTileCol>32</MinTileCol>
     45740                                                <MaxTileCol>32</MaxTileCol>
     45741                                        </TileMatrixLimits>
     45742                                        <TileMatrixLimits>
     45743                                                <TileMatrix>7</TileMatrix>
     45744                                                <MinTileRow>43</MinTileRow>
     45745                                                <MaxTileRow>44</MaxTileRow>
     45746                                                <MinTileCol>64</MinTileCol>
     45747                                                <MaxTileCol>64</MaxTileCol>
     45748                                        </TileMatrixLimits>
     45749                                        <TileMatrixLimits>
     45750                                                <TileMatrix>8</TileMatrix>
     45751                                                <MinTileRow>87</MinTileRow>
     45752                                                <MaxTileRow>88</MaxTileRow>
     45753                                                <MinTileCol>129</MinTileCol>
     45754                                                <MaxTileCol>129</MaxTileCol>
     45755                                        </TileMatrixLimits>
     45756                                        <TileMatrixLimits>
     45757                                                <TileMatrix>9</TileMatrix>
     45758                                                <MinTileRow>175</MinTileRow>
     45759                                                <MaxTileRow>176</MaxTileRow>
     45760                                                <MinTileCol>259</MinTileCol>
     45761                                                <MaxTileCol>259</MaxTileCol>
     45762                                        </TileMatrixLimits>
     45763                                </TileMatrixSetLimits>
     45764                        </TileMatrixSetLink>
     45765                </Layer>
     45766                <Layer>
     45767                        <ows:Title>Orthophotographies Geosud de PAU 2014</ows:Title>
     45768                        <ows:Abstract>Orthophotographies Geosud de PAU 2014</ows:Abstract>
     45769                        <ows:Keywords>
     45770                                <ows:Keyword>Photographies</ows:Keyword>
     45771                        </ows:Keywords>
     45772                        <ows:WGS84BoundingBox>
     45773                                <ows:LowerCorner>-0.505156 43.2117</ows:LowerCorner>
     45774                                <ows:UpperCorner>-0.247949 43.4081</ows:UpperCorner>
     45775                        </ows:WGS84BoundingBox>
     45776                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PAU-2014-10-24-40100388</ows:Identifier>
     45777                        <Style isDefault="true">
     45778                                <ows:Title>Données Brutes</ows:Title>
     45779                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45780                                <ows:Keywords>
     45781                                        <ows:Keyword>Défaut</ows:Keyword>
     45782                                </ows:Keywords>
     45783                                <ows:Identifier>normal</ows:Identifier>
     45784                                <LegendURL format="image/jpeg" height="200"
     45785                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45786                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45787                        </Style>
     45788                        <Format>image/jpeg</Format>
     45789                        <TileMatrixSetLink>
     45790                                <TileMatrixSet>PM</TileMatrixSet>
     45791                                <TileMatrixSetLimits>
     45792                                        <TileMatrixLimits>
     45793                                                <TileMatrix>0</TileMatrix>
     45794                                                <MinTileRow>0</MinTileRow>
     45795                                                <MaxTileRow>0</MaxTileRow>
     45796                                                <MinTileCol>0</MinTileCol>
     45797                                                <MaxTileCol>0</MaxTileCol>
     45798                                        </TileMatrixLimits>
     45799                                        <TileMatrixLimits>
     45800                                                <TileMatrix>1</TileMatrix>
     45801                                                <MinTileRow>0</MinTileRow>
     45802                                                <MaxTileRow>0</MaxTileRow>
     45803                                                <MinTileCol>0</MinTileCol>
     45804                                                <MaxTileCol>0</MaxTileCol>
     45805                                        </TileMatrixLimits>
     45806                                        <TileMatrixLimits>
     45807                                                <TileMatrix>10</TileMatrix>
     45808                                                <MinTileRow>374</MinTileRow>
     45809                                                <MaxTileRow>375</MaxTileRow>
     45810                                                <MinTileCol>510</MinTileCol>
     45811                                                <MaxTileCol>511</MaxTileCol>
     45812                                        </TileMatrixLimits>
     45813                                        <TileMatrixLimits>
     45814                                                <TileMatrix>11</TileMatrix>
     45815                                                <MinTileRow>749</MinTileRow>
     45816                                                <MaxTileRow>750</MaxTileRow>
     45817                                                <MinTileCol>1021</MinTileCol>
     45818                                                <MaxTileCol>1022</MaxTileCol>
     45819                                        </TileMatrixLimits>
     45820                                        <TileMatrixLimits>
     45821                                                <TileMatrix>12</TileMatrix>
     45822                                                <MinTileRow>1498</MinTileRow>
     45823                                                <MaxTileRow>1501</MaxTileRow>
     45824                                                <MinTileCol>2042</MinTileCol>
     45825                                                <MaxTileCol>2045</MaxTileCol>
     45826                                        </TileMatrixLimits>
     45827                                        <TileMatrixLimits>
     45828                                                <TileMatrix>13</TileMatrix>
     45829                                                <MinTileRow>2997</MinTileRow>
     45830                                                <MaxTileRow>3003</MaxTileRow>
     45831                                                <MinTileCol>4084</MinTileCol>
     45832                                                <MaxTileCol>4090</MaxTileCol>
     45833                                        </TileMatrixLimits>
     45834                                        <TileMatrixLimits>
     45835                                                <TileMatrix>14</TileMatrix>
     45836                                                <MinTileRow>5994</MinTileRow>
     45837                                                <MaxTileRow>6006</MaxTileRow>
     45838                                                <MinTileCol>8169</MinTileCol>
     45839                                                <MaxTileCol>8180</MaxTileCol>
     45840                                        </TileMatrixLimits>
     45841                                        <TileMatrixLimits>
     45842                                                <TileMatrix>15</TileMatrix>
     45843                                                <MinTileRow>11989</MinTileRow>
     45844                                                <MaxTileRow>12013</MaxTileRow>
     45845                                                <MinTileCol>16338</MinTileCol>
     45846                                                <MaxTileCol>16360</MaxTileCol>
     45847                                        </TileMatrixLimits>
     45848                                        <TileMatrixLimits>
     45849                                                <TileMatrix>16</TileMatrix>
     45850                                                <MinTileRow>23979</MinTileRow>
     45851                                                <MaxTileRow>24027</MaxTileRow>
     45852                                                <MinTileCol>32676</MinTileCol>
     45853                                                <MaxTileCol>32721</MaxTileCol>
     45854                                        </TileMatrixLimits>
     45855                                        <TileMatrixLimits>
     45856                                                <TileMatrix>17</TileMatrix>
     45857                                                <MinTileRow>47958</MinTileRow>
     45858                                                <MaxTileRow>48055</MaxTileRow>
     45859                                                <MinTileCol>65352</MinTileCol>
     45860                                                <MaxTileCol>65443</MaxTileCol>
     45861                                        </TileMatrixLimits>
     45862                                        <TileMatrixLimits>
     45863                                                <TileMatrix>18</TileMatrix>
     45864                                                <MinTileRow>95916</MinTileRow>
     45865                                                <MaxTileRow>96111</MaxTileRow>
     45866                                                <MinTileCol>130704</MinTileCol>
     45867                                                <MaxTileCol>130887</MaxTileCol>
     45868                                        </TileMatrixLimits>
     45869                                        <TileMatrixLimits>
     45870                                                <TileMatrix>2</TileMatrix>
     45871                                                <MinTileRow>1</MinTileRow>
     45872                                                <MaxTileRow>1</MaxTileRow>
     45873                                                <MinTileCol>1</MinTileCol>
     45874                                                <MaxTileCol>1</MaxTileCol>
     45875                                        </TileMatrixLimits>
     45876                                        <TileMatrixLimits>
     45877                                                <TileMatrix>3</TileMatrix>
     45878                                                <MinTileRow>2</MinTileRow>
     45879                                                <MaxTileRow>2</MaxTileRow>
     45880                                                <MinTileCol>3</MinTileCol>
     45881                                                <MaxTileCol>3</MaxTileCol>
     45882                                        </TileMatrixLimits>
     45883                                        <TileMatrixLimits>
     45884                                                <TileMatrix>4</TileMatrix>
     45885                                                <MinTileRow>5</MinTileRow>
     45886                                                <MaxTileRow>5</MaxTileRow>
     45887                                                <MinTileCol>7</MinTileCol>
     45888                                                <MaxTileCol>7</MaxTileCol>
     45889                                        </TileMatrixLimits>
     45890                                        <TileMatrixLimits>
     45891                                                <TileMatrix>5</TileMatrix>
     45892                                                <MinTileRow>11</MinTileRow>
     45893                                                <MaxTileRow>11</MaxTileRow>
     45894                                                <MinTileCol>15</MinTileCol>
     45895                                                <MaxTileCol>15</MaxTileCol>
     45896                                        </TileMatrixLimits>
     45897                                        <TileMatrixLimits>
     45898                                                <TileMatrix>6</TileMatrix>
     45899                                                <MinTileRow>23</MinTileRow>
     45900                                                <MaxTileRow>23</MaxTileRow>
     45901                                                <MinTileCol>31</MinTileCol>
     45902                                                <MaxTileCol>31</MaxTileCol>
     45903                                        </TileMatrixLimits>
     45904                                        <TileMatrixLimits>
     45905                                                <TileMatrix>7</TileMatrix>
     45906                                                <MinTileRow>46</MinTileRow>
     45907                                                <MaxTileRow>46</MaxTileRow>
     45908                                                <MinTileCol>63</MinTileCol>
     45909                                                <MaxTileCol>63</MaxTileCol>
     45910                                        </TileMatrixLimits>
     45911                                        <TileMatrixLimits>
     45912                                                <TileMatrix>8</TileMatrix>
     45913                                                <MinTileRow>93</MinTileRow>
     45914                                                <MaxTileRow>93</MaxTileRow>
     45915                                                <MinTileCol>127</MinTileCol>
     45916                                                <MaxTileCol>127</MaxTileCol>
     45917                                        </TileMatrixLimits>
     45918                                        <TileMatrixLimits>
     45919                                                <TileMatrix>9</TileMatrix>
     45920                                                <MinTileRow>187</MinTileRow>
     45921                                                <MaxTileRow>187</MaxTileRow>
     45922                                                <MinTileCol>255</MinTileCol>
     45923                                                <MaxTileCol>255</MaxTileCol>
     45924                                        </TileMatrixLimits>
     45925                                </TileMatrixSetLimits>
     45926                        </TileMatrixSetLink>
     45927                </Layer>
     45928                <Layer>
     45929                        <ows:Title>Orthophotographies Geosud de PAYS-DE-LA-LOIRE 2014</ows:Title>
     45930                        <ows:Abstract>Orthophotographies satellites de PAYS-DE-LA-LOIRE issues du projet Geosud.</ows:Abstract>
     45931                        <ows:Keywords>
     45932                                <ows:Keyword>Photographies</ows:Keyword>
     45933                        </ows:Keywords>
     45934                        <ows:WGS84BoundingBox>
     45935                                <ows:LowerCorner>-2.74381 46.2048</ows:LowerCorner>
     45936                                <ows:UpperCorner>0.998289 48.6149</ows:UpperCorner>
     45937                        </ows:WGS84BoundingBox>
     45938                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PAYS-DE-LA-LOIRE-2014</ows:Identifier>
     45939                        <Style isDefault="true">
     45940                                <ows:Title>Données Brutes</ows:Title>
     45941                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     45942                                <ows:Keywords>
     45943                                        <ows:Keyword>Défaut</ows:Keyword>
     45944                                </ows:Keywords>
     45945                                <ows:Identifier>normal</ows:Identifier>
     45946                                <LegendURL format="image/jpeg" height="200"
     45947                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     45948                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     45949                        </Style>
     45950                        <Format>image/jpeg</Format>
     45951                        <TileMatrixSetLink>
     45952                                <TileMatrixSet>PM</TileMatrixSet>
     45953                                <TileMatrixSetLimits>
     45954                                        <TileMatrixLimits>
     45955                                                <TileMatrix>0</TileMatrix>
     45956                                                <MinTileRow>0</MinTileRow>
     45957                                                <MaxTileRow>0</MaxTileRow>
     45958                                                <MinTileCol>0</MinTileCol>
     45959                                                <MaxTileCol>0</MaxTileCol>
     45960                                        </TileMatrixLimits>
     45961                                        <TileMatrixLimits>
     45962                                                <TileMatrix>1</TileMatrix>
     45963                                                <MinTileRow>0</MinTileRow>
     45964                                                <MaxTileRow>0</MaxTileRow>
     45965                                                <MinTileCol>0</MinTileCol>
     45966                                                <MaxTileCol>1</MaxTileCol>
     45967                                        </TileMatrixLimits>
     45968                                        <TileMatrixLimits>
     45969                                                <TileMatrix>10</TileMatrix>
     45970                                                <MinTileRow>353</MinTileRow>
     45971                                                <MaxTileRow>363</MaxTileRow>
     45972                                                <MinTileCol>504</MinTileCol>
     45973                                                <MaxTileCol>514</MaxTileCol>
     45974                                        </TileMatrixLimits>
     45975                                        <TileMatrixLimits>
     45976                                                <TileMatrix>11</TileMatrix>
     45977                                                <MinTileRow>706</MinTileRow>
     45978                                                <MaxTileRow>726</MaxTileRow>
     45979                                                <MinTileCol>1009</MinTileCol>
     45980                                                <MaxTileCol>1029</MaxTileCol>
     45981                                        </TileMatrixLimits>
     45982                                        <TileMatrixLimits>
     45983                                                <TileMatrix>12</TileMatrix>
     45984                                                <MinTileRow>1413</MinTileRow>
     45985                                                <MaxTileRow>1453</MaxTileRow>
     45986                                                <MinTileCol>2018</MinTileCol>
     45987                                                <MaxTileCol>2058</MaxTileCol>
     45988                                        </TileMatrixLimits>
     45989                                        <TileMatrixLimits>
     45990                                                <TileMatrix>13</TileMatrix>
     45991                                                <MinTileRow>2827</MinTileRow>
     45992                                                <MaxTileRow>2906</MaxTileRow>
     45993                                                <MinTileCol>4036</MinTileCol>
     45994                                                <MaxTileCol>4117</MaxTileCol>
     45995                                        </TileMatrixLimits>
     45996                                        <TileMatrixLimits>
     45997                                                <TileMatrix>14</TileMatrix>
     45998                                                <MinTileRow>5654</MinTileRow>
     45999                                                <MaxTileRow>5812</MaxTileRow>
     46000                                                <MinTileCol>8072</MinTileCol>
     46001                                                <MaxTileCol>8234</MaxTileCol>
     46002                                        </TileMatrixLimits>
     46003                                        <TileMatrixLimits>
     46004                                                <TileMatrix>15</TileMatrix>
     46005                                                <MinTileRow>11309</MinTileRow>
     46006                                                <MaxTileRow>11624</MaxTileRow>
     46007                                                <MinTileCol>16144</MinTileCol>
     46008                                                <MaxTileCol>16468</MaxTileCol>
     46009                                        </TileMatrixLimits>
     46010                                        <TileMatrixLimits>
     46011                                                <TileMatrix>16</TileMatrix>
     46012                                                <MinTileRow>22619</MinTileRow>
     46013                                                <MaxTileRow>23248</MaxTileRow>
     46014                                                <MinTileCol>32289</MinTileCol>
     46015                                                <MaxTileCol>32937</MaxTileCol>
     46016                                        </TileMatrixLimits>
     46017                                        <TileMatrixLimits>
     46018                                                <TileMatrix>17</TileMatrix>
     46019                                                <MinTileRow>45239</MinTileRow>
     46020                                                <MaxTileRow>46496</MaxTileRow>
     46021                                                <MinTileCol>64578</MinTileCol>
     46022                                                <MaxTileCol>65875</MaxTileCol>
     46023                                        </TileMatrixLimits>
     46024                                        <TileMatrixLimits>
     46025                                                <TileMatrix>2</TileMatrix>
     46026                                                <MinTileRow>1</MinTileRow>
     46027                                                <MaxTileRow>1</MaxTileRow>
     46028                                                <MinTileCol>1</MinTileCol>
     46029                                                <MaxTileCol>2</MaxTileCol>
     46030                                        </TileMatrixLimits>
     46031                                        <TileMatrixLimits>
     46032                                                <TileMatrix>3</TileMatrix>
     46033                                                <MinTileRow>2</MinTileRow>
     46034                                                <MaxTileRow>2</MaxTileRow>
     46035                                                <MinTileCol>3</MinTileCol>
     46036                                                <MaxTileCol>4</MaxTileCol>
     46037                                        </TileMatrixLimits>
     46038                                        <TileMatrixLimits>
     46039                                                <TileMatrix>4</TileMatrix>
     46040                                                <MinTileRow>5</MinTileRow>
     46041                                                <MaxTileRow>5</MaxTileRow>
     46042                                                <MinTileCol>7</MinTileCol>
     46043                                                <MaxTileCol>8</MaxTileCol>
     46044                                        </TileMatrixLimits>
     46045                                        <TileMatrixLimits>
     46046                                                <TileMatrix>5</TileMatrix>
     46047                                                <MinTileRow>11</MinTileRow>
     46048                                                <MaxTileRow>11</MaxTileRow>
     46049                                                <MinTileCol>15</MinTileCol>
     46050                                                <MaxTileCol>16</MaxTileCol>
     46051                                        </TileMatrixLimits>
     46052                                        <TileMatrixLimits>
     46053                                                <TileMatrix>6</TileMatrix>
     46054                                                <MinTileRow>22</MinTileRow>
     46055                                                <MaxTileRow>22</MaxTileRow>
     46056                                                <MinTileCol>31</MinTileCol>
     46057                                                <MaxTileCol>32</MaxTileCol>
     46058                                        </TileMatrixLimits>
     46059                                        <TileMatrixLimits>
     46060                                                <TileMatrix>7</TileMatrix>
     46061                                                <MinTileRow>44</MinTileRow>
     46062                                                <MaxTileRow>45</MaxTileRow>
     46063                                                <MinTileCol>63</MinTileCol>
     46064                                                <MaxTileCol>64</MaxTileCol>
     46065                                        </TileMatrixLimits>
     46066                                        <TileMatrixLimits>
     46067                                                <TileMatrix>8</TileMatrix>
     46068                                                <MinTileRow>88</MinTileRow>
     46069                                                <MaxTileRow>90</MaxTileRow>
     46070                                                <MinTileCol>126</MinTileCol>
     46071                                                <MaxTileCol>128</MaxTileCol>
     46072                                        </TileMatrixLimits>
     46073                                        <TileMatrixLimits>
     46074                                                <TileMatrix>9</TileMatrix>
     46075                                                <MinTileRow>176</MinTileRow>
     46076                                                <MaxTileRow>181</MaxTileRow>
     46077                                                <MinTileCol>252</MinTileCol>
     46078                                                <MaxTileCol>257</MaxTileCol>
     46079                                        </TileMatrixLimits>
     46080                                </TileMatrixSetLimits>
     46081                        </TileMatrixSetLink>
     46082                </Layer>
     46083                <Layer>
     46084                        <ows:Title>Orthophotographies Geosud de Perpignan</ows:Title>
     46085                        <ows:Abstract>Orthophotographies satellites de Perpignan issues du projet Geosud.</ows:Abstract>
     46086                        <ows:Keywords>
     46087                                <ows:Keyword>Photographies</ows:Keyword>
     46088                        </ows:Keywords>
     46089                        <ows:WGS84BoundingBox>
     46090                                <ows:LowerCorner>2.80454 42.6295</ows:LowerCorner>
     46091                                <ows:UpperCorner>3.06108 42.8275</ows:UpperCorner>
     46092                        </ows:WGS84BoundingBox>
     46093                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PERPIGNAN-2013-04-22-38930444</ows:Identifier>
     46094                        <Style isDefault="true">
     46095                                <ows:Title>Données Brutes</ows:Title>
     46096                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46097                                <ows:Keywords>
     46098                                        <ows:Keyword>Défaut</ows:Keyword>
     46099                                </ows:Keywords>
     46100                                <ows:Identifier>normal</ows:Identifier>
     46101                                <LegendURL format="image/jpeg" height="200"
     46102                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46103                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46104                        </Style>
     46105                        <Format>image/jpeg</Format>
     46106                        <TileMatrixSetLink>
     46107                                <TileMatrixSet>PM</TileMatrixSet>
     46108                                <TileMatrixSetLimits>
     46109                                        <TileMatrixLimits>
     46110                                                <TileMatrix>0</TileMatrix>
     46111                                                <MinTileRow>0</MinTileRow>
     46112                                                <MaxTileRow>0</MaxTileRow>
     46113                                                <MinTileCol>0</MinTileCol>
     46114                                                <MaxTileCol>0</MaxTileCol>
     46115                                        </TileMatrixLimits>
     46116                                        <TileMatrixLimits>
     46117                                                <TileMatrix>1</TileMatrix>
     46118                                                <MinTileRow>0</MinTileRow>
     46119                                                <MaxTileRow>0</MaxTileRow>
     46120                                                <MinTileCol>1</MinTileCol>
     46121                                                <MaxTileCol>1</MaxTileCol>
     46122                                        </TileMatrixLimits>
     46123                                        <TileMatrixLimits>
     46124                                                <TileMatrix>10</TileMatrix>
     46125                                                <MinTileRow>376</MinTileRow>
     46126                                                <MaxTileRow>377</MaxTileRow>
     46127                                                <MinTileCol>519</MinTileCol>
     46128                                                <MaxTileCol>520</MaxTileCol>
     46129                                        </TileMatrixLimits>
     46130                                        <TileMatrixLimits>
     46131                                                <TileMatrix>11</TileMatrix>
     46132                                                <MinTileRow>753</MinTileRow>
     46133                                                <MaxTileRow>755</MaxTileRow>
     46134                                                <MinTileCol>1039</MinTileCol>
     46135                                                <MaxTileCol>1041</MaxTileCol>
     46136                                        </TileMatrixLimits>
     46137                                        <TileMatrixLimits>
     46138                                                <TileMatrix>12</TileMatrix>
     46139                                                <MinTileRow>1507</MinTileRow>
     46140                                                <MaxTileRow>1510</MaxTileRow>
     46141                                                <MinTileCol>2079</MinTileCol>
     46142                                                <MaxTileCol>2082</MaxTileCol>
     46143                                        </TileMatrixLimits>
     46144                                        <TileMatrixLimits>
     46145                                                <TileMatrix>13</TileMatrix>
     46146                                                <MinTileRow>3015</MinTileRow>
     46147                                                <MaxTileRow>3021</MaxTileRow>
     46148                                                <MinTileCol>4159</MinTileCol>
     46149                                                <MaxTileCol>4165</MaxTileCol>
     46150                                        </TileMatrixLimits>
     46151                                        <TileMatrixLimits>
     46152                                                <TileMatrix>14</TileMatrix>
     46153                                                <MinTileRow>6031</MinTileRow>
     46154                                                <MaxTileRow>6043</MaxTileRow>
     46155                                                <MinTileCol>8319</MinTileCol>
     46156                                                <MaxTileCol>8331</MaxTileCol>
     46157                                        </TileMatrixLimits>
     46158                                        <TileMatrixLimits>
     46159                                                <TileMatrix>15</TileMatrix>
     46160                                                <MinTileRow>12062</MinTileRow>
     46161                                                <MaxTileRow>12086</MaxTileRow>
     46162                                                <MinTileCol>16639</MinTileCol>
     46163                                                <MaxTileCol>16662</MaxTileCol>
     46164                                        </TileMatrixLimits>
     46165                                        <TileMatrixLimits>
     46166                                                <TileMatrix>16</TileMatrix>
     46167                                                <MinTileRow>24124</MinTileRow>
     46168                                                <MaxTileRow>24173</MaxTileRow>
     46169                                                <MinTileCol>33278</MinTileCol>
     46170                                                <MaxTileCol>33325</MaxTileCol>
     46171                                        </TileMatrixLimits>
     46172                                        <TileMatrixLimits>
     46173                                                <TileMatrix>17</TileMatrix>
     46174                                                <MinTileRow>48248</MinTileRow>
     46175                                                <MaxTileRow>48346</MaxTileRow>
     46176                                                <MinTileCol>66557</MinTileCol>
     46177                                                <MaxTileCol>66650</MaxTileCol>
     46178                                        </TileMatrixLimits>
     46179                                        <TileMatrixLimits>
     46180                                                <TileMatrix>18</TileMatrix>
     46181                                                <MinTileRow>96496</MinTileRow>
     46182                                                <MaxTileRow>96692</MaxTileRow>
     46183                                                <MinTileCol>133114</MinTileCol>
     46184                                                <MaxTileCol>133301</MaxTileCol>
     46185                                        </TileMatrixLimits>
     46186                                        <TileMatrixLimits>
     46187                                                <TileMatrix>2</TileMatrix>
     46188                                                <MinTileRow>1</MinTileRow>
     46189                                                <MaxTileRow>1</MaxTileRow>
     46190                                                <MinTileCol>2</MinTileCol>
     46191                                                <MaxTileCol>2</MaxTileCol>
     46192                                        </TileMatrixLimits>
     46193                                        <TileMatrixLimits>
     46194                                                <TileMatrix>3</TileMatrix>
     46195                                                <MinTileRow>2</MinTileRow>
     46196                                                <MaxTileRow>2</MaxTileRow>
     46197                                                <MinTileCol>4</MinTileCol>
     46198                                                <MaxTileCol>4</MaxTileCol>
     46199                                        </TileMatrixLimits>
     46200                                        <TileMatrixLimits>
     46201                                                <TileMatrix>4</TileMatrix>
     46202                                                <MinTileRow>5</MinTileRow>
     46203                                                <MaxTileRow>5</MaxTileRow>
     46204                                                <MinTileCol>8</MinTileCol>
     46205                                                <MaxTileCol>8</MaxTileCol>
     46206                                        </TileMatrixLimits>
     46207                                        <TileMatrixLimits>
     46208                                                <TileMatrix>5</TileMatrix>
     46209                                                <MinTileRow>11</MinTileRow>
     46210                                                <MaxTileRow>11</MaxTileRow>
     46211                                                <MinTileCol>16</MinTileCol>
     46212                                                <MaxTileCol>16</MaxTileCol>
     46213                                        </TileMatrixLimits>
     46214                                        <TileMatrixLimits>
     46215                                                <TileMatrix>6</TileMatrix>
     46216                                                <MinTileRow>23</MinTileRow>
     46217                                                <MaxTileRow>23</MaxTileRow>
     46218                                                <MinTileCol>32</MinTileCol>
     46219                                                <MaxTileCol>32</MaxTileCol>
     46220                                        </TileMatrixLimits>
     46221                                        <TileMatrixLimits>
     46222                                                <TileMatrix>7</TileMatrix>
     46223                                                <MinTileRow>47</MinTileRow>
     46224                                                <MaxTileRow>47</MaxTileRow>
     46225                                                <MinTileCol>64</MinTileCol>
     46226                                                <MaxTileCol>65</MaxTileCol>
     46227                                        </TileMatrixLimits>
     46228                                        <TileMatrixLimits>
     46229                                                <TileMatrix>8</TileMatrix>
     46230                                                <MinTileRow>94</MinTileRow>
     46231                                                <MaxTileRow>94</MaxTileRow>
     46232                                                <MinTileCol>129</MinTileCol>
     46233                                                <MaxTileCol>130</MaxTileCol>
     46234                                        </TileMatrixLimits>
     46235                                        <TileMatrixLimits>
     46236                                                <TileMatrix>9</TileMatrix>
     46237                                                <MinTileRow>188</MinTileRow>
     46238                                                <MaxTileRow>188</MaxTileRow>
     46239                                                <MinTileCol>259</MinTileCol>
     46240                                                <MaxTileCol>260</MaxTileCol>
     46241                                        </TileMatrixLimits>
     46242                                </TileMatrixSetLimits>
     46243                        </TileMatrixSetLink>
     46244                </Layer>
     46245                <Layer>
     46246                        <ows:Title>Orthophotographies Geosud de PICARDIE-2013</ows:Title>
     46247                        <ows:Abstract>Orthophotographies satellites de PICARDIE-2013 issues du projet Geosud.</ows:Abstract>
     46248                        <ows:Keywords>
     46249                                <ows:Keyword>Photographies</ows:Keyword>
     46250                        </ows:Keywords>
     46251                        <ows:WGS84BoundingBox>
     46252                                <ows:LowerCorner>1.34308 48.8203</ows:LowerCorner>
     46253                                <ows:UpperCorner>4.29191 50.3879</ows:UpperCorner>
     46254                        </ows:WGS84BoundingBox>
     46255                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PICARDIE-2013</ows:Identifier>
     46256                        <Style isDefault="true">
     46257                                <ows:Title>Données Brutes</ows:Title>
     46258                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46259                                <ows:Keywords>
     46260                                        <ows:Keyword>Défaut</ows:Keyword>
     46261                                </ows:Keywords>
     46262                                <ows:Identifier>normal</ows:Identifier>
     46263                                <LegendURL format="image/jpeg" height="200"
     46264                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46265                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46266                        </Style>
     46267                        <Format>image/jpeg</Format>
     46268                        <TileMatrixSetLink>
     46269                                <TileMatrixSet>PM</TileMatrixSet>
     46270                                <TileMatrixSetLimits>
     46271                                        <TileMatrixLimits>
     46272                                                <TileMatrix>0</TileMatrix>
     46273                                                <MinTileRow>0</MinTileRow>
     46274                                                <MaxTileRow>0</MaxTileRow>
     46275                                                <MinTileCol>0</MinTileCol>
     46276                                                <MaxTileCol>0</MaxTileCol>
     46277                                        </TileMatrixLimits>
     46278                                        <TileMatrixLimits>
     46279                                                <TileMatrix>1</TileMatrix>
     46280                                                <MinTileRow>0</MinTileRow>
     46281                                                <MaxTileRow>0</MaxTileRow>
     46282                                                <MinTileCol>1</MinTileCol>
     46283                                                <MaxTileCol>1</MaxTileCol>
     46284                                        </TileMatrixLimits>
     46285                                        <TileMatrixLimits>
     46286                                                <TileMatrix>10</TileMatrix>
     46287                                                <MinTileRow>345</MinTileRow>
     46288                                                <MaxTileRow>352</MaxTileRow>
     46289                                                <MinTileCol>515</MinTileCol>
     46290                                                <MaxTileCol>524</MaxTileCol>
     46291                                        </TileMatrixLimits>
     46292                                        <TileMatrixLimits>
     46293                                                <TileMatrix>11</TileMatrix>
     46294                                                <MinTileRow>691</MinTileRow>
     46295                                                <MaxTileRow>704</MaxTileRow>
     46296                                                <MinTileCol>1031</MinTileCol>
     46297                                                <MaxTileCol>1048</MaxTileCol>
     46298                                        </TileMatrixLimits>
     46299                                        <TileMatrixLimits>
     46300                                                <TileMatrix>12</TileMatrix>
     46301                                                <MinTileRow>1382</MinTileRow>
     46302                                                <MaxTileRow>1409</MaxTileRow>
     46303                                                <MinTileCol>2063</MinTileCol>
     46304                                                <MaxTileCol>2096</MaxTileCol>
     46305                                        </TileMatrixLimits>
     46306                                        <TileMatrixLimits>
     46307                                                <TileMatrix>13</TileMatrix>
     46308                                                <MinTileRow>2764</MinTileRow>
     46309                                                <MaxTileRow>2819</MaxTileRow>
     46310                                                <MinTileCol>4126</MinTileCol>
     46311                                                <MaxTileCol>4193</MaxTileCol>
     46312                                        </TileMatrixLimits>
     46313                                        <TileMatrixLimits>
     46314                                                <TileMatrix>14</TileMatrix>
     46315                                                <MinTileRow>5528</MinTileRow>
     46316                                                <MaxTileRow>5638</MaxTileRow>
     46317                                                <MinTileCol>8253</MinTileCol>
     46318                                                <MaxTileCol>8386</MaxTileCol>
     46319                                        </TileMatrixLimits>
     46320                                        <TileMatrixLimits>
     46321                                                <TileMatrix>15</TileMatrix>
     46322                                                <MinTileRow>11057</MinTileRow>
     46323                                                <MaxTileRow>11276</MaxTileRow>
     46324                                                <MinTileCol>16507</MinTileCol>
     46325                                                <MaxTileCol>16773</MaxTileCol>
     46326                                        </TileMatrixLimits>
     46327                                        <TileMatrixLimits>
     46328                                                <TileMatrix>16</TileMatrix>
     46329                                                <MinTileRow>22115</MinTileRow>
     46330                                                <MaxTileRow>22553</MaxTileRow>
     46331                                                <MinTileCol>33014</MinTileCol>
     46332                                                <MaxTileCol>33547</MaxTileCol>
     46333                                        </TileMatrixLimits>
     46334                                        <TileMatrixLimits>
     46335                                                <TileMatrix>17</TileMatrix>
     46336                                                <MinTileRow>44231</MinTileRow>
     46337                                                <MaxTileRow>45107</MaxTileRow>
     46338                                                <MinTileCol>66028</MinTileCol>
     46339                                                <MaxTileCol>67094</MaxTileCol>
     46340                                        </TileMatrixLimits>
     46341                                        <TileMatrixLimits>
     46342                                                <TileMatrix>2</TileMatrix>
     46343                                                <MinTileRow>1</MinTileRow>
     46344                                                <MaxTileRow>1</MaxTileRow>
     46345                                                <MinTileCol>2</MinTileCol>
     46346                                                <MaxTileCol>2</MaxTileCol>
     46347                                        </TileMatrixLimits>
     46348                                        <TileMatrixLimits>
     46349                                                <TileMatrix>3</TileMatrix>
     46350                                                <MinTileRow>2</MinTileRow>
     46351                                                <MaxTileRow>2</MaxTileRow>
     46352                                                <MinTileCol>4</MinTileCol>
     46353                                                <MaxTileCol>4</MaxTileCol>
     46354                                        </TileMatrixLimits>
     46355                                        <TileMatrixLimits>
     46356                                                <TileMatrix>4</TileMatrix>
     46357                                                <MinTileRow>5</MinTileRow>
     46358                                                <MaxTileRow>5</MaxTileRow>
     46359                                                <MinTileCol>8</MinTileCol>
     46360                                                <MaxTileCol>8</MaxTileCol>
     46361                                        </TileMatrixLimits>
     46362                                        <TileMatrixLimits>
     46363                                                <TileMatrix>5</TileMatrix>
     46364                                                <MinTileRow>10</MinTileRow>
     46365                                                <MaxTileRow>11</MaxTileRow>
     46366                                                <MinTileCol>16</MinTileCol>
     46367                                                <MaxTileCol>16</MaxTileCol>
     46368                                        </TileMatrixLimits>
     46369                                        <TileMatrixLimits>
     46370                                                <TileMatrix>6</TileMatrix>
     46371                                                <MinTileRow>21</MinTileRow>
     46372                                                <MaxTileRow>22</MaxTileRow>
     46373                                                <MinTileCol>32</MinTileCol>
     46374                                                <MaxTileCol>32</MaxTileCol>
     46375                                        </TileMatrixLimits>
     46376                                        <TileMatrixLimits>
     46377                                                <TileMatrix>7</TileMatrix>
     46378                                                <MinTileRow>43</MinTileRow>
     46379                                                <MaxTileRow>44</MaxTileRow>
     46380                                                <MinTileCol>64</MinTileCol>
     46381                                                <MaxTileCol>65</MaxTileCol>
     46382                                        </TileMatrixLimits>
     46383                                        <TileMatrixLimits>
     46384                                                <TileMatrix>8</TileMatrix>
     46385                                                <MinTileRow>86</MinTileRow>
     46386                                                <MaxTileRow>88</MaxTileRow>
     46387                                                <MinTileCol>128</MinTileCol>
     46388                                                <MaxTileCol>131</MaxTileCol>
     46389                                        </TileMatrixLimits>
     46390                                        <TileMatrixLimits>
     46391                                                <TileMatrix>9</TileMatrix>
     46392                                                <MinTileRow>172</MinTileRow>
     46393                                                <MaxTileRow>176</MaxTileRow>
     46394                                                <MinTileCol>257</MinTileCol>
     46395                                                <MaxTileCol>262</MaxTileCol>
     46396                                        </TileMatrixLimits>
     46397                                </TileMatrixSetLimits>
     46398                        </TileMatrixSetLink>
     46399                </Layer>
     46400                <Layer>
     46401                        <ows:Title>Orthophotographies Geosud de PICARDIE 2014</ows:Title>
     46402                        <ows:Abstract>Orthophotographies satellites de PICARDIE issues du projet Geosud.</ows:Abstract>
     46403                        <ows:Keywords>
     46404                                <ows:Keyword>Photographies</ows:Keyword>
     46405                        </ows:Keywords>
     46406                        <ows:WGS84BoundingBox>
     46407                                <ows:LowerCorner>1.34338 48.8048</ows:LowerCorner>
     46408                                <ows:UpperCorner>5.09165 50.3745</ows:UpperCorner>
     46409                        </ows:WGS84BoundingBox>
     46410                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PICARDIE-2014</ows:Identifier>
     46411                        <Style isDefault="true">
     46412                                <ows:Title>Données Brutes</ows:Title>
     46413                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46414                                <ows:Keywords>
     46415                                        <ows:Keyword>Défaut</ows:Keyword>
     46416                                </ows:Keywords>
     46417                                <ows:Identifier>normal</ows:Identifier>
     46418                                <LegendURL format="image/jpeg" height="200"
     46419                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46420                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46421                        </Style>
     46422                        <Format>image/jpeg</Format>
     46423                        <TileMatrixSetLink>
     46424                                <TileMatrixSet>PM</TileMatrixSet>
     46425                                <TileMatrixSetLimits>
     46426                                        <TileMatrixLimits>
     46427                                                <TileMatrix>0</TileMatrix>
     46428                                                <MinTileRow>0</MinTileRow>
     46429                                                <MaxTileRow>0</MaxTileRow>
     46430                                                <MinTileCol>0</MinTileCol>
     46431                                                <MaxTileCol>0</MaxTileCol>
     46432                                        </TileMatrixLimits>
     46433                                        <TileMatrixLimits>
     46434                                                <TileMatrix>1</TileMatrix>
     46435                                                <MinTileRow>0</MinTileRow>
     46436                                                <MaxTileRow>0</MaxTileRow>
     46437                                                <MinTileCol>1</MinTileCol>
     46438                                                <MaxTileCol>1</MaxTileCol>
     46439                                        </TileMatrixLimits>
     46440                                        <TileMatrixLimits>
     46441                                                <TileMatrix>10</TileMatrix>
     46442                                                <MinTileRow>345</MinTileRow>
     46443                                                <MaxTileRow>352</MaxTileRow>
     46444                                                <MinTileCol>515</MinTileCol>
     46445                                                <MaxTileCol>526</MaxTileCol>
     46446                                        </TileMatrixLimits>
     46447                                        <TileMatrixLimits>
     46448                                                <TileMatrix>11</TileMatrix>
     46449                                                <MinTileRow>691</MinTileRow>
     46450                                                <MaxTileRow>704</MaxTileRow>
     46451                                                <MinTileCol>1031</MinTileCol>
     46452                                                <MaxTileCol>1052</MaxTileCol>
     46453                                        </TileMatrixLimits>
     46454                                        <TileMatrixLimits>
     46455                                                <TileMatrix>12</TileMatrix>
     46456                                                <MinTileRow>1382</MinTileRow>
     46457                                                <MaxTileRow>1409</MaxTileRow>
     46458                                                <MinTileCol>2063</MinTileCol>
     46459                                                <MaxTileCol>2105</MaxTileCol>
     46460                                        </TileMatrixLimits>
     46461                                        <TileMatrixLimits>
     46462                                                <TileMatrix>13</TileMatrix>
     46463                                                <MinTileRow>2764</MinTileRow>
     46464                                                <MaxTileRow>2819</MaxTileRow>
     46465                                                <MinTileCol>4126</MinTileCol>
     46466                                                <MaxTileCol>4211</MaxTileCol>
     46467                                        </TileMatrixLimits>
     46468                                        <TileMatrixLimits>
     46469                                                <TileMatrix>14</TileMatrix>
     46470                                                <MinTileRow>5529</MinTileRow>
     46471                                                <MaxTileRow>5639</MaxTileRow>
     46472                                                <MinTileCol>8253</MinTileCol>
     46473                                                <MaxTileCol>8422</MaxTileCol>
     46474                                        </TileMatrixLimits>
     46475                                        <TileMatrixLimits>
     46476                                                <TileMatrix>15</TileMatrix>
     46477                                                <MinTileRow>11059</MinTileRow>
     46478                                                <MaxTileRow>11278</MaxTileRow>
     46479                                                <MinTileCol>16507</MinTileCol>
     46480                                                <MaxTileCol>16845</MaxTileCol>
     46481                                        </TileMatrixLimits>
     46482                                        <TileMatrixLimits>
     46483                                                <TileMatrix>16</TileMatrix>
     46484                                                <MinTileRow>22118</MinTileRow>
     46485                                                <MaxTileRow>22556</MaxTileRow>
     46486                                                <MinTileCol>33014</MinTileCol>
     46487                                                <MaxTileCol>33691</MaxTileCol>
     46488                                        </TileMatrixLimits>
     46489                                        <TileMatrixLimits>
     46490                                                <TileMatrix>17</TileMatrix>
     46491                                                <MinTileRow>44236</MinTileRow>
     46492                                                <MaxTileRow>45112</MaxTileRow>
     46493                                                <MinTileCol>66028</MinTileCol>
     46494                                                <MaxTileCol>67382</MaxTileCol>
     46495                                        </TileMatrixLimits>
     46496                                        <TileMatrixLimits>
     46497                                                <TileMatrix>2</TileMatrix>
     46498                                                <MinTileRow>1</MinTileRow>
     46499                                                <MaxTileRow>1</MaxTileRow>
     46500                                                <MinTileCol>2</MinTileCol>
     46501                                                <MaxTileCol>2</MaxTileCol>
     46502                                        </TileMatrixLimits>
     46503                                        <TileMatrixLimits>
     46504                                                <TileMatrix>3</TileMatrix>
     46505                                                <MinTileRow>2</MinTileRow>
     46506                                                <MaxTileRow>2</MaxTileRow>
     46507                                                <MinTileCol>4</MinTileCol>
     46508                                                <MaxTileCol>4</MaxTileCol>
     46509                                        </TileMatrixLimits>
     46510                                        <TileMatrixLimits>
     46511                                                <TileMatrix>4</TileMatrix>
     46512                                                <MinTileRow>5</MinTileRow>
     46513                                                <MaxTileRow>5</MaxTileRow>
     46514                                                <MinTileCol>8</MinTileCol>
     46515                                                <MaxTileCol>8</MaxTileCol>
     46516                                        </TileMatrixLimits>
     46517                                        <TileMatrixLimits>
     46518                                                <TileMatrix>5</TileMatrix>
     46519                                                <MinTileRow>10</MinTileRow>
     46520                                                <MaxTileRow>11</MaxTileRow>
     46521                                                <MinTileCol>16</MinTileCol>
     46522                                                <MaxTileCol>16</MaxTileCol>
     46523                                        </TileMatrixLimits>
     46524                                        <TileMatrixLimits>
     46525                                                <TileMatrix>6</TileMatrix>
     46526                                                <MinTileRow>21</MinTileRow>
     46527                                                <MaxTileRow>22</MaxTileRow>
     46528                                                <MinTileCol>32</MinTileCol>
     46529                                                <MaxTileCol>32</MaxTileCol>
     46530                                        </TileMatrixLimits>
     46531                                        <TileMatrixLimits>
     46532                                                <TileMatrix>7</TileMatrix>
     46533                                                <MinTileRow>43</MinTileRow>
     46534                                                <MaxTileRow>44</MaxTileRow>
     46535                                                <MinTileCol>64</MinTileCol>
     46536                                                <MaxTileCol>65</MaxTileCol>
     46537                                        </TileMatrixLimits>
     46538                                        <TileMatrixLimits>
     46539                                                <TileMatrix>8</TileMatrix>
     46540                                                <MinTileRow>86</MinTileRow>
     46541                                                <MaxTileRow>88</MaxTileRow>
     46542                                                <MinTileCol>128</MinTileCol>
     46543                                                <MaxTileCol>131</MaxTileCol>
     46544                                        </TileMatrixLimits>
     46545                                        <TileMatrixLimits>
     46546                                                <TileMatrix>9</TileMatrix>
     46547                                                <MinTileRow>172</MinTileRow>
     46548                                                <MaxTileRow>176</MaxTileRow>
     46549                                                <MinTileCol>257</MinTileCol>
     46550                                                <MaxTileCol>263</MaxTileCol>
     46551                                        </TileMatrixLimits>
     46552                                </TileMatrixSetLimits>
     46553                        </TileMatrixSetLink>
     46554                </Layer>
     46555                <Layer>
     46556                        <ows:Title>Orthophotographies Geosud de Poitiers</ows:Title>
     46557                        <ows:Abstract>Orthophotographies satellites de Poitiers issues du projet Geosud.</ows:Abstract>
     46558                        <ows:Keywords>
     46559                                <ows:Keyword>Photographies</ows:Keyword>
     46560                        </ows:Keywords>
     46561                        <ows:WGS84BoundingBox>
     46562                                <ows:LowerCorner>0.197286 46.511</ows:LowerCorner>
     46563                                <ows:UpperCorner>0.495178 46.7336</ows:UpperCorner>
     46564                        </ows:WGS84BoundingBox>
     46565                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_POITIERS-2013-08-02-39830444</ows:Identifier>
     46566                        <Style isDefault="true">
     46567                                <ows:Title>Données Brutes</ows:Title>
     46568                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46569                                <ows:Keywords>
     46570                                        <ows:Keyword>Défaut</ows:Keyword>
     46571                                </ows:Keywords>
     46572                                <ows:Identifier>normal</ows:Identifier>
     46573                                <LegendURL format="image/jpeg" height="200"
     46574                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46575                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46576                        </Style>
     46577                        <Format>image/jpeg</Format>
     46578                        <TileMatrixSetLink>
     46579                                <TileMatrixSet>PM</TileMatrixSet>
     46580                                <TileMatrixSetLimits>
     46581                                        <TileMatrixLimits>
     46582                                                <TileMatrix>0</TileMatrix>
     46583                                                <MinTileRow>0</MinTileRow>
     46584                                                <MaxTileRow>0</MaxTileRow>
     46585                                                <MinTileCol>0</MinTileCol>
     46586                                                <MaxTileCol>0</MaxTileCol>
     46587                                        </TileMatrixLimits>
     46588                                        <TileMatrixLimits>
     46589                                                <TileMatrix>1</TileMatrix>
     46590                                                <MinTileRow>0</MinTileRow>
     46591                                                <MaxTileRow>0</MaxTileRow>
     46592                                                <MinTileCol>1</MinTileCol>
     46593                                                <MaxTileCol>1</MaxTileCol>
     46594                                        </TileMatrixLimits>
     46595                                        <TileMatrixLimits>
     46596                                                <TileMatrix>10</TileMatrix>
     46597                                                <MinTileRow>361</MinTileRow>
     46598                                                <MaxTileRow>362</MaxTileRow>
     46599                                                <MinTileCol>512</MinTileCol>
     46600                                                <MaxTileCol>513</MaxTileCol>
     46601                                        </TileMatrixLimits>
     46602                                        <TileMatrixLimits>
     46603                                                <TileMatrix>11</TileMatrix>
     46604                                                <MinTileRow>722</MinTileRow>
     46605                                                <MaxTileRow>724</MaxTileRow>
     46606                                                <MinTileCol>1025</MinTileCol>
     46607                                                <MaxTileCol>1026</MaxTileCol>
     46608                                        </TileMatrixLimits>
     46609                                        <TileMatrixLimits>
     46610                                                <TileMatrix>12</TileMatrix>
     46611                                                <MinTileRow>1445</MinTileRow>
     46612                                                <MaxTileRow>1448</MaxTileRow>
     46613                                                <MinTileCol>2050</MinTileCol>
     46614                                                <MaxTileCol>2053</MaxTileCol>
     46615                                        </TileMatrixLimits>
     46616                                        <TileMatrixLimits>
     46617                                                <TileMatrix>13</TileMatrix>
     46618                                                <MinTileRow>2890</MinTileRow>
     46619                                                <MaxTileRow>2897</MaxTileRow>
     46620                                                <MinTileCol>4100</MinTileCol>
     46621                                                <MaxTileCol>4107</MaxTileCol>
     46622                                        </TileMatrixLimits>
     46623                                        <TileMatrixLimits>
     46624                                                <TileMatrix>14</TileMatrix>
     46625                                                <MinTileRow>5780</MinTileRow>
     46626                                                <MaxTileRow>5795</MaxTileRow>
     46627                                                <MinTileCol>8201</MinTileCol>
     46628                                                <MaxTileCol>8214</MaxTileCol>
     46629                                        </TileMatrixLimits>
     46630                                        <TileMatrixLimits>
     46631                                                <TileMatrix>15</TileMatrix>
     46632                                                <MinTileRow>11560</MinTileRow>
     46633                                                <MaxTileRow>11590</MaxTileRow>
     46634                                                <MinTileCol>16402</MinTileCol>
     46635                                                <MaxTileCol>16428</MaxTileCol>
     46636                                        </TileMatrixLimits>
     46637                                        <TileMatrixLimits>
     46638                                                <TileMatrix>16</TileMatrix>
     46639                                                <MinTileRow>23121</MinTileRow>
     46640                                                <MaxTileRow>23180</MaxTileRow>
     46641                                                <MinTileCol>32804</MinTileCol>
     46642                                                <MaxTileCol>32856</MaxTileCol>
     46643                                        </TileMatrixLimits>
     46644                                        <TileMatrixLimits>
     46645                                                <TileMatrix>17</TileMatrix>
     46646                                                <MinTileRow>46243</MinTileRow>
     46647                                                <MaxTileRow>46360</MaxTileRow>
     46648                                                <MinTileCol>65608</MinTileCol>
     46649                                                <MaxTileCol>65713</MaxTileCol>
     46650                                        </TileMatrixLimits>
     46651                                        <TileMatrixLimits>
     46652                                                <TileMatrix>18</TileMatrix>
     46653                                                <MinTileRow>92486</MinTileRow>
     46654                                                <MaxTileRow>92720</MaxTileRow>
     46655                                                <MinTileCol>131216</MinTileCol>
     46656                                                <MaxTileCol>131427</MaxTileCol>
     46657                                        </TileMatrixLimits>
     46658                                        <TileMatrixLimits>
     46659                                                <TileMatrix>2</TileMatrix>
     46660                                                <MinTileRow>1</MinTileRow>
     46661                                                <MaxTileRow>1</MaxTileRow>
     46662                                                <MinTileCol>2</MinTileCol>
     46663                                                <MaxTileCol>2</MaxTileCol>
     46664                                        </TileMatrixLimits>
     46665                                        <TileMatrixLimits>
     46666                                                <TileMatrix>3</TileMatrix>
     46667                                                <MinTileRow>2</MinTileRow>
     46668                                                <MaxTileRow>2</MaxTileRow>
     46669                                                <MinTileCol>4</MinTileCol>
     46670                                                <MaxTileCol>4</MaxTileCol>
     46671                                        </TileMatrixLimits>
     46672                                        <TileMatrixLimits>
     46673                                                <TileMatrix>4</TileMatrix>
     46674                                                <MinTileRow>5</MinTileRow>
     46675                                                <MaxTileRow>5</MaxTileRow>
     46676                                                <MinTileCol>8</MinTileCol>
     46677                                                <MaxTileCol>8</MaxTileCol>
     46678                                        </TileMatrixLimits>
     46679                                        <TileMatrixLimits>
     46680                                                <TileMatrix>5</TileMatrix>
     46681                                                <MinTileRow>11</MinTileRow>
     46682                                                <MaxTileRow>11</MaxTileRow>
     46683                                                <MinTileCol>16</MinTileCol>
     46684                                                <MaxTileCol>16</MaxTileCol>
     46685                                        </TileMatrixLimits>
     46686                                        <TileMatrixLimits>
     46687                                                <TileMatrix>6</TileMatrix>
     46688                                                <MinTileRow>22</MinTileRow>
     46689                                                <MaxTileRow>22</MaxTileRow>
     46690                                                <MinTileCol>32</MinTileCol>
     46691                                                <MaxTileCol>32</MaxTileCol>
     46692                                        </TileMatrixLimits>
     46693                                        <TileMatrixLimits>
     46694                                                <TileMatrix>7</TileMatrix>
     46695                                                <MinTileRow>45</MinTileRow>
     46696                                                <MaxTileRow>45</MaxTileRow>
     46697                                                <MinTileCol>64</MinTileCol>
     46698                                                <MaxTileCol>64</MaxTileCol>
     46699                                        </TileMatrixLimits>
     46700                                        <TileMatrixLimits>
     46701                                                <TileMatrix>8</TileMatrix>
     46702                                                <MinTileRow>90</MinTileRow>
     46703                                                <MaxTileRow>90</MaxTileRow>
     46704                                                <MinTileCol>128</MinTileCol>
     46705                                                <MaxTileCol>128</MaxTileCol>
     46706                                        </TileMatrixLimits>
     46707                                        <TileMatrixLimits>
     46708                                                <TileMatrix>9</TileMatrix>
     46709                                                <MinTileRow>180</MinTileRow>
     46710                                                <MaxTileRow>181</MaxTileRow>
     46711                                                <MinTileCol>256</MinTileCol>
     46712                                                <MaxTileCol>256</MaxTileCol>
     46713                                        </TileMatrixLimits>
     46714                                </TileMatrixSetLimits>
     46715                        </TileMatrixSetLink>
     46716                </Layer>
     46717                <Layer>
     46718                        <ows:Title>Orthophotographies Geosud de POITOU-CHARENTES 2014</ows:Title>
     46719                        <ows:Abstract>Orthophotographies satellites de POITOU-CHARENTES issues du projet Geosud.</ows:Abstract>
     46720                        <ows:Keywords>
     46721                                <ows:Keyword>Photographies</ows:Keyword>
     46722                        </ows:Keywords>
     46723                        <ows:WGS84BoundingBox>
     46724                                <ows:LowerCorner>-1.68629 45.031</ows:LowerCorner>
     46725                                <ows:UpperCorner>1.2706 47.2154</ows:UpperCorner>
     46726                        </ows:WGS84BoundingBox>
     46727                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_POITOU-CHARENTES-2014</ows:Identifier>
     46728                        <Style isDefault="true">
     46729                                <ows:Title>Données Brutes</ows:Title>
     46730                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46731                                <ows:Keywords>
     46732                                        <ows:Keyword>Défaut</ows:Keyword>
     46733                                </ows:Keywords>
     46734                                <ows:Identifier>normal</ows:Identifier>
     46735                                <LegendURL format="image/jpeg" height="200"
     46736                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46737                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46738                        </Style>
     46739                        <Format>image/jpeg</Format>
     46740                        <TileMatrixSetLink>
     46741                                <TileMatrixSet>PM</TileMatrixSet>
     46742                                <TileMatrixSetLimits>
     46743                                        <TileMatrixLimits>
     46744                                                <TileMatrix>0</TileMatrix>
     46745                                                <MinTileRow>0</MinTileRow>
     46746                                                <MaxTileRow>0</MaxTileRow>
     46747                                                <MinTileCol>0</MinTileCol>
     46748                                                <MaxTileCol>0</MaxTileCol>
     46749                                        </TileMatrixLimits>
     46750                                        <TileMatrixLimits>
     46751                                                <TileMatrix>1</TileMatrix>
     46752                                                <MinTileRow>0</MinTileRow>
     46753                                                <MaxTileRow>0</MaxTileRow>
     46754                                                <MinTileCol>0</MinTileCol>
     46755                                                <MaxTileCol>1</MaxTileCol>
     46756                                        </TileMatrixLimits>
     46757                                        <TileMatrixLimits>
     46758                                                <TileMatrix>10</TileMatrix>
     46759                                                <MinTileRow>359</MinTileRow>
     46760                                                <MaxTileRow>368</MaxTileRow>
     46761                                                <MinTileCol>507</MinTileCol>
     46762                                                <MaxTileCol>515</MaxTileCol>
     46763                                        </TileMatrixLimits>
     46764                                        <TileMatrixLimits>
     46765                                                <TileMatrix>11</TileMatrix>
     46766                                                <MinTileRow>718</MinTileRow>
     46767                                                <MaxTileRow>736</MaxTileRow>
     46768                                                <MinTileCol>1014</MinTileCol>
     46769                                                <MaxTileCol>1031</MaxTileCol>
     46770                                        </TileMatrixLimits>
     46771                                        <TileMatrixLimits>
     46772                                                <TileMatrix>12</TileMatrix>
     46773                                                <MinTileRow>1437</MinTileRow>
     46774                                                <MaxTileRow>1472</MaxTileRow>
     46775                                                <MinTileCol>2029</MinTileCol>
     46776                                                <MaxTileCol>2062</MaxTileCol>
     46777                                        </TileMatrixLimits>
     46778                                        <TileMatrixLimits>
     46779                                                <TileMatrix>13</TileMatrix>
     46780                                                <MinTileRow>2874</MinTileRow>
     46781                                                <MaxTileRow>2944</MaxTileRow>
     46782                                                <MinTileCol>4059</MinTileCol>
     46783                                                <MaxTileCol>4124</MaxTileCol>
     46784                                        </TileMatrixLimits>
     46785                                        <TileMatrixLimits>
     46786                                                <TileMatrix>14</TileMatrix>
     46787                                                <MinTileRow>5749</MinTileRow>
     46788                                                <MaxTileRow>5888</MaxTileRow>
     46789                                                <MinTileCol>8118</MinTileCol>
     46790                                                <MaxTileCol>8248</MaxTileCol>
     46791                                        </TileMatrixLimits>
     46792                                        <TileMatrixLimits>
     46793                                                <TileMatrix>15</TileMatrix>
     46794                                                <MinTileRow>11499</MinTileRow>
     46795                                                <MaxTileRow>11777</MaxTileRow>
     46796                                                <MinTileCol>16236</MinTileCol>
     46797                                                <MaxTileCol>16496</MaxTileCol>
     46798                                        </TileMatrixLimits>
     46799                                        <TileMatrixLimits>
     46800                                                <TileMatrix>16</TileMatrix>
     46801                                                <MinTileRow>22999</MinTileRow>
     46802                                                <MaxTileRow>23555</MaxTileRow>
     46803                                                <MinTileCol>32473</MinTileCol>
     46804                                                <MaxTileCol>32992</MaxTileCol>
     46805                                        </TileMatrixLimits>
     46806                                        <TileMatrixLimits>
     46807                                                <TileMatrix>17</TileMatrix>
     46808                                                <MinTileRow>45998</MinTileRow>
     46809                                                <MaxTileRow>47111</MaxTileRow>
     46810                                                <MinTileCol>64947</MinTileCol>
     46811                                                <MaxTileCol>65984</MaxTileCol>
     46812                                        </TileMatrixLimits>
     46813                                        <TileMatrixLimits>
     46814                                                <TileMatrix>2</TileMatrix>
     46815                                                <MinTileRow>1</MinTileRow>
     46816                                                <MaxTileRow>1</MaxTileRow>
     46817                                                <MinTileCol>1</MinTileCol>
     46818                                                <MaxTileCol>2</MaxTileCol>
     46819                                        </TileMatrixLimits>
     46820                                        <TileMatrixLimits>
     46821                                                <TileMatrix>3</TileMatrix>
     46822                                                <MinTileRow>2</MinTileRow>
     46823                                                <MaxTileRow>2</MaxTileRow>
     46824                                                <MinTileCol>3</MinTileCol>
     46825                                                <MaxTileCol>4</MaxTileCol>
     46826                                        </TileMatrixLimits>
     46827                                        <TileMatrixLimits>
     46828                                                <TileMatrix>4</TileMatrix>
     46829                                                <MinTileRow>5</MinTileRow>
     46830                                                <MaxTileRow>5</MaxTileRow>
     46831                                                <MinTileCol>7</MinTileCol>
     46832                                                <MaxTileCol>8</MaxTileCol>
     46833                                        </TileMatrixLimits>
     46834                                        <TileMatrixLimits>
     46835                                                <TileMatrix>5</TileMatrix>
     46836                                                <MinTileRow>11</MinTileRow>
     46837                                                <MaxTileRow>11</MaxTileRow>
     46838                                                <MinTileCol>15</MinTileCol>
     46839                                                <MaxTileCol>16</MaxTileCol>
     46840                                        </TileMatrixLimits>
     46841                                        <TileMatrixLimits>
     46842                                                <TileMatrix>6</TileMatrix>
     46843                                                <MinTileRow>22</MinTileRow>
     46844                                                <MaxTileRow>23</MaxTileRow>
     46845                                                <MinTileCol>31</MinTileCol>
     46846                                                <MaxTileCol>32</MaxTileCol>
     46847                                        </TileMatrixLimits>
     46848                                        <TileMatrixLimits>
     46849                                                <TileMatrix>7</TileMatrix>
     46850                                                <MinTileRow>44</MinTileRow>
     46851                                                <MaxTileRow>46</MaxTileRow>
     46852                                                <MinTileCol>63</MinTileCol>
     46853                                                <MaxTileCol>64</MaxTileCol>
     46854                                        </TileMatrixLimits>
     46855                                        <TileMatrixLimits>
     46856                                                <TileMatrix>8</TileMatrix>
     46857                                                <MinTileRow>89</MinTileRow>
     46858                                                <MaxTileRow>92</MaxTileRow>
     46859                                                <MinTileCol>126</MinTileCol>
     46860                                                <MaxTileCol>128</MaxTileCol>
     46861                                        </TileMatrixLimits>
     46862                                        <TileMatrixLimits>
     46863                                                <TileMatrix>9</TileMatrix>
     46864                                                <MinTileRow>179</MinTileRow>
     46865                                                <MaxTileRow>184</MaxTileRow>
     46866                                                <MinTileCol>253</MinTileCol>
     46867                                                <MaxTileCol>257</MaxTileCol>
     46868                                        </TileMatrixLimits>
     46869                                </TileMatrixSetLimits>
     46870                        </TileMatrixSetLink>
     46871                </Layer>
     46872                <Layer>
     46873                        <ows:Title>Orthophotographies Geosud de PONTAIX 2014</ows:Title>
     46874                        <ows:Abstract>Orthophotographies satellites de PONTAIX issues du projet Geosud.</ows:Abstract>
     46875                        <ows:Keywords>
     46876                                <ows:Keyword>Photographies</ows:Keyword>
     46877                        </ows:Keywords>
     46878                        <ows:WGS84BoundingBox>
     46879                                <ows:LowerCorner>5.20804 44.666</ows:LowerCorner>
     46880                                <ows:UpperCorner>5.31409 44.7941</ows:UpperCorner>
     46881                        </ows:WGS84BoundingBox>
     46882                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_PONTAIX-2014-06-26-38508996</ows:Identifier>
     46883                        <Style isDefault="true">
     46884                                <ows:Title>Données Brutes</ows:Title>
     46885                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     46886                                <ows:Keywords>
     46887                                        <ows:Keyword>Défaut</ows:Keyword>
     46888                                </ows:Keywords>
     46889                                <ows:Identifier>normal</ows:Identifier>
     46890                                <LegendURL format="image/jpeg" height="200"
     46891                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     46892                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     46893                        </Style>
     46894                        <Format>image/jpeg</Format>
     46895                        <TileMatrixSetLink>
     46896                                <TileMatrixSet>PM</TileMatrixSet>
     46897                                <TileMatrixSetLimits>
     46898                                        <TileMatrixLimits>
     46899                                                <TileMatrix>0</TileMatrix>
     46900                                                <MinTileRow>0</MinTileRow>
     46901                                                <MaxTileRow>0</MaxTileRow>
     46902                                                <MinTileCol>0</MinTileCol>
     46903                                                <MaxTileCol>0</MaxTileCol>
     46904                                        </TileMatrixLimits>
     46905                                        <TileMatrixLimits>
     46906                                                <TileMatrix>1</TileMatrix>
     46907                                                <MinTileRow>0</MinTileRow>
     46908                                                <MaxTileRow>0</MaxTileRow>
     46909                                                <MinTileCol>1</MinTileCol>
     46910                                                <MaxTileCol>1</MaxTileCol>
     46911                                        </TileMatrixLimits>
     46912                                        <TileMatrixLimits>
     46913                                                <TileMatrix>10</TileMatrix>
     46914                                                <MinTileRow>369</MinTileRow>
     46915                                                <MaxTileRow>369</MaxTileRow>
     46916                                                <MinTileCol>526</MinTileCol>
     46917                                                <MaxTileCol>527</MaxTileCol>
     46918                                        </TileMatrixLimits>
     46919                                        <TileMatrixLimits>
     46920                                                <TileMatrix>11</TileMatrix>
     46921                                                <MinTileRow>738</MinTileRow>
     46922                                                <MaxTileRow>739</MaxTileRow>
     46923                                                <MinTileCol>1053</MinTileCol>
     46924                                                <MaxTileCol>1054</MaxTileCol>
     46925                                        </TileMatrixLimits>
     46926                                        <TileMatrixLimits>
     46927                                                <TileMatrix>12</TileMatrix>
     46928                                                <MinTileRow>1476</MinTileRow>
     46929                                                <MaxTileRow>1478</MaxTileRow>
     46930                                                <MinTileCol>2107</MinTileCol>
     46931                                                <MaxTileCol>2108</MaxTileCol>
     46932                                        </TileMatrixLimits>
     46933                                        <TileMatrixLimits>
     46934                                                <TileMatrix>13</TileMatrix>
     46935                                                <MinTileRow>2953</MinTileRow>
     46936                                                <MaxTileRow>2957</MaxTileRow>
     46937                                                <MinTileCol>4214</MinTileCol>
     46938                                                <MaxTileCol>4216</MaxTileCol>
     46939                                        </TileMatrixLimits>
     46940                                        <TileMatrixLimits>
     46941                                                <TileMatrix>14</TileMatrix>
     46942                                                <MinTileRow>5906</MinTileRow>
     46943                                                <MaxTileRow>5915</MaxTileRow>
     46944                                                <MinTileCol>8429</MinTileCol>
     46945                                                <MaxTileCol>8433</MaxTileCol>
     46946                                        </TileMatrixLimits>
     46947                                        <TileMatrixLimits>
     46948                                                <TileMatrix>15</TileMatrix>
     46949                                                <MinTileRow>11813</MinTileRow>
     46950                                                <MaxTileRow>11830</MaxTileRow>
     46951                                                <MinTileCol>16858</MinTileCol>
     46952                                                <MaxTileCol>16867</MaxTileCol>
     46953                                        </TileMatrixLimits>
     46954                                        <TileMatrixLimits>
     46955                                                <TileMatrix>16</TileMatrix>
     46956                                                <MinTileRow>23627</MinTileRow>
     46957                                                <MaxTileRow>23660</MaxTileRow>
     46958                                                <MinTileCol>33716</MinTileCol>
     46959                                                <MaxTileCol>33735</MaxTileCol>
     46960                                        </TileMatrixLimits>
     46961                                        <TileMatrixLimits>
     46962                                                <TileMatrix>17</TileMatrix>
     46963                                                <MinTileRow>47255</MinTileRow>
     46964                                                <MaxTileRow>47321</MaxTileRow>
     46965                                                <MinTileCol>67432</MinTileCol>
     46966                                                <MaxTileCol>67470</MaxTileCol>
     46967                                        </TileMatrixLimits>
     46968                                        <TileMatrixLimits>
     46969                                                <TileMatrix>18</TileMatrix>
     46970                                                <MinTileRow>94511</MinTileRow>
     46971                                                <MaxTileRow>94642</MaxTileRow>
     46972                                                <MinTileCol>134864</MinTileCol>
     46973                                                <MaxTileCol>134941</MaxTileCol>
     46974                                        </TileMatrixLimits>
     46975                                        <TileMatrixLimits>
     46976                                                <TileMatrix>2</TileMatrix>
     46977                                                <MinTileRow>1</MinTileRow>
     46978                                                <MaxTileRow>1</MaxTileRow>
     46979                                                <MinTileCol>2</MinTileCol>
     46980                                                <MaxTileCol>2</MaxTileCol>
     46981                                        </TileMatrixLimits>
     46982                                        <TileMatrixLimits>
     46983                                                <TileMatrix>3</TileMatrix>
     46984                                                <MinTileRow>2</MinTileRow>
     46985                                                <MaxTileRow>2</MaxTileRow>
     46986                                                <MinTileCol>4</MinTileCol>
     46987                                                <MaxTileCol>4</MaxTileCol>
     46988                                        </TileMatrixLimits>
     46989                                        <TileMatrixLimits>
     46990                                                <TileMatrix>4</TileMatrix>
     46991                                                <MinTileRow>5</MinTileRow>
     46992                                                <MaxTileRow>5</MaxTileRow>
     46993                                                <MinTileCol>8</MinTileCol>
     46994                                                <MaxTileCol>8</MaxTileCol>
     46995                                        </TileMatrixLimits>
     46996                                        <TileMatrixLimits>
     46997                                                <TileMatrix>5</TileMatrix>
     46998                                                <MinTileRow>11</MinTileRow>
     46999                                                <MaxTileRow>11</MaxTileRow>
     47000                                                <MinTileCol>16</MinTileCol>
     47001                                                <MaxTileCol>16</MaxTileCol>
     47002                                        </TileMatrixLimits>
     47003                                        <TileMatrixLimits>
     47004                                                <TileMatrix>6</TileMatrix>
     47005                                                <MinTileRow>23</MinTileRow>
     47006                                                <MaxTileRow>23</MaxTileRow>
     47007                                                <MinTileCol>32</MinTileCol>
     47008                                                <MaxTileCol>32</MaxTileCol>
     47009                                        </TileMatrixLimits>
     47010                                        <TileMatrixLimits>
     47011                                                <TileMatrix>7</TileMatrix>
     47012                                                <MinTileRow>46</MinTileRow>
     47013                                                <MaxTileRow>46</MaxTileRow>
     47014                                                <MinTileCol>65</MinTileCol>
     47015                                                <MaxTileCol>65</MaxTileCol>
     47016                                        </TileMatrixLimits>
     47017                                        <TileMatrixLimits>
     47018                                                <TileMatrix>8</TileMatrix>
     47019                                                <MinTileRow>92</MinTileRow>
     47020                                                <MaxTileRow>92</MaxTileRow>
     47021                                                <MinTileCol>131</MinTileCol>
     47022                                                <MaxTileCol>131</MaxTileCol>
     47023                                        </TileMatrixLimits>
     47024                                        <TileMatrixLimits>
     47025                                                <TileMatrix>9</TileMatrix>
     47026                                                <MinTileRow>184</MinTileRow>
     47027                                                <MaxTileRow>184</MaxTileRow>
     47028                                                <MinTileCol>263</MinTileCol>
     47029                                                <MaxTileCol>263</MaxTileCol>
     47030                                        </TileMatrixLimits>
     47031                                </TileMatrixSetLimits>
     47032                        </TileMatrixSetLink>
     47033                </Layer>
     47034                <Layer>
     47035                        <ows:Title>Orthophotographies Geosud de QUIMPER 2014</ows:Title>
     47036                        <ows:Abstract>Orthophotographies satellites de QUIMPER issues du projet Geosud.</ows:Abstract>
     47037                        <ows:Keywords>
     47038                                <ows:Keyword>Photographies</ows:Keyword>
     47039                        </ows:Keywords>
     47040                        <ows:WGS84BoundingBox>
     47041                                <ows:LowerCorner>-4.2893 47.869</ows:LowerCorner>
     47042                                <ows:UpperCorner>-3.93994 48.1035</ows:UpperCorner>
     47043                        </ows:WGS84BoundingBox>
     47044                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_QUIMPER-2014-03-08-41149319</ows:Identifier>
     47045                        <Style isDefault="true">
     47046                                <ows:Title>Données Brutes</ows:Title>
     47047                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47048                                <ows:Keywords>
     47049                                        <ows:Keyword>Défaut</ows:Keyword>
     47050                                </ows:Keywords>
     47051                                <ows:Identifier>normal</ows:Identifier>
     47052                                <LegendURL format="image/jpeg" height="200"
     47053                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47054                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47055                        </Style>
     47056                        <Format>image/jpeg</Format>
     47057                        <TileMatrixSetLink>
     47058                                <TileMatrixSet>PM</TileMatrixSet>
     47059                                <TileMatrixSetLimits>
     47060                                        <TileMatrixLimits>
     47061                                                <TileMatrix>0</TileMatrix>
     47062                                                <MinTileRow>0</MinTileRow>
     47063                                                <MaxTileRow>0</MaxTileRow>
     47064                                                <MinTileCol>0</MinTileCol>
     47065                                                <MaxTileCol>0</MaxTileCol>
     47066                                        </TileMatrixLimits>
     47067                                        <TileMatrixLimits>
     47068                                                <TileMatrix>1</TileMatrix>
     47069                                                <MinTileRow>0</MinTileRow>
     47070                                                <MaxTileRow>0</MaxTileRow>
     47071                                                <MinTileCol>0</MinTileCol>
     47072                                                <MaxTileCol>0</MaxTileCol>
     47073                                        </TileMatrixLimits>
     47074                                        <TileMatrixLimits>
     47075                                                <TileMatrix>10</TileMatrix>
     47076                                                <MinTileRow>355</MinTileRow>
     47077                                                <MaxTileRow>356</MaxTileRow>
     47078                                                <MinTileCol>499</MinTileCol>
     47079                                                <MaxTileCol>500</MaxTileCol>
     47080                                        </TileMatrixLimits>
     47081                                        <TileMatrixLimits>
     47082                                                <TileMatrix>11</TileMatrix>
     47083                                                <MinTileRow>711</MinTileRow>
     47084                                                <MaxTileRow>712</MaxTileRow>
     47085                                                <MinTileCol>999</MinTileCol>
     47086                                                <MaxTileCol>1001</MaxTileCol>
     47087                                        </TileMatrixLimits>
     47088                                        <TileMatrixLimits>
     47089                                                <TileMatrix>12</TileMatrix>
     47090                                                <MinTileRow>1422</MinTileRow>
     47091                                                <MaxTileRow>1425</MaxTileRow>
     47092                                                <MinTileCol>1999</MinTileCol>
     47093                                                <MaxTileCol>2002</MaxTileCol>
     47094                                        </TileMatrixLimits>
     47095                                        <TileMatrixLimits>
     47096                                                <TileMatrix>13</TileMatrix>
     47097                                                <MinTileRow>2844</MinTileRow>
     47098                                                <MaxTileRow>2851</MaxTileRow>
     47099                                                <MinTileCol>3998</MinTileCol>
     47100                                                <MaxTileCol>4005</MaxTileCol>
     47101                                        </TileMatrixLimits>
     47102                                        <TileMatrixLimits>
     47103                                                <TileMatrix>14</TileMatrix>
     47104                                                <MinTileRow>5689</MinTileRow>
     47105                                                <MaxTileRow>5703</MaxTileRow>
     47106                                                <MinTileCol>7997</MinTileCol>
     47107                                                <MaxTileCol>8011</MaxTileCol>
     47108                                        </TileMatrixLimits>
     47109                                        <TileMatrixLimits>
     47110                                                <TileMatrix>15</TileMatrix>
     47111                                                <MinTileRow>11378</MinTileRow>
     47112                                                <MaxTileRow>11406</MaxTileRow>
     47113                                                <MinTileCol>15995</MinTileCol>
     47114                                                <MaxTileCol>16023</MaxTileCol>
     47115                                        </TileMatrixLimits>
     47116                                        <TileMatrixLimits>
     47117                                                <TileMatrix>16</TileMatrix>
     47118                                                <MinTileRow>22756</MinTileRow>
     47119                                                <MaxTileRow>22813</MaxTileRow>
     47120                                                <MinTileCol>31991</MinTileCol>
     47121                                                <MaxTileCol>32046</MaxTileCol>
     47122                                        </TileMatrixLimits>
     47123                                        <TileMatrixLimits>
     47124                                                <TileMatrix>17</TileMatrix>
     47125                                                <MinTileRow>45512</MinTileRow>
     47126                                                <MaxTileRow>45627</MaxTileRow>
     47127                                                <MinTileCol>63983</MinTileCol>
     47128                                                <MaxTileCol>64093</MaxTileCol>
     47129                                        </TileMatrixLimits>
     47130                                        <TileMatrixLimits>
     47131                                                <TileMatrix>18</TileMatrix>
     47132                                                <MinTileRow>91025</MinTileRow>
     47133                                                <MaxTileRow>91255</MaxTileRow>
     47134                                                <MinTileCol>127966</MinTileCol>
     47135                                                <MaxTileCol>128186</MaxTileCol>
     47136                                        </TileMatrixLimits>
     47137                                        <TileMatrixLimits>
     47138                                                <TileMatrix>2</TileMatrix>
     47139                                                <MinTileRow>1</MinTileRow>
     47140                                                <MaxTileRow>1</MaxTileRow>
     47141                                                <MinTileCol>1</MinTileCol>
     47142                                                <MaxTileCol>1</MaxTileCol>
     47143                                        </TileMatrixLimits>
     47144                                        <TileMatrixLimits>
     47145                                                <TileMatrix>3</TileMatrix>
     47146                                                <MinTileRow>2</MinTileRow>
     47147                                                <MaxTileRow>2</MaxTileRow>
     47148                                                <MinTileCol>3</MinTileCol>
     47149                                                <MaxTileCol>3</MaxTileCol>
     47150                                        </TileMatrixLimits>
     47151                                        <TileMatrixLimits>
     47152                                                <TileMatrix>4</TileMatrix>
     47153                                                <MinTileRow>5</MinTileRow>
     47154                                                <MaxTileRow>5</MaxTileRow>
     47155                                                <MinTileCol>7</MinTileCol>
     47156                                                <MaxTileCol>7</MaxTileCol>
     47157                                        </TileMatrixLimits>
     47158                                        <TileMatrixLimits>
     47159                                                <TileMatrix>5</TileMatrix>
     47160                                                <MinTileRow>11</MinTileRow>
     47161                                                <MaxTileRow>11</MaxTileRow>
     47162                                                <MinTileCol>15</MinTileCol>
     47163                                                <MaxTileCol>15</MaxTileCol>
     47164                                        </TileMatrixLimits>
     47165                                        <TileMatrixLimits>
     47166                                                <TileMatrix>6</TileMatrix>
     47167                                                <MinTileRow>22</MinTileRow>
     47168                                                <MaxTileRow>22</MaxTileRow>
     47169                                                <MinTileCol>31</MinTileCol>
     47170                                                <MaxTileCol>31</MaxTileCol>
     47171                                        </TileMatrixLimits>
     47172                                        <TileMatrixLimits>
     47173                                                <TileMatrix>7</TileMatrix>
     47174                                                <MinTileRow>44</MinTileRow>
     47175                                                <MaxTileRow>44</MaxTileRow>
     47176                                                <MinTileCol>62</MinTileCol>
     47177                                                <MaxTileCol>62</MaxTileCol>
     47178                                        </TileMatrixLimits>
     47179                                        <TileMatrixLimits>
     47180                                                <TileMatrix>8</TileMatrix>
     47181                                                <MinTileRow>88</MinTileRow>
     47182                                                <MaxTileRow>89</MaxTileRow>
     47183                                                <MinTileCol>124</MinTileCol>
     47184                                                <MaxTileCol>125</MaxTileCol>
     47185                                        </TileMatrixLimits>
     47186                                        <TileMatrixLimits>
     47187                                                <TileMatrix>9</TileMatrix>
     47188                                                <MinTileRow>177</MinTileRow>
     47189                                                <MaxTileRow>178</MaxTileRow>
     47190                                                <MinTileCol>249</MinTileCol>
     47191                                                <MaxTileCol>250</MaxTileCol>
     47192                                        </TileMatrixLimits>
     47193                                </TileMatrixSetLimits>
     47194                        </TileMatrixSetLink>
     47195                </Layer>
     47196                <Layer>
     47197                        <ows:Title>Orthophotographies Geosud de RENNES-2 2014</ows:Title>
     47198                        <ows:Abstract>Orthophotographies satellites de RENNES-2 issues du projet Geosud.</ows:Abstract>
     47199                        <ows:Keywords>
     47200                                <ows:Keyword>Photographies</ows:Keyword>
     47201                        </ows:Keywords>
     47202                        <ows:WGS84BoundingBox>
     47203                                <ows:LowerCorner>-1.87285 48.0022</ows:LowerCorner>
     47204                                <ows:UpperCorner>-1.57602 48.1841</ows:UpperCorner>
     47205                        </ows:WGS84BoundingBox>
     47206                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2-2014-09-26-40946704</ows:Identifier>
     47207                        <Style isDefault="true">
     47208                                <ows:Title>Données Brutes</ows:Title>
     47209                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47210                                <ows:Keywords>
     47211                                        <ows:Keyword>Défaut</ows:Keyword>
     47212                                </ows:Keywords>
     47213                                <ows:Identifier>normal</ows:Identifier>
     47214                                <LegendURL format="image/jpeg" height="200"
     47215                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47216                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47217                        </Style>
     47218                        <Format>image/jpeg</Format>
     47219                        <TileMatrixSetLink>
     47220                                <TileMatrixSet>PM</TileMatrixSet>
     47221                                <TileMatrixSetLimits>
     47222                                        <TileMatrixLimits>
     47223                                                <TileMatrix>0</TileMatrix>
     47224                                                <MinTileRow>0</MinTileRow>
     47225                                                <MaxTileRow>0</MaxTileRow>
     47226                                                <MinTileCol>0</MinTileCol>
     47227                                                <MaxTileCol>0</MaxTileCol>
     47228                                        </TileMatrixLimits>
     47229                                        <TileMatrixLimits>
     47230                                                <TileMatrix>1</TileMatrix>
     47231                                                <MinTileRow>0</MinTileRow>
     47232                                                <MaxTileRow>0</MaxTileRow>
     47233                                                <MinTileCol>0</MinTileCol>
     47234                                                <MaxTileCol>0</MaxTileCol>
     47235                                        </TileMatrixLimits>
     47236                                        <TileMatrixLimits>
     47237                                                <TileMatrix>10</TileMatrix>
     47238                                                <MinTileRow>355</MinTileRow>
     47239                                                <MaxTileRow>355</MaxTileRow>
     47240                                                <MinTileCol>506</MinTileCol>
     47241                                                <MaxTileCol>507</MaxTileCol>
     47242                                        </TileMatrixLimits>
     47243                                        <TileMatrixLimits>
     47244                                                <TileMatrix>11</TileMatrix>
     47245                                                <MinTileRow>710</MinTileRow>
     47246                                                <MaxTileRow>711</MaxTileRow>
     47247                                                <MinTileCol>1013</MinTileCol>
     47248                                                <MaxTileCol>1015</MaxTileCol>
     47249                                        </TileMatrixLimits>
     47250                                        <TileMatrixLimits>
     47251                                                <TileMatrix>12</TileMatrix>
     47252                                                <MinTileRow>1420</MinTileRow>
     47253                                                <MaxTileRow>1423</MaxTileRow>
     47254                                                <MinTileCol>2026</MinTileCol>
     47255                                                <MaxTileCol>2030</MaxTileCol>
     47256                                        </TileMatrixLimits>
     47257                                        <TileMatrixLimits>
     47258                                                <TileMatrix>13</TileMatrix>
     47259                                                <MinTileRow>2841</MinTileRow>
     47260                                                <MaxTileRow>2847</MaxTileRow>
     47261                                                <MinTileCol>4053</MinTileCol>
     47262                                                <MaxTileCol>4060</MaxTileCol>
     47263                                        </TileMatrixLimits>
     47264                                        <TileMatrixLimits>
     47265                                                <TileMatrix>14</TileMatrix>
     47266                                                <MinTileRow>5683</MinTileRow>
     47267                                                <MaxTileRow>5694</MaxTileRow>
     47268                                                <MinTileCol>8106</MinTileCol>
     47269                                                <MaxTileCol>8120</MaxTileCol>
     47270                                        </TileMatrixLimits>
     47271                                        <TileMatrixLimits>
     47272                                                <TileMatrix>15</TileMatrix>
     47273                                                <MinTileRow>11366</MinTileRow>
     47274                                                <MaxTileRow>11389</MaxTileRow>
     47275                                                <MinTileCol>16213</MinTileCol>
     47276                                                <MaxTileCol>16240</MaxTileCol>
     47277                                        </TileMatrixLimits>
     47278                                        <TileMatrixLimits>
     47279                                                <TileMatrix>16</TileMatrix>
     47280                                                <MinTileRow>22733</MinTileRow>
     47281                                                <MaxTileRow>22778</MaxTileRow>
     47282                                                <MinTileCol>32427</MinTileCol>
     47283                                                <MaxTileCol>32480</MaxTileCol>
     47284                                        </TileMatrixLimits>
     47285                                        <TileMatrixLimits>
     47286                                                <TileMatrix>17</TileMatrix>
     47287                                                <MinTileRow>45467</MinTileRow>
     47288                                                <MaxTileRow>45556</MaxTileRow>
     47289                                                <MinTileCol>64855</MinTileCol>
     47290                                                <MaxTileCol>64961</MaxTileCol>
     47291                                        </TileMatrixLimits>
     47292                                        <TileMatrixLimits>
     47293                                                <TileMatrix>18</TileMatrix>
     47294                                                <MinTileRow>90935</MinTileRow>
     47295                                                <MaxTileRow>91112</MaxTileRow>
     47296                                                <MinTileCol>129711</MinTileCol>
     47297                                                <MaxTileCol>129923</MaxTileCol>
     47298                                        </TileMatrixLimits>
     47299                                        <TileMatrixLimits>
     47300                                                <TileMatrix>2</TileMatrix>
     47301                                                <MinTileRow>1</MinTileRow>
     47302                                                <MaxTileRow>1</MaxTileRow>
     47303                                                <MinTileCol>1</MinTileCol>
     47304                                                <MaxTileCol>1</MaxTileCol>
     47305                                        </TileMatrixLimits>
     47306                                        <TileMatrixLimits>
     47307                                                <TileMatrix>3</TileMatrix>
     47308                                                <MinTileRow>2</MinTileRow>
     47309                                                <MaxTileRow>2</MaxTileRow>
     47310                                                <MinTileCol>3</MinTileCol>
     47311                                                <MaxTileCol>3</MaxTileCol>
     47312                                        </TileMatrixLimits>
     47313                                        <TileMatrixLimits>
     47314                                                <TileMatrix>4</TileMatrix>
     47315                                                <MinTileRow>5</MinTileRow>
     47316                                                <MaxTileRow>5</MaxTileRow>
     47317                                                <MinTileCol>7</MinTileCol>
     47318                                                <MaxTileCol>7</MaxTileCol>
     47319                                        </TileMatrixLimits>
     47320                                        <TileMatrixLimits>
     47321                                                <TileMatrix>5</TileMatrix>
     47322                                                <MinTileRow>11</MinTileRow>
     47323                                                <MaxTileRow>11</MaxTileRow>
     47324                                                <MinTileCol>15</MinTileCol>
     47325                                                <MaxTileCol>15</MaxTileCol>
     47326                                        </TileMatrixLimits>
     47327                                        <TileMatrixLimits>
     47328                                                <TileMatrix>6</TileMatrix>
     47329                                                <MinTileRow>22</MinTileRow>
     47330                                                <MaxTileRow>22</MaxTileRow>
     47331                                                <MinTileCol>31</MinTileCol>
     47332                                                <MaxTileCol>31</MaxTileCol>
     47333                                        </TileMatrixLimits>
     47334                                        <TileMatrixLimits>
     47335                                                <TileMatrix>7</TileMatrix>
     47336                                                <MinTileRow>44</MinTileRow>
     47337                                                <MaxTileRow>44</MaxTileRow>
     47338                                                <MinTileCol>63</MinTileCol>
     47339                                                <MaxTileCol>63</MaxTileCol>
     47340                                        </TileMatrixLimits>
     47341                                        <TileMatrixLimits>
     47342                                                <TileMatrix>8</TileMatrix>
     47343                                                <MinTileRow>88</MinTileRow>
     47344                                                <MaxTileRow>88</MaxTileRow>
     47345                                                <MinTileCol>126</MinTileCol>
     47346                                                <MaxTileCol>126</MaxTileCol>
     47347                                        </TileMatrixLimits>
     47348                                        <TileMatrixLimits>
     47349                                                <TileMatrix>9</TileMatrix>
     47350                                                <MinTileRow>177</MinTileRow>
     47351                                                <MaxTileRow>177</MaxTileRow>
     47352                                                <MinTileCol>253</MinTileCol>
     47353                                                <MaxTileCol>253</MaxTileCol>
     47354                                        </TileMatrixLimits>
     47355                                </TileMatrixSetLimits>
     47356                        </TileMatrixSetLink>
     47357                </Layer>
     47358                <Layer>
     47359                        <ows:Title>Orthophotographies Geosud de RENNES 2013</ows:Title>
     47360                        <ows:Abstract>Orthophotographies Geosud de RENNES 2013</ows:Abstract>
     47361                        <ows:Keywords>
     47362                                <ows:Keyword>Photographies</ows:Keyword>
     47363                        </ows:Keywords>
     47364                        <ows:WGS84BoundingBox>
     47365                                <ows:LowerCorner>-1.83503 47.9769</ows:LowerCorner>
     47366                                <ows:UpperCorner>-1.52016 48.2131</ows:UpperCorner>
     47367                        </ows:WGS84BoundingBox>
     47368                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2013-08-14-40257648</ows:Identifier>
     47369                        <Style isDefault="true">
     47370                                <ows:Title>Données Brutes</ows:Title>
     47371                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47372                                <ows:Keywords>
     47373                                        <ows:Keyword>Défaut</ows:Keyword>
     47374                                </ows:Keywords>
     47375                                <ows:Identifier>normal</ows:Identifier>
     47376                                <LegendURL format="image/jpeg" height="200"
     47377                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47378                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47379                        </Style>
     47380                        <Format>image/jpeg</Format>
     47381                        <TileMatrixSetLink>
     47382                                <TileMatrixSet>PM</TileMatrixSet>
     47383                                <TileMatrixSetLimits>
     47384                                        <TileMatrixLimits>
     47385                                                <TileMatrix>0</TileMatrix>
     47386                                                <MinTileRow>0</MinTileRow>
     47387                                                <MaxTileRow>0</MaxTileRow>
     47388                                                <MinTileCol>0</MinTileCol>
     47389                                                <MaxTileCol>0</MaxTileCol>
     47390                                        </TileMatrixLimits>
     47391                                        <TileMatrixLimits>
     47392                                                <TileMatrix>1</TileMatrix>
     47393                                                <MinTileRow>0</MinTileRow>
     47394                                                <MaxTileRow>0</MaxTileRow>
     47395                                                <MinTileCol>0</MinTileCol>
     47396                                                <MaxTileCol>0</MaxTileCol>
     47397                                        </TileMatrixLimits>
     47398                                        <TileMatrixLimits>
     47399                                                <TileMatrix>10</TileMatrix>
     47400                                                <MinTileRow>355</MinTileRow>
     47401                                                <MaxTileRow>356</MaxTileRow>
     47402                                                <MinTileCol>506</MinTileCol>
     47403                                                <MaxTileCol>507</MaxTileCol>
     47404                                        </TileMatrixLimits>
     47405                                        <TileMatrixLimits>
     47406                                                <TileMatrix>11</TileMatrix>
     47407                                                <MinTileRow>710</MinTileRow>
     47408                                                <MaxTileRow>712</MaxTileRow>
     47409                                                <MinTileCol>1013</MinTileCol>
     47410                                                <MaxTileCol>1015</MaxTileCol>
     47411                                        </TileMatrixLimits>
     47412                                        <TileMatrixLimits>
     47413                                                <TileMatrix>12</TileMatrix>
     47414                                                <MinTileRow>1420</MinTileRow>
     47415                                                <MaxTileRow>1424</MaxTileRow>
     47416                                                <MinTileCol>2027</MinTileCol>
     47417                                                <MaxTileCol>2030</MaxTileCol>
     47418                                        </TileMatrixLimits>
     47419                                        <TileMatrixLimits>
     47420                                                <TileMatrix>13</TileMatrix>
     47421                                                <MinTileRow>2840</MinTileRow>
     47422                                                <MaxTileRow>2848</MaxTileRow>
     47423                                                <MinTileCol>4054</MinTileCol>
     47424                                                <MaxTileCol>4061</MaxTileCol>
     47425                                        </TileMatrixLimits>
     47426                                        <TileMatrixLimits>
     47427                                                <TileMatrix>14</TileMatrix>
     47428                                                <MinTileRow>5680</MinTileRow>
     47429                                                <MaxTileRow>5696</MaxTileRow>
     47430                                                <MinTileCol>8108</MinTileCol>
     47431                                                <MaxTileCol>8122</MaxTileCol>
     47432                                        </TileMatrixLimits>
     47433                                        <TileMatrixLimits>
     47434                                                <TileMatrix>15</TileMatrix>
     47435                                                <MinTileRow>11361</MinTileRow>
     47436                                                <MaxTileRow>11392</MaxTileRow>
     47437                                                <MinTileCol>16217</MinTileCol>
     47438                                                <MaxTileCol>16244</MaxTileCol>
     47439                                        </TileMatrixLimits>
     47440                                        <TileMatrixLimits>
     47441                                                <TileMatrix>16</TileMatrix>
     47442                                                <MinTileRow>22723</MinTileRow>
     47443                                                <MaxTileRow>22785</MaxTileRow>
     47444                                                <MinTileCol>32435</MinTileCol>
     47445                                                <MaxTileCol>32489</MaxTileCol>
     47446                                        </TileMatrixLimits>
     47447                                        <TileMatrixLimits>
     47448                                                <TileMatrix>17</TileMatrix>
     47449                                                <MinTileRow>45446</MinTileRow>
     47450                                                <MaxTileRow>45570</MaxTileRow>
     47451                                                <MinTileCol>64871</MinTileCol>
     47452                                                <MaxTileCol>64978</MaxTileCol>
     47453                                        </TileMatrixLimits>
     47454                                        <TileMatrixLimits>
     47455                                                <TileMatrix>18</TileMatrix>
     47456                                                <MinTileRow>90892</MinTileRow>
     47457                                                <MaxTileRow>91140</MaxTileRow>
     47458                                                <MinTileCol>129743</MinTileCol>
     47459                                                <MaxTileCol>129957</MaxTileCol>
     47460                                        </TileMatrixLimits>
     47461                                        <TileMatrixLimits>
     47462                                                <TileMatrix>2</TileMatrix>
     47463                                                <MinTileRow>1</MinTileRow>
     47464                                                <MaxTileRow>1</MaxTileRow>
     47465                                                <MinTileCol>1</MinTileCol>
     47466                                                <MaxTileCol>1</MaxTileCol>
     47467                                        </TileMatrixLimits>
     47468                                        <TileMatrixLimits>
     47469                                                <TileMatrix>3</TileMatrix>
     47470                                                <MinTileRow>2</MinTileRow>
     47471                                                <MaxTileRow>2</MaxTileRow>
     47472                                                <MinTileCol>3</MinTileCol>
     47473                                                <MaxTileCol>3</MaxTileCol>
     47474                                        </TileMatrixLimits>
     47475                                        <TileMatrixLimits>
     47476                                                <TileMatrix>4</TileMatrix>
     47477                                                <MinTileRow>5</MinTileRow>
     47478                                                <MaxTileRow>5</MaxTileRow>
     47479                                                <MinTileCol>7</MinTileCol>
     47480                                                <MaxTileCol>7</MaxTileCol>
     47481                                        </TileMatrixLimits>
     47482                                        <TileMatrixLimits>
     47483                                                <TileMatrix>5</TileMatrix>
     47484                                                <MinTileRow>11</MinTileRow>
     47485                                                <MaxTileRow>11</MaxTileRow>
     47486                                                <MinTileCol>15</MinTileCol>
     47487                                                <MaxTileCol>15</MaxTileCol>
     47488                                        </TileMatrixLimits>
     47489                                        <TileMatrixLimits>
     47490                                                <TileMatrix>6</TileMatrix>
     47491                                                <MinTileRow>22</MinTileRow>
     47492                                                <MaxTileRow>22</MaxTileRow>
     47493                                                <MinTileCol>31</MinTileCol>
     47494                                                <MaxTileCol>31</MaxTileCol>
     47495                                        </TileMatrixLimits>
     47496                                        <TileMatrixLimits>
     47497                                                <TileMatrix>7</TileMatrix>
     47498                                                <MinTileRow>44</MinTileRow>
     47499                                                <MaxTileRow>44</MaxTileRow>
     47500                                                <MinTileCol>63</MinTileCol>
     47501                                                <MaxTileCol>63</MaxTileCol>
     47502                                        </TileMatrixLimits>
     47503                                        <TileMatrixLimits>
     47504                                                <TileMatrix>8</TileMatrix>
     47505                                                <MinTileRow>88</MinTileRow>
     47506                                                <MaxTileRow>89</MaxTileRow>
     47507                                                <MinTileCol>126</MinTileCol>
     47508                                                <MaxTileCol>126</MaxTileCol>
     47509                                        </TileMatrixLimits>
     47510                                        <TileMatrixLimits>
     47511                                                <TileMatrix>9</TileMatrix>
     47512                                                <MinTileRow>177</MinTileRow>
     47513                                                <MaxTileRow>178</MaxTileRow>
     47514                                                <MinTileCol>253</MinTileCol>
     47515                                                <MaxTileCol>253</MaxTileCol>
     47516                                        </TileMatrixLimits>
     47517                                </TileMatrixSetLimits>
     47518                        </TileMatrixSetLink>
     47519                </Layer>
     47520                <Layer>
     47521                        <ows:Title>Orthophotographies Geosud de RENNES 2013</ows:Title>
     47522                        <ows:Abstract>Orthophotographies Geosud de RENNES 2013</ows:Abstract>
     47523                        <ows:Keywords>
     47524                                <ows:Keyword>Photographies</ows:Keyword>
     47525                        </ows:Keywords>
     47526                        <ows:WGS84BoundingBox>
     47527                                <ows:LowerCorner>-1.83503 47.9769</ows:LowerCorner>
     47528                                <ows:UpperCorner>-1.52016 48.2131</ows:UpperCorner>
     47529                        </ows:WGS84BoundingBox>
     47530                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2013-08-14-40272509</ows:Identifier>
     47531                        <Style isDefault="true">
     47532                                <ows:Title>Données Brutes</ows:Title>
     47533                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47534                                <ows:Keywords>
     47535                                        <ows:Keyword>Défaut</ows:Keyword>
     47536                                </ows:Keywords>
     47537                                <ows:Identifier>normal</ows:Identifier>
     47538                                <LegendURL format="image/jpeg" height="200"
     47539                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47540                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47541                        </Style>
     47542                        <Format>image/jpeg</Format>
     47543                        <TileMatrixSetLink>
     47544                                <TileMatrixSet>PM</TileMatrixSet>
     47545                                <TileMatrixSetLimits>
     47546                                        <TileMatrixLimits>
     47547                                                <TileMatrix>0</TileMatrix>
     47548                                                <MinTileRow>0</MinTileRow>
     47549                                                <MaxTileRow>0</MaxTileRow>
     47550                                                <MinTileCol>0</MinTileCol>
     47551                                                <MaxTileCol>0</MaxTileCol>
     47552                                        </TileMatrixLimits>
     47553                                        <TileMatrixLimits>
     47554                                                <TileMatrix>1</TileMatrix>
     47555                                                <MinTileRow>0</MinTileRow>
     47556                                                <MaxTileRow>0</MaxTileRow>
     47557                                                <MinTileCol>0</MinTileCol>
     47558                                                <MaxTileCol>0</MaxTileCol>
     47559                                        </TileMatrixLimits>
     47560                                        <TileMatrixLimits>
     47561                                                <TileMatrix>10</TileMatrix>
     47562                                                <MinTileRow>355</MinTileRow>
     47563                                                <MaxTileRow>356</MaxTileRow>
     47564                                                <MinTileCol>506</MinTileCol>
     47565                                                <MaxTileCol>507</MaxTileCol>
     47566                                        </TileMatrixLimits>
     47567                                        <TileMatrixLimits>
     47568                                                <TileMatrix>11</TileMatrix>
     47569                                                <MinTileRow>710</MinTileRow>
     47570                                                <MaxTileRow>712</MaxTileRow>
     47571                                                <MinTileCol>1013</MinTileCol>
     47572                                                <MaxTileCol>1015</MaxTileCol>
     47573                                        </TileMatrixLimits>
     47574                                        <TileMatrixLimits>
     47575                                                <TileMatrix>12</TileMatrix>
     47576                                                <MinTileRow>1420</MinTileRow>
     47577                                                <MaxTileRow>1424</MaxTileRow>
     47578                                                <MinTileCol>2027</MinTileCol>
     47579                                                <MaxTileCol>2030</MaxTileCol>
     47580                                        </TileMatrixLimits>
     47581                                        <TileMatrixLimits>
     47582                                                <TileMatrix>13</TileMatrix>
     47583                                                <MinTileRow>2840</MinTileRow>
     47584                                                <MaxTileRow>2848</MaxTileRow>
     47585                                                <MinTileCol>4054</MinTileCol>
     47586                                                <MaxTileCol>4061</MaxTileCol>
     47587                                        </TileMatrixLimits>
     47588                                        <TileMatrixLimits>
     47589                                                <TileMatrix>14</TileMatrix>
     47590                                                <MinTileRow>5680</MinTileRow>
     47591                                                <MaxTileRow>5696</MaxTileRow>
     47592                                                <MinTileCol>8108</MinTileCol>
     47593                                                <MaxTileCol>8122</MaxTileCol>
     47594                                        </TileMatrixLimits>
     47595                                        <TileMatrixLimits>
     47596                                                <TileMatrix>15</TileMatrix>
     47597                                                <MinTileRow>11361</MinTileRow>
     47598                                                <MaxTileRow>11392</MaxTileRow>
     47599                                                <MinTileCol>16217</MinTileCol>
     47600                                                <MaxTileCol>16244</MaxTileCol>
     47601                                        </TileMatrixLimits>
     47602                                        <TileMatrixLimits>
     47603                                                <TileMatrix>16</TileMatrix>
     47604                                                <MinTileRow>22723</MinTileRow>
     47605                                                <MaxTileRow>22785</MaxTileRow>
     47606                                                <MinTileCol>32435</MinTileCol>
     47607                                                <MaxTileCol>32489</MaxTileCol>
     47608                                        </TileMatrixLimits>
     47609                                        <TileMatrixLimits>
     47610                                                <TileMatrix>17</TileMatrix>
     47611                                                <MinTileRow>45446</MinTileRow>
     47612                                                <MaxTileRow>45570</MaxTileRow>
     47613                                                <MinTileCol>64871</MinTileCol>
     47614                                                <MaxTileCol>64978</MaxTileCol>
     47615                                        </TileMatrixLimits>
     47616                                        <TileMatrixLimits>
     47617                                                <TileMatrix>18</TileMatrix>
     47618                                                <MinTileRow>90892</MinTileRow>
     47619                                                <MaxTileRow>91140</MaxTileRow>
     47620                                                <MinTileCol>129743</MinTileCol>
     47621                                                <MaxTileCol>129957</MaxTileCol>
     47622                                        </TileMatrixLimits>
     47623                                        <TileMatrixLimits>
     47624                                                <TileMatrix>2</TileMatrix>
     47625                                                <MinTileRow>1</MinTileRow>
     47626                                                <MaxTileRow>1</MaxTileRow>
     47627                                                <MinTileCol>1</MinTileCol>
     47628                                                <MaxTileCol>1</MaxTileCol>
     47629                                        </TileMatrixLimits>
     47630                                        <TileMatrixLimits>
     47631                                                <TileMatrix>3</TileMatrix>
     47632                                                <MinTileRow>2</MinTileRow>
     47633                                                <MaxTileRow>2</MaxTileRow>
     47634                                                <MinTileCol>3</MinTileCol>
     47635                                                <MaxTileCol>3</MaxTileCol>
     47636                                        </TileMatrixLimits>
     47637                                        <TileMatrixLimits>
     47638                                                <TileMatrix>4</TileMatrix>
     47639                                                <MinTileRow>5</MinTileRow>
     47640                                                <MaxTileRow>5</MaxTileRow>
     47641                                                <MinTileCol>7</MinTileCol>
     47642                                                <MaxTileCol>7</MaxTileCol>
     47643                                        </TileMatrixLimits>
     47644                                        <TileMatrixLimits>
     47645                                                <TileMatrix>5</TileMatrix>
     47646                                                <MinTileRow>11</MinTileRow>
     47647                                                <MaxTileRow>11</MaxTileRow>
     47648                                                <MinTileCol>15</MinTileCol>
     47649                                                <MaxTileCol>15</MaxTileCol>
     47650                                        </TileMatrixLimits>
     47651                                        <TileMatrixLimits>
     47652                                                <TileMatrix>6</TileMatrix>
     47653                                                <MinTileRow>22</MinTileRow>
     47654                                                <MaxTileRow>22</MaxTileRow>
     47655                                                <MinTileCol>31</MinTileCol>
     47656                                                <MaxTileCol>31</MaxTileCol>
     47657                                        </TileMatrixLimits>
     47658                                        <TileMatrixLimits>
     47659                                                <TileMatrix>7</TileMatrix>
     47660                                                <MinTileRow>44</MinTileRow>
     47661                                                <MaxTileRow>44</MaxTileRow>
     47662                                                <MinTileCol>63</MinTileCol>
     47663                                                <MaxTileCol>63</MaxTileCol>
     47664                                        </TileMatrixLimits>
     47665                                        <TileMatrixLimits>
     47666                                                <TileMatrix>8</TileMatrix>
     47667                                                <MinTileRow>88</MinTileRow>
     47668                                                <MaxTileRow>89</MaxTileRow>
     47669                                                <MinTileCol>126</MinTileCol>
     47670                                                <MaxTileCol>126</MaxTileCol>
     47671                                        </TileMatrixLimits>
     47672                                        <TileMatrixLimits>
     47673                                                <TileMatrix>9</TileMatrix>
     47674                                                <MinTileRow>177</MinTileRow>
     47675                                                <MaxTileRow>178</MaxTileRow>
     47676                                                <MinTileCol>253</MinTileCol>
     47677                                                <MaxTileCol>253</MaxTileCol>
     47678                                        </TileMatrixLimits>
     47679                                </TileMatrixSetLimits>
     47680                        </TileMatrixSetLink>
     47681                </Layer>
     47682                <Layer>
     47683                        <ows:Title>Orthophotographies Geosud de RENNES 2014</ows:Title>
     47684                        <ows:Abstract>Orthophotographies Geosud de RENNES 2014</ows:Abstract>
     47685                        <ows:Keywords>
     47686                                <ows:Keyword>Photographies</ows:Keyword>
     47687                        </ows:Keywords>
     47688                        <ows:WGS84BoundingBox>
     47689                                <ows:LowerCorner>-1.877 48.0022</ows:LowerCorner>
     47690                                <ows:UpperCorner>-1.56263 48.2296</ows:UpperCorner>
     47691                        </ows:WGS84BoundingBox>
     47692                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2014-09-27-40479133</ows:Identifier>
     47693                        <Style isDefault="true">
     47694                                <ows:Title>Données Brutes</ows:Title>
     47695                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47696                                <ows:Keywords>
     47697                                        <ows:Keyword>Défaut</ows:Keyword>
     47698                                </ows:Keywords>
     47699                                <ows:Identifier>normal</ows:Identifier>
     47700                                <LegendURL format="image/jpeg" height="200"
     47701                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47702                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47703                        </Style>
     47704                        <Format>image/jpeg</Format>
     47705                        <TileMatrixSetLink>
     47706                                <TileMatrixSet>PM</TileMatrixSet>
     47707                                <TileMatrixSetLimits>
     47708                                        <TileMatrixLimits>
     47709                                                <TileMatrix>0</TileMatrix>
     47710                                                <MinTileRow>0</MinTileRow>
     47711                                                <MaxTileRow>0</MaxTileRow>
     47712                                                <MinTileCol>0</MinTileCol>
     47713                                                <MaxTileCol>0</MaxTileCol>
     47714                                        </TileMatrixLimits>
     47715                                        <TileMatrixLimits>
     47716                                                <TileMatrix>1</TileMatrix>
     47717                                                <MinTileRow>0</MinTileRow>
     47718                                                <MaxTileRow>0</MaxTileRow>
     47719                                                <MinTileCol>0</MinTileCol>
     47720                                                <MaxTileCol>0</MaxTileCol>
     47721                                        </TileMatrixLimits>
     47722                                        <TileMatrixLimits>
     47723                                                <TileMatrix>10</TileMatrix>
     47724                                                <MinTileRow>355</MinTileRow>
     47725                                                <MaxTileRow>355</MaxTileRow>
     47726                                                <MinTileCol>506</MinTileCol>
     47727                                                <MaxTileCol>507</MaxTileCol>
     47728                                        </TileMatrixLimits>
     47729                                        <TileMatrixLimits>
     47730                                                <TileMatrix>11</TileMatrix>
     47731                                                <MinTileRow>710</MinTileRow>
     47732                                                <MaxTileRow>711</MaxTileRow>
     47733                                                <MinTileCol>1013</MinTileCol>
     47734                                                <MaxTileCol>1015</MaxTileCol>
     47735                                        </TileMatrixLimits>
     47736                                        <TileMatrixLimits>
     47737                                                <TileMatrix>12</TileMatrix>
     47738                                                <MinTileRow>1420</MinTileRow>
     47739                                                <MaxTileRow>1423</MaxTileRow>
     47740                                                <MinTileCol>2026</MinTileCol>
     47741                                                <MaxTileCol>2030</MaxTileCol>
     47742                                        </TileMatrixLimits>
     47743                                        <TileMatrixLimits>
     47744                                                <TileMatrix>13</TileMatrix>
     47745                                                <MinTileRow>2840</MinTileRow>
     47746                                                <MaxTileRow>2847</MaxTileRow>
     47747                                                <MinTileCol>4053</MinTileCol>
     47748                                                <MaxTileCol>4060</MaxTileCol>
     47749                                        </TileMatrixLimits>
     47750                                        <TileMatrixLimits>
     47751                                                <TileMatrix>14</TileMatrix>
     47752                                                <MinTileRow>5680</MinTileRow>
     47753                                                <MaxTileRow>5694</MaxTileRow>
     47754                                                <MinTileCol>8106</MinTileCol>
     47755                                                <MaxTileCol>8120</MaxTileCol>
     47756                                        </TileMatrixLimits>
     47757                                        <TileMatrixLimits>
     47758                                                <TileMatrix>15</TileMatrix>
     47759                                                <MinTileRow>11360</MinTileRow>
     47760                                                <MaxTileRow>11389</MaxTileRow>
     47761                                                <MinTileCol>16213</MinTileCol>
     47762                                                <MaxTileCol>16240</MaxTileCol>
     47763                                        </TileMatrixLimits>
     47764                                        <TileMatrixLimits>
     47765                                                <TileMatrix>16</TileMatrix>
     47766                                                <MinTileRow>22720</MinTileRow>
     47767                                                <MaxTileRow>22778</MaxTileRow>
     47768                                                <MinTileCol>32427</MinTileCol>
     47769                                                <MaxTileCol>32480</MaxTileCol>
     47770                                        </TileMatrixLimits>
     47771                                        <TileMatrixLimits>
     47772                                                <TileMatrix>17</TileMatrix>
     47773                                                <MinTileRow>45440</MinTileRow>
     47774                                                <MaxTileRow>45556</MaxTileRow>
     47775                                                <MinTileCol>64855</MinTileCol>
     47776                                                <MaxTileCol>64961</MaxTileCol>
     47777                                        </TileMatrixLimits>
     47778                                        <TileMatrixLimits>
     47779                                                <TileMatrix>18</TileMatrix>
     47780                                                <MinTileRow>90881</MinTileRow>
     47781                                                <MaxTileRow>91112</MaxTileRow>
     47782                                                <MinTileCol>129711</MinTileCol>
     47783                                                <MaxTileCol>129922</MaxTileCol>
     47784                                        </TileMatrixLimits>
     47785                                        <TileMatrixLimits>
     47786                                                <TileMatrix>2</TileMatrix>
     47787                                                <MinTileRow>1</MinTileRow>
     47788                                                <MaxTileRow>1</MaxTileRow>
     47789                                                <MinTileCol>1</MinTileCol>
     47790                                                <MaxTileCol>1</MaxTileCol>
     47791                                        </TileMatrixLimits>
     47792                                        <TileMatrixLimits>
     47793                                                <TileMatrix>3</TileMatrix>
     47794                                                <MinTileRow>2</MinTileRow>
     47795                                                <MaxTileRow>2</MaxTileRow>
     47796                                                <MinTileCol>3</MinTileCol>
     47797                                                <MaxTileCol>3</MaxTileCol>
     47798                                        </TileMatrixLimits>
     47799                                        <TileMatrixLimits>
     47800                                                <TileMatrix>4</TileMatrix>
     47801                                                <MinTileRow>5</MinTileRow>
     47802                                                <MaxTileRow>5</MaxTileRow>
     47803                                                <MinTileCol>7</MinTileCol>
     47804                                                <MaxTileCol>7</MaxTileCol>
     47805                                        </TileMatrixLimits>
     47806                                        <TileMatrixLimits>
     47807                                                <TileMatrix>5</TileMatrix>
     47808                                                <MinTileRow>11</MinTileRow>
     47809                                                <MaxTileRow>11</MaxTileRow>
     47810                                                <MinTileCol>15</MinTileCol>
     47811                                                <MaxTileCol>15</MaxTileCol>
     47812                                        </TileMatrixLimits>
     47813                                        <TileMatrixLimits>
     47814                                                <TileMatrix>6</TileMatrix>
     47815                                                <MinTileRow>22</MinTileRow>
     47816                                                <MaxTileRow>22</MaxTileRow>
     47817                                                <MinTileCol>31</MinTileCol>
     47818                                                <MaxTileCol>31</MaxTileCol>
     47819                                        </TileMatrixLimits>
     47820                                        <TileMatrixLimits>
     47821                                                <TileMatrix>7</TileMatrix>
     47822                                                <MinTileRow>44</MinTileRow>
     47823                                                <MaxTileRow>44</MaxTileRow>
     47824                                                <MinTileCol>63</MinTileCol>
     47825                                                <MaxTileCol>63</MaxTileCol>
     47826                                        </TileMatrixLimits>
     47827                                        <TileMatrixLimits>
     47828                                                <TileMatrix>8</TileMatrix>
     47829                                                <MinTileRow>88</MinTileRow>
     47830                                                <MaxTileRow>88</MaxTileRow>
     47831                                                <MinTileCol>126</MinTileCol>
     47832                                                <MaxTileCol>126</MaxTileCol>
     47833                                        </TileMatrixLimits>
     47834                                        <TileMatrixLimits>
     47835                                                <TileMatrix>9</TileMatrix>
     47836                                                <MinTileRow>177</MinTileRow>
     47837                                                <MaxTileRow>177</MaxTileRow>
     47838                                                <MinTileCol>253</MinTileCol>
     47839                                                <MaxTileCol>253</MaxTileCol>
     47840                                        </TileMatrixLimits>
     47841                                </TileMatrixSetLimits>
     47842                        </TileMatrixSetLink>
     47843                </Layer>
     47844                <Layer>
     47845                        <ows:Title>Orthophotographies Geosud de RENNES 2014</ows:Title>
     47846                        <ows:Abstract>Orthophotographies Geosud de RENNES 2014</ows:Abstract>
     47847                        <ows:Keywords>
     47848                                <ows:Keyword>Photographies</ows:Keyword>
     47849                        </ows:Keywords>
     47850                        <ows:WGS84BoundingBox>
     47851                                <ows:LowerCorner>-1.74179 48.0076</ows:LowerCorner>
     47852                                <ows:UpperCorner>-1.53585 48.2216</ows:UpperCorner>
     47853                        </ows:WGS84BoundingBox>
     47854                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RENNES-2014-09-27-40502855</ows:Identifier>
     47855                        <Style isDefault="true">
     47856                                <ows:Title>Données Brutes</ows:Title>
     47857                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     47858                                <ows:Keywords>
     47859                                        <ows:Keyword>Défaut</ows:Keyword>
     47860                                </ows:Keywords>
     47861                                <ows:Identifier>normal</ows:Identifier>
     47862                                <LegendURL format="image/jpeg" height="200"
     47863                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     47864                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     47865                        </Style>
     47866                        <Format>image/jpeg</Format>
     47867                        <TileMatrixSetLink>
     47868                                <TileMatrixSet>PM</TileMatrixSet>
     47869                                <TileMatrixSetLimits>
     47870                                        <TileMatrixLimits>
     47871                                                <TileMatrix>0</TileMatrix>
     47872                                                <MinTileRow>0</MinTileRow>
     47873                                                <MaxTileRow>0</MaxTileRow>
     47874                                                <MinTileCol>0</MinTileCol>
     47875                                                <MaxTileCol>0</MaxTileCol>
     47876                                        </TileMatrixLimits>
     47877                                        <TileMatrixLimits>
     47878                                                <TileMatrix>1</TileMatrix>
     47879                                                <MinTileRow>0</MinTileRow>
     47880                                                <MaxTileRow>0</MaxTileRow>
     47881                                                <MinTileCol>0</MinTileCol>
     47882                                                <MaxTileCol>0</MaxTileCol>
     47883                                        </TileMatrixLimits>
     47884                                        <TileMatrixLimits>
     47885                                                <TileMatrix>10</TileMatrix>
     47886                                                <MinTileRow>355</MinTileRow>
     47887                                                <MaxTileRow>355</MaxTileRow>
     47888                                                <MinTileCol>507</MinTileCol>
     47889                                                <MaxTileCol>507</MaxTileCol>
     47890                                        </TileMatrixLimits>
     47891                                        <TileMatrixLimits>
     47892                                                <TileMatrix>11</TileMatrix>
     47893                                                <MinTileRow>710</MinTileRow>
     47894                                                <MaxTileRow>711</MaxTileRow>
     47895                                                <MinTileCol>1014</MinTileCol>
     47896                                                <MaxTileCol>1015</MaxTileCol>
     47897                                        </TileMatrixLimits>
     47898                                        <TileMatrixLimits>
     47899                                                <TileMatrix>12</TileMatrix>
     47900                                                <MinTileRow>1420</MinTileRow>
     47901                                                <MaxTileRow>1423</MaxTileRow>
     47902                                                <MinTileCol>2028</MinTileCol>
     47903                                                <MaxTileCol>2030</MaxTileCol>
     47904                                        </TileMatrixLimits>
     47905                                        <TileMatrixLimits>
     47906                                                <TileMatrix>13</TileMatrix>
     47907                                                <MinTileRow>2840</MinTileRow>
     47908                                                <MaxTileRow>2847</MaxTileRow>
     47909                                                <MinTileCol>4056</MinTileCol>
     47910                                                <MaxTileCol>4060</MaxTileCol>
     47911                                        </TileMatrixLimits>
     47912                                        <TileMatrixLimits>
     47913                                                <TileMatrix>14</TileMatrix>
     47914                                                <MinTileRow>5680</MinTileRow>
     47915                                                <MaxTileRow>5694</MaxTileRow>
     47916                                                <MinTileCol>8112</MinTileCol>
     47917                                                <MaxTileCol>8121</MaxTileCol>
     47918                                        </TileMatrixLimits>
     47919                                        <TileMatrixLimits>
     47920                                                <TileMatrix>15</TileMatrix>
     47921                                                <MinTileRow>11360</MinTileRow>
     47922                                                <MaxTileRow>11389</MaxTileRow>
     47923                                                <MinTileCol>16225</MinTileCol>
     47924                                                <MaxTileCol>16243</MaxTileCol>
     47925                                        </TileMatrixLimits>
     47926                                        <TileMatrixLimits>
     47927                                                <TileMatrix>16</TileMatrix>
     47928                                                <MinTileRow>22720</MinTileRow>
     47929                                                <MaxTileRow>22778</MaxTileRow>
     47930                                                <MinTileCol>32451</MinTileCol>
     47931                                                <MaxTileCol>32486</MaxTileCol>
     47932                                        </TileMatrixLimits>
     47933                                        <TileMatrixLimits>
     47934                                                <TileMatrix>17</TileMatrix>
     47935                                                <MinTileRow>45441</MinTileRow>
     47936                                                <MaxTileRow>45556</MaxTileRow>
     47937                                                <MinTileCol>64903</MinTileCol>
     47938                                                <MaxTileCol>64972</MaxTileCol>
     47939                                        </TileMatrixLimits>
     47940                                        <TileMatrixLimits>
     47941                                                <TileMatrix>18</TileMatrix>
     47942                                                <MinTileRow>90883</MinTileRow>
     47943                                                <MaxTileRow>91112</MaxTileRow>
     47944                                                <MinTileCol>129806</MinTileCol>
     47945                                                <MaxTileCol>129945</MaxTileCol>
     47946                                        </TileMatrixLimits>
     47947                                        <TileMatrixLimits>
     47948                                                <TileMatrix>2</TileMatrix>
     47949                                                <MinTileRow>1</MinTileRow>
     47950                                                <MaxTileRow>1</MaxTileRow>
     47951                                                <MinTileCol>1</MinTileCol>
     47952                                                <MaxTileCol>1</MaxTileCol>
     47953                                        </TileMatrixLimits>
     47954                                        <TileMatrixLimits>
     47955                                                <TileMatrix>3</TileMatrix>
     47956                                                <MinTileRow>2</MinTileRow>
     47957                                                <MaxTileRow>2</MaxTileRow>
     47958                                                <MinTileCol>3</MinTileCol>
     47959                                                <MaxTileCol>3</MaxTileCol>
     47960                                        </TileMatrixLimits>
     47961                                        <TileMatrixLimits>
     47962                                                <TileMatrix>4</TileMatrix>
     47963                                                <MinTileRow>5</MinTileRow>
     47964                                                <MaxTileRow>5</MaxTileRow>
     47965                                                <MinTileCol>7</MinTileCol>
     47966                                                <MaxTileCol>7</MaxTileCol>
     47967                                        </TileMatrixLimits>
     47968                                        <TileMatrixLimits>
     47969                                                <TileMatrix>5</TileMatrix>
     47970                                                <MinTileRow>11</MinTileRow>
     47971                                                <MaxTileRow>11</MaxTileRow>
     47972                                                <MinTileCol>15</MinTileCol>
     47973                                                <MaxTileCol>15</MaxTileCol>
     47974                                        </TileMatrixLimits>
     47975                                        <TileMatrixLimits>
     47976                                                <TileMatrix>6</TileMatrix>
     47977                                                <MinTileRow>22</MinTileRow>
     47978                                                <MaxTileRow>22</MaxTileRow>
     47979                                                <MinTileCol>31</MinTileCol>
     47980                                                <MaxTileCol>31</MaxTileCol>
     47981                                        </TileMatrixLimits>
     47982                                        <TileMatrixLimits>
     47983                                                <TileMatrix>7</TileMatrix>
     47984                                                <MinTileRow>44</MinTileRow>
     47985                                                <MaxTileRow>44</MaxTileRow>
     47986                                                <MinTileCol>63</MinTileCol>
     47987                                                <MaxTileCol>63</MaxTileCol>
     47988                                        </TileMatrixLimits>
     47989                                        <TileMatrixLimits>
     47990                                                <TileMatrix>8</TileMatrix>
     47991                                                <MinTileRow>88</MinTileRow>
     47992                                                <MaxTileRow>88</MaxTileRow>
     47993                                                <MinTileCol>126</MinTileCol>
     47994                                                <MaxTileCol>126</MaxTileCol>
     47995                                        </TileMatrixLimits>
     47996                                        <TileMatrixLimits>
     47997                                                <TileMatrix>9</TileMatrix>
     47998                                                <MinTileRow>177</MinTileRow>
     47999                                                <MaxTileRow>177</MaxTileRow>
     48000                                                <MinTileCol>253</MinTileCol>
     48001                                                <MaxTileCol>253</MaxTileCol>
     48002                                        </TileMatrixLimits>
     48003                                </TileMatrixSetLimits>
     48004                        </TileMatrixSetLink>
     48005                </Layer>
     48006                <Layer>
     48007                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48008                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48009                        <ows:Keywords>
     48010                                <ows:Keyword>Photographies</ows:Keyword>
     48011                        </ows:Keywords>
     48012                        <ows:WGS84BoundingBox>
     48013                                <ows:LowerCorner>0.549085 43.6369</ows:LowerCorner>
     48014                                <ows:UpperCorner>0.868612 44.1649</ows:UpperCorner>
     48015                        </ows:WGS84BoundingBox>
     48016                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-20-40051573</ows:Identifier>
     48017                        <Style isDefault="true">
     48018                                <ows:Title>Données Brutes</ows:Title>
     48019                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48020                                <ows:Keywords>
     48021                                        <ows:Keyword>Défaut</ows:Keyword>
     48022                                </ows:Keywords>
     48023                                <ows:Identifier>normal</ows:Identifier>
     48024                                <LegendURL format="image/jpeg" height="200"
     48025                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48026                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48027                        </Style>
     48028                        <Format>image/jpeg</Format>
     48029                        <TileMatrixSetLink>
     48030                                <TileMatrixSet>PM</TileMatrixSet>
     48031                                <TileMatrixSetLimits>
     48032                                        <TileMatrixLimits>
     48033                                                <TileMatrix>0</TileMatrix>
     48034                                                <MinTileRow>0</MinTileRow>
     48035                                                <MaxTileRow>0</MaxTileRow>
     48036                                                <MinTileCol>0</MinTileCol>
     48037                                                <MaxTileCol>0</MaxTileCol>
     48038                                        </TileMatrixLimits>
     48039                                        <TileMatrixLimits>
     48040                                                <TileMatrix>1</TileMatrix>
     48041                                                <MinTileRow>0</MinTileRow>
     48042                                                <MaxTileRow>0</MaxTileRow>
     48043                                                <MinTileCol>1</MinTileCol>
     48044                                                <MaxTileCol>1</MaxTileCol>
     48045                                        </TileMatrixLimits>
     48046                                        <TileMatrixLimits>
     48047                                                <TileMatrix>10</TileMatrix>
     48048                                                <MinTileRow>371</MinTileRow>
     48049                                                <MaxTileRow>373</MaxTileRow>
     48050                                                <MinTileCol>513</MinTileCol>
     48051                                                <MaxTileCol>514</MaxTileCol>
     48052                                        </TileMatrixLimits>
     48053                                        <TileMatrixLimits>
     48054                                                <TileMatrix>11</TileMatrix>
     48055                                                <MinTileRow>743</MinTileRow>
     48056                                                <MaxTileRow>747</MaxTileRow>
     48057                                                <MinTileCol>1027</MinTileCol>
     48058                                                <MaxTileCol>1028</MaxTileCol>
     48059                                        </TileMatrixLimits>
     48060                                        <TileMatrixLimits>
     48061                                                <TileMatrix>12</TileMatrix>
     48062                                                <MinTileRow>1486</MinTileRow>
     48063                                                <MaxTileRow>1495</MaxTileRow>
     48064                                                <MinTileCol>2054</MinTileCol>
     48065                                                <MaxTileCol>2057</MaxTileCol>
     48066                                        </TileMatrixLimits>
     48067                                        <TileMatrixLimits>
     48068                                                <TileMatrix>13</TileMatrix>
     48069                                                <MinTileRow>2973</MinTileRow>
     48070                                                <MaxTileRow>2990</MaxTileRow>
     48071                                                <MinTileCol>4108</MinTileCol>
     48072                                                <MaxTileCol>4115</MaxTileCol>
     48073                                        </TileMatrixLimits>
     48074                                        <TileMatrixLimits>
     48075                                                <TileMatrix>14</TileMatrix>
     48076                                                <MinTileRow>5947</MinTileRow>
     48077                                                <MaxTileRow>5980</MaxTileRow>
     48078                                                <MinTileCol>8217</MinTileCol>
     48079                                                <MaxTileCol>8231</MaxTileCol>
     48080                                        </TileMatrixLimits>
     48081                                        <TileMatrixLimits>
     48082                                                <TileMatrix>15</TileMatrix>
     48083                                                <MinTileRow>11894</MinTileRow>
     48084                                                <MaxTileRow>11960</MaxTileRow>
     48085                                                <MinTileCol>16435</MinTileCol>
     48086                                                <MaxTileCol>16462</MaxTileCol>
     48087                                        </TileMatrixLimits>
     48088                                        <TileMatrixLimits>
     48089                                                <TileMatrix>16</TileMatrix>
     48090                                                <MinTileRow>23788</MinTileRow>
     48091                                                <MaxTileRow>23920</MaxTileRow>
     48092                                                <MinTileCol>32871</MinTileCol>
     48093                                                <MaxTileCol>32925</MaxTileCol>
     48094                                        </TileMatrixLimits>
     48095                                        <TileMatrixLimits>
     48096                                                <TileMatrix>17</TileMatrix>
     48097                                                <MinTileRow>47576</MinTileRow>
     48098                                                <MaxTileRow>47841</MaxTileRow>
     48099                                                <MinTileCol>65743</MinTileCol>
     48100                                                <MaxTileCol>65850</MaxTileCol>
     48101                                        </TileMatrixLimits>
     48102                                        <TileMatrixLimits>
     48103                                                <TileMatrix>18</TileMatrix>
     48104                                                <MinTileRow>95153</MinTileRow>
     48105                                                <MaxTileRow>95682</MaxTileRow>
     48106                                                <MinTileCol>131487</MinTileCol>
     48107                                                <MaxTileCol>131700</MaxTileCol>
     48108                                        </TileMatrixLimits>
     48109                                        <TileMatrixLimits>
     48110                                                <TileMatrix>2</TileMatrix>
     48111                                                <MinTileRow>1</MinTileRow>
     48112                                                <MaxTileRow>1</MaxTileRow>
     48113                                                <MinTileCol>2</MinTileCol>
     48114                                                <MaxTileCol>2</MaxTileCol>
     48115                                        </TileMatrixLimits>
     48116                                        <TileMatrixLimits>
     48117                                                <TileMatrix>3</TileMatrix>
     48118                                                <MinTileRow>2</MinTileRow>
     48119                                                <MaxTileRow>2</MaxTileRow>
     48120                                                <MinTileCol>4</MinTileCol>
     48121                                                <MaxTileCol>4</MaxTileCol>
     48122                                        </TileMatrixLimits>
     48123                                        <TileMatrixLimits>
     48124                                                <TileMatrix>4</TileMatrix>
     48125                                                <MinTileRow>5</MinTileRow>
     48126                                                <MaxTileRow>5</MaxTileRow>
     48127                                                <MinTileCol>8</MinTileCol>
     48128                                                <MaxTileCol>8</MaxTileCol>
     48129                                        </TileMatrixLimits>
     48130                                        <TileMatrixLimits>
     48131                                                <TileMatrix>5</TileMatrix>
     48132                                                <MinTileRow>11</MinTileRow>
     48133                                                <MaxTileRow>11</MaxTileRow>
     48134                                                <MinTileCol>16</MinTileCol>
     48135                                                <MaxTileCol>16</MaxTileCol>
     48136                                        </TileMatrixLimits>
     48137                                        <TileMatrixLimits>
     48138                                                <TileMatrix>6</TileMatrix>
     48139                                                <MinTileRow>23</MinTileRow>
     48140                                                <MaxTileRow>23</MaxTileRow>
     48141                                                <MinTileCol>32</MinTileCol>
     48142                                                <MaxTileCol>32</MaxTileCol>
     48143                                        </TileMatrixLimits>
     48144                                        <TileMatrixLimits>
     48145                                                <TileMatrix>7</TileMatrix>
     48146                                                <MinTileRow>46</MinTileRow>
     48147                                                <MaxTileRow>46</MaxTileRow>
     48148                                                <MinTileCol>64</MinTileCol>
     48149                                                <MaxTileCol>64</MaxTileCol>
     48150                                        </TileMatrixLimits>
     48151                                        <TileMatrixLimits>
     48152                                                <TileMatrix>8</TileMatrix>
     48153                                                <MinTileRow>92</MinTileRow>
     48154                                                <MaxTileRow>93</MaxTileRow>
     48155                                                <MinTileCol>128</MinTileCol>
     48156                                                <MaxTileCol>128</MaxTileCol>
     48157                                        </TileMatrixLimits>
     48158                                        <TileMatrixLimits>
     48159                                                <TileMatrix>9</TileMatrix>
     48160                                                <MinTileRow>185</MinTileRow>
     48161                                                <MaxTileRow>186</MaxTileRow>
     48162                                                <MinTileCol>256</MinTileCol>
     48163                                                <MaxTileCol>257</MaxTileCol>
     48164                                        </TileMatrixLimits>
     48165                                </TileMatrixSetLimits>
     48166                        </TileMatrixSetLink>
     48167                </Layer>
     48168                <Layer>
     48169                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48170                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48171                        <ows:Keywords>
     48172                                <ows:Keyword>Photographies</ows:Keyword>
     48173                        </ows:Keywords>
     48174                        <ows:WGS84BoundingBox>
     48175                                <ows:LowerCorner>0.946908 44.455</ows:LowerCorner>
     48176                                <ows:UpperCorner>1.13963 44.5754</ows:UpperCorner>
     48177                        </ows:WGS84BoundingBox>
     48178                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-21-39629075</ows:Identifier>
     48179                        <Style isDefault="true">
     48180                                <ows:Title>Données Brutes</ows:Title>
     48181                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48182                                <ows:Keywords>
     48183                                        <ows:Keyword>Défaut</ows:Keyword>
     48184                                </ows:Keywords>
     48185                                <ows:Identifier>normal</ows:Identifier>
     48186                                <LegendURL format="image/jpeg" height="200"
     48187                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48188                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48189                        </Style>
     48190                        <Format>image/jpeg</Format>
     48191                        <TileMatrixSetLink>
     48192                                <TileMatrixSet>PM</TileMatrixSet>
     48193                                <TileMatrixSetLimits>
     48194                                        <TileMatrixLimits>
     48195                                                <TileMatrix>0</TileMatrix>
     48196                                                <MinTileRow>0</MinTileRow>
     48197                                                <MaxTileRow>0</MaxTileRow>
     48198                                                <MinTileCol>0</MinTileCol>
     48199                                                <MaxTileCol>0</MaxTileCol>
     48200                                        </TileMatrixLimits>
     48201                                        <TileMatrixLimits>
     48202                                                <TileMatrix>1</TileMatrix>
     48203                                                <MinTileRow>0</MinTileRow>
     48204                                                <MaxTileRow>0</MaxTileRow>
     48205                                                <MinTileCol>1</MinTileCol>
     48206                                                <MaxTileCol>1</MaxTileCol>
     48207                                        </TileMatrixLimits>
     48208                                        <TileMatrixLimits>
     48209                                                <TileMatrix>10</TileMatrix>
     48210                                                <MinTileRow>370</MinTileRow>
     48211                                                <MaxTileRow>370</MaxTileRow>
     48212                                                <MinTileCol>514</MinTileCol>
     48213                                                <MaxTileCol>515</MaxTileCol>
     48214                                        </TileMatrixLimits>
     48215                                        <TileMatrixLimits>
     48216                                                <TileMatrix>11</TileMatrix>
     48217                                                <MinTileRow>740</MinTileRow>
     48218                                                <MaxTileRow>741</MaxTileRow>
     48219                                                <MinTileCol>1029</MinTileCol>
     48220                                                <MaxTileCol>1030</MaxTileCol>
     48221                                        </TileMatrixLimits>
     48222                                        <TileMatrixLimits>
     48223                                                <TileMatrix>12</TileMatrix>
     48224                                                <MinTileRow>1480</MinTileRow>
     48225                                                <MaxTileRow>1482</MaxTileRow>
     48226                                                <MinTileCol>2058</MinTileCol>
     48227                                                <MaxTileCol>2060</MaxTileCol>
     48228                                        </TileMatrixLimits>
     48229                                        <TileMatrixLimits>
     48230                                                <TileMatrix>13</TileMatrix>
     48231                                                <MinTileRow>2960</MinTileRow>
     48232                                                <MaxTileRow>2964</MaxTileRow>
     48233                                                <MinTileCol>4117</MinTileCol>
     48234                                                <MaxTileCol>4121</MaxTileCol>
     48235                                        </TileMatrixLimits>
     48236                                        <TileMatrixLimits>
     48237                                                <TileMatrix>14</TileMatrix>
     48238                                                <MinTileRow>5920</MinTileRow>
     48239                                                <MaxTileRow>5928</MaxTileRow>
     48240                                                <MinTileCol>8235</MinTileCol>
     48241                                                <MaxTileCol>8243</MaxTileCol>
     48242                                        </TileMatrixLimits>
     48243                                        <TileMatrixLimits>
     48244                                                <TileMatrix>15</TileMatrix>
     48245                                                <MinTileRow>11841</MinTileRow>
     48246                                                <MaxTileRow>11857</MaxTileRow>
     48247                                                <MinTileCol>16470</MinTileCol>
     48248                                                <MaxTileCol>16487</MaxTileCol>
     48249                                        </TileMatrixLimits>
     48250                                        <TileMatrixLimits>
     48251                                                <TileMatrix>16</TileMatrix>
     48252                                                <MinTileRow>23683</MinTileRow>
     48253                                                <MaxTileRow>23714</MaxTileRow>
     48254                                                <MinTileCol>32940</MinTileCol>
     48255                                                <MaxTileCol>32975</MaxTileCol>
     48256                                        </TileMatrixLimits>
     48257                                        <TileMatrixLimits>
     48258                                                <TileMatrix>17</TileMatrix>
     48259                                                <MinTileRow>47367</MinTileRow>
     48260                                                <MaxTileRow>47428</MaxTileRow>
     48261                                                <MinTileCol>65880</MinTileCol>
     48262                                                <MaxTileCol>65951</MaxTileCol>
     48263                                        </TileMatrixLimits>
     48264                                        <TileMatrixLimits>
     48265                                                <TileMatrix>18</TileMatrix>
     48266                                                <MinTileRow>94735</MinTileRow>
     48267                                                <MaxTileRow>94857</MaxTileRow>
     48268                                                <MinTileCol>131761</MinTileCol>
     48269                                                <MaxTileCol>131902</MaxTileCol>
     48270                                        </TileMatrixLimits>
     48271                                        <TileMatrixLimits>
     48272                                                <TileMatrix>2</TileMatrix>
     48273                                                <MinTileRow>1</MinTileRow>
     48274                                                <MaxTileRow>1</MaxTileRow>
     48275                                                <MinTileCol>2</MinTileCol>
     48276                                                <MaxTileCol>2</MaxTileCol>
     48277                                        </TileMatrixLimits>
     48278                                        <TileMatrixLimits>
     48279                                                <TileMatrix>3</TileMatrix>
     48280                                                <MinTileRow>2</MinTileRow>
     48281                                                <MaxTileRow>2</MaxTileRow>
     48282                                                <MinTileCol>4</MinTileCol>
     48283                                                <MaxTileCol>4</MaxTileCol>
     48284                                        </TileMatrixLimits>
     48285                                        <TileMatrixLimits>
     48286                                                <TileMatrix>4</TileMatrix>
     48287                                                <MinTileRow>5</MinTileRow>
     48288                                                <MaxTileRow>5</MaxTileRow>
     48289                                                <MinTileCol>8</MinTileCol>
     48290                                                <MaxTileCol>8</MaxTileCol>
     48291                                        </TileMatrixLimits>
     48292                                        <TileMatrixLimits>
     48293                                                <TileMatrix>5</TileMatrix>
     48294                                                <MinTileRow>11</MinTileRow>
     48295                                                <MaxTileRow>11</MaxTileRow>
     48296                                                <MinTileCol>16</MinTileCol>
     48297                                                <MaxTileCol>16</MaxTileCol>
     48298                                        </TileMatrixLimits>
     48299                                        <TileMatrixLimits>
     48300                                                <TileMatrix>6</TileMatrix>
     48301                                                <MinTileRow>23</MinTileRow>
     48302                                                <MaxTileRow>23</MaxTileRow>
     48303                                                <MinTileCol>32</MinTileCol>
     48304                                                <MaxTileCol>32</MaxTileCol>
     48305                                        </TileMatrixLimits>
     48306                                        <TileMatrixLimits>
     48307                                                <TileMatrix>7</TileMatrix>
     48308                                                <MinTileRow>46</MinTileRow>
     48309                                                <MaxTileRow>46</MaxTileRow>
     48310                                                <MinTileCol>64</MinTileCol>
     48311                                                <MaxTileCol>64</MaxTileCol>
     48312                                        </TileMatrixLimits>
     48313                                        <TileMatrixLimits>
     48314                                                <TileMatrix>8</TileMatrix>
     48315                                                <MinTileRow>92</MinTileRow>
     48316                                                <MaxTileRow>92</MaxTileRow>
     48317                                                <MinTileCol>128</MinTileCol>
     48318                                                <MaxTileCol>128</MaxTileCol>
     48319                                        </TileMatrixLimits>
     48320                                        <TileMatrixLimits>
     48321                                                <TileMatrix>9</TileMatrix>
     48322                                                <MinTileRow>185</MinTileRow>
     48323                                                <MaxTileRow>185</MaxTileRow>
     48324                                                <MinTileCol>257</MinTileCol>
     48325                                                <MaxTileCol>257</MaxTileCol>
     48326                                        </TileMatrixLimits>
     48327                                </TileMatrixSetLimits>
     48328                        </TileMatrixSetLink>
     48329                </Layer>
     48330                <Layer>
     48331                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48332                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48333                        <ows:Keywords>
     48334                                <ows:Keyword>Photographies</ows:Keyword>
     48335                        </ows:Keywords>
     48336                        <ows:WGS84BoundingBox>
     48337                                <ows:LowerCorner>2.30455 44.2829</ows:LowerCorner>
     48338                                <ows:UpperCorner>2.5865 44.7974</ows:UpperCorner>
     48339                        </ows:WGS84BoundingBox>
     48340                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-02-22-39143949</ows:Identifier>
     48341                        <Style isDefault="true">
     48342                                <ows:Title>Données Brutes</ows:Title>
     48343                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48344                                <ows:Keywords>
     48345                                        <ows:Keyword>Défaut</ows:Keyword>
     48346                                </ows:Keywords>
     48347                                <ows:Identifier>normal</ows:Identifier>
     48348                                <LegendURL format="image/jpeg" height="200"
     48349                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48350                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48351                        </Style>
     48352                        <Format>image/jpeg</Format>
     48353                        <TileMatrixSetLink>
     48354                                <TileMatrixSet>PM</TileMatrixSet>
     48355                                <TileMatrixSetLimits>
     48356                                        <TileMatrixLimits>
     48357                                                <TileMatrix>0</TileMatrix>
     48358                                                <MinTileRow>0</MinTileRow>
     48359                                                <MaxTileRow>0</MaxTileRow>
     48360                                                <MinTileCol>0</MinTileCol>
     48361                                                <MaxTileCol>0</MaxTileCol>
     48362                                        </TileMatrixLimits>
     48363                                        <TileMatrixLimits>
     48364                                                <TileMatrix>1</TileMatrix>
     48365                                                <MinTileRow>0</MinTileRow>
     48366                                                <MaxTileRow>0</MaxTileRow>
     48367                                                <MinTileCol>1</MinTileCol>
     48368                                                <MaxTileCol>1</MaxTileCol>
     48369                                        </TileMatrixLimits>
     48370                                        <TileMatrixLimits>
     48371                                                <TileMatrix>10</TileMatrix>
     48372                                                <MinTileRow>369</MinTileRow>
     48373                                                <MaxTileRow>371</MaxTileRow>
     48374                                                <MinTileCol>518</MinTileCol>
     48375                                                <MaxTileCol>519</MaxTileCol>
     48376                                        </TileMatrixLimits>
     48377                                        <TileMatrixLimits>
     48378                                                <TileMatrix>11</TileMatrix>
     48379                                                <MinTileRow>738</MinTileRow>
     48380                                                <MaxTileRow>742</MaxTileRow>
     48381                                                <MinTileCol>1037</MinTileCol>
     48382                                                <MaxTileCol>1038</MaxTileCol>
     48383                                        </TileMatrixLimits>
     48384                                        <TileMatrixLimits>
     48385                                                <TileMatrix>12</TileMatrix>
     48386                                                <MinTileRow>1476</MinTileRow>
     48387                                                <MaxTileRow>1484</MaxTileRow>
     48388                                                <MinTileCol>2074</MinTileCol>
     48389                                                <MaxTileCol>2077</MaxTileCol>
     48390                                        </TileMatrixLimits>
     48391                                        <TileMatrixLimits>
     48392                                                <TileMatrix>13</TileMatrix>
     48393                                                <MinTileRow>2953</MinTileRow>
     48394                                                <MaxTileRow>2969</MaxTileRow>
     48395                                                <MinTileCol>4148</MinTileCol>
     48396                                                <MaxTileCol>4154</MaxTileCol>
     48397                                        </TileMatrixLimits>
     48398                                        <TileMatrixLimits>
     48399                                                <TileMatrix>14</TileMatrix>
     48400                                                <MinTileRow>5906</MinTileRow>
     48401                                                <MaxTileRow>5939</MaxTileRow>
     48402                                                <MinTileCol>8296</MinTileCol>
     48403                                                <MaxTileCol>8309</MaxTileCol>
     48404                                        </TileMatrixLimits>
     48405                                        <TileMatrixLimits>
     48406                                                <TileMatrix>15</TileMatrix>
     48407                                                <MinTileRow>11813</MinTileRow>
     48408                                                <MaxTileRow>11879</MaxTileRow>
     48409                                                <MinTileCol>16593</MinTileCol>
     48410                                                <MaxTileCol>16619</MaxTileCol>
     48411                                        </TileMatrixLimits>
     48412                                        <TileMatrixLimits>
     48413                                                <TileMatrix>16</TileMatrix>
     48414                                                <MinTileRow>23627</MinTileRow>
     48415                                                <MaxTileRow>23758</MaxTileRow>
     48416                                                <MinTileCol>33187</MinTileCol>
     48417                                                <MaxTileCol>33238</MaxTileCol>
     48418                                        </TileMatrixLimits>
     48419                                        <TileMatrixLimits>
     48420                                                <TileMatrix>17</TileMatrix>
     48421                                                <MinTileRow>47254</MinTileRow>
     48422                                                <MaxTileRow>47516</MaxTileRow>
     48423                                                <MinTileCol>66375</MinTileCol>
     48424                                                <MaxTileCol>66477</MaxTileCol>
     48425                                        </TileMatrixLimits>
     48426                                        <TileMatrixLimits>
     48427                                                <TileMatrix>18</TileMatrix>
     48428                                                <MinTileRow>94508</MinTileRow>
     48429                                                <MaxTileRow>95033</MaxTileRow>
     48430                                                <MinTileCol>132750</MinTileCol>
     48431                                                <MaxTileCol>132954</MaxTileCol>
     48432                                        </TileMatrixLimits>
     48433                                        <TileMatrixLimits>
     48434                                                <TileMatrix>2</TileMatrix>
     48435                                                <MinTileRow>1</MinTileRow>
     48436                                                <MaxTileRow>1</MaxTileRow>
     48437                                                <MinTileCol>2</MinTileCol>
     48438                                                <MaxTileCol>2</MaxTileCol>
     48439                                        </TileMatrixLimits>
     48440                                        <TileMatrixLimits>
     48441                                                <TileMatrix>3</TileMatrix>
     48442                                                <MinTileRow>2</MinTileRow>
     48443                                                <MaxTileRow>2</MaxTileRow>
     48444                                                <MinTileCol>4</MinTileCol>
     48445                                                <MaxTileCol>4</MaxTileCol>
     48446                                        </TileMatrixLimits>
     48447                                        <TileMatrixLimits>
     48448                                                <TileMatrix>4</TileMatrix>
     48449                                                <MinTileRow>5</MinTileRow>
     48450                                                <MaxTileRow>5</MaxTileRow>
     48451                                                <MinTileCol>8</MinTileCol>
     48452                                                <MaxTileCol>8</MaxTileCol>
     48453                                        </TileMatrixLimits>
     48454                                        <TileMatrixLimits>
     48455                                                <TileMatrix>5</TileMatrix>
     48456                                                <MinTileRow>11</MinTileRow>
     48457                                                <MaxTileRow>11</MaxTileRow>
     48458                                                <MinTileCol>16</MinTileCol>
     48459                                                <MaxTileCol>16</MaxTileCol>
     48460                                        </TileMatrixLimits>
     48461                                        <TileMatrixLimits>
     48462                                                <TileMatrix>6</TileMatrix>
     48463                                                <MinTileRow>23</MinTileRow>
     48464                                                <MaxTileRow>23</MaxTileRow>
     48465                                                <MinTileCol>32</MinTileCol>
     48466                                                <MaxTileCol>32</MaxTileCol>
     48467                                        </TileMatrixLimits>
     48468                                        <TileMatrixLimits>
     48469                                                <TileMatrix>7</TileMatrix>
     48470                                                <MinTileRow>46</MinTileRow>
     48471                                                <MaxTileRow>46</MaxTileRow>
     48472                                                <MinTileCol>64</MinTileCol>
     48473                                                <MaxTileCol>64</MaxTileCol>
     48474                                        </TileMatrixLimits>
     48475                                        <TileMatrixLimits>
     48476                                                <TileMatrix>8</TileMatrix>
     48477                                                <MinTileRow>92</MinTileRow>
     48478                                                <MaxTileRow>92</MaxTileRow>
     48479                                                <MinTileCol>129</MinTileCol>
     48480                                                <MaxTileCol>129</MaxTileCol>
     48481                                        </TileMatrixLimits>
     48482                                        <TileMatrixLimits>
     48483                                                <TileMatrix>9</TileMatrix>
     48484                                                <MinTileRow>184</MinTileRow>
     48485                                                <MaxTileRow>185</MaxTileRow>
     48486                                                <MinTileCol>259</MinTileCol>
     48487                                                <MaxTileCol>259</MaxTileCol>
     48488                                        </TileMatrixLimits>
     48489                                </TileMatrixSetLimits>
     48490                        </TileMatrixSetLink>
     48491                </Layer>
     48492                <Layer>
     48493                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48494                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48495                        <ows:Keywords>
     48496                                <ows:Keyword>Photographies</ows:Keyword>
     48497                        </ows:Keywords>
     48498                        <ows:WGS84BoundingBox>
     48499                                <ows:LowerCorner>3.17391 43.789</ows:LowerCorner>
     48500                                <ows:UpperCorner>3.46348 44.2669</ows:UpperCorner>
     48501                        </ows:WGS84BoundingBox>
     48502                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-15-38467573</ows:Identifier>
     48503                        <Style isDefault="true">
     48504                                <ows:Title>Données Brutes</ows:Title>
     48505                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48506                                <ows:Keywords>
     48507                                        <ows:Keyword>Défaut</ows:Keyword>
     48508                                </ows:Keywords>
     48509                                <ows:Identifier>normal</ows:Identifier>
     48510                                <LegendURL format="image/jpeg" height="200"
     48511                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48512                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48513                        </Style>
     48514                        <Format>image/jpeg</Format>
     48515                        <TileMatrixSetLink>
     48516                                <TileMatrixSet>PM</TileMatrixSet>
     48517                                <TileMatrixSetLimits>
     48518                                        <TileMatrixLimits>
     48519                                                <TileMatrix>0</TileMatrix>
     48520                                                <MinTileRow>0</MinTileRow>
     48521                                                <MaxTileRow>0</MaxTileRow>
     48522                                                <MinTileCol>0</MinTileCol>
     48523                                                <MaxTileCol>0</MaxTileCol>
     48524                                        </TileMatrixLimits>
     48525                                        <TileMatrixLimits>
     48526                                                <TileMatrix>1</TileMatrix>
     48527                                                <MinTileRow>0</MinTileRow>
     48528                                                <MaxTileRow>0</MaxTileRow>
     48529                                                <MinTileCol>1</MinTileCol>
     48530                                                <MaxTileCol>1</MaxTileCol>
     48531                                        </TileMatrixLimits>
     48532                                        <TileMatrixLimits>
     48533                                                <TileMatrix>10</TileMatrix>
     48534                                                <MinTileRow>371</MinTileRow>
     48535                                                <MaxTileRow>373</MaxTileRow>
     48536                                                <MinTileCol>521</MinTileCol>
     48537                                                <MaxTileCol>521</MaxTileCol>
     48538                                        </TileMatrixLimits>
     48539                                        <TileMatrixLimits>
     48540                                                <TileMatrix>11</TileMatrix>
     48541                                                <MinTileRow>742</MinTileRow>
     48542                                                <MaxTileRow>746</MaxTileRow>
     48543                                                <MinTileCol>1042</MinTileCol>
     48544                                                <MaxTileCol>1043</MaxTileCol>
     48545                                        </TileMatrixLimits>
     48546                                        <TileMatrixLimits>
     48547                                                <TileMatrix>12</TileMatrix>
     48548                                                <MinTileRow>1485</MinTileRow>
     48549                                                <MaxTileRow>1492</MaxTileRow>
     48550                                                <MinTileCol>2084</MinTileCol>
     48551                                                <MaxTileCol>2087</MaxTileCol>
     48552                                        </TileMatrixLimits>
     48553                                        <TileMatrixLimits>
     48554                                                <TileMatrix>13</TileMatrix>
     48555                                                <MinTileRow>2970</MinTileRow>
     48556                                                <MaxTileRow>2985</MaxTileRow>
     48557                                                <MinTileCol>4168</MinTileCol>
     48558                                                <MaxTileCol>4174</MaxTileCol>
     48559                                        </TileMatrixLimits>
     48560                                        <TileMatrixLimits>
     48561                                                <TileMatrix>14</TileMatrix>
     48562                                                <MinTileRow>5940</MinTileRow>
     48563                                                <MaxTileRow>5970</MaxTileRow>
     48564                                                <MinTileCol>8336</MinTileCol>
     48565                                                <MaxTileCol>8349</MaxTileCol>
     48566                                        </TileMatrixLimits>
     48567                                        <TileMatrixLimits>
     48568                                                <TileMatrix>15</TileMatrix>
     48569                                                <MinTileRow>11881</MinTileRow>
     48570                                                <MaxTileRow>11941</MaxTileRow>
     48571                                                <MinTileCol>16672</MinTileCol>
     48572                                                <MaxTileCol>16699</MaxTileCol>
     48573                                        </TileMatrixLimits>
     48574                                        <TileMatrixLimits>
     48575                                                <TileMatrix>16</TileMatrix>
     48576                                                <MinTileRow>23762</MinTileRow>
     48577                                                <MaxTileRow>23883</MaxTileRow>
     48578                                                <MinTileCol>33345</MinTileCol>
     48579                                                <MaxTileCol>33398</MaxTileCol>
     48580                                        </TileMatrixLimits>
     48581                                        <TileMatrixLimits>
     48582                                                <TileMatrix>17</TileMatrix>
     48583                                                <MinTileRow>47524</MinTileRow>
     48584                                                <MaxTileRow>47766</MaxTileRow>
     48585                                                <MinTileCol>66691</MinTileCol>
     48586                                                <MaxTileCol>66796</MaxTileCol>
     48587                                        </TileMatrixLimits>
     48588                                        <TileMatrixLimits>
     48589                                                <TileMatrix>18</TileMatrix>
     48590                                                <MinTileRow>95049</MinTileRow>
     48591                                                <MaxTileRow>95533</MaxTileRow>
     48592                                                <MinTileCol>133383</MinTileCol>
     48593                                                <MaxTileCol>133592</MaxTileCol>
     48594                                        </TileMatrixLimits>
     48595                                        <TileMatrixLimits>
     48596                                                <TileMatrix>2</TileMatrix>
     48597                                                <MinTileRow>1</MinTileRow>
     48598                                                <MaxTileRow>1</MaxTileRow>
     48599                                                <MinTileCol>2</MinTileCol>
     48600                                                <MaxTileCol>2</MaxTileCol>
     48601                                        </TileMatrixLimits>
     48602                                        <TileMatrixLimits>
     48603                                                <TileMatrix>3</TileMatrix>
     48604                                                <MinTileRow>2</MinTileRow>
     48605                                                <MaxTileRow>2</MaxTileRow>
     48606                                                <MinTileCol>4</MinTileCol>
     48607                                                <MaxTileCol>4</MaxTileCol>
     48608                                        </TileMatrixLimits>
     48609                                        <TileMatrixLimits>
     48610                                                <TileMatrix>4</TileMatrix>
     48611                                                <MinTileRow>5</MinTileRow>
     48612                                                <MaxTileRow>5</MaxTileRow>
     48613                                                <MinTileCol>8</MinTileCol>
     48614                                                <MaxTileCol>8</MaxTileCol>
     48615                                        </TileMatrixLimits>
     48616                                        <TileMatrixLimits>
     48617                                                <TileMatrix>5</TileMatrix>
     48618                                                <MinTileRow>11</MinTileRow>
     48619                                                <MaxTileRow>11</MaxTileRow>
     48620                                                <MinTileCol>16</MinTileCol>
     48621                                                <MaxTileCol>16</MaxTileCol>
     48622                                        </TileMatrixLimits>
     48623                                        <TileMatrixLimits>
     48624                                                <TileMatrix>6</TileMatrix>
     48625                                                <MinTileRow>23</MinTileRow>
     48626                                                <MaxTileRow>23</MaxTileRow>
     48627                                                <MinTileCol>32</MinTileCol>
     48628                                                <MaxTileCol>32</MaxTileCol>
     48629                                        </TileMatrixLimits>
     48630                                        <TileMatrixLimits>
     48631                                                <TileMatrix>7</TileMatrix>
     48632                                                <MinTileRow>46</MinTileRow>
     48633                                                <MaxTileRow>46</MaxTileRow>
     48634                                                <MinTileCol>65</MinTileCol>
     48635                                                <MaxTileCol>65</MaxTileCol>
     48636                                        </TileMatrixLimits>
     48637                                        <TileMatrixLimits>
     48638                                                <TileMatrix>8</TileMatrix>
     48639                                                <MinTileRow>92</MinTileRow>
     48640                                                <MaxTileRow>93</MaxTileRow>
     48641                                                <MinTileCol>130</MinTileCol>
     48642                                                <MaxTileCol>130</MaxTileCol>
     48643                                        </TileMatrixLimits>
     48644                                        <TileMatrixLimits>
     48645                                                <TileMatrix>9</TileMatrix>
     48646                                                <MinTileRow>185</MinTileRow>
     48647                                                <MaxTileRow>186</MaxTileRow>
     48648                                                <MinTileCol>260</MinTileCol>
     48649                                                <MaxTileCol>260</MaxTileCol>
     48650                                        </TileMatrixLimits>
     48651                                </TileMatrixSetLimits>
     48652                        </TileMatrixSetLink>
     48653                </Layer>
     48654                <Layer>
     48655                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48656                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48657                        <ows:Keywords>
     48658                                <ows:Keyword>Photographies</ows:Keyword>
     48659                        </ows:Keywords>
     48660                        <ows:WGS84BoundingBox>
     48661                                <ows:LowerCorner>3.29893 43.9419</ows:LowerCorner>
     48662                                <ows:UpperCorner>3.48683 44.0686</ows:UpperCorner>
     48663                        </ows:WGS84BoundingBox>
     48664                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-15-38483324</ows:Identifier>
     48665                        <Style isDefault="true">
     48666                                <ows:Title>Données Brutes</ows:Title>
     48667                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48668                                <ows:Keywords>
     48669                                        <ows:Keyword>Défaut</ows:Keyword>
     48670                                </ows:Keywords>
     48671                                <ows:Identifier>normal</ows:Identifier>
     48672                                <LegendURL format="image/jpeg" height="200"
     48673                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48674                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48675                        </Style>
     48676                        <Format>image/jpeg</Format>
     48677                        <TileMatrixSetLink>
     48678                                <TileMatrixSet>PM</TileMatrixSet>
     48679                                <TileMatrixSetLimits>
     48680                                        <TileMatrixLimits>
     48681                                                <TileMatrix>0</TileMatrix>
     48682                                                <MinTileRow>0</MinTileRow>
     48683                                                <MaxTileRow>0</MaxTileRow>
     48684                                                <MinTileCol>0</MinTileCol>
     48685                                                <MaxTileCol>0</MaxTileCol>
     48686                                        </TileMatrixLimits>
     48687                                        <TileMatrixLimits>
     48688                                                <TileMatrix>1</TileMatrix>
     48689                                                <MinTileRow>0</MinTileRow>
     48690                                                <MaxTileRow>0</MaxTileRow>
     48691                                                <MinTileCol>1</MinTileCol>
     48692                                                <MaxTileCol>1</MaxTileCol>
     48693                                        </TileMatrixLimits>
     48694                                        <TileMatrixLimits>
     48695                                                <TileMatrix>10</TileMatrix>
     48696                                                <MinTileRow>372</MinTileRow>
     48697                                                <MaxTileRow>372</MaxTileRow>
     48698                                                <MinTileCol>521</MinTileCol>
     48699                                                <MaxTileCol>521</MaxTileCol>
     48700                                        </TileMatrixLimits>
     48701                                        <TileMatrixLimits>
     48702                                                <TileMatrix>11</TileMatrix>
     48703                                                <MinTileRow>744</MinTileRow>
     48704                                                <MaxTileRow>745</MaxTileRow>
     48705                                                <MinTileCol>1042</MinTileCol>
     48706                                                <MaxTileCol>1043</MaxTileCol>
     48707                                        </TileMatrixLimits>
     48708                                        <TileMatrixLimits>
     48709                                                <TileMatrix>12</TileMatrix>
     48710                                                <MinTileRow>1488</MinTileRow>
     48711                                                <MaxTileRow>1490</MaxTileRow>
     48712                                                <MinTileCol>2085</MinTileCol>
     48713                                                <MaxTileCol>2087</MaxTileCol>
     48714                                        </TileMatrixLimits>
     48715                                        <TileMatrixLimits>
     48716                                                <TileMatrix>13</TileMatrix>
     48717                                                <MinTileRow>2976</MinTileRow>
     48718                                                <MaxTileRow>2980</MaxTileRow>
     48719                                                <MinTileCol>4171</MinTileCol>
     48720                                                <MaxTileCol>4175</MaxTileCol>
     48721                                        </TileMatrixLimits>
     48722                                        <TileMatrixLimits>
     48723                                                <TileMatrix>14</TileMatrix>
     48724                                                <MinTileRow>5953</MinTileRow>
     48725                                                <MaxTileRow>5961</MaxTileRow>
     48726                                                <MinTileCol>8342</MinTileCol>
     48727                                                <MaxTileCol>8350</MaxTileCol>
     48728                                        </TileMatrixLimits>
     48729                                        <TileMatrixLimits>
     48730                                                <TileMatrix>15</TileMatrix>
     48731                                                <MinTileRow>11906</MinTileRow>
     48732                                                <MaxTileRow>11922</MaxTileRow>
     48733                                                <MinTileCol>16684</MinTileCol>
     48734                                                <MaxTileCol>16701</MaxTileCol>
     48735                                        </TileMatrixLimits>
     48736                                        <TileMatrixLimits>
     48737                                                <TileMatrix>16</TileMatrix>
     48738                                                <MinTileRow>23812</MinTileRow>
     48739                                                <MaxTileRow>23844</MaxTileRow>
     48740                                                <MinTileCol>33368</MinTileCol>
     48741                                                <MaxTileCol>33402</MaxTileCol>
     48742                                        </TileMatrixLimits>
     48743                                        <TileMatrixLimits>
     48744                                                <TileMatrix>17</TileMatrix>
     48745                                                <MinTileRow>47625</MinTileRow>
     48746                                                <MaxTileRow>47689</MaxTileRow>
     48747                                                <MinTileCol>66737</MinTileCol>
     48748                                                <MaxTileCol>66805</MaxTileCol>
     48749                                        </TileMatrixLimits>
     48750                                        <TileMatrixLimits>
     48751                                                <TileMatrix>18</TileMatrix>
     48752                                                <MinTileRow>95251</MinTileRow>
     48753                                                <MaxTileRow>95379</MaxTileRow>
     48754                                                <MinTileCol>133474</MinTileCol>
     48755                                                <MaxTileCol>133611</MaxTileCol>
     48756                                        </TileMatrixLimits>
     48757                                        <TileMatrixLimits>
     48758                                                <TileMatrix>2</TileMatrix>
     48759                                                <MinTileRow>1</MinTileRow>
     48760                                                <MaxTileRow>1</MaxTileRow>
     48761                                                <MinTileCol>2</MinTileCol>
     48762                                                <MaxTileCol>2</MaxTileCol>
     48763                                        </TileMatrixLimits>
     48764                                        <TileMatrixLimits>
     48765                                                <TileMatrix>3</TileMatrix>
     48766                                                <MinTileRow>2</MinTileRow>
     48767                                                <MaxTileRow>2</MaxTileRow>
     48768                                                <MinTileCol>4</MinTileCol>
     48769                                                <MaxTileCol>4</MaxTileCol>
     48770                                        </TileMatrixLimits>
     48771                                        <TileMatrixLimits>
     48772                                                <TileMatrix>4</TileMatrix>
     48773                                                <MinTileRow>5</MinTileRow>
     48774                                                <MaxTileRow>5</MaxTileRow>
     48775                                                <MinTileCol>8</MinTileCol>
     48776                                                <MaxTileCol>8</MaxTileCol>
     48777                                        </TileMatrixLimits>
     48778                                        <TileMatrixLimits>
     48779                                                <TileMatrix>5</TileMatrix>
     48780                                                <MinTileRow>11</MinTileRow>
     48781                                                <MaxTileRow>11</MaxTileRow>
     48782                                                <MinTileCol>16</MinTileCol>
     48783                                                <MaxTileCol>16</MaxTileCol>
     48784                                        </TileMatrixLimits>
     48785                                        <TileMatrixLimits>
     48786                                                <TileMatrix>6</TileMatrix>
     48787                                                <MinTileRow>23</MinTileRow>
     48788                                                <MaxTileRow>23</MaxTileRow>
     48789                                                <MinTileCol>32</MinTileCol>
     48790                                                <MaxTileCol>32</MaxTileCol>
     48791                                        </TileMatrixLimits>
     48792                                        <TileMatrixLimits>
     48793                                                <TileMatrix>7</TileMatrix>
     48794                                                <MinTileRow>46</MinTileRow>
     48795                                                <MaxTileRow>46</MaxTileRow>
     48796                                                <MinTileCol>65</MinTileCol>
     48797                                                <MaxTileCol>65</MaxTileCol>
     48798                                        </TileMatrixLimits>
     48799                                        <TileMatrixLimits>
     48800                                                <TileMatrix>8</TileMatrix>
     48801                                                <MinTileRow>93</MinTileRow>
     48802                                                <MaxTileRow>93</MaxTileRow>
     48803                                                <MinTileCol>130</MinTileCol>
     48804                                                <MaxTileCol>130</MaxTileCol>
     48805                                        </TileMatrixLimits>
     48806                                        <TileMatrixLimits>
     48807                                                <TileMatrix>9</TileMatrix>
     48808                                                <MinTileRow>186</MinTileRow>
     48809                                                <MaxTileRow>186</MaxTileRow>
     48810                                                <MinTileCol>260</MinTileCol>
     48811                                                <MaxTileCol>260</MaxTileCol>
     48812                                        </TileMatrixLimits>
     48813                                </TileMatrixSetLimits>
     48814                        </TileMatrixSetLink>
     48815                </Layer>
     48816                <Layer>
     48817                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48818                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48819                        <ows:Keywords>
     48820                                <ows:Keyword>Photographies</ows:Keyword>
     48821                        </ows:Keywords>
     48822                        <ows:WGS84BoundingBox>
     48823                                <ows:LowerCorner>2.96257 43.6638</ows:LowerCorner>
     48824                                <ows:UpperCorner>3.23706 44.042</ows:UpperCorner>
     48825                        </ows:WGS84BoundingBox>
     48826                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-03-21-38770699</ows:Identifier>
     48827                        <Style isDefault="true">
     48828                                <ows:Title>Données Brutes</ows:Title>
     48829                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48830                                <ows:Keywords>
     48831                                        <ows:Keyword>Défaut</ows:Keyword>
     48832                                </ows:Keywords>
     48833                                <ows:Identifier>normal</ows:Identifier>
     48834                                <LegendURL format="image/jpeg" height="200"
     48835                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48836                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48837                        </Style>
     48838                        <Format>image/jpeg</Format>
     48839                        <TileMatrixSetLink>
     48840                                <TileMatrixSet>PM</TileMatrixSet>
     48841                                <TileMatrixSetLimits>
     48842                                        <TileMatrixLimits>
     48843                                                <TileMatrix>0</TileMatrix>
     48844                                                <MinTileRow>0</MinTileRow>
     48845                                                <MaxTileRow>0</MaxTileRow>
     48846                                                <MinTileCol>0</MinTileCol>
     48847                                                <MaxTileCol>0</MaxTileCol>
     48848                                        </TileMatrixLimits>
     48849                                        <TileMatrixLimits>
     48850                                                <TileMatrix>1</TileMatrix>
     48851                                                <MinTileRow>0</MinTileRow>
     48852                                                <MaxTileRow>0</MaxTileRow>
     48853                                                <MinTileCol>1</MinTileCol>
     48854                                                <MaxTileCol>1</MaxTileCol>
     48855                                        </TileMatrixLimits>
     48856                                        <TileMatrixLimits>
     48857                                                <TileMatrix>10</TileMatrix>
     48858                                                <MinTileRow>372</MinTileRow>
     48859                                                <MaxTileRow>373</MaxTileRow>
     48860                                                <MinTileCol>520</MinTileCol>
     48861                                                <MaxTileCol>521</MaxTileCol>
     48862                                        </TileMatrixLimits>
     48863                                        <TileMatrixLimits>
     48864                                                <TileMatrix>11</TileMatrix>
     48865                                                <MinTileRow>744</MinTileRow>
     48866                                                <MaxTileRow>747</MaxTileRow>
     48867                                                <MinTileCol>1040</MinTileCol>
     48868                                                <MaxTileCol>1042</MaxTileCol>
     48869                                        </TileMatrixLimits>
     48870                                        <TileMatrixLimits>
     48871                                                <TileMatrix>12</TileMatrix>
     48872                                                <MinTileRow>1488</MinTileRow>
     48873                                                <MaxTileRow>1494</MaxTileRow>
     48874                                                <MinTileCol>2081</MinTileCol>
     48875                                                <MaxTileCol>2084</MaxTileCol>
     48876                                        </TileMatrixLimits>
     48877                                        <TileMatrixLimits>
     48878                                                <TileMatrix>13</TileMatrix>
     48879                                                <MinTileRow>2977</MinTileRow>
     48880                                                <MaxTileRow>2989</MaxTileRow>
     48881                                                <MinTileCol>4163</MinTileCol>
     48882                                                <MaxTileCol>4169</MaxTileCol>
     48883                                        </TileMatrixLimits>
     48884                                        <TileMatrixLimits>
     48885                                                <TileMatrix>14</TileMatrix>
     48886                                                <MinTileRow>5954</MinTileRow>
     48887                                                <MaxTileRow>5978</MaxTileRow>
     48888                                                <MinTileCol>8326</MinTileCol>
     48889                                                <MaxTileCol>8339</MaxTileCol>
     48890                                        </TileMatrixLimits>
     48891                                        <TileMatrixLimits>
     48892                                                <TileMatrix>15</TileMatrix>
     48893                                                <MinTileRow>11909</MinTileRow>
     48894                                                <MaxTileRow>11957</MaxTileRow>
     48895                                                <MinTileCol>16653</MinTileCol>
     48896                                                <MaxTileCol>16678</MaxTileCol>
     48897                                        </TileMatrixLimits>
     48898                                        <TileMatrixLimits>
     48899                                                <TileMatrix>16</TileMatrix>
     48900                                                <MinTileRow>23819</MinTileRow>
     48901                                                <MaxTileRow>23914</MaxTileRow>
     48902                                                <MinTileCol>33307</MinTileCol>
     48903                                                <MaxTileCol>33357</MaxTileCol>
     48904                                        </TileMatrixLimits>
     48905                                        <TileMatrixLimits>
     48906                                                <TileMatrix>17</TileMatrix>
     48907                                                <MinTileRow>47639</MinTileRow>
     48908                                                <MaxTileRow>47829</MaxTileRow>
     48909                                                <MinTileCol>66614</MinTileCol>
     48910                                                <MaxTileCol>66714</MaxTileCol>
     48911                                        </TileMatrixLimits>
     48912                                        <TileMatrixLimits>
     48913                                                <TileMatrix>18</TileMatrix>
     48914                                                <MinTileRow>95278</MinTileRow>
     48915                                                <MaxTileRow>95659</MaxTileRow>
     48916                                                <MinTileCol>133229</MinTileCol>
     48917                                                <MaxTileCol>133429</MaxTileCol>
     48918                                        </TileMatrixLimits>
     48919                                        <TileMatrixLimits>
     48920                                                <TileMatrix>2</TileMatrix>
     48921                                                <MinTileRow>1</MinTileRow>
     48922                                                <MaxTileRow>1</MaxTileRow>
     48923                                                <MinTileCol>2</MinTileCol>
     48924                                                <MaxTileCol>2</MaxTileCol>
     48925                                        </TileMatrixLimits>
     48926                                        <TileMatrixLimits>
     48927                                                <TileMatrix>3</TileMatrix>
     48928                                                <MinTileRow>2</MinTileRow>
     48929                                                <MaxTileRow>2</MaxTileRow>
     48930                                                <MinTileCol>4</MinTileCol>
     48931                                                <MaxTileCol>4</MaxTileCol>
     48932                                        </TileMatrixLimits>
     48933                                        <TileMatrixLimits>
     48934                                                <TileMatrix>4</TileMatrix>
     48935                                                <MinTileRow>5</MinTileRow>
     48936                                                <MaxTileRow>5</MaxTileRow>
     48937                                                <MinTileCol>8</MinTileCol>
     48938                                                <MaxTileCol>8</MaxTileCol>
     48939                                        </TileMatrixLimits>
     48940                                        <TileMatrixLimits>
     48941                                                <TileMatrix>5</TileMatrix>
     48942                                                <MinTileRow>11</MinTileRow>
     48943                                                <MaxTileRow>11</MaxTileRow>
     48944                                                <MinTileCol>16</MinTileCol>
     48945                                                <MaxTileCol>16</MaxTileCol>
     48946                                        </TileMatrixLimits>
     48947                                        <TileMatrixLimits>
     48948                                                <TileMatrix>6</TileMatrix>
     48949                                                <MinTileRow>23</MinTileRow>
     48950                                                <MaxTileRow>23</MaxTileRow>
     48951                                                <MinTileCol>32</MinTileCol>
     48952                                                <MaxTileCol>32</MaxTileCol>
     48953                                        </TileMatrixLimits>
     48954                                        <TileMatrixLimits>
     48955                                                <TileMatrix>7</TileMatrix>
     48956                                                <MinTileRow>46</MinTileRow>
     48957                                                <MaxTileRow>46</MaxTileRow>
     48958                                                <MinTileCol>65</MinTileCol>
     48959                                                <MaxTileCol>65</MaxTileCol>
     48960                                        </TileMatrixLimits>
     48961                                        <TileMatrixLimits>
     48962                                                <TileMatrix>8</TileMatrix>
     48963                                                <MinTileRow>93</MinTileRow>
     48964                                                <MaxTileRow>93</MaxTileRow>
     48965                                                <MinTileCol>130</MinTileCol>
     48966                                                <MaxTileCol>130</MaxTileCol>
     48967                                        </TileMatrixLimits>
     48968                                        <TileMatrixLimits>
     48969                                                <TileMatrix>9</TileMatrix>
     48970                                                <MinTileRow>186</MinTileRow>
     48971                                                <MaxTileRow>186</MaxTileRow>
     48972                                                <MinTileCol>260</MinTileCol>
     48973                                                <MaxTileCol>260</MaxTileCol>
     48974                                        </TileMatrixLimits>
     48975                                </TileMatrixSetLimits>
     48976                        </TileMatrixSetLink>
     48977                </Layer>
     48978                <Layer>
     48979                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     48980                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     48981                        <ows:Keywords>
     48982                                <ows:Keyword>Photographies</ows:Keyword>
     48983                        </ows:Keywords>
     48984                        <ows:WGS84BoundingBox>
     48985                                <ows:LowerCorner>2.48081 43.4019</ows:LowerCorner>
     48986                                <ows:UpperCorner>2.70387 43.5107</ows:UpperCorner>
     48987                        </ows:WGS84BoundingBox>
     48988                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-03-38727825</ows:Identifier>
     48989                        <Style isDefault="true">
     48990                                <ows:Title>Données Brutes</ows:Title>
     48991                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     48992                                <ows:Keywords>
     48993                                        <ows:Keyword>Défaut</ows:Keyword>
     48994                                </ows:Keywords>
     48995                                <ows:Identifier>normal</ows:Identifier>
     48996                                <LegendURL format="image/jpeg" height="200"
     48997                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     48998                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     48999                        </Style>
     49000                        <Format>image/jpeg</Format>
     49001                        <TileMatrixSetLink>
     49002                                <TileMatrixSet>PM</TileMatrixSet>
     49003                                <TileMatrixSetLimits>
     49004                                        <TileMatrixLimits>
     49005                                                <TileMatrix>0</TileMatrix>
     49006                                                <MinTileRow>0</MinTileRow>
     49007                                                <MaxTileRow>0</MaxTileRow>
     49008                                                <MinTileCol>0</MinTileCol>
     49009                                                <MaxTileCol>0</MaxTileCol>
     49010                                        </TileMatrixLimits>
     49011                                        <TileMatrixLimits>
     49012                                                <TileMatrix>1</TileMatrix>
     49013                                                <MinTileRow>0</MinTileRow>
     49014                                                <MaxTileRow>0</MaxTileRow>
     49015                                                <MinTileCol>1</MinTileCol>
     49016                                                <MaxTileCol>1</MaxTileCol>
     49017                                        </TileMatrixLimits>
     49018                                        <TileMatrixLimits>
     49019                                                <TileMatrix>10</TileMatrix>
     49020                                                <MinTileRow>374</MinTileRow>
     49021                                                <MaxTileRow>374</MaxTileRow>
     49022                                                <MinTileCol>519</MinTileCol>
     49023                                                <MaxTileCol>519</MaxTileCol>
     49024                                        </TileMatrixLimits>
     49025                                        <TileMatrixLimits>
     49026                                                <TileMatrix>11</TileMatrix>
     49027                                                <MinTileRow>748</MinTileRow>
     49028                                                <MaxTileRow>749</MaxTileRow>
     49029                                                <MinTileCol>1038</MinTileCol>
     49030                                                <MaxTileCol>1039</MaxTileCol>
     49031                                        </TileMatrixLimits>
     49032                                        <TileMatrixLimits>
     49033                                                <TileMatrix>12</TileMatrix>
     49034                                                <MinTileRow>1497</MinTileRow>
     49035                                                <MaxTileRow>1498</MaxTileRow>
     49036                                                <MinTileCol>2076</MinTileCol>
     49037                                                <MaxTileCol>2078</MaxTileCol>
     49038                                        </TileMatrixLimits>
     49039                                        <TileMatrixLimits>
     49040                                                <TileMatrix>13</TileMatrix>
     49041                                                <MinTileRow>2994</MinTileRow>
     49042                                                <MaxTileRow>2997</MaxTileRow>
     49043                                                <MinTileCol>4152</MinTileCol>
     49044                                                <MaxTileCol>4157</MaxTileCol>
     49045                                        </TileMatrixLimits>
     49046                                        <TileMatrixLimits>
     49047                                                <TileMatrix>14</TileMatrix>
     49048                                                <MinTileRow>5988</MinTileRow>
     49049                                                <MaxTileRow>5995</MaxTileRow>
     49050                                                <MinTileCol>8304</MinTileCol>
     49051                                                <MaxTileCol>8315</MaxTileCol>
     49052                                        </TileMatrixLimits>
     49053                                        <TileMatrixLimits>
     49054                                                <TileMatrix>15</TileMatrix>
     49055                                                <MinTileRow>11976</MinTileRow>
     49056                                                <MaxTileRow>11990</MaxTileRow>
     49057                                                <MinTileCol>16609</MinTileCol>
     49058                                                <MaxTileCol>16630</MaxTileCol>
     49059                                        </TileMatrixLimits>
     49060                                        <TileMatrixLimits>
     49061                                                <TileMatrix>16</TileMatrix>
     49062                                                <MinTileRow>23953</MinTileRow>
     49063                                                <MaxTileRow>23980</MaxTileRow>
     49064                                                <MinTileCol>33219</MinTileCol>
     49065                                                <MaxTileCol>33260</MaxTileCol>
     49066                                        </TileMatrixLimits>
     49067                                        <TileMatrixLimits>
     49068                                                <TileMatrix>17</TileMatrix>
     49069                                                <MinTileRow>47907</MinTileRow>
     49070                                                <MaxTileRow>47961</MaxTileRow>
     49071                                                <MinTileCol>66439</MinTileCol>
     49072                                                <MaxTileCol>66520</MaxTileCol>
     49073                                        </TileMatrixLimits>
     49074                                        <TileMatrixLimits>
     49075                                                <TileMatrix>18</TileMatrix>
     49076                                                <MinTileRow>95814</MinTileRow>
     49077                                                <MaxTileRow>95923</MaxTileRow>
     49078                                                <MinTileCol>132878</MinTileCol>
     49079                                                <MaxTileCol>133040</MaxTileCol>
     49080                                        </TileMatrixLimits>
     49081                                        <TileMatrixLimits>
     49082                                                <TileMatrix>2</TileMatrix>
     49083                                                <MinTileRow>1</MinTileRow>
     49084                                                <MaxTileRow>1</MaxTileRow>
     49085                                                <MinTileCol>2</MinTileCol>
     49086                                                <MaxTileCol>2</MaxTileCol>
     49087                                        </TileMatrixLimits>
     49088                                        <TileMatrixLimits>
     49089                                                <TileMatrix>3</TileMatrix>
     49090                                                <MinTileRow>2</MinTileRow>
     49091                                                <MaxTileRow>2</MaxTileRow>
     49092                                                <MinTileCol>4</MinTileCol>
     49093                                                <MaxTileCol>4</MaxTileCol>
     49094                                        </TileMatrixLimits>
     49095                                        <TileMatrixLimits>
     49096                                                <TileMatrix>4</TileMatrix>
     49097                                                <MinTileRow>5</MinTileRow>
     49098                                                <MaxTileRow>5</MaxTileRow>
     49099                                                <MinTileCol>8</MinTileCol>
     49100                                                <MaxTileCol>8</MaxTileCol>
     49101                                        </TileMatrixLimits>
     49102                                        <TileMatrixLimits>
     49103                                                <TileMatrix>5</TileMatrix>
     49104                                                <MinTileRow>11</MinTileRow>
     49105                                                <MaxTileRow>11</MaxTileRow>
     49106                                                <MinTileCol>16</MinTileCol>
     49107                                                <MaxTileCol>16</MaxTileCol>
     49108                                        </TileMatrixLimits>
     49109                                        <TileMatrixLimits>
     49110                                                <TileMatrix>6</TileMatrix>
     49111                                                <MinTileRow>23</MinTileRow>
     49112                                                <MaxTileRow>23</MaxTileRow>
     49113                                                <MinTileCol>32</MinTileCol>
     49114                                                <MaxTileCol>32</MaxTileCol>
     49115                                        </TileMatrixLimits>
     49116                                        <TileMatrixLimits>
     49117                                                <TileMatrix>7</TileMatrix>
     49118                                                <MinTileRow>46</MinTileRow>
     49119                                                <MaxTileRow>46</MaxTileRow>
     49120                                                <MinTileCol>64</MinTileCol>
     49121                                                <MaxTileCol>64</MaxTileCol>
     49122                                        </TileMatrixLimits>
     49123                                        <TileMatrixLimits>
     49124                                                <TileMatrix>8</TileMatrix>
     49125                                                <MinTileRow>93</MinTileRow>
     49126                                                <MaxTileRow>93</MaxTileRow>
     49127                                                <MinTileCol>129</MinTileCol>
     49128                                                <MaxTileCol>129</MaxTileCol>
     49129                                        </TileMatrixLimits>
     49130                                        <TileMatrixLimits>
     49131                                                <TileMatrix>9</TileMatrix>
     49132                                                <MinTileRow>187</MinTileRow>
     49133                                                <MaxTileRow>187</MaxTileRow>
     49134                                                <MinTileCol>259</MinTileCol>
     49135                                                <MaxTileCol>259</MaxTileCol>
     49136                                        </TileMatrixLimits>
     49137                                </TileMatrixSetLimits>
     49138                        </TileMatrixSetLink>
     49139                </Layer>
     49140                <Layer>
     49141                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49142                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49143                        <ows:Keywords>
     49144                                <ows:Keyword>Photographies</ows:Keyword>
     49145                        </ows:Keywords>
     49146                        <ows:WGS84BoundingBox>
     49147                                <ows:LowerCorner>1.73933 43.8998</ows:LowerCorner>
     49148                                <ows:UpperCorner>2.01669 44.0646</ows:UpperCorner>
     49149                        </ows:WGS84BoundingBox>
     49150                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-14-39662824</ows:Identifier>
     49151                        <Style isDefault="true">
     49152                                <ows:Title>Données Brutes</ows:Title>
     49153                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49154                                <ows:Keywords>
     49155                                        <ows:Keyword>Défaut</ows:Keyword>
     49156                                </ows:Keywords>
     49157                                <ows:Identifier>normal</ows:Identifier>
     49158                                <LegendURL format="image/jpeg" height="200"
     49159                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49160                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49161                        </Style>
     49162                        <Format>image/jpeg</Format>
     49163                        <TileMatrixSetLink>
     49164                                <TileMatrixSet>PM</TileMatrixSet>
     49165                                <TileMatrixSetLimits>
     49166                                        <TileMatrixLimits>
     49167                                                <TileMatrix>0</TileMatrix>
     49168                                                <MinTileRow>0</MinTileRow>
     49169                                                <MaxTileRow>0</MaxTileRow>
     49170                                                <MinTileCol>0</MinTileCol>
     49171                                                <MaxTileCol>0</MaxTileCol>
     49172                                        </TileMatrixLimits>
     49173                                        <TileMatrixLimits>
     49174                                                <TileMatrix>1</TileMatrix>
     49175                                                <MinTileRow>0</MinTileRow>
     49176                                                <MaxTileRow>0</MaxTileRow>
     49177                                                <MinTileCol>1</MinTileCol>
     49178                                                <MaxTileCol>1</MaxTileCol>
     49179                                        </TileMatrixLimits>
     49180                                        <TileMatrixLimits>
     49181                                                <TileMatrix>10</TileMatrix>
     49182                                                <MinTileRow>372</MinTileRow>
     49183                                                <MaxTileRow>372</MaxTileRow>
     49184                                                <MinTileCol>516</MinTileCol>
     49185                                                <MaxTileCol>517</MaxTileCol>
     49186                                        </TileMatrixLimits>
     49187                                        <TileMatrixLimits>
     49188                                                <TileMatrix>11</TileMatrix>
     49189                                                <MinTileRow>744</MinTileRow>
     49190                                                <MaxTileRow>745</MaxTileRow>
     49191                                                <MinTileCol>1033</MinTileCol>
     49192                                                <MaxTileCol>1035</MaxTileCol>
     49193                                        </TileMatrixLimits>
     49194                                        <TileMatrixLimits>
     49195                                                <TileMatrix>12</TileMatrix>
     49196                                                <MinTileRow>1488</MinTileRow>
     49197                                                <MaxTileRow>1490</MaxTileRow>
     49198                                                <MinTileCol>2067</MinTileCol>
     49199                                                <MaxTileCol>2070</MaxTileCol>
     49200                                        </TileMatrixLimits>
     49201                                        <TileMatrixLimits>
     49202                                                <TileMatrix>13</TileMatrix>
     49203                                                <MinTileRow>2976</MinTileRow>
     49204                                                <MaxTileRow>2981</MaxTileRow>
     49205                                                <MinTileCol>4135</MinTileCol>
     49206                                                <MaxTileCol>4141</MaxTileCol>
     49207                                        </TileMatrixLimits>
     49208                                        <TileMatrixLimits>
     49209                                                <TileMatrix>14</TileMatrix>
     49210                                                <MinTileRow>5953</MinTileRow>
     49211                                                <MaxTileRow>5963</MaxTileRow>
     49212                                                <MinTileCol>8271</MinTileCol>
     49213                                                <MaxTileCol>8283</MaxTileCol>
     49214                                        </TileMatrixLimits>
     49215                                        <TileMatrixLimits>
     49216                                                <TileMatrix>15</TileMatrix>
     49217                                                <MinTileRow>11906</MinTileRow>
     49218                                                <MaxTileRow>11927</MaxTileRow>
     49219                                                <MinTileCol>16542</MinTileCol>
     49220                                                <MaxTileCol>16567</MaxTileCol>
     49221                                        </TileMatrixLimits>
     49222                                        <TileMatrixLimits>
     49223                                                <TileMatrix>16</TileMatrix>
     49224                                                <MinTileRow>23813</MinTileRow>
     49225                                                <MaxTileRow>23855</MaxTileRow>
     49226                                                <MinTileCol>33084</MinTileCol>
     49227                                                <MaxTileCol>33135</MaxTileCol>
     49228                                        </TileMatrixLimits>
     49229                                        <TileMatrixLimits>
     49230                                                <TileMatrix>17</TileMatrix>
     49231                                                <MinTileRow>47627</MinTileRow>
     49232                                                <MaxTileRow>47711</MaxTileRow>
     49233                                                <MinTileCol>66169</MinTileCol>
     49234                                                <MaxTileCol>66270</MaxTileCol>
     49235                                        </TileMatrixLimits>
     49236                                        <TileMatrixLimits>
     49237                                                <TileMatrix>18</TileMatrix>
     49238                                                <MinTileRow>95255</MinTileRow>
     49239                                                <MaxTileRow>95422</MaxTileRow>
     49240                                                <MinTileCol>132338</MinTileCol>
     49241                                                <MaxTileCol>132540</MaxTileCol>
     49242                                        </TileMatrixLimits>
     49243                                        <TileMatrixLimits>
     49244                                                <TileMatrix>2</TileMatrix>
     49245                                                <MinTileRow>1</MinTileRow>
     49246                                                <MaxTileRow>1</MaxTileRow>
     49247                                                <MinTileCol>2</MinTileCol>
     49248                                                <MaxTileCol>2</MaxTileCol>
     49249                                        </TileMatrixLimits>
     49250                                        <TileMatrixLimits>
     49251                                                <TileMatrix>3</TileMatrix>
     49252                                                <MinTileRow>2</MinTileRow>
     49253                                                <MaxTileRow>2</MaxTileRow>
     49254                                                <MinTileCol>4</MinTileCol>
     49255                                                <MaxTileCol>4</MaxTileCol>
     49256                                        </TileMatrixLimits>
     49257                                        <TileMatrixLimits>
     49258                                                <TileMatrix>4</TileMatrix>
     49259                                                <MinTileRow>5</MinTileRow>
     49260                                                <MaxTileRow>5</MaxTileRow>
     49261                                                <MinTileCol>8</MinTileCol>
     49262                                                <MaxTileCol>8</MaxTileCol>
     49263                                        </TileMatrixLimits>
     49264                                        <TileMatrixLimits>
     49265                                                <TileMatrix>5</TileMatrix>
     49266                                                <MinTileRow>11</MinTileRow>
     49267                                                <MaxTileRow>11</MaxTileRow>
     49268                                                <MinTileCol>16</MinTileCol>
     49269                                                <MaxTileCol>16</MaxTileCol>
     49270                                        </TileMatrixLimits>
     49271                                        <TileMatrixLimits>
     49272                                                <TileMatrix>6</TileMatrix>
     49273                                                <MinTileRow>23</MinTileRow>
     49274                                                <MaxTileRow>23</MaxTileRow>
     49275                                                <MinTileCol>32</MinTileCol>
     49276                                                <MaxTileCol>32</MaxTileCol>
     49277                                        </TileMatrixLimits>
     49278                                        <TileMatrixLimits>
     49279                                                <TileMatrix>7</TileMatrix>
     49280                                                <MinTileRow>46</MinTileRow>
     49281                                                <MaxTileRow>46</MaxTileRow>
     49282                                                <MinTileCol>64</MinTileCol>
     49283                                                <MaxTileCol>64</MaxTileCol>
     49284                                        </TileMatrixLimits>
     49285                                        <TileMatrixLimits>
     49286                                                <TileMatrix>8</TileMatrix>
     49287                                                <MinTileRow>93</MinTileRow>
     49288                                                <MaxTileRow>93</MaxTileRow>
     49289                                                <MinTileCol>129</MinTileCol>
     49290                                                <MaxTileCol>129</MaxTileCol>
     49291                                        </TileMatrixLimits>
     49292                                        <TileMatrixLimits>
     49293                                                <TileMatrix>9</TileMatrix>
     49294                                                <MinTileRow>186</MinTileRow>
     49295                                                <MaxTileRow>186</MaxTileRow>
     49296                                                <MinTileCol>258</MinTileCol>
     49297                                                <MaxTileCol>258</MaxTileCol>
     49298                                        </TileMatrixLimits>
     49299                                </TileMatrixSetLimits>
     49300                        </TileMatrixSetLink>
     49301                </Layer>
     49302                <Layer>
     49303                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49304                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49305                        <ows:Keywords>
     49306                                <ows:Keyword>Photographies</ows:Keyword>
     49307                        </ows:Keywords>
     49308                        <ows:WGS84BoundingBox>
     49309                                <ows:LowerCorner>2.02255 43.2008</ows:LowerCorner>
     49310                                <ows:UpperCorner>2.29913 43.5628</ows:UpperCorner>
     49311                        </ows:WGS84BoundingBox>
     49312                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-04-16-38749452</ows:Identifier>
     49313                        <Style isDefault="true">
     49314                                <ows:Title>Données Brutes</ows:Title>
     49315                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49316                                <ows:Keywords>
     49317                                        <ows:Keyword>Défaut</ows:Keyword>
     49318                                </ows:Keywords>
     49319                                <ows:Identifier>normal</ows:Identifier>
     49320                                <LegendURL format="image/jpeg" height="200"
     49321                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49322                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49323                        </Style>
     49324                        <Format>image/jpeg</Format>
     49325                        <TileMatrixSetLink>
     49326                                <TileMatrixSet>PM</TileMatrixSet>
     49327                                <TileMatrixSetLimits>
     49328                                        <TileMatrixLimits>
     49329                                                <TileMatrix>0</TileMatrix>
     49330                                                <MinTileRow>0</MinTileRow>
     49331                                                <MaxTileRow>0</MaxTileRow>
     49332                                                <MinTileCol>0</MinTileCol>
     49333                                                <MaxTileCol>0</MaxTileCol>
     49334                                        </TileMatrixLimits>
     49335                                        <TileMatrixLimits>
     49336                                                <TileMatrix>1</TileMatrix>
     49337                                                <MinTileRow>0</MinTileRow>
     49338                                                <MaxTileRow>0</MaxTileRow>
     49339                                                <MinTileCol>1</MinTileCol>
     49340                                                <MaxTileCol>1</MaxTileCol>
     49341                                        </TileMatrixLimits>
     49342                                        <TileMatrixLimits>
     49343                                                <TileMatrix>10</TileMatrix>
     49344                                                <MinTileRow>374</MinTileRow>
     49345                                                <MaxTileRow>375</MaxTileRow>
     49346                                                <MinTileCol>517</MinTileCol>
     49347                                                <MaxTileCol>518</MaxTileCol>
     49348                                        </TileMatrixLimits>
     49349                                        <TileMatrixLimits>
     49350                                                <TileMatrix>11</TileMatrix>
     49351                                                <MinTileRow>748</MinTileRow>
     49352                                                <MaxTileRow>750</MaxTileRow>
     49353                                                <MinTileCol>1035</MinTileCol>
     49354                                                <MaxTileCol>1037</MaxTileCol>
     49355                                        </TileMatrixLimits>
     49356                                        <TileMatrixLimits>
     49357                                                <TileMatrix>12</TileMatrix>
     49358                                                <MinTileRow>1496</MinTileRow>
     49359                                                <MaxTileRow>1501</MaxTileRow>
     49360                                                <MinTileCol>2071</MinTileCol>
     49361                                                <MaxTileCol>2074</MaxTileCol>
     49362                                        </TileMatrixLimits>
     49363                                        <TileMatrixLimits>
     49364                                                <TileMatrix>13</TileMatrix>
     49365                                                <MinTileRow>2992</MinTileRow>
     49366                                                <MaxTileRow>3003</MaxTileRow>
     49367                                                <MinTileCol>4142</MinTileCol>
     49368                                                <MaxTileCol>4148</MaxTileCol>
     49369                                        </TileMatrixLimits>
     49370                                        <TileMatrixLimits>
     49371                                                <TileMatrix>14</TileMatrix>
     49372                                                <MinTileRow>5985</MinTileRow>
     49373                                                <MaxTileRow>6007</MaxTileRow>
     49374                                                <MinTileCol>8284</MinTileCol>
     49375                                                <MaxTileCol>8296</MaxTileCol>
     49376                                        </TileMatrixLimits>
     49377                                        <TileMatrixLimits>
     49378                                                <TileMatrix>15</TileMatrix>
     49379                                                <MinTileRow>11970</MinTileRow>
     49380                                                <MaxTileRow>12015</MaxTileRow>
     49381                                                <MinTileCol>16568</MinTileCol>
     49382                                                <MaxTileCol>16593</MaxTileCol>
     49383                                        </TileMatrixLimits>
     49384                                        <TileMatrixLimits>
     49385                                                <TileMatrix>16</TileMatrix>
     49386                                                <MinTileRow>23940</MinTileRow>
     49387                                                <MaxTileRow>24031</MaxTileRow>
     49388                                                <MinTileCol>33136</MinTileCol>
     49389                                                <MaxTileCol>33186</MaxTileCol>
     49390                                        </TileMatrixLimits>
     49391                                        <TileMatrixLimits>
     49392                                                <TileMatrix>17</TileMatrix>
     49393                                                <MinTileRow>47881</MinTileRow>
     49394                                                <MaxTileRow>48062</MaxTileRow>
     49395                                                <MinTileCol>66272</MinTileCol>
     49396                                                <MaxTileCol>66372</MaxTileCol>
     49397                                        </TileMatrixLimits>
     49398                                        <TileMatrixLimits>
     49399                                                <TileMatrix>18</TileMatrix>
     49400                                                <MinTileRow>95762</MinTileRow>
     49401                                                <MaxTileRow>96124</MaxTileRow>
     49402                                                <MinTileCol>132544</MinTileCol>
     49403                                                <MaxTileCol>132744</MaxTileCol>
     49404                                        </TileMatrixLimits>
     49405                                        <TileMatrixLimits>
     49406                                                <TileMatrix>2</TileMatrix>
     49407                                                <MinTileRow>1</MinTileRow>
     49408                                                <MaxTileRow>1</MaxTileRow>
     49409                                                <MinTileCol>2</MinTileCol>
     49410                                                <MaxTileCol>2</MaxTileCol>
     49411                                        </TileMatrixLimits>
     49412                                        <TileMatrixLimits>
     49413                                                <TileMatrix>3</TileMatrix>
     49414                                                <MinTileRow>2</MinTileRow>
     49415                                                <MaxTileRow>2</MaxTileRow>
     49416                                                <MinTileCol>4</MinTileCol>
     49417                                                <MaxTileCol>4</MaxTileCol>
     49418                                        </TileMatrixLimits>
     49419                                        <TileMatrixLimits>
     49420                                                <TileMatrix>4</TileMatrix>
     49421                                                <MinTileRow>5</MinTileRow>
     49422                                                <MaxTileRow>5</MaxTileRow>
     49423                                                <MinTileCol>8</MinTileCol>
     49424                                                <MaxTileCol>8</MaxTileCol>
     49425                                        </TileMatrixLimits>
     49426                                        <TileMatrixLimits>
     49427                                                <TileMatrix>5</TileMatrix>
     49428                                                <MinTileRow>11</MinTileRow>
     49429                                                <MaxTileRow>11</MaxTileRow>
     49430                                                <MinTileCol>16</MinTileCol>
     49431                                                <MaxTileCol>16</MaxTileCol>
     49432                                        </TileMatrixLimits>
     49433                                        <TileMatrixLimits>
     49434                                                <TileMatrix>6</TileMatrix>
     49435                                                <MinTileRow>23</MinTileRow>
     49436                                                <MaxTileRow>23</MaxTileRow>
     49437                                                <MinTileCol>32</MinTileCol>
     49438                                                <MaxTileCol>32</MaxTileCol>
     49439                                        </TileMatrixLimits>
     49440                                        <TileMatrixLimits>
     49441                                                <TileMatrix>7</TileMatrix>
     49442                                                <MinTileRow>46</MinTileRow>
     49443                                                <MaxTileRow>46</MaxTileRow>
     49444                                                <MinTileCol>64</MinTileCol>
     49445                                                <MaxTileCol>64</MaxTileCol>
     49446                                        </TileMatrixLimits>
     49447                                        <TileMatrixLimits>
     49448                                                <TileMatrix>8</TileMatrix>
     49449                                                <MinTileRow>93</MinTileRow>
     49450                                                <MaxTileRow>93</MaxTileRow>
     49451                                                <MinTileCol>129</MinTileCol>
     49452                                                <MaxTileCol>129</MaxTileCol>
     49453                                        </TileMatrixLimits>
     49454                                        <TileMatrixLimits>
     49455                                                <TileMatrix>9</TileMatrix>
     49456                                                <MinTileRow>187</MinTileRow>
     49457                                                <MaxTileRow>187</MaxTileRow>
     49458                                                <MinTileCol>258</MinTileCol>
     49459                                                <MaxTileCol>259</MaxTileCol>
     49460                                        </TileMatrixLimits>
     49461                                </TileMatrixSetLimits>
     49462                        </TileMatrixSetLink>
     49463                </Layer>
     49464                <Layer>
     49465                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49466                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49467                        <ows:Keywords>
     49468                                <ows:Keyword>Photographies</ows:Keyword>
     49469                        </ows:Keywords>
     49470                        <ows:WGS84BoundingBox>
     49471                                <ows:LowerCorner>1.91371 43.8566</ows:LowerCorner>
     49472                                <ows:UpperCorner>2.19157 44.084</ows:UpperCorner>
     49473                        </ows:WGS84BoundingBox>
     49474                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-05-05-38986324</ows:Identifier>
     49475                        <Style isDefault="true">
     49476                                <ows:Title>Données Brutes</ows:Title>
     49477                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49478                                <ows:Keywords>
     49479                                        <ows:Keyword>Défaut</ows:Keyword>
     49480                                </ows:Keywords>
     49481                                <ows:Identifier>normal</ows:Identifier>
     49482                                <LegendURL format="image/jpeg" height="200"
     49483                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49484                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49485                        </Style>
     49486                        <Format>image/jpeg</Format>
     49487                        <TileMatrixSetLink>
     49488                                <TileMatrixSet>PM</TileMatrixSet>
     49489                                <TileMatrixSetLimits>
     49490                                        <TileMatrixLimits>
     49491                                                <TileMatrix>0</TileMatrix>
     49492                                                <MinTileRow>0</MinTileRow>
     49493                                                <MaxTileRow>0</MaxTileRow>
     49494                                                <MinTileCol>0</MinTileCol>
     49495                                                <MaxTileCol>0</MaxTileCol>
     49496                                        </TileMatrixLimits>
     49497                                        <TileMatrixLimits>
     49498                                                <TileMatrix>1</TileMatrix>
     49499                                                <MinTileRow>0</MinTileRow>
     49500                                                <MaxTileRow>0</MaxTileRow>
     49501                                                <MinTileCol>1</MinTileCol>
     49502                                                <MaxTileCol>1</MaxTileCol>
     49503                                        </TileMatrixLimits>
     49504                                        <TileMatrixLimits>
     49505                                                <TileMatrix>10</TileMatrix>
     49506                                                <MinTileRow>372</MinTileRow>
     49507                                                <MaxTileRow>372</MaxTileRow>
     49508                                                <MinTileCol>517</MinTileCol>
     49509                                                <MaxTileCol>518</MaxTileCol>
     49510                                        </TileMatrixLimits>
     49511                                        <TileMatrixLimits>
     49512                                                <TileMatrix>11</TileMatrix>
     49513                                                <MinTileRow>744</MinTileRow>
     49514                                                <MaxTileRow>745</MaxTileRow>
     49515                                                <MinTileCol>1034</MinTileCol>
     49516                                                <MaxTileCol>1036</MaxTileCol>
     49517                                        </TileMatrixLimits>
     49518                                        <TileMatrixLimits>
     49519                                                <TileMatrix>12</TileMatrix>
     49520                                                <MinTileRow>1488</MinTileRow>
     49521                                                <MaxTileRow>1491</MaxTileRow>
     49522                                                <MinTileCol>2069</MinTileCol>
     49523                                                <MaxTileCol>2072</MaxTileCol>
     49524                                        </TileMatrixLimits>
     49525                                        <TileMatrixLimits>
     49526                                                <TileMatrix>13</TileMatrix>
     49527                                                <MinTileRow>2976</MinTileRow>
     49528                                                <MaxTileRow>2983</MaxTileRow>
     49529                                                <MinTileCol>4139</MinTileCol>
     49530                                                <MaxTileCol>4145</MaxTileCol>
     49531                                        </TileMatrixLimits>
     49532                                        <TileMatrixLimits>
     49533                                                <TileMatrix>14</TileMatrix>
     49534                                                <MinTileRow>5952</MinTileRow>
     49535                                                <MaxTileRow>5966</MaxTileRow>
     49536                                                <MinTileCol>8279</MinTileCol>
     49537                                                <MaxTileCol>8291</MaxTileCol>
     49538                                        </TileMatrixLimits>
     49539                                        <TileMatrixLimits>
     49540                                                <TileMatrix>15</TileMatrix>
     49541                                                <MinTileRow>11904</MinTileRow>
     49542                                                <MaxTileRow>11932</MaxTileRow>
     49543                                                <MinTileCol>16558</MinTileCol>
     49544                                                <MaxTileCol>16583</MaxTileCol>
     49545                                        </TileMatrixLimits>
     49546                                        <TileMatrixLimits>
     49547                                                <TileMatrix>16</TileMatrix>
     49548                                                <MinTileRow>23808</MinTileRow>
     49549                                                <MaxTileRow>23865</MaxTileRow>
     49550                                                <MinTileCol>33116</MinTileCol>
     49551                                                <MaxTileCol>33166</MaxTileCol>
     49552                                        </TileMatrixLimits>
     49553                                        <TileMatrixLimits>
     49554                                                <TileMatrix>17</TileMatrix>
     49555                                                <MinTileRow>47617</MinTileRow>
     49556                                                <MaxTileRow>47731</MaxTileRow>
     49557                                                <MinTileCol>66232</MinTileCol>
     49558                                                <MaxTileCol>66333</MaxTileCol>
     49559                                        </TileMatrixLimits>
     49560                                        <TileMatrixLimits>
     49561                                                <TileMatrix>18</TileMatrix>
     49562                                                <MinTileRow>95235</MinTileRow>
     49563                                                <MaxTileRow>95463</MaxTileRow>
     49564                                                <MinTileCol>132465</MinTileCol>
     49565                                                <MaxTileCol>132667</MaxTileCol>
     49566                                        </TileMatrixLimits>
     49567                                        <TileMatrixLimits>
     49568                                                <TileMatrix>2</TileMatrix>
     49569                                                <MinTileRow>1</MinTileRow>
     49570                                                <MaxTileRow>1</MaxTileRow>
     49571                                                <MinTileCol>2</MinTileCol>
     49572                                                <MaxTileCol>2</MaxTileCol>
     49573                                        </TileMatrixLimits>
     49574                                        <TileMatrixLimits>
     49575                                                <TileMatrix>3</TileMatrix>
     49576                                                <MinTileRow>2</MinTileRow>
     49577                                                <MaxTileRow>2</MaxTileRow>
     49578                                                <MinTileCol>4</MinTileCol>
     49579                                                <MaxTileCol>4</MaxTileCol>
     49580                                        </TileMatrixLimits>
     49581                                        <TileMatrixLimits>
     49582                                                <TileMatrix>4</TileMatrix>
     49583                                                <MinTileRow>5</MinTileRow>
     49584                                                <MaxTileRow>5</MaxTileRow>
     49585                                                <MinTileCol>8</MinTileCol>
     49586                                                <MaxTileCol>8</MaxTileCol>
     49587                                        </TileMatrixLimits>
     49588                                        <TileMatrixLimits>
     49589                                                <TileMatrix>5</TileMatrix>
     49590                                                <MinTileRow>11</MinTileRow>
     49591                                                <MaxTileRow>11</MaxTileRow>
     49592                                                <MinTileCol>16</MinTileCol>
     49593                                                <MaxTileCol>16</MaxTileCol>
     49594                                        </TileMatrixLimits>
     49595                                        <TileMatrixLimits>
     49596                                                <TileMatrix>6</TileMatrix>
     49597                                                <MinTileRow>23</MinTileRow>
     49598                                                <MaxTileRow>23</MaxTileRow>
     49599                                                <MinTileCol>32</MinTileCol>
     49600                                                <MaxTileCol>32</MaxTileCol>
     49601                                        </TileMatrixLimits>
     49602                                        <TileMatrixLimits>
     49603                                                <TileMatrix>7</TileMatrix>
     49604                                                <MinTileRow>46</MinTileRow>
     49605                                                <MaxTileRow>46</MaxTileRow>
     49606                                                <MinTileCol>64</MinTileCol>
     49607                                                <MaxTileCol>64</MaxTileCol>
     49608                                        </TileMatrixLimits>
     49609                                        <TileMatrixLimits>
     49610                                                <TileMatrix>8</TileMatrix>
     49611                                                <MinTileRow>93</MinTileRow>
     49612                                                <MaxTileRow>93</MaxTileRow>
     49613                                                <MinTileCol>129</MinTileCol>
     49614                                                <MaxTileCol>129</MaxTileCol>
     49615                                        </TileMatrixLimits>
     49616                                        <TileMatrixLimits>
     49617                                                <TileMatrix>9</TileMatrix>
     49618                                                <MinTileRow>186</MinTileRow>
     49619                                                <MaxTileRow>186</MaxTileRow>
     49620                                                <MinTileCol>258</MinTileCol>
     49621                                                <MaxTileCol>259</MaxTileCol>
     49622                                        </TileMatrixLimits>
     49623                                </TileMatrixSetLimits>
     49624                        </TileMatrixSetLink>
     49625                </Layer>
     49626                <Layer>
     49627                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49628                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49629                        <ows:Keywords>
     49630                                <ows:Keyword>Photographies</ows:Keyword>
     49631                        </ows:Keywords>
     49632                        <ows:WGS84BoundingBox>
     49633                                <ows:LowerCorner>2.09564 43.4444</ows:LowerCorner>
     49634                                <ows:UpperCorner>2.3579 43.6351</ows:UpperCorner>
     49635                        </ows:WGS84BoundingBox>
     49636                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-06-06-39188446</ows:Identifier>
     49637                        <Style isDefault="true">
     49638                                <ows:Title>Données Brutes</ows:Title>
     49639                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49640                                <ows:Keywords>
     49641                                        <ows:Keyword>Défaut</ows:Keyword>
     49642                                </ows:Keywords>
     49643                                <ows:Identifier>normal</ows:Identifier>
     49644                                <LegendURL format="image/jpeg" height="200"
     49645                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49646                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49647                        </Style>
     49648                        <Format>image/jpeg</Format>
     49649                        <TileMatrixSetLink>
     49650                                <TileMatrixSet>PM</TileMatrixSet>
     49651                                <TileMatrixSetLimits>
     49652                                        <TileMatrixLimits>
     49653                                                <TileMatrix>0</TileMatrix>
     49654                                                <MinTileRow>0</MinTileRow>
     49655                                                <MaxTileRow>0</MaxTileRow>
     49656                                                <MinTileCol>0</MinTileCol>
     49657                                                <MaxTileCol>0</MaxTileCol>
     49658                                        </TileMatrixLimits>
     49659                                        <TileMatrixLimits>
     49660                                                <TileMatrix>1</TileMatrix>
     49661                                                <MinTileRow>0</MinTileRow>
     49662                                                <MaxTileRow>0</MaxTileRow>
     49663                                                <MinTileCol>1</MinTileCol>
     49664                                                <MaxTileCol>1</MaxTileCol>
     49665                                        </TileMatrixLimits>
     49666                                        <TileMatrixLimits>
     49667                                                <TileMatrix>10</TileMatrix>
     49668                                                <MinTileRow>373</MinTileRow>
     49669                                                <MaxTileRow>374</MaxTileRow>
     49670                                                <MinTileCol>517</MinTileCol>
     49671                                                <MaxTileCol>518</MaxTileCol>
     49672                                        </TileMatrixLimits>
     49673                                        <TileMatrixLimits>
     49674                                                <TileMatrix>11</TileMatrix>
     49675                                                <MinTileRow>747</MinTileRow>
     49676                                                <MaxTileRow>749</MaxTileRow>
     49677                                                <MinTileCol>1035</MinTileCol>
     49678                                                <MaxTileCol>1037</MaxTileCol>
     49679                                        </TileMatrixLimits>
     49680                                        <TileMatrixLimits>
     49681                                                <TileMatrix>12</TileMatrix>
     49682                                                <MinTileRow>1495</MinTileRow>
     49683                                                <MaxTileRow>1498</MaxTileRow>
     49684                                                <MinTileCol>2071</MinTileCol>
     49685                                                <MaxTileCol>2074</MaxTileCol>
     49686                                        </TileMatrixLimits>
     49687                                        <TileMatrixLimits>
     49688                                                <TileMatrix>13</TileMatrix>
     49689                                                <MinTileRow>2990</MinTileRow>
     49690                                                <MaxTileRow>2996</MaxTileRow>
     49691                                                <MinTileCol>4143</MinTileCol>
     49692                                                <MaxTileCol>4149</MaxTileCol>
     49693                                        </TileMatrixLimits>
     49694                                        <TileMatrixLimits>
     49695                                                <TileMatrix>14</TileMatrix>
     49696                                                <MinTileRow>5980</MinTileRow>
     49697                                                <MaxTileRow>5992</MaxTileRow>
     49698                                                <MinTileCol>8287</MinTileCol>
     49699                                                <MaxTileCol>8299</MaxTileCol>
     49700                                        </TileMatrixLimits>
     49701                                        <TileMatrixLimits>
     49702                                                <TileMatrix>15</TileMatrix>
     49703                                                <MinTileRow>11961</MinTileRow>
     49704                                                <MaxTileRow>11985</MaxTileRow>
     49705                                                <MinTileCol>16574</MinTileCol>
     49706                                                <MaxTileCol>16598</MaxTileCol>
     49707                                        </TileMatrixLimits>
     49708                                        <TileMatrixLimits>
     49709                                                <TileMatrix>16</TileMatrix>
     49710                                                <MinTileRow>23922</MinTileRow>
     49711                                                <MaxTileRow>23970</MaxTileRow>
     49712                                                <MinTileCol>33149</MinTileCol>
     49713                                                <MaxTileCol>33197</MaxTileCol>
     49714                                        </TileMatrixLimits>
     49715                                        <TileMatrixLimits>
     49716                                                <TileMatrix>17</TileMatrix>
     49717                                                <MinTileRow>47844</MinTileRow>
     49718                                                <MaxTileRow>47940</MaxTileRow>
     49719                                                <MinTileCol>66298</MinTileCol>
     49720                                                <MaxTileCol>66394</MaxTileCol>
     49721                                        </TileMatrixLimits>
     49722                                        <TileMatrixLimits>
     49723                                                <TileMatrix>18</TileMatrix>
     49724                                                <MinTileRow>95688</MinTileRow>
     49725                                                <MaxTileRow>95880</MaxTileRow>
     49726                                                <MinTileCol>132597</MinTileCol>
     49727                                                <MaxTileCol>132789</MaxTileCol>
     49728                                        </TileMatrixLimits>
     49729                                        <TileMatrixLimits>
     49730                                                <TileMatrix>2</TileMatrix>
     49731                                                <MinTileRow>1</MinTileRow>
     49732                                                <MaxTileRow>1</MaxTileRow>
     49733                                                <MinTileCol>2</MinTileCol>
     49734                                                <MaxTileCol>2</MaxTileCol>
     49735                                        </TileMatrixLimits>
     49736                                        <TileMatrixLimits>
     49737                                                <TileMatrix>3</TileMatrix>
     49738                                                <MinTileRow>2</MinTileRow>
     49739                                                <MaxTileRow>2</MaxTileRow>
     49740                                                <MinTileCol>4</MinTileCol>
     49741                                                <MaxTileCol>4</MaxTileCol>
     49742                                        </TileMatrixLimits>
     49743                                        <TileMatrixLimits>
     49744                                                <TileMatrix>4</TileMatrix>
     49745                                                <MinTileRow>5</MinTileRow>
     49746                                                <MaxTileRow>5</MaxTileRow>
     49747                                                <MinTileCol>8</MinTileCol>
     49748                                                <MaxTileCol>8</MaxTileCol>
     49749                                        </TileMatrixLimits>
     49750                                        <TileMatrixLimits>
     49751                                                <TileMatrix>5</TileMatrix>
     49752                                                <MinTileRow>11</MinTileRow>
     49753                                                <MaxTileRow>11</MaxTileRow>
     49754                                                <MinTileCol>16</MinTileCol>
     49755                                                <MaxTileCol>16</MaxTileCol>
     49756                                        </TileMatrixLimits>
     49757                                        <TileMatrixLimits>
     49758                                                <TileMatrix>6</TileMatrix>
     49759                                                <MinTileRow>23</MinTileRow>
     49760                                                <MaxTileRow>23</MaxTileRow>
     49761                                                <MinTileCol>32</MinTileCol>
     49762                                                <MaxTileCol>32</MaxTileCol>
     49763                                        </TileMatrixLimits>
     49764                                        <TileMatrixLimits>
     49765                                                <TileMatrix>7</TileMatrix>
     49766                                                <MinTileRow>46</MinTileRow>
     49767                                                <MaxTileRow>46</MaxTileRow>
     49768                                                <MinTileCol>64</MinTileCol>
     49769                                                <MaxTileCol>64</MaxTileCol>
     49770                                        </TileMatrixLimits>
     49771                                        <TileMatrixLimits>
     49772                                                <TileMatrix>8</TileMatrix>
     49773                                                <MinTileRow>93</MinTileRow>
     49774                                                <MaxTileRow>93</MaxTileRow>
     49775                                                <MinTileCol>129</MinTileCol>
     49776                                                <MaxTileCol>129</MaxTileCol>
     49777                                        </TileMatrixLimits>
     49778                                        <TileMatrixLimits>
     49779                                                <TileMatrix>9</TileMatrix>
     49780                                                <MinTileRow>186</MinTileRow>
     49781                                                <MaxTileRow>187</MaxTileRow>
     49782                                                <MinTileCol>258</MinTileCol>
     49783                                                <MaxTileCol>259</MaxTileCol>
     49784                                        </TileMatrixLimits>
     49785                                </TileMatrixSetLimits>
     49786                        </TileMatrixSetLink>
     49787                </Layer>
     49788                <Layer>
     49789                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49790                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49791                        <ows:Keywords>
     49792                                <ows:Keyword>Photographies</ows:Keyword>
     49793                        </ows:Keywords>
     49794                        <ows:WGS84BoundingBox>
     49795                                <ows:LowerCorner>2.01588 43.1378</ows:LowerCorner>
     49796                                <ows:UpperCorner>2.25076 43.2296</ows:UpperCorner>
     49797                        </ows:WGS84BoundingBox>
     49798                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-06-06-39197700</ows:Identifier>
     49799                        <Style isDefault="true">
     49800                                <ows:Title>Données Brutes</ows:Title>
     49801                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49802                                <ows:Keywords>
     49803                                        <ows:Keyword>Défaut</ows:Keyword>
     49804                                </ows:Keywords>
     49805                                <ows:Identifier>normal</ows:Identifier>
     49806                                <LegendURL format="image/jpeg" height="200"
     49807                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49808                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49809                        </Style>
     49810                        <Format>image/jpeg</Format>
     49811                        <TileMatrixSetLink>
     49812                                <TileMatrixSet>PM</TileMatrixSet>
     49813                                <TileMatrixSetLimits>
     49814                                        <TileMatrixLimits>
     49815                                                <TileMatrix>0</TileMatrix>
     49816                                                <MinTileRow>0</MinTileRow>
     49817                                                <MaxTileRow>0</MaxTileRow>
     49818                                                <MinTileCol>0</MinTileCol>
     49819                                                <MaxTileCol>0</MaxTileCol>
     49820                                        </TileMatrixLimits>
     49821                                        <TileMatrixLimits>
     49822                                                <TileMatrix>1</TileMatrix>
     49823                                                <MinTileRow>0</MinTileRow>
     49824                                                <MaxTileRow>0</MaxTileRow>
     49825                                                <MinTileCol>1</MinTileCol>
     49826                                                <MaxTileCol>1</MaxTileCol>
     49827                                        </TileMatrixLimits>
     49828                                        <TileMatrixLimits>
     49829                                                <TileMatrix>10</TileMatrix>
     49830                                                <MinTileRow>375</MinTileRow>
     49831                                                <MaxTileRow>375</MaxTileRow>
     49832                                                <MinTileCol>517</MinTileCol>
     49833                                                <MaxTileCol>518</MaxTileCol>
     49834                                        </TileMatrixLimits>
     49835                                        <TileMatrixLimits>
     49836                                                <TileMatrix>11</TileMatrix>
     49837                                                <MinTileRow>750</MinTileRow>
     49838                                                <MaxTileRow>751</MaxTileRow>
     49839                                                <MinTileCol>1035</MinTileCol>
     49840                                                <MaxTileCol>1036</MaxTileCol>
     49841                                        </TileMatrixLimits>
     49842                                        <TileMatrixLimits>
     49843                                                <TileMatrix>12</TileMatrix>
     49844                                                <MinTileRow>1501</MinTileRow>
     49845                                                <MaxTileRow>1502</MaxTileRow>
     49846                                                <MinTileCol>2070</MinTileCol>
     49847                                                <MaxTileCol>2073</MaxTileCol>
     49848                                        </TileMatrixLimits>
     49849                                        <TileMatrixLimits>
     49850                                                <TileMatrix>13</TileMatrix>
     49851                                                <MinTileRow>3002</MinTileRow>
     49852                                                <MaxTileRow>3005</MaxTileRow>
     49853                                                <MinTileCol>4141</MinTileCol>
     49854                                                <MaxTileCol>4147</MaxTileCol>
     49855                                        </TileMatrixLimits>
     49856                                        <TileMatrixLimits>
     49857                                                <TileMatrix>14</TileMatrix>
     49858                                                <MinTileRow>6005</MinTileRow>
     49859                                                <MaxTileRow>6011</MaxTileRow>
     49860                                                <MinTileCol>8283</MinTileCol>
     49861                                                <MaxTileCol>8294</MaxTileCol>
     49862                                        </TileMatrixLimits>
     49863                                        <TileMatrixLimits>
     49864                                                <TileMatrix>15</TileMatrix>
     49865                                                <MinTileRow>12011</MinTileRow>
     49866                                                <MaxTileRow>12023</MaxTileRow>
     49867                                                <MinTileCol>16567</MinTileCol>
     49868                                                <MaxTileCol>16588</MaxTileCol>
     49869                                        </TileMatrixLimits>
     49870                                        <TileMatrixLimits>
     49871                                                <TileMatrix>16</TileMatrix>
     49872                                                <MinTileRow>24023</MinTileRow>
     49873                                                <MaxTileRow>24046</MaxTileRow>
     49874                                                <MinTileCol>33134</MinTileCol>
     49875                                                <MaxTileCol>33177</MaxTileCol>
     49876                                        </TileMatrixLimits>
     49877                                        <TileMatrixLimits>
     49878                                                <TileMatrix>17</TileMatrix>
     49879                                                <MinTileRow>48047</MinTileRow>
     49880                                                <MaxTileRow>48093</MaxTileRow>
     49881                                                <MinTileCol>66269</MinTileCol>
     49882                                                <MaxTileCol>66355</MaxTileCol>
     49883                                        </TileMatrixLimits>
     49884                                        <TileMatrixLimits>
     49885                                                <TileMatrix>18</TileMatrix>
     49886                                                <MinTileRow>96095</MinTileRow>
     49887                                                <MaxTileRow>96187</MaxTileRow>
     49888                                                <MinTileCol>132539</MinTileCol>
     49889                                                <MaxTileCol>132711</MaxTileCol>
     49890                                        </TileMatrixLimits>
     49891                                        <TileMatrixLimits>
     49892                                                <TileMatrix>2</TileMatrix>
     49893                                                <MinTileRow>1</MinTileRow>
     49894                                                <MaxTileRow>1</MaxTileRow>
     49895                                                <MinTileCol>2</MinTileCol>
     49896                                                <MaxTileCol>2</MaxTileCol>
     49897                                        </TileMatrixLimits>
     49898                                        <TileMatrixLimits>
     49899                                                <TileMatrix>3</TileMatrix>
     49900                                                <MinTileRow>2</MinTileRow>
     49901                                                <MaxTileRow>2</MaxTileRow>
     49902                                                <MinTileCol>4</MinTileCol>
     49903                                                <MaxTileCol>4</MaxTileCol>
     49904                                        </TileMatrixLimits>
     49905                                        <TileMatrixLimits>
     49906                                                <TileMatrix>4</TileMatrix>
     49907                                                <MinTileRow>5</MinTileRow>
     49908                                                <MaxTileRow>5</MaxTileRow>
     49909                                                <MinTileCol>8</MinTileCol>
     49910                                                <MaxTileCol>8</MaxTileCol>
     49911                                        </TileMatrixLimits>
     49912                                        <TileMatrixLimits>
     49913                                                <TileMatrix>5</TileMatrix>
     49914                                                <MinTileRow>11</MinTileRow>
     49915                                                <MaxTileRow>11</MaxTileRow>
     49916                                                <MinTileCol>16</MinTileCol>
     49917                                                <MaxTileCol>16</MaxTileCol>
     49918                                        </TileMatrixLimits>
     49919                                        <TileMatrixLimits>
     49920                                                <TileMatrix>6</TileMatrix>
     49921                                                <MinTileRow>23</MinTileRow>
     49922                                                <MaxTileRow>23</MaxTileRow>
     49923                                                <MinTileCol>32</MinTileCol>
     49924                                                <MaxTileCol>32</MaxTileCol>
     49925                                        </TileMatrixLimits>
     49926                                        <TileMatrixLimits>
     49927                                                <TileMatrix>7</TileMatrix>
     49928                                                <MinTileRow>46</MinTileRow>
     49929                                                <MaxTileRow>46</MaxTileRow>
     49930                                                <MinTileCol>64</MinTileCol>
     49931                                                <MaxTileCol>64</MaxTileCol>
     49932                                        </TileMatrixLimits>
     49933                                        <TileMatrixLimits>
     49934                                                <TileMatrix>8</TileMatrix>
     49935                                                <MinTileRow>93</MinTileRow>
     49936                                                <MaxTileRow>93</MaxTileRow>
     49937                                                <MinTileCol>129</MinTileCol>
     49938                                                <MaxTileCol>129</MaxTileCol>
     49939                                        </TileMatrixLimits>
     49940                                        <TileMatrixLimits>
     49941                                                <TileMatrix>9</TileMatrix>
     49942                                                <MinTileRow>187</MinTileRow>
     49943                                                <MaxTileRow>187</MaxTileRow>
     49944                                                <MinTileCol>258</MinTileCol>
     49945                                                <MaxTileCol>259</MaxTileCol>
     49946                                        </TileMatrixLimits>
     49947                                </TileMatrixSetLimits>
     49948                        </TileMatrixSetLink>
     49949                </Layer>
     49950                <Layer>
     49951                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     49952                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     49953                        <ows:Keywords>
     49954                                <ows:Keyword>Photographies</ows:Keyword>
     49955                        </ows:Keywords>
     49956                        <ows:WGS84BoundingBox>
     49957                                <ows:LowerCorner>2.96257 43.8438</ows:LowerCorner>
     49958                                <ows:UpperCorner>3.22455 44.033</ows:UpperCorner>
     49959                        </ows:WGS84BoundingBox>
     49960                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-02-39162699</ows:Identifier>
     49961                        <Style isDefault="true">
     49962                                <ows:Title>Données Brutes</ows:Title>
     49963                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     49964                                <ows:Keywords>
     49965                                        <ows:Keyword>Défaut</ows:Keyword>
     49966                                </ows:Keywords>
     49967                                <ows:Identifier>normal</ows:Identifier>
     49968                                <LegendURL format="image/jpeg" height="200"
     49969                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     49970                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     49971                        </Style>
     49972                        <Format>image/jpeg</Format>
     49973                        <TileMatrixSetLink>
     49974                                <TileMatrixSet>PM</TileMatrixSet>
     49975                                <TileMatrixSetLimits>
     49976                                        <TileMatrixLimits>
     49977                                                <TileMatrix>0</TileMatrix>
     49978                                                <MinTileRow>0</MinTileRow>
     49979                                                <MaxTileRow>0</MaxTileRow>
     49980                                                <MinTileCol>0</MinTileCol>
     49981                                                <MaxTileCol>0</MaxTileCol>
     49982                                        </TileMatrixLimits>
     49983                                        <TileMatrixLimits>
     49984                                                <TileMatrix>1</TileMatrix>
     49985                                                <MinTileRow>0</MinTileRow>
     49986                                                <MaxTileRow>0</MaxTileRow>
     49987                                                <MinTileCol>1</MinTileCol>
     49988                                                <MaxTileCol>1</MaxTileCol>
     49989                                        </TileMatrixLimits>
     49990                                        <TileMatrixLimits>
     49991                                                <TileMatrix>10</TileMatrix>
     49992                                                <MinTileRow>372</MinTileRow>
     49993                                                <MaxTileRow>372</MaxTileRow>
     49994                                                <MinTileCol>520</MinTileCol>
     49995                                                <MaxTileCol>521</MaxTileCol>
     49996                                        </TileMatrixLimits>
     49997                                        <TileMatrixLimits>
     49998                                                <TileMatrix>11</TileMatrix>
     49999                                                <MinTileRow>744</MinTileRow>
     50000                                                <MaxTileRow>745</MaxTileRow>
     50001                                                <MinTileCol>1040</MinTileCol>
     50002                                                <MaxTileCol>1042</MaxTileCol>
     50003                                        </TileMatrixLimits>
     50004                                        <TileMatrixLimits>
     50005                                                <TileMatrix>12</TileMatrix>
     50006                                                <MinTileRow>1488</MinTileRow>
     50007                                                <MaxTileRow>1491</MaxTileRow>
     50008                                                <MinTileCol>2081</MinTileCol>
     50009                                                <MaxTileCol>2084</MaxTileCol>
     50010                                        </TileMatrixLimits>
     50011                                        <TileMatrixLimits>
     50012                                                <TileMatrix>13</TileMatrix>
     50013                                                <MinTileRow>2977</MinTileRow>
     50014                                                <MaxTileRow>2983</MaxTileRow>
     50015                                                <MinTileCol>4163</MinTileCol>
     50016                                                <MaxTileCol>4169</MaxTileCol>
     50017                                        </TileMatrixLimits>
     50018                                        <TileMatrixLimits>
     50019                                                <TileMatrix>14</TileMatrix>
     50020                                                <MinTileRow>5955</MinTileRow>
     50021                                                <MaxTileRow>5967</MaxTileRow>
     50022                                                <MinTileCol>8326</MinTileCol>
     50023                                                <MaxTileCol>8338</MaxTileCol>
     50024                                        </TileMatrixLimits>
     50025                                        <TileMatrixLimits>
     50026                                                <TileMatrix>15</TileMatrix>
     50027                                                <MinTileRow>11910</MinTileRow>
     50028                                                <MaxTileRow>11934</MaxTileRow>
     50029                                                <MinTileCol>16653</MinTileCol>
     50030                                                <MaxTileCol>16677</MaxTileCol>
     50031                                        </TileMatrixLimits>
     50032                                        <TileMatrixLimits>
     50033                                                <TileMatrix>16</TileMatrix>
     50034                                                <MinTileRow>23821</MinTileRow>
     50035                                                <MaxTileRow>23869</MaxTileRow>
     50036                                                <MinTileCol>33307</MinTileCol>
     50037                                                <MaxTileCol>33355</MaxTileCol>
     50038                                        </TileMatrixLimits>
     50039                                        <TileMatrixLimits>
     50040                                                <TileMatrix>17</TileMatrix>
     50041                                                <MinTileRow>47643</MinTileRow>
     50042                                                <MaxTileRow>47739</MaxTileRow>
     50043                                                <MinTileCol>66614</MinTileCol>
     50044                                                <MaxTileCol>66710</MaxTileCol>
     50045                                        </TileMatrixLimits>
     50046                                        <TileMatrixLimits>
     50047                                                <TileMatrix>18</TileMatrix>
     50048                                                <MinTileRow>95287</MinTileRow>
     50049                                                <MaxTileRow>95478</MaxTileRow>
     50050                                                <MinTileCol>133229</MinTileCol>
     50051                                                <MaxTileCol>133420</MaxTileCol>
     50052                                        </TileMatrixLimits>
     50053                                        <TileMatrixLimits>
     50054                                                <TileMatrix>2</TileMatrix>
     50055                                                <MinTileRow>1</MinTileRow>
     50056                                                <MaxTileRow>1</MaxTileRow>
     50057                                                <MinTileCol>2</MinTileCol>
     50058                                                <MaxTileCol>2</MaxTileCol>
     50059                                        </TileMatrixLimits>
     50060                                        <TileMatrixLimits>
     50061                                                <TileMatrix>3</TileMatrix>
     50062                                                <MinTileRow>2</MinTileRow>
     50063                                                <MaxTileRow>2</MaxTileRow>
     50064                                                <MinTileCol>4</MinTileCol>
     50065                                                <MaxTileCol>4</MaxTileCol>
     50066                                        </TileMatrixLimits>
     50067                                        <TileMatrixLimits>
     50068                                                <TileMatrix>4</TileMatrix>
     50069                                                <MinTileRow>5</MinTileRow>
     50070                                                <MaxTileRow>5</MaxTileRow>
     50071                                                <MinTileCol>8</MinTileCol>
     50072                                                <MaxTileCol>8</MaxTileCol>
     50073                                        </TileMatrixLimits>
     50074                                        <TileMatrixLimits>
     50075                                                <TileMatrix>5</TileMatrix>
     50076                                                <MinTileRow>11</MinTileRow>
     50077                                                <MaxTileRow>11</MaxTileRow>
     50078                                                <MinTileCol>16</MinTileCol>
     50079                                                <MaxTileCol>16</MaxTileCol>
     50080                                        </TileMatrixLimits>
     50081                                        <TileMatrixLimits>
     50082                                                <TileMatrix>6</TileMatrix>
     50083                                                <MinTileRow>23</MinTileRow>
     50084                                                <MaxTileRow>23</MaxTileRow>
     50085                                                <MinTileCol>32</MinTileCol>
     50086                                                <MaxTileCol>32</MaxTileCol>
     50087                                        </TileMatrixLimits>
     50088                                        <TileMatrixLimits>
     50089                                                <TileMatrix>7</TileMatrix>
     50090                                                <MinTileRow>46</MinTileRow>
     50091                                                <MaxTileRow>46</MaxTileRow>
     50092                                                <MinTileCol>65</MinTileCol>
     50093                                                <MaxTileCol>65</MaxTileCol>
     50094                                        </TileMatrixLimits>
     50095                                        <TileMatrixLimits>
     50096                                                <TileMatrix>8</TileMatrix>
     50097                                                <MinTileRow>93</MinTileRow>
     50098                                                <MaxTileRow>93</MaxTileRow>
     50099                                                <MinTileCol>130</MinTileCol>
     50100                                                <MaxTileCol>130</MaxTileCol>
     50101                                        </TileMatrixLimits>
     50102                                        <TileMatrixLimits>
     50103                                                <TileMatrix>9</TileMatrix>
     50104                                                <MinTileRow>186</MinTileRow>
     50105                                                <MaxTileRow>186</MaxTileRow>
     50106                                                <MinTileCol>260</MinTileCol>
     50107                                                <MaxTileCol>260</MaxTileCol>
     50108                                        </TileMatrixLimits>
     50109                                </TileMatrixSetLimits>
     50110                        </TileMatrixSetLink>
     50111                </Layer>
     50112                <Layer>
     50113                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50114                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50115                        <ows:Keywords>
     50116                                <ows:Keyword>Photographies</ows:Keyword>
     50117                        </ows:Keywords>
     50118                        <ows:WGS84BoundingBox>
     50119                                <ows:LowerCorner>2.75074 43.5918</ows:LowerCorner>
     50120                                <ows:UpperCorner>3.01246 43.979</ows:UpperCorner>
     50121                        </ows:WGS84BoundingBox>
     50122                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-02-39172575</ows:Identifier>
     50123                        <Style isDefault="true">
     50124                                <ows:Title>Données Brutes</ows:Title>
     50125                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50126                                <ows:Keywords>
     50127                                        <ows:Keyword>Défaut</ows:Keyword>
     50128                                </ows:Keywords>
     50129                                <ows:Identifier>normal</ows:Identifier>
     50130                                <LegendURL format="image/jpeg" height="200"
     50131                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50132                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50133                        </Style>
     50134                        <Format>image/jpeg</Format>
     50135                        <TileMatrixSetLink>
     50136                                <TileMatrixSet>PM</TileMatrixSet>
     50137                                <TileMatrixSetLimits>
     50138                                        <TileMatrixLimits>
     50139                                                <TileMatrix>0</TileMatrix>
     50140                                                <MinTileRow>0</MinTileRow>
     50141                                                <MaxTileRow>0</MaxTileRow>
     50142                                                <MinTileCol>0</MinTileCol>
     50143                                                <MaxTileCol>0</MaxTileCol>
     50144                                        </TileMatrixLimits>
     50145                                        <TileMatrixLimits>
     50146                                                <TileMatrix>1</TileMatrix>
     50147                                                <MinTileRow>0</MinTileRow>
     50148                                                <MaxTileRow>0</MaxTileRow>
     50149                                                <MinTileCol>1</MinTileCol>
     50150                                                <MaxTileCol>1</MaxTileCol>
     50151                                        </TileMatrixLimits>
     50152                                        <TileMatrixLimits>
     50153                                                <TileMatrix>10</TileMatrix>
     50154                                                <MinTileRow>372</MinTileRow>
     50155                                                <MaxTileRow>373</MaxTileRow>
     50156                                                <MinTileCol>519</MinTileCol>
     50157                                                <MaxTileCol>520</MaxTileCol>
     50158                                        </TileMatrixLimits>
     50159                                        <TileMatrixLimits>
     50160                                                <TileMatrix>11</TileMatrix>
     50161                                                <MinTileRow>744</MinTileRow>
     50162                                                <MaxTileRow>747</MaxTileRow>
     50163                                                <MinTileCol>1039</MinTileCol>
     50164                                                <MaxTileCol>1041</MaxTileCol>
     50165                                        </TileMatrixLimits>
     50166                                        <TileMatrixLimits>
     50167                                                <TileMatrix>12</TileMatrix>
     50168                                                <MinTileRow>1489</MinTileRow>
     50169                                                <MaxTileRow>1495</MaxTileRow>
     50170                                                <MinTileCol>2079</MinTileCol>
     50171                                                <MaxTileCol>2082</MaxTileCol>
     50172                                        </TileMatrixLimits>
     50173                                        <TileMatrixLimits>
     50174                                                <TileMatrix>13</TileMatrix>
     50175                                                <MinTileRow>2979</MinTileRow>
     50176                                                <MaxTileRow>2991</MaxTileRow>
     50177                                                <MinTileCol>4158</MinTileCol>
     50178                                                <MaxTileCol>4164</MaxTileCol>
     50179                                        </TileMatrixLimits>
     50180                                        <TileMatrixLimits>
     50181                                                <TileMatrix>14</TileMatrix>
     50182                                                <MinTileRow>5958</MinTileRow>
     50183                                                <MaxTileRow>5983</MaxTileRow>
     50184                                                <MinTileCol>8317</MinTileCol>
     50185                                                <MaxTileCol>8329</MaxTileCol>
     50186                                        </TileMatrixLimits>
     50187                                        <TileMatrixLimits>
     50188                                                <TileMatrix>15</TileMatrix>
     50189                                                <MinTileRow>11917</MinTileRow>
     50190                                                <MaxTileRow>11966</MaxTileRow>
     50191                                                <MinTileCol>16634</MinTileCol>
     50192                                                <MaxTileCol>16658</MaxTileCol>
     50193                                        </TileMatrixLimits>
     50194                                        <TileMatrixLimits>
     50195                                                <TileMatrix>16</TileMatrix>
     50196                                                <MinTileRow>23835</MinTileRow>
     50197                                                <MaxTileRow>23933</MaxTileRow>
     50198                                                <MinTileCol>33268</MinTileCol>
     50199                                                <MaxTileCol>33316</MaxTileCol>
     50200                                        </TileMatrixLimits>
     50201                                        <TileMatrixLimits>
     50202                                                <TileMatrix>17</TileMatrix>
     50203                                                <MinTileRow>47670</MinTileRow>
     50204                                                <MaxTileRow>47866</MaxTileRow>
     50205                                                <MinTileCol>66537</MinTileCol>
     50206                                                <MaxTileCol>66632</MaxTileCol>
     50207                                        </TileMatrixLimits>
     50208                                        <TileMatrixLimits>
     50209                                                <TileMatrix>18</TileMatrix>
     50210                                                <MinTileRow>95341</MinTileRow>
     50211                                                <MaxTileRow>95732</MaxTileRow>
     50212                                                <MinTileCol>133074</MinTileCol>
     50213                                                <MaxTileCol>133265</MaxTileCol>
     50214                                        </TileMatrixLimits>
     50215                                        <TileMatrixLimits>
     50216                                                <TileMatrix>2</TileMatrix>
     50217                                                <MinTileRow>1</MinTileRow>
     50218                                                <MaxTileRow>1</MaxTileRow>
     50219                                                <MinTileCol>2</MinTileCol>
     50220                                                <MaxTileCol>2</MaxTileCol>
     50221                                        </TileMatrixLimits>
     50222                                        <TileMatrixLimits>
     50223                                                <TileMatrix>3</TileMatrix>
     50224                                                <MinTileRow>2</MinTileRow>
     50225                                                <MaxTileRow>2</MaxTileRow>
     50226                                                <MinTileCol>4</MinTileCol>
     50227                                                <MaxTileCol>4</MaxTileCol>
     50228                                        </TileMatrixLimits>
     50229                                        <TileMatrixLimits>
     50230                                                <TileMatrix>4</TileMatrix>
     50231                                                <MinTileRow>5</MinTileRow>
     50232                                                <MaxTileRow>5</MaxTileRow>
     50233                                                <MinTileCol>8</MinTileCol>
     50234                                                <MaxTileCol>8</MaxTileCol>
     50235                                        </TileMatrixLimits>
     50236                                        <TileMatrixLimits>
     50237                                                <TileMatrix>5</TileMatrix>
     50238                                                <MinTileRow>11</MinTileRow>
     50239                                                <MaxTileRow>11</MaxTileRow>
     50240                                                <MinTileCol>16</MinTileCol>
     50241                                                <MaxTileCol>16</MaxTileCol>
     50242                                        </TileMatrixLimits>
     50243                                        <TileMatrixLimits>
     50244                                                <TileMatrix>6</TileMatrix>
     50245                                                <MinTileRow>23</MinTileRow>
     50246                                                <MaxTileRow>23</MaxTileRow>
     50247                                                <MinTileCol>32</MinTileCol>
     50248                                                <MaxTileCol>32</MaxTileCol>
     50249                                        </TileMatrixLimits>
     50250                                        <TileMatrixLimits>
     50251                                                <TileMatrix>7</TileMatrix>
     50252                                                <MinTileRow>46</MinTileRow>
     50253                                                <MaxTileRow>46</MaxTileRow>
     50254                                                <MinTileCol>64</MinTileCol>
     50255                                                <MaxTileCol>65</MaxTileCol>
     50256                                        </TileMatrixLimits>
     50257                                        <TileMatrixLimits>
     50258                                                <TileMatrix>8</TileMatrix>
     50259                                                <MinTileRow>93</MinTileRow>
     50260                                                <MaxTileRow>93</MaxTileRow>
     50261                                                <MinTileCol>129</MinTileCol>
     50262                                                <MaxTileCol>130</MaxTileCol>
     50263                                        </TileMatrixLimits>
     50264                                        <TileMatrixLimits>
     50265                                                <TileMatrix>9</TileMatrix>
     50266                                                <MinTileRow>186</MinTileRow>
     50267                                                <MaxTileRow>186</MaxTileRow>
     50268                                                <MinTileCol>259</MinTileCol>
     50269                                                <MaxTileCol>260</MaxTileCol>
     50270                                        </TileMatrixLimits>
     50271                                </TileMatrixSetLimits>
     50272                        </TileMatrixSetLink>
     50273                </Layer>
     50274                <Layer>
     50275                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50276                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50277                        <ows:Keywords>
     50278                                <ows:Keyword>Photographies</ows:Keyword>
     50279                        </ows:Keywords>
     50280                        <ows:WGS84BoundingBox>
     50281                                <ows:LowerCorner>0.761284 43.9655</ows:LowerCorner>
     50282                                <ows:UpperCorner>1.10565 44.4935</ows:UpperCorner>
     50283                        </ows:WGS84BoundingBox>
     50284                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-19-40305574</ows:Identifier>
     50285                        <Style isDefault="true">
     50286                                <ows:Title>Données Brutes</ows:Title>
     50287                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50288                                <ows:Keywords>
     50289                                        <ows:Keyword>Défaut</ows:Keyword>
     50290                                </ows:Keywords>
     50291                                <ows:Identifier>normal</ows:Identifier>
     50292                                <LegendURL format="image/jpeg" height="200"
     50293                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50294                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50295                        </Style>
     50296                        <Format>image/jpeg</Format>
     50297                        <TileMatrixSetLink>
     50298                                <TileMatrixSet>PM</TileMatrixSet>
     50299                                <TileMatrixSetLimits>
     50300                                        <TileMatrixLimits>
     50301                                                <TileMatrix>0</TileMatrix>
     50302                                                <MinTileRow>0</MinTileRow>
     50303                                                <MaxTileRow>0</MaxTileRow>
     50304                                                <MinTileCol>0</MinTileCol>
     50305                                                <MaxTileCol>0</MaxTileCol>
     50306                                        </TileMatrixLimits>
     50307                                        <TileMatrixLimits>
     50308                                                <TileMatrix>1</TileMatrix>
     50309                                                <MinTileRow>0</MinTileRow>
     50310                                                <MaxTileRow>0</MaxTileRow>
     50311                                                <MinTileCol>1</MinTileCol>
     50312                                                <MaxTileCol>1</MaxTileCol>
     50313                                        </TileMatrixLimits>
     50314                                        <TileMatrixLimits>
     50315                                                <TileMatrix>10</TileMatrix>
     50316                                                <MinTileRow>370</MinTileRow>
     50317                                                <MaxTileRow>372</MaxTileRow>
     50318                                                <MinTileCol>514</MinTileCol>
     50319                                                <MaxTileCol>515</MaxTileCol>
     50320                                        </TileMatrixLimits>
     50321                                        <TileMatrixLimits>
     50322                                                <TileMatrix>11</TileMatrix>
     50323                                                <MinTileRow>740</MinTileRow>
     50324                                                <MaxTileRow>744</MaxTileRow>
     50325                                                <MinTileCol>1028</MinTileCol>
     50326                                                <MaxTileCol>1030</MaxTileCol>
     50327                                        </TileMatrixLimits>
     50328                                        <TileMatrixLimits>
     50329                                                <TileMatrix>12</TileMatrix>
     50330                                                <MinTileRow>1481</MinTileRow>
     50331                                                <MaxTileRow>1489</MaxTileRow>
     50332                                                <MinTileCol>2056</MinTileCol>
     50333                                                <MaxTileCol>2060</MaxTileCol>
     50334                                        </TileMatrixLimits>
     50335                                        <TileMatrixLimits>
     50336                                                <TileMatrix>13</TileMatrix>
     50337                                                <MinTileRow>2963</MinTileRow>
     50338                                                <MaxTileRow>2979</MaxTileRow>
     50339                                                <MinTileCol>4113</MinTileCol>
     50340                                                <MaxTileCol>4120</MaxTileCol>
     50341                                        </TileMatrixLimits>
     50342                                        <TileMatrixLimits>
     50343                                                <TileMatrix>14</TileMatrix>
     50344                                                <MinTileRow>5926</MinTileRow>
     50345                                                <MaxTileRow>5959</MaxTileRow>
     50346                                                <MinTileCol>8227</MinTileCol>
     50347                                                <MaxTileCol>8241</MaxTileCol>
     50348                                        </TileMatrixLimits>
     50349                                        <TileMatrixLimits>
     50350                                                <TileMatrix>15</TileMatrix>
     50351                                                <MinTileRow>11852</MinTileRow>
     50352                                                <MaxTileRow>11919</MaxTileRow>
     50353                                                <MinTileCol>16454</MinTileCol>
     50354                                                <MaxTileCol>16483</MaxTileCol>
     50355                                        </TileMatrixLimits>
     50356                                        <TileMatrixLimits>
     50357                                                <TileMatrix>16</TileMatrix>
     50358                                                <MinTileRow>23704</MinTileRow>
     50359                                                <MaxTileRow>23838</MaxTileRow>
     50360                                                <MinTileCol>32908</MinTileCol>
     50361                                                <MaxTileCol>32966</MaxTileCol>
     50362                                        </TileMatrixLimits>
     50363                                        <TileMatrixLimits>
     50364                                                <TileMatrix>17</TileMatrix>
     50365                                                <MinTileRow>47409</MinTileRow>
     50366                                                <MaxTileRow>47677</MaxTileRow>
     50367                                                <MinTileCol>65817</MinTileCol>
     50368                                                <MaxTileCol>65933</MaxTileCol>
     50369                                        </TileMatrixLimits>
     50370                                        <TileMatrixLimits>
     50371                                                <TileMatrix>18</TileMatrix>
     50372                                                <MinTileRow>94819</MinTileRow>
     50373                                                <MaxTileRow>95355</MaxTileRow>
     50374                                                <MinTileCol>131635</MinTileCol>
     50375                                                <MaxTileCol>131867</MaxTileCol>
     50376                                        </TileMatrixLimits>
     50377                                        <TileMatrixLimits>
     50378                                                <TileMatrix>2</TileMatrix>
     50379                                                <MinTileRow>1</MinTileRow>
     50380                                                <MaxTileRow>1</MaxTileRow>
     50381                                                <MinTileCol>2</MinTileCol>
     50382                                                <MaxTileCol>2</MaxTileCol>
     50383                                        </TileMatrixLimits>
     50384                                        <TileMatrixLimits>
     50385                                                <TileMatrix>3</TileMatrix>
     50386                                                <MinTileRow>2</MinTileRow>
     50387                                                <MaxTileRow>2</MaxTileRow>
     50388                                                <MinTileCol>4</MinTileCol>
     50389                                                <MaxTileCol>4</MaxTileCol>
     50390                                        </TileMatrixLimits>
     50391                                        <TileMatrixLimits>
     50392                                                <TileMatrix>4</TileMatrix>
     50393                                                <MinTileRow>5</MinTileRow>
     50394                                                <MaxTileRow>5</MaxTileRow>
     50395                                                <MinTileCol>8</MinTileCol>
     50396                                                <MaxTileCol>8</MaxTileCol>
     50397                                        </TileMatrixLimits>
     50398                                        <TileMatrixLimits>
     50399                                                <TileMatrix>5</TileMatrix>
     50400                                                <MinTileRow>11</MinTileRow>
     50401                                                <MaxTileRow>11</MaxTileRow>
     50402                                                <MinTileCol>16</MinTileCol>
     50403                                                <MaxTileCol>16</MaxTileCol>
     50404                                        </TileMatrixLimits>
     50405                                        <TileMatrixLimits>
     50406                                                <TileMatrix>6</TileMatrix>
     50407                                                <MinTileRow>23</MinTileRow>
     50408                                                <MaxTileRow>23</MaxTileRow>
     50409                                                <MinTileCol>32</MinTileCol>
     50410                                                <MaxTileCol>32</MaxTileCol>
     50411                                        </TileMatrixLimits>
     50412                                        <TileMatrixLimits>
     50413                                                <TileMatrix>7</TileMatrix>
     50414                                                <MinTileRow>46</MinTileRow>
     50415                                                <MaxTileRow>46</MaxTileRow>
     50416                                                <MinTileCol>64</MinTileCol>
     50417                                                <MaxTileCol>64</MaxTileCol>
     50418                                        </TileMatrixLimits>
     50419                                        <TileMatrixLimits>
     50420                                                <TileMatrix>8</TileMatrix>
     50421                                                <MinTileRow>92</MinTileRow>
     50422                                                <MaxTileRow>93</MaxTileRow>
     50423                                                <MinTileCol>128</MinTileCol>
     50424                                                <MaxTileCol>128</MaxTileCol>
     50425                                        </TileMatrixLimits>
     50426                                        <TileMatrixLimits>
     50427                                                <TileMatrix>9</TileMatrix>
     50428                                                <MinTileRow>185</MinTileRow>
     50429                                                <MaxTileRow>186</MaxTileRow>
     50430                                                <MinTileCol>257</MinTileCol>
     50431                                                <MaxTileCol>257</MaxTileCol>
     50432                                        </TileMatrixLimits>
     50433                                </TileMatrixSetLimits>
     50434                        </TileMatrixSetLink>
     50435                </Layer>
     50436                <Layer>
     50437                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50438                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50439                        <ows:Keywords>
     50440                                <ows:Keyword>Photographies</ows:Keyword>
     50441                        </ows:Keywords>
     50442                        <ows:WGS84BoundingBox>
     50443                                <ows:LowerCorner>0.334293 43.5688</ows:LowerCorner>
     50444                                <ows:UpperCorner>0.660639 43.9446</ows:UpperCorner>
     50445                        </ows:WGS84BoundingBox>
     50446                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-19-40320198</ows:Identifier>
     50447                        <Style isDefault="true">
     50448                                <ows:Title>Données Brutes</ows:Title>
     50449                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50450                                <ows:Keywords>
     50451                                        <ows:Keyword>Défaut</ows:Keyword>
     50452                                </ows:Keywords>
     50453                                <ows:Identifier>normal</ows:Identifier>
     50454                                <LegendURL format="image/jpeg" height="200"
     50455                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50456                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50457                        </Style>
     50458                        <Format>image/jpeg</Format>
     50459                        <TileMatrixSetLink>
     50460                                <TileMatrixSet>PM</TileMatrixSet>
     50461                                <TileMatrixSetLimits>
     50462                                        <TileMatrixLimits>
     50463                                                <TileMatrix>0</TileMatrix>
     50464                                                <MinTileRow>0</MinTileRow>
     50465                                                <MaxTileRow>0</MaxTileRow>
     50466                                                <MinTileCol>0</MinTileCol>
     50467                                                <MaxTileCol>0</MaxTileCol>
     50468                                        </TileMatrixLimits>
     50469                                        <TileMatrixLimits>
     50470                                                <TileMatrix>1</TileMatrix>
     50471                                                <MinTileRow>0</MinTileRow>
     50472                                                <MaxTileRow>0</MaxTileRow>
     50473                                                <MinTileCol>1</MinTileCol>
     50474                                                <MaxTileCol>1</MaxTileCol>
     50475                                        </TileMatrixLimits>
     50476                                        <TileMatrixLimits>
     50477                                                <TileMatrix>10</TileMatrix>
     50478                                                <MinTileRow>372</MinTileRow>
     50479                                                <MaxTileRow>374</MaxTileRow>
     50480                                                <MinTileCol>512</MinTileCol>
     50481                                                <MaxTileCol>513</MaxTileCol>
     50482                                        </TileMatrixLimits>
     50483                                        <TileMatrixLimits>
     50484                                                <TileMatrix>11</TileMatrix>
     50485                                                <MinTileRow>745</MinTileRow>
     50486                                                <MaxTileRow>748</MaxTileRow>
     50487                                                <MinTileCol>1025</MinTileCol>
     50488                                                <MaxTileCol>1027</MaxTileCol>
     50489                                        </TileMatrixLimits>
     50490                                        <TileMatrixLimits>
     50491                                                <TileMatrix>12</TileMatrix>
     50492                                                <MinTileRow>1490</MinTileRow>
     50493                                                <MaxTileRow>1496</MaxTileRow>
     50494                                                <MinTileCol>2051</MinTileCol>
     50495                                                <MaxTileCol>2055</MaxTileCol>
     50496                                        </TileMatrixLimits>
     50497                                        <TileMatrixLimits>
     50498                                                <TileMatrix>13</TileMatrix>
     50499                                                <MinTileRow>2980</MinTileRow>
     50500                                                <MaxTileRow>2992</MaxTileRow>
     50501                                                <MinTileCol>4103</MinTileCol>
     50502                                                <MaxTileCol>4110</MaxTileCol>
     50503                                        </TileMatrixLimits>
     50504                                        <TileMatrixLimits>
     50505                                                <TileMatrix>14</TileMatrix>
     50506                                                <MinTileRow>5961</MinTileRow>
     50507                                                <MaxTileRow>5984</MaxTileRow>
     50508                                                <MinTileCol>8207</MinTileCol>
     50509                                                <MaxTileCol>8221</MaxTileCol>
     50510                                        </TileMatrixLimits>
     50511                                        <TileMatrixLimits>
     50512                                                <TileMatrix>15</TileMatrix>
     50513                                                <MinTileRow>11922</MinTileRow>
     50514                                                <MaxTileRow>11969</MaxTileRow>
     50515                                                <MinTileCol>16415</MinTileCol>
     50516                                                <MaxTileCol>16443</MaxTileCol>
     50517                                        </TileMatrixLimits>
     50518                                        <TileMatrixLimits>
     50519                                                <TileMatrix>16</TileMatrix>
     50520                                                <MinTileRow>23844</MinTileRow>
     50521                                                <MaxTileRow>23938</MaxTileRow>
     50522                                                <MinTileCol>32830</MinTileCol>
     50523                                                <MaxTileCol>32887</MaxTileCol>
     50524                                        </TileMatrixLimits>
     50525                                        <TileMatrixLimits>
     50526                                                <TileMatrix>17</TileMatrix>
     50527                                                <MinTileRow>47688</MinTileRow>
     50528                                                <MaxTileRow>47877</MaxTileRow>
     50529                                                <MinTileCol>65660</MinTileCol>
     50530                                                <MaxTileCol>65775</MaxTileCol>
     50531                                        </TileMatrixLimits>
     50532                                        <TileMatrixLimits>
     50533                                                <TileMatrix>18</TileMatrix>
     50534                                                <MinTileRow>95376</MinTileRow>
     50535                                                <MaxTileRow>95755</MaxTileRow>
     50536                                                <MinTileCol>131321</MinTileCol>
     50537                                                <MaxTileCol>131551</MaxTileCol>
     50538                                        </TileMatrixLimits>
     50539                                        <TileMatrixLimits>
     50540                                                <TileMatrix>2</TileMatrix>
     50541                                                <MinTileRow>1</MinTileRow>
     50542                                                <MaxTileRow>1</MaxTileRow>
     50543                                                <MinTileCol>2</MinTileCol>
     50544                                                <MaxTileCol>2</MaxTileCol>
     50545                                        </TileMatrixLimits>
     50546                                        <TileMatrixLimits>
     50547                                                <TileMatrix>3</TileMatrix>
     50548                                                <MinTileRow>2</MinTileRow>
     50549                                                <MaxTileRow>2</MaxTileRow>
     50550                                                <MinTileCol>4</MinTileCol>
     50551                                                <MaxTileCol>4</MaxTileCol>
     50552                                        </TileMatrixLimits>
     50553                                        <TileMatrixLimits>
     50554                                                <TileMatrix>4</TileMatrix>
     50555                                                <MinTileRow>5</MinTileRow>
     50556                                                <MaxTileRow>5</MaxTileRow>
     50557                                                <MinTileCol>8</MinTileCol>
     50558                                                <MaxTileCol>8</MaxTileCol>
     50559                                        </TileMatrixLimits>
     50560                                        <TileMatrixLimits>
     50561                                                <TileMatrix>5</TileMatrix>
     50562                                                <MinTileRow>11</MinTileRow>
     50563                                                <MaxTileRow>11</MaxTileRow>
     50564                                                <MinTileCol>16</MinTileCol>
     50565                                                <MaxTileCol>16</MaxTileCol>
     50566                                        </TileMatrixLimits>
     50567                                        <TileMatrixLimits>
     50568                                                <TileMatrix>6</TileMatrix>
     50569                                                <MinTileRow>23</MinTileRow>
     50570                                                <MaxTileRow>23</MaxTileRow>
     50571                                                <MinTileCol>32</MinTileCol>
     50572                                                <MaxTileCol>32</MaxTileCol>
     50573                                        </TileMatrixLimits>
     50574                                        <TileMatrixLimits>
     50575                                                <TileMatrix>7</TileMatrix>
     50576                                                <MinTileRow>46</MinTileRow>
     50577                                                <MaxTileRow>46</MaxTileRow>
     50578                                                <MinTileCol>64</MinTileCol>
     50579                                                <MaxTileCol>64</MaxTileCol>
     50580                                        </TileMatrixLimits>
     50581                                        <TileMatrixLimits>
     50582                                                <TileMatrix>8</TileMatrix>
     50583                                                <MinTileRow>93</MinTileRow>
     50584                                                <MaxTileRow>93</MaxTileRow>
     50585                                                <MinTileCol>128</MinTileCol>
     50586                                                <MaxTileCol>128</MaxTileCol>
     50587                                        </TileMatrixLimits>
     50588                                        <TileMatrixLimits>
     50589                                                <TileMatrix>9</TileMatrix>
     50590                                                <MinTileRow>186</MinTileRow>
     50591                                                <MaxTileRow>187</MaxTileRow>
     50592                                                <MinTileCol>256</MinTileCol>
     50593                                                <MaxTileCol>256</MaxTileCol>
     50594                                        </TileMatrixLimits>
     50595                                </TileMatrixSetLimits>
     50596                        </TileMatrixSetLink>
     50597                </Layer>
     50598                <Layer>
     50599                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50600                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50601                        <ows:Keywords>
     50602                                <ows:Keyword>Photographies</ows:Keyword>
     50603                        </ows:Keywords>
     50604                        <ows:WGS84BoundingBox>
     50605                                <ows:LowerCorner>1.64929 44.3758</ows:LowerCorner>
     50606                                <ows:UpperCorner>1.93311 44.7029</ows:UpperCorner>
     50607                        </ows:WGS84BoundingBox>
     50608                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39358202</ows:Identifier>
     50609                        <Style isDefault="true">
     50610                                <ows:Title>Données Brutes</ows:Title>
     50611                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50612                                <ows:Keywords>
     50613                                        <ows:Keyword>Défaut</ows:Keyword>
     50614                                </ows:Keywords>
     50615                                <ows:Identifier>normal</ows:Identifier>
     50616                                <LegendURL format="image/jpeg" height="200"
     50617                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50618                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50619                        </Style>
     50620                        <Format>image/jpeg</Format>
     50621                        <TileMatrixSetLink>
     50622                                <TileMatrixSet>PM</TileMatrixSet>
     50623                                <TileMatrixSetLimits>
     50624                                        <TileMatrixLimits>
     50625                                                <TileMatrix>0</TileMatrix>
     50626                                                <MinTileRow>0</MinTileRow>
     50627                                                <MaxTileRow>0</MaxTileRow>
     50628                                                <MinTileCol>0</MinTileCol>
     50629                                                <MaxTileCol>0</MaxTileCol>
     50630                                        </TileMatrixLimits>
     50631                                        <TileMatrixLimits>
     50632                                                <TileMatrix>1</TileMatrix>
     50633                                                <MinTileRow>0</MinTileRow>
     50634                                                <MaxTileRow>0</MaxTileRow>
     50635                                                <MinTileCol>1</MinTileCol>
     50636                                                <MaxTileCol>1</MaxTileCol>
     50637                                        </TileMatrixLimits>
     50638                                        <TileMatrixLimits>
     50639                                                <TileMatrix>10</TileMatrix>
     50640                                                <MinTileRow>369</MinTileRow>
     50641                                                <MaxTileRow>370</MaxTileRow>
     50642                                                <MinTileCol>516</MinTileCol>
     50643                                                <MaxTileCol>517</MaxTileCol>
     50644                                        </TileMatrixLimits>
     50645                                        <TileMatrixLimits>
     50646                                                <TileMatrix>11</TileMatrix>
     50647                                                <MinTileRow>739</MinTileRow>
     50648                                                <MaxTileRow>741</MaxTileRow>
     50649                                                <MinTileCol>1033</MinTileCol>
     50650                                                <MaxTileCol>1034</MaxTileCol>
     50651                                        </TileMatrixLimits>
     50652                                        <TileMatrixLimits>
     50653                                                <TileMatrix>12</TileMatrix>
     50654                                                <MinTileRow>1478</MinTileRow>
     50655                                                <MaxTileRow>1483</MaxTileRow>
     50656                                                <MinTileCol>2066</MinTileCol>
     50657                                                <MaxTileCol>2069</MaxTileCol>
     50658                                        </TileMatrixLimits>
     50659                                        <TileMatrixLimits>
     50660                                                <TileMatrix>13</TileMatrix>
     50661                                                <MinTileRow>2956</MinTileRow>
     50662                                                <MaxTileRow>2966</MaxTileRow>
     50663                                                <MinTileCol>4133</MinTileCol>
     50664                                                <MaxTileCol>4139</MaxTileCol>
     50665                                        </TileMatrixLimits>
     50666                                        <TileMatrixLimits>
     50667                                                <TileMatrix>14</TileMatrix>
     50668                                                <MinTileRow>5912</MinTileRow>
     50669                                                <MaxTileRow>5933</MaxTileRow>
     50670                                                <MinTileCol>8267</MinTileCol>
     50671                                                <MaxTileCol>8279</MaxTileCol>
     50672                                        </TileMatrixLimits>
     50673                                        <TileMatrixLimits>
     50674                                                <TileMatrix>15</TileMatrix>
     50675                                                <MinTileRow>11825</MinTileRow>
     50676                                                <MaxTileRow>11867</MaxTileRow>
     50677                                                <MinTileCol>16534</MinTileCol>
     50678                                                <MaxTileCol>16559</MaxTileCol>
     50679                                        </TileMatrixLimits>
     50680                                        <TileMatrixLimits>
     50681                                                <TileMatrix>16</TileMatrix>
     50682                                                <MinTileRow>23651</MinTileRow>
     50683                                                <MaxTileRow>23734</MaxTileRow>
     50684                                                <MinTileCol>33068</MinTileCol>
     50685                                                <MaxTileCol>33119</MaxTileCol>
     50686                                        </TileMatrixLimits>
     50687                                        <TileMatrixLimits>
     50688                                                <TileMatrix>17</TileMatrix>
     50689                                                <MinTileRow>47302</MinTileRow>
     50690                                                <MaxTileRow>47469</MaxTileRow>
     50691                                                <MinTileCol>66137</MinTileCol>
     50692                                                <MaxTileCol>66239</MaxTileCol>
     50693                                        </TileMatrixLimits>
     50694                                        <TileMatrixLimits>
     50695                                                <TileMatrix>18</TileMatrix>
     50696                                                <MinTileRow>94604</MinTileRow>
     50697                                                <MaxTileRow>94939</MaxTileRow>
     50698                                                <MinTileCol>132274</MinTileCol>
     50699                                                <MaxTileCol>132479</MaxTileCol>
     50700                                        </TileMatrixLimits>
     50701                                        <TileMatrixLimits>
     50702                                                <TileMatrix>2</TileMatrix>
     50703                                                <MinTileRow>1</MinTileRow>
     50704                                                <MaxTileRow>1</MaxTileRow>
     50705                                                <MinTileCol>2</MinTileCol>
     50706                                                <MaxTileCol>2</MaxTileCol>
     50707                                        </TileMatrixLimits>
     50708                                        <TileMatrixLimits>
     50709                                                <TileMatrix>3</TileMatrix>
     50710                                                <MinTileRow>2</MinTileRow>
     50711                                                <MaxTileRow>2</MaxTileRow>
     50712                                                <MinTileCol>4</MinTileCol>
     50713                                                <MaxTileCol>4</MaxTileCol>
     50714                                        </TileMatrixLimits>
     50715                                        <TileMatrixLimits>
     50716                                                <TileMatrix>4</TileMatrix>
     50717                                                <MinTileRow>5</MinTileRow>
     50718                                                <MaxTileRow>5</MaxTileRow>
     50719                                                <MinTileCol>8</MinTileCol>
     50720                                                <MaxTileCol>8</MaxTileCol>
     50721                                        </TileMatrixLimits>
     50722                                        <TileMatrixLimits>
     50723                                                <TileMatrix>5</TileMatrix>
     50724                                                <MinTileRow>11</MinTileRow>
     50725                                                <MaxTileRow>11</MaxTileRow>
     50726                                                <MinTileCol>16</MinTileCol>
     50727                                                <MaxTileCol>16</MaxTileCol>
     50728                                        </TileMatrixLimits>
     50729                                        <TileMatrixLimits>
     50730                                                <TileMatrix>6</TileMatrix>
     50731                                                <MinTileRow>23</MinTileRow>
     50732                                                <MaxTileRow>23</MaxTileRow>
     50733                                                <MinTileCol>32</MinTileCol>
     50734                                                <MaxTileCol>32</MaxTileCol>
     50735                                        </TileMatrixLimits>
     50736                                        <TileMatrixLimits>
     50737                                                <TileMatrix>7</TileMatrix>
     50738                                                <MinTileRow>46</MinTileRow>
     50739                                                <MaxTileRow>46</MaxTileRow>
     50740                                                <MinTileCol>64</MinTileCol>
     50741                                                <MaxTileCol>64</MaxTileCol>
     50742                                        </TileMatrixLimits>
     50743                                        <TileMatrixLimits>
     50744                                                <TileMatrix>8</TileMatrix>
     50745                                                <MinTileRow>92</MinTileRow>
     50746                                                <MaxTileRow>92</MaxTileRow>
     50747                                                <MinTileCol>129</MinTileCol>
     50748                                                <MaxTileCol>129</MaxTileCol>
     50749                                        </TileMatrixLimits>
     50750                                        <TileMatrixLimits>
     50751                                                <TileMatrix>9</TileMatrix>
     50752                                                <MinTileRow>184</MinTileRow>
     50753                                                <MaxTileRow>185</MaxTileRow>
     50754                                                <MinTileCol>258</MinTileCol>
     50755                                                <MaxTileCol>258</MaxTileCol>
     50756                                        </TileMatrixLimits>
     50757                                </TileMatrixSetLimits>
     50758                        </TileMatrixSetLink>
     50759                </Layer>
     50760                <Layer>
     50761                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50762                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50763                        <ows:Keywords>
     50764                                <ows:Keyword>Photographies</ows:Keyword>
     50765                        </ows:Keywords>
     50766                        <ows:WGS84BoundingBox>
     50767                                <ows:LowerCorner>1.6551 44.2678</ows:LowerCorner>
     50768                                <ows:UpperCorner>1.93514 44.4599</ows:UpperCorner>
     50769                        </ows:WGS84BoundingBox>
     50770                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39369951</ows:Identifier>
     50771                        <Style isDefault="true">
     50772                                <ows:Title>Données Brutes</ows:Title>
     50773                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50774                                <ows:Keywords>
     50775                                        <ows:Keyword>Défaut</ows:Keyword>
     50776                                </ows:Keywords>
     50777                                <ows:Identifier>normal</ows:Identifier>
     50778                                <LegendURL format="image/jpeg" height="200"
     50779                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50780                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50781                        </Style>
     50782                        <Format>image/jpeg</Format>
     50783                        <TileMatrixSetLink>
     50784                                <TileMatrixSet>PM</TileMatrixSet>
     50785                                <TileMatrixSetLimits>
     50786                                        <TileMatrixLimits>
     50787                                                <TileMatrix>0</TileMatrix>
     50788                                                <MinTileRow>0</MinTileRow>
     50789                                                <MaxTileRow>0</MaxTileRow>
     50790                                                <MinTileCol>0</MinTileCol>
     50791                                                <MaxTileCol>0</MaxTileCol>
     50792                                        </TileMatrixLimits>
     50793                                        <TileMatrixLimits>
     50794                                                <TileMatrix>1</TileMatrix>
     50795                                                <MinTileRow>0</MinTileRow>
     50796                                                <MaxTileRow>0</MaxTileRow>
     50797                                                <MinTileCol>1</MinTileCol>
     50798                                                <MaxTileCol>1</MaxTileCol>
     50799                                        </TileMatrixLimits>
     50800                                        <TileMatrixLimits>
     50801                                                <TileMatrix>10</TileMatrix>
     50802                                                <MinTileRow>370</MinTileRow>
     50803                                                <MaxTileRow>371</MaxTileRow>
     50804                                                <MinTileCol>516</MinTileCol>
     50805                                                <MaxTileCol>517</MaxTileCol>
     50806                                        </TileMatrixLimits>
     50807                                        <TileMatrixLimits>
     50808                                                <TileMatrix>11</TileMatrix>
     50809                                                <MinTileRow>741</MinTileRow>
     50810                                                <MaxTileRow>742</MaxTileRow>
     50811                                                <MinTileCol>1033</MinTileCol>
     50812                                                <MaxTileCol>1035</MaxTileCol>
     50813                                        </TileMatrixLimits>
     50814                                        <TileMatrixLimits>
     50815                                                <TileMatrix>12</TileMatrix>
     50816                                                <MinTileRow>1482</MinTileRow>
     50817                                                <MaxTileRow>1485</MaxTileRow>
     50818                                                <MinTileCol>2066</MinTileCol>
     50819                                                <MaxTileCol>2070</MaxTileCol>
     50820                                        </TileMatrixLimits>
     50821                                        <TileMatrixLimits>
     50822                                                <TileMatrix>13</TileMatrix>
     50823                                                <MinTileRow>2964</MinTileRow>
     50824                                                <MaxTileRow>2970</MaxTileRow>
     50825                                                <MinTileCol>4133</MinTileCol>
     50826                                                <MaxTileCol>4140</MaxTileCol>
     50827                                        </TileMatrixLimits>
     50828                                        <TileMatrixLimits>
     50829                                                <TileMatrix>14</TileMatrix>
     50830                                                <MinTileRow>5928</MinTileRow>
     50831                                                <MaxTileRow>5940</MaxTileRow>
     50832                                                <MinTileCol>8267</MinTileCol>
     50833                                                <MaxTileCol>8280</MaxTileCol>
     50834                                        </TileMatrixLimits>
     50835                                        <TileMatrixLimits>
     50836                                                <TileMatrix>15</TileMatrix>
     50837                                                <MinTileRow>11856</MinTileRow>
     50838                                                <MaxTileRow>11881</MaxTileRow>
     50839                                                <MinTileCol>16534</MinTileCol>
     50840                                                <MaxTileCol>16560</MaxTileCol>
     50841                                        </TileMatrixLimits>
     50842                                        <TileMatrixLimits>
     50843                                                <TileMatrix>16</TileMatrix>
     50844                                                <MinTileRow>23713</MinTileRow>
     50845                                                <MaxTileRow>23762</MaxTileRow>
     50846                                                <MinTileCol>33069</MinTileCol>
     50847                                                <MaxTileCol>33120</MaxTileCol>
     50848                                        </TileMatrixLimits>
     50849                                        <TileMatrixLimits>
     50850                                                <TileMatrix>17</TileMatrix>
     50851                                                <MinTileRow>47426</MinTileRow>
     50852                                                <MaxTileRow>47524</MaxTileRow>
     50853                                                <MinTileCol>66139</MinTileCol>
     50854                                                <MaxTileCol>66240</MaxTileCol>
     50855                                        </TileMatrixLimits>
     50856                                        <TileMatrixLimits>
     50857                                                <TileMatrix>18</TileMatrix>
     50858                                                <MinTileRow>94853</MinTileRow>
     50859                                                <MaxTileRow>95048</MaxTileRow>
     50860                                                <MinTileCol>132278</MinTileCol>
     50861                                                <MaxTileCol>132481</MaxTileCol>
     50862                                        </TileMatrixLimits>
     50863                                        <TileMatrixLimits>
     50864                                                <TileMatrix>2</TileMatrix>
     50865                                                <MinTileRow>1</MinTileRow>
     50866                                                <MaxTileRow>1</MaxTileRow>
     50867                                                <MinTileCol>2</MinTileCol>
     50868                                                <MaxTileCol>2</MaxTileCol>
     50869                                        </TileMatrixLimits>
     50870                                        <TileMatrixLimits>
     50871                                                <TileMatrix>3</TileMatrix>
     50872                                                <MinTileRow>2</MinTileRow>
     50873                                                <MaxTileRow>2</MaxTileRow>
     50874                                                <MinTileCol>4</MinTileCol>
     50875                                                <MaxTileCol>4</MaxTileCol>
     50876                                        </TileMatrixLimits>
     50877                                        <TileMatrixLimits>
     50878                                                <TileMatrix>4</TileMatrix>
     50879                                                <MinTileRow>5</MinTileRow>
     50880                                                <MaxTileRow>5</MaxTileRow>
     50881                                                <MinTileCol>8</MinTileCol>
     50882                                                <MaxTileCol>8</MaxTileCol>
     50883                                        </TileMatrixLimits>
     50884                                        <TileMatrixLimits>
     50885                                                <TileMatrix>5</TileMatrix>
     50886                                                <MinTileRow>11</MinTileRow>
     50887                                                <MaxTileRow>11</MaxTileRow>
     50888                                                <MinTileCol>16</MinTileCol>
     50889                                                <MaxTileCol>16</MaxTileCol>
     50890                                        </TileMatrixLimits>
     50891                                        <TileMatrixLimits>
     50892                                                <TileMatrix>6</TileMatrix>
     50893                                                <MinTileRow>23</MinTileRow>
     50894                                                <MaxTileRow>23</MaxTileRow>
     50895                                                <MinTileCol>32</MinTileCol>
     50896                                                <MaxTileCol>32</MaxTileCol>
     50897                                        </TileMatrixLimits>
     50898                                        <TileMatrixLimits>
     50899                                                <TileMatrix>7</TileMatrix>
     50900                                                <MinTileRow>46</MinTileRow>
     50901                                                <MaxTileRow>46</MaxTileRow>
     50902                                                <MinTileCol>64</MinTileCol>
     50903                                                <MaxTileCol>64</MaxTileCol>
     50904                                        </TileMatrixLimits>
     50905                                        <TileMatrixLimits>
     50906                                                <TileMatrix>8</TileMatrix>
     50907                                                <MinTileRow>92</MinTileRow>
     50908                                                <MaxTileRow>92</MaxTileRow>
     50909                                                <MinTileCol>129</MinTileCol>
     50910                                                <MaxTileCol>129</MaxTileCol>
     50911                                        </TileMatrixLimits>
     50912                                        <TileMatrixLimits>
     50913                                                <TileMatrix>9</TileMatrix>
     50914                                                <MinTileRow>185</MinTileRow>
     50915                                                <MaxTileRow>185</MaxTileRow>
     50916                                                <MinTileCol>258</MinTileCol>
     50917                                                <MaxTileCol>258</MaxTileCol>
     50918                                        </TileMatrixLimits>
     50919                                </TileMatrixSetLimits>
     50920                        </TileMatrixSetLink>
     50921                </Layer>
     50922                <Layer>
     50923                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     50924                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     50925                        <ows:Keywords>
     50926                                <ows:Keyword>Photographies</ows:Keyword>
     50927                        </ows:Keywords>
     50928                        <ows:WGS84BoundingBox>
     50929                                <ows:LowerCorner>1.43824 44.346</ows:LowerCorner>
     50930                                <ows:UpperCorner>1.70783 44.5745</ows:UpperCorner>
     50931                        </ows:WGS84BoundingBox>
     50932                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39381325</ows:Identifier>
     50933                        <Style isDefault="true">
     50934                                <ows:Title>Données Brutes</ows:Title>
     50935                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     50936                                <ows:Keywords>
     50937                                        <ows:Keyword>Défaut</ows:Keyword>
     50938                                </ows:Keywords>
     50939                                <ows:Identifier>normal</ows:Identifier>
     50940                                <LegendURL format="image/jpeg" height="200"
     50941                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     50942                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     50943                        </Style>
     50944                        <Format>image/jpeg</Format>
     50945                        <TileMatrixSetLink>
     50946                                <TileMatrixSet>PM</TileMatrixSet>
     50947                                <TileMatrixSetLimits>
     50948                                        <TileMatrixLimits>
     50949                                                <TileMatrix>0</TileMatrix>
     50950                                                <MinTileRow>0</MinTileRow>
     50951                                                <MaxTileRow>0</MaxTileRow>
     50952                                                <MinTileCol>0</MinTileCol>
     50953                                                <MaxTileCol>0</MaxTileCol>
     50954                                        </TileMatrixLimits>
     50955                                        <TileMatrixLimits>
     50956                                                <TileMatrix>1</TileMatrix>
     50957                                                <MinTileRow>0</MinTileRow>
     50958                                                <MaxTileRow>0</MaxTileRow>
     50959                                                <MinTileCol>1</MinTileCol>
     50960                                                <MaxTileCol>1</MaxTileCol>
     50961                                        </TileMatrixLimits>
     50962                                        <TileMatrixLimits>
     50963                                                <TileMatrix>10</TileMatrix>
     50964                                                <MinTileRow>370</MinTileRow>
     50965                                                <MaxTileRow>370</MaxTileRow>
     50966                                                <MinTileCol>516</MinTileCol>
     50967                                                <MaxTileCol>516</MaxTileCol>
     50968                                        </TileMatrixLimits>
     50969                                        <TileMatrixLimits>
     50970                                                <TileMatrix>11</TileMatrix>
     50971                                                <MinTileRow>740</MinTileRow>
     50972                                                <MaxTileRow>741</MaxTileRow>
     50973                                                <MinTileCol>1032</MinTileCol>
     50974                                                <MaxTileCol>1033</MaxTileCol>
     50975                                        </TileMatrixLimits>
     50976                                        <TileMatrixLimits>
     50977                                                <TileMatrix>12</TileMatrix>
     50978                                                <MinTileRow>1480</MinTileRow>
     50979                                                <MaxTileRow>1483</MaxTileRow>
     50980                                                <MinTileCol>2064</MinTileCol>
     50981                                                <MaxTileCol>2067</MaxTileCol>
     50982                                        </TileMatrixLimits>
     50983                                        <TileMatrixLimits>
     50984                                                <TileMatrix>13</TileMatrix>
     50985                                                <MinTileRow>2960</MinTileRow>
     50986                                                <MaxTileRow>2967</MaxTileRow>
     50987                                                <MinTileCol>4128</MinTileCol>
     50988                                                <MaxTileCol>4134</MaxTileCol>
     50989                                        </TileMatrixLimits>
     50990                                        <TileMatrixLimits>
     50991                                                <TileMatrix>14</TileMatrix>
     50992                                                <MinTileRow>5921</MinTileRow>
     50993                                                <MaxTileRow>5935</MaxTileRow>
     50994                                                <MinTileCol>8257</MinTileCol>
     50995                                                <MaxTileCol>8269</MaxTileCol>
     50996                                        </TileMatrixLimits>
     50997                                        <TileMatrixLimits>
     50998                                                <TileMatrix>15</TileMatrix>
     50999                                                <MinTileRow>11842</MinTileRow>
     51000                                                <MaxTileRow>11871</MaxTileRow>
     51001                                                <MinTileCol>16514</MinTileCol>
     51002                                                <MaxTileCol>16539</MaxTileCol>
     51003                                        </TileMatrixLimits>
     51004                                        <TileMatrixLimits>
     51005                                                <TileMatrix>16</TileMatrix>
     51006                                                <MinTileRow>23684</MinTileRow>
     51007                                                <MaxTileRow>23742</MaxTileRow>
     51008                                                <MinTileCol>33029</MinTileCol>
     51009                                                <MaxTileCol>33078</MaxTileCol>
     51010                                        </TileMatrixLimits>
     51011                                        <TileMatrixLimits>
     51012                                                <TileMatrix>17</TileMatrix>
     51013                                                <MinTileRow>47368</MinTileRow>
     51014                                                <MaxTileRow>47484</MaxTileRow>
     51015                                                <MinTileCol>66059</MinTileCol>
     51016                                                <MaxTileCol>66157</MaxTileCol>
     51017                                        </TileMatrixLimits>
     51018                                        <TileMatrixLimits>
     51019                                                <TileMatrix>18</TileMatrix>
     51020                                                <MinTileRow>94736</MinTileRow>
     51021                                                <MaxTileRow>94969</MaxTileRow>
     51022                                                <MinTileCol>132119</MinTileCol>
     51023                                                <MaxTileCol>132315</MaxTileCol>
     51024                                        </TileMatrixLimits>
     51025                                        <TileMatrixLimits>
     51026                                                <TileMatrix>2</TileMatrix>
     51027                                                <MinTileRow>1</MinTileRow>
     51028                                                <MaxTileRow>1</MaxTileRow>
     51029                                                <MinTileCol>2</MinTileCol>
     51030                                                <MaxTileCol>2</MaxTileCol>
     51031                                        </TileMatrixLimits>
     51032                                        <TileMatrixLimits>
     51033                                                <TileMatrix>3</TileMatrix>
     51034                                                <MinTileRow>2</MinTileRow>
     51035                                                <MaxTileRow>2</MaxTileRow>
     51036                                                <MinTileCol>4</MinTileCol>
     51037                                                <MaxTileCol>4</MaxTileCol>
     51038                                        </TileMatrixLimits>
     51039                                        <TileMatrixLimits>
     51040                                                <TileMatrix>4</TileMatrix>
     51041                                                <MinTileRow>5</MinTileRow>
     51042                                                <MaxTileRow>5</MaxTileRow>
     51043                                                <MinTileCol>8</MinTileCol>
     51044                                                <MaxTileCol>8</MaxTileCol>
     51045                                        </TileMatrixLimits>
     51046                                        <TileMatrixLimits>
     51047                                                <TileMatrix>5</TileMatrix>
     51048                                                <MinTileRow>11</MinTileRow>
     51049                                                <MaxTileRow>11</MaxTileRow>
     51050                                                <MinTileCol>16</MinTileCol>
     51051                                                <MaxTileCol>16</MaxTileCol>
     51052                                        </TileMatrixLimits>
     51053                                        <TileMatrixLimits>
     51054                                                <TileMatrix>6</TileMatrix>
     51055                                                <MinTileRow>23</MinTileRow>
     51056                                                <MaxTileRow>23</MaxTileRow>
     51057                                                <MinTileCol>32</MinTileCol>
     51058                                                <MaxTileCol>32</MaxTileCol>
     51059                                        </TileMatrixLimits>
     51060                                        <TileMatrixLimits>
     51061                                                <TileMatrix>7</TileMatrix>
     51062                                                <MinTileRow>46</MinTileRow>
     51063                                                <MaxTileRow>46</MaxTileRow>
     51064                                                <MinTileCol>64</MinTileCol>
     51065                                                <MaxTileCol>64</MaxTileCol>
     51066                                        </TileMatrixLimits>
     51067                                        <TileMatrixLimits>
     51068                                                <TileMatrix>8</TileMatrix>
     51069                                                <MinTileRow>92</MinTileRow>
     51070                                                <MaxTileRow>92</MaxTileRow>
     51071                                                <MinTileCol>129</MinTileCol>
     51072                                                <MaxTileCol>129</MaxTileCol>
     51073                                        </TileMatrixLimits>
     51074                                        <TileMatrixLimits>
     51075                                                <TileMatrix>9</TileMatrix>
     51076                                                <MinTileRow>185</MinTileRow>
     51077                                                <MaxTileRow>185</MaxTileRow>
     51078                                                <MinTileCol>258</MinTileCol>
     51079                                                <MaxTileCol>258</MaxTileCol>
     51080                                        </TileMatrixLimits>
     51081                                </TileMatrixSetLimits>
     51082                        </TileMatrixSetLink>
     51083                </Layer>
     51084                <Layer>
     51085                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51086                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51087                        <ows:Keywords>
     51088                                <ows:Keyword>Photographies</ows:Keyword>
     51089                        </ows:Keywords>
     51090                        <ows:WGS84BoundingBox>
     51091                                <ows:LowerCorner>1.44147 43.9411</ows:LowerCorner>
     51092                                <ows:UpperCorner>1.72946 44.4576</ows:UpperCorner>
     51093                        </ows:WGS84BoundingBox>
     51094                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39399697</ows:Identifier>
     51095                        <Style isDefault="true">
     51096                                <ows:Title>Données Brutes</ows:Title>
     51097                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51098                                <ows:Keywords>
     51099                                        <ows:Keyword>Défaut</ows:Keyword>
     51100                                </ows:Keywords>
     51101                                <ows:Identifier>normal</ows:Identifier>
     51102                                <LegendURL format="image/jpeg" height="200"
     51103                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51104                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51105                        </Style>
     51106                        <Format>image/jpeg</Format>
     51107                        <TileMatrixSetLink>
     51108                                <TileMatrixSet>PM</TileMatrixSet>
     51109                                <TileMatrixSetLimits>
     51110                                        <TileMatrixLimits>
     51111                                                <TileMatrix>0</TileMatrix>
     51112                                                <MinTileRow>0</MinTileRow>
     51113                                                <MaxTileRow>0</MaxTileRow>
     51114                                                <MinTileCol>0</MinTileCol>
     51115                                                <MaxTileCol>0</MaxTileCol>
     51116                                        </TileMatrixLimits>
     51117                                        <TileMatrixLimits>
     51118                                                <TileMatrix>1</TileMatrix>
     51119                                                <MinTileRow>0</MinTileRow>
     51120                                                <MaxTileRow>0</MaxTileRow>
     51121                                                <MinTileCol>1</MinTileCol>
     51122                                                <MaxTileCol>1</MaxTileCol>
     51123                                        </TileMatrixLimits>
     51124                                        <TileMatrixLimits>
     51125                                                <TileMatrix>10</TileMatrix>
     51126                                                <MinTileRow>370</MinTileRow>
     51127                                                <MaxTileRow>372</MaxTileRow>
     51128                                                <MinTileCol>516</MinTileCol>
     51129                                                <MaxTileCol>516</MaxTileCol>
     51130                                        </TileMatrixLimits>
     51131                                        <TileMatrixLimits>
     51132                                                <TileMatrix>11</TileMatrix>
     51133                                                <MinTileRow>741</MinTileRow>
     51134                                                <MaxTileRow>745</MaxTileRow>
     51135                                                <MinTileCol>1032</MinTileCol>
     51136                                                <MaxTileCol>1033</MaxTileCol>
     51137                                        </TileMatrixLimits>
     51138                                        <TileMatrixLimits>
     51139                                                <TileMatrix>12</TileMatrix>
     51140                                                <MinTileRow>1482</MinTileRow>
     51141                                                <MaxTileRow>1490</MaxTileRow>
     51142                                                <MinTileCol>2064</MinTileCol>
     51143                                                <MaxTileCol>2067</MaxTileCol>
     51144                                        </TileMatrixLimits>
     51145                                        <TileMatrixLimits>
     51146                                                <TileMatrix>13</TileMatrix>
     51147                                                <MinTileRow>2964</MinTileRow>
     51148                                                <MaxTileRow>2980</MaxTileRow>
     51149                                                <MinTileCol>4128</MinTileCol>
     51150                                                <MaxTileCol>4135</MaxTileCol>
     51151                                        </TileMatrixLimits>
     51152                                        <TileMatrixLimits>
     51153                                                <TileMatrix>14</TileMatrix>
     51154                                                <MinTileRow>5928</MinTileRow>
     51155                                                <MaxTileRow>5961</MaxTileRow>
     51156                                                <MinTileCol>8257</MinTileCol>
     51157                                                <MaxTileCol>8270</MaxTileCol>
     51158                                        </TileMatrixLimits>
     51159                                        <TileMatrixLimits>
     51160                                                <TileMatrix>15</TileMatrix>
     51161                                                <MinTileRow>11856</MinTileRow>
     51162                                                <MaxTileRow>11922</MaxTileRow>
     51163                                                <MinTileCol>16515</MinTileCol>
     51164                                                <MaxTileCol>16540</MaxTileCol>
     51165                                        </TileMatrixLimits>
     51166                                        <TileMatrixLimits>
     51167                                                <TileMatrix>16</TileMatrix>
     51168                                                <MinTileRow>23713</MinTileRow>
     51169                                                <MaxTileRow>23845</MaxTileRow>
     51170                                                <MinTileCol>33030</MinTileCol>
     51171                                                <MaxTileCol>33081</MaxTileCol>
     51172                                        </TileMatrixLimits>
     51173                                        <TileMatrixLimits>
     51174                                                <TileMatrix>17</TileMatrix>
     51175                                                <MinTileRow>47427</MinTileRow>
     51176                                                <MaxTileRow>47690</MaxTileRow>
     51177                                                <MinTileCol>66061</MinTileCol>
     51178                                                <MaxTileCol>66162</MaxTileCol>
     51179                                        </TileMatrixLimits>
     51180                                        <TileMatrixLimits>
     51181                                                <TileMatrix>18</TileMatrix>
     51182                                                <MinTileRow>94855</MinTileRow>
     51183                                                <MaxTileRow>95380</MaxTileRow>
     51184                                                <MinTileCol>132122</MinTileCol>
     51185                                                <MaxTileCol>132324</MaxTileCol>
     51186                                        </TileMatrixLimits>
     51187                                        <TileMatrixLimits>
     51188                                                <TileMatrix>2</TileMatrix>
     51189                                                <MinTileRow>1</MinTileRow>
     51190                                                <MaxTileRow>1</MaxTileRow>
     51191                                                <MinTileCol>2</MinTileCol>
     51192                                                <MaxTileCol>2</MaxTileCol>
     51193                                        </TileMatrixLimits>
     51194                                        <TileMatrixLimits>
     51195                                                <TileMatrix>3</TileMatrix>
     51196                                                <MinTileRow>2</MinTileRow>
     51197                                                <MaxTileRow>2</MaxTileRow>
     51198                                                <MinTileCol>4</MinTileCol>
     51199                                                <MaxTileCol>4</MaxTileCol>
     51200                                        </TileMatrixLimits>
     51201                                        <TileMatrixLimits>
     51202                                                <TileMatrix>4</TileMatrix>
     51203                                                <MinTileRow>5</MinTileRow>
     51204                                                <MaxTileRow>5</MaxTileRow>
     51205                                                <MinTileCol>8</MinTileCol>
     51206                                                <MaxTileCol>8</MaxTileCol>
     51207                                        </TileMatrixLimits>
     51208                                        <TileMatrixLimits>
     51209                                                <TileMatrix>5</TileMatrix>
     51210                                                <MinTileRow>11</MinTileRow>
     51211                                                <MaxTileRow>11</MaxTileRow>
     51212                                                <MinTileCol>16</MinTileCol>
     51213                                                <MaxTileCol>16</MaxTileCol>
     51214                                        </TileMatrixLimits>
     51215                                        <TileMatrixLimits>
     51216                                                <TileMatrix>6</TileMatrix>
     51217                                                <MinTileRow>23</MinTileRow>
     51218                                                <MaxTileRow>23</MaxTileRow>
     51219                                                <MinTileCol>32</MinTileCol>
     51220                                                <MaxTileCol>32</MaxTileCol>
     51221                                        </TileMatrixLimits>
     51222                                        <TileMatrixLimits>
     51223                                                <TileMatrix>7</TileMatrix>
     51224                                                <MinTileRow>46</MinTileRow>
     51225                                                <MaxTileRow>46</MaxTileRow>
     51226                                                <MinTileCol>64</MinTileCol>
     51227                                                <MaxTileCol>64</MaxTileCol>
     51228                                        </TileMatrixLimits>
     51229                                        <TileMatrixLimits>
     51230                                                <TileMatrix>8</TileMatrix>
     51231                                                <MinTileRow>92</MinTileRow>
     51232                                                <MaxTileRow>93</MaxTileRow>
     51233                                                <MinTileCol>129</MinTileCol>
     51234                                                <MaxTileCol>129</MaxTileCol>
     51235                                        </TileMatrixLimits>
     51236                                        <TileMatrixLimits>
     51237                                                <TileMatrix>9</TileMatrix>
     51238                                                <MinTileRow>185</MinTileRow>
     51239                                                <MaxTileRow>186</MaxTileRow>
     51240                                                <MinTileCol>258</MinTileCol>
     51241                                                <MaxTileCol>258</MaxTileCol>
     51242                                        </TileMatrixLimits>
     51243                                </TileMatrixSetLimits>
     51244                        </TileMatrixSetLink>
     51245                </Layer>
     51246                <Layer>
     51247                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51248                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51249                        <ows:Keywords>
     51250                                <ows:Keyword>Photographies</ows:Keyword>
     51251                        </ows:Keywords>
     51252                        <ows:WGS84BoundingBox>
     51253                                <ows:LowerCorner>1.53758 43.9693</ows:LowerCorner>
     51254                                <ows:UpperCorner>1.81608 44.1436</ows:UpperCorner>
     51255                        </ows:WGS84BoundingBox>
     51256                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-21-39415575</ows:Identifier>
     51257                        <Style isDefault="true">
     51258                                <ows:Title>Données Brutes</ows:Title>
     51259                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51260                                <ows:Keywords>
     51261                                        <ows:Keyword>Défaut</ows:Keyword>
     51262                                </ows:Keywords>
     51263                                <ows:Identifier>normal</ows:Identifier>
     51264                                <LegendURL format="image/jpeg" height="200"
     51265                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51266                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51267                        </Style>
     51268                        <Format>image/jpeg</Format>
     51269                        <TileMatrixSetLink>
     51270                                <TileMatrixSet>PM</TileMatrixSet>
     51271                                <TileMatrixSetLimits>
     51272                                        <TileMatrixLimits>
     51273                                                <TileMatrix>0</TileMatrix>
     51274                                                <MinTileRow>0</MinTileRow>
     51275                                                <MaxTileRow>0</MaxTileRow>
     51276                                                <MinTileCol>0</MinTileCol>
     51277                                                <MaxTileCol>0</MaxTileCol>
     51278                                        </TileMatrixLimits>
     51279                                        <TileMatrixLimits>
     51280                                                <TileMatrix>1</TileMatrix>
     51281                                                <MinTileRow>0</MinTileRow>
     51282                                                <MaxTileRow>0</MaxTileRow>
     51283                                                <MinTileCol>1</MinTileCol>
     51284                                                <MaxTileCol>1</MaxTileCol>
     51285                                        </TileMatrixLimits>
     51286                                        <TileMatrixLimits>
     51287                                                <TileMatrix>10</TileMatrix>
     51288                                                <MinTileRow>371</MinTileRow>
     51289                                                <MaxTileRow>372</MaxTileRow>
     51290                                                <MinTileCol>516</MinTileCol>
     51291                                                <MaxTileCol>517</MaxTileCol>
     51292                                        </TileMatrixLimits>
     51293                                        <TileMatrixLimits>
     51294                                                <TileMatrix>11</TileMatrix>
     51295                                                <MinTileRow>743</MinTileRow>
     51296                                                <MaxTileRow>744</MaxTileRow>
     51297                                                <MinTileCol>1032</MinTileCol>
     51298                                                <MaxTileCol>1034</MaxTileCol>
     51299                                        </TileMatrixLimits>
     51300                                        <TileMatrixLimits>
     51301                                                <TileMatrix>12</TileMatrix>
     51302                                                <MinTileRow>1487</MinTileRow>
     51303                                                <MaxTileRow>1489</MaxTileRow>
     51304                                                <MinTileCol>2065</MinTileCol>
     51305                                                <MaxTileCol>2068</MaxTileCol>
     51306                                        </TileMatrixLimits>
     51307                                        <TileMatrixLimits>
     51308                                                <TileMatrix>13</TileMatrix>
     51309                                                <MinTileRow>2974</MinTileRow>
     51310                                                <MaxTileRow>2979</MaxTileRow>
     51311                                                <MinTileCol>4130</MinTileCol>
     51312                                                <MaxTileCol>4137</MaxTileCol>
     51313                                        </TileMatrixLimits>
     51314                                        <TileMatrixLimits>
     51315                                                <TileMatrix>14</TileMatrix>
     51316                                                <MinTileRow>5948</MinTileRow>
     51317                                                <MaxTileRow>5959</MaxTileRow>
     51318                                                <MinTileCol>8261</MinTileCol>
     51319                                                <MaxTileCol>8274</MaxTileCol>
     51320                                        </TileMatrixLimits>
     51321                                        <TileMatrixLimits>
     51322                                                <TileMatrix>15</TileMatrix>
     51323                                                <MinTileRow>11896</MinTileRow>
     51324                                                <MaxTileRow>11918</MaxTileRow>
     51325                                                <MinTileCol>16523</MinTileCol>
     51326                                                <MaxTileCol>16549</MaxTileCol>
     51327                                        </TileMatrixLimits>
     51328                                        <TileMatrixLimits>
     51329                                                <TileMatrix>16</TileMatrix>
     51330                                                <MinTileRow>23793</MinTileRow>
     51331                                                <MaxTileRow>23837</MaxTileRow>
     51332                                                <MinTileCol>33047</MinTileCol>
     51333                                                <MaxTileCol>33098</MaxTileCol>
     51334                                        </TileMatrixLimits>
     51335                                        <TileMatrixLimits>
     51336                                                <TileMatrix>17</TileMatrix>
     51337                                                <MinTileRow>47587</MinTileRow>
     51338                                                <MaxTileRow>47675</MaxTileRow>
     51339                                                <MinTileCol>66095</MinTileCol>
     51340                                                <MaxTileCol>66197</MaxTileCol>
     51341                                        </TileMatrixLimits>
     51342                                        <TileMatrixLimits>
     51343                                                <TileMatrix>18</TileMatrix>
     51344                                                <MinTileRow>95175</MinTileRow>
     51345                                                <MaxTileRow>95351</MaxTileRow>
     51346                                                <MinTileCol>132191</MinTileCol>
     51347                                                <MaxTileCol>132394</MaxTileCol>
     51348                                        </TileMatrixLimits>
     51349                                        <TileMatrixLimits>
     51350                                                <TileMatrix>2</TileMatrix>
     51351                                                <MinTileRow>1</MinTileRow>
     51352                                                <MaxTileRow>1</MaxTileRow>
     51353                                                <MinTileCol>2</MinTileCol>
     51354                                                <MaxTileCol>2</MaxTileCol>
     51355                                        </TileMatrixLimits>
     51356                                        <TileMatrixLimits>
     51357                                                <TileMatrix>3</TileMatrix>
     51358                                                <MinTileRow>2</MinTileRow>
     51359                                                <MaxTileRow>2</MaxTileRow>
     51360                                                <MinTileCol>4</MinTileCol>
     51361                                                <MaxTileCol>4</MaxTileCol>
     51362                                        </TileMatrixLimits>
     51363                                        <TileMatrixLimits>
     51364                                                <TileMatrix>4</TileMatrix>
     51365                                                <MinTileRow>5</MinTileRow>
     51366                                                <MaxTileRow>5</MaxTileRow>
     51367                                                <MinTileCol>8</MinTileCol>
     51368                                                <MaxTileCol>8</MaxTileCol>
     51369                                        </TileMatrixLimits>
     51370                                        <TileMatrixLimits>
     51371                                                <TileMatrix>5</TileMatrix>
     51372                                                <MinTileRow>11</MinTileRow>
     51373                                                <MaxTileRow>11</MaxTileRow>
     51374                                                <MinTileCol>16</MinTileCol>
     51375                                                <MaxTileCol>16</MaxTileCol>
     51376                                        </TileMatrixLimits>
     51377                                        <TileMatrixLimits>
     51378                                                <TileMatrix>6</TileMatrix>
     51379                                                <MinTileRow>23</MinTileRow>
     51380                                                <MaxTileRow>23</MaxTileRow>
     51381                                                <MinTileCol>32</MinTileCol>
     51382                                                <MaxTileCol>32</MaxTileCol>
     51383                                        </TileMatrixLimits>
     51384                                        <TileMatrixLimits>
     51385                                                <TileMatrix>7</TileMatrix>
     51386                                                <MinTileRow>46</MinTileRow>
     51387                                                <MaxTileRow>46</MaxTileRow>
     51388                                                <MinTileCol>64</MinTileCol>
     51389                                                <MaxTileCol>64</MaxTileCol>
     51390                                        </TileMatrixLimits>
     51391                                        <TileMatrixLimits>
     51392                                                <TileMatrix>8</TileMatrix>
     51393                                                <MinTileRow>92</MinTileRow>
     51394                                                <MaxTileRow>93</MaxTileRow>
     51395                                                <MinTileCol>129</MinTileCol>
     51396                                                <MaxTileCol>129</MaxTileCol>
     51397                                        </TileMatrixLimits>
     51398                                        <TileMatrixLimits>
     51399                                                <TileMatrix>9</TileMatrix>
     51400                                                <MinTileRow>185</MinTileRow>
     51401                                                <MaxTileRow>186</MaxTileRow>
     51402                                                <MinTileCol>258</MinTileCol>
     51403                                                <MaxTileCol>258</MaxTileCol>
     51404                                        </TileMatrixLimits>
     51405                                </TileMatrixSetLimits>
     51406                        </TileMatrixSetLink>
     51407                </Layer>
     51408                <Layer>
     51409                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51410                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51411                        <ows:Keywords>
     51412                                <ows:Keyword>Photographies</ows:Keyword>
     51413                        </ows:Keywords>
     51414                        <ows:WGS84BoundingBox>
     51415                                <ows:LowerCorner>1.64231 44.2587</ows:LowerCorner>
     51416                                <ows:UpperCorner>1.94783 44.469</ows:UpperCorner>
     51417                        </ows:WGS84BoundingBox>
     51418                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-07-26-40091195</ows:Identifier>
     51419                        <Style isDefault="true">
     51420                                <ows:Title>Données Brutes</ows:Title>
     51421                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51422                                <ows:Keywords>
     51423                                        <ows:Keyword>Défaut</ows:Keyword>
     51424                                </ows:Keywords>
     51425                                <ows:Identifier>normal</ows:Identifier>
     51426                                <LegendURL format="image/jpeg" height="200"
     51427                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51428                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51429                        </Style>
     51430                        <Format>image/jpeg</Format>
     51431                        <TileMatrixSetLink>
     51432                                <TileMatrixSet>PM</TileMatrixSet>
     51433                                <TileMatrixSetLimits>
     51434                                        <TileMatrixLimits>
     51435                                                <TileMatrix>0</TileMatrix>
     51436                                                <MinTileRow>0</MinTileRow>
     51437                                                <MaxTileRow>0</MaxTileRow>
     51438                                                <MinTileCol>0</MinTileCol>
     51439                                                <MaxTileCol>0</MaxTileCol>
     51440                                        </TileMatrixLimits>
     51441                                        <TileMatrixLimits>
     51442                                                <TileMatrix>1</TileMatrix>
     51443                                                <MinTileRow>0</MinTileRow>
     51444                                                <MaxTileRow>0</MaxTileRow>
     51445                                                <MinTileCol>1</MinTileCol>
     51446                                                <MaxTileCol>1</MaxTileCol>
     51447                                        </TileMatrixLimits>
     51448                                        <TileMatrixLimits>
     51449                                                <TileMatrix>10</TileMatrix>
     51450                                                <MinTileRow>370</MinTileRow>
     51451                                                <MaxTileRow>371</MaxTileRow>
     51452                                                <MinTileCol>516</MinTileCol>
     51453                                                <MaxTileCol>517</MaxTileCol>
     51454                                        </TileMatrixLimits>
     51455                                        <TileMatrixLimits>
     51456                                                <TileMatrix>11</TileMatrix>
     51457                                                <MinTileRow>740</MinTileRow>
     51458                                                <MaxTileRow>742</MaxTileRow>
     51459                                                <MinTileCol>1033</MinTileCol>
     51460                                                <MaxTileCol>1035</MaxTileCol>
     51461                                        </TileMatrixLimits>
     51462                                        <TileMatrixLimits>
     51463                                                <TileMatrix>12</TileMatrix>
     51464                                                <MinTileRow>1481</MinTileRow>
     51465                                                <MaxTileRow>1485</MaxTileRow>
     51466                                                <MinTileCol>2066</MinTileCol>
     51467                                                <MaxTileCol>2070</MaxTileCol>
     51468                                        </TileMatrixLimits>
     51469                                        <TileMatrixLimits>
     51470                                                <TileMatrix>13</TileMatrix>
     51471                                                <MinTileRow>2963</MinTileRow>
     51472                                                <MaxTileRow>2970</MaxTileRow>
     51473                                                <MinTileCol>4133</MinTileCol>
     51474                                                <MaxTileCol>4140</MaxTileCol>
     51475                                        </TileMatrixLimits>
     51476                                        <TileMatrixLimits>
     51477                                                <TileMatrix>14</TileMatrix>
     51478                                                <MinTileRow>5927</MinTileRow>
     51479                                                <MaxTileRow>5941</MaxTileRow>
     51480                                                <MinTileCol>8266</MinTileCol>
     51481                                                <MaxTileCol>8280</MaxTileCol>
     51482                                        </TileMatrixLimits>
     51483                                        <TileMatrixLimits>
     51484                                                <TileMatrix>15</TileMatrix>
     51485                                                <MinTileRow>11855</MinTileRow>
     51486                                                <MaxTileRow>11882</MaxTileRow>
     51487                                                <MinTileCol>16533</MinTileCol>
     51488                                                <MaxTileCol>16561</MaxTileCol>
     51489                                        </TileMatrixLimits>
     51490                                        <TileMatrixLimits>
     51491                                                <TileMatrix>16</TileMatrix>
     51492                                                <MinTileRow>23711</MinTileRow>
     51493                                                <MaxTileRow>23764</MaxTileRow>
     51494                                                <MinTileCol>33066</MinTileCol>
     51495                                                <MaxTileCol>33122</MaxTileCol>
     51496                                        </TileMatrixLimits>
     51497                                        <TileMatrixLimits>
     51498                                                <TileMatrix>17</TileMatrix>
     51499                                                <MinTileRow>47422</MinTileRow>
     51500                                                <MaxTileRow>47529</MaxTileRow>
     51501                                                <MinTileCol>66133</MinTileCol>
     51502                                                <MaxTileCol>66245</MaxTileCol>
     51503                                        </TileMatrixLimits>
     51504                                        <TileMatrixLimits>
     51505                                                <TileMatrix>18</TileMatrix>
     51506                                                <MinTileRow>94844</MinTileRow>
     51507                                                <MaxTileRow>95058</MaxTileRow>
     51508                                                <MinTileCol>132267</MinTileCol>
     51509                                                <MaxTileCol>132490</MaxTileCol>
     51510                                        </TileMatrixLimits>
     51511                                        <TileMatrixLimits>
     51512                                                <TileMatrix>2</TileMatrix>
     51513                                                <MinTileRow>1</MinTileRow>
     51514                                                <MaxTileRow>1</MaxTileRow>
     51515                                                <MinTileCol>2</MinTileCol>
     51516                                                <MaxTileCol>2</MaxTileCol>
     51517                                        </TileMatrixLimits>
     51518                                        <TileMatrixLimits>
     51519                                                <TileMatrix>3</TileMatrix>
     51520                                                <MinTileRow>2</MinTileRow>
     51521                                                <MaxTileRow>2</MaxTileRow>
     51522                                                <MinTileCol>4</MinTileCol>
     51523                                                <MaxTileCol>4</MaxTileCol>
     51524                                        </TileMatrixLimits>
     51525                                        <TileMatrixLimits>
     51526                                                <TileMatrix>4</TileMatrix>
     51527                                                <MinTileRow>5</MinTileRow>
     51528                                                <MaxTileRow>5</MaxTileRow>
     51529                                                <MinTileCol>8</MinTileCol>
     51530                                                <MaxTileCol>8</MaxTileCol>
     51531                                        </TileMatrixLimits>
     51532                                        <TileMatrixLimits>
     51533                                                <TileMatrix>5</TileMatrix>
     51534                                                <MinTileRow>11</MinTileRow>
     51535                                                <MaxTileRow>11</MaxTileRow>
     51536                                                <MinTileCol>16</MinTileCol>
     51537                                                <MaxTileCol>16</MaxTileCol>
     51538                                        </TileMatrixLimits>
     51539                                        <TileMatrixLimits>
     51540                                                <TileMatrix>6</TileMatrix>
     51541                                                <MinTileRow>23</MinTileRow>
     51542                                                <MaxTileRow>23</MaxTileRow>
     51543                                                <MinTileCol>32</MinTileCol>
     51544                                                <MaxTileCol>32</MaxTileCol>
     51545                                        </TileMatrixLimits>
     51546                                        <TileMatrixLimits>
     51547                                                <TileMatrix>7</TileMatrix>
     51548                                                <MinTileRow>46</MinTileRow>
     51549                                                <MaxTileRow>46</MaxTileRow>
     51550                                                <MinTileCol>64</MinTileCol>
     51551                                                <MaxTileCol>64</MaxTileCol>
     51552                                        </TileMatrixLimits>
     51553                                        <TileMatrixLimits>
     51554                                                <TileMatrix>8</TileMatrix>
     51555                                                <MinTileRow>92</MinTileRow>
     51556                                                <MaxTileRow>92</MaxTileRow>
     51557                                                <MinTileCol>129</MinTileCol>
     51558                                                <MaxTileCol>129</MaxTileCol>
     51559                                        </TileMatrixLimits>
     51560                                        <TileMatrixLimits>
     51561                                                <TileMatrix>9</TileMatrix>
     51562                                                <MinTileRow>185</MinTileRow>
     51563                                                <MaxTileRow>185</MaxTileRow>
     51564                                                <MinTileCol>258</MinTileCol>
     51565                                                <MaxTileCol>258</MaxTileCol>
     51566                                        </TileMatrixLimits>
     51567                                </TileMatrixSetLimits>
     51568                        </TileMatrixSetLink>
     51569                </Layer>
     51570                <Layer>
     51571                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51572                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51573                        <ows:Keywords>
     51574                                <ows:Keyword>Photographies</ows:Keyword>
     51575                        </ows:Keywords>
     51576                        <ows:WGS84BoundingBox>
     51577                                <ows:LowerCorner>1.21189 44.3606</ows:LowerCorner>
     51578                                <ows:UpperCorner>1.49413 44.5627</ows:UpperCorner>
     51579                        </ows:WGS84BoundingBox>
     51580                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39852200</ows:Identifier>
     51581                        <Style isDefault="true">
     51582                                <ows:Title>Données Brutes</ows:Title>
     51583                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51584                                <ows:Keywords>
     51585                                        <ows:Keyword>Défaut</ows:Keyword>
     51586                                </ows:Keywords>
     51587                                <ows:Identifier>normal</ows:Identifier>
     51588                                <LegendURL format="image/jpeg" height="200"
     51589                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51590                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51591                        </Style>
     51592                        <Format>image/jpeg</Format>
     51593                        <TileMatrixSetLink>
     51594                                <TileMatrixSet>PM</TileMatrixSet>
     51595                                <TileMatrixSetLimits>
     51596                                        <TileMatrixLimits>
     51597                                                <TileMatrix>0</TileMatrix>
     51598                                                <MinTileRow>0</MinTileRow>
     51599                                                <MaxTileRow>0</MaxTileRow>
     51600                                                <MinTileCol>0</MinTileCol>
     51601                                                <MaxTileCol>0</MaxTileCol>
     51602                                        </TileMatrixLimits>
     51603                                        <TileMatrixLimits>
     51604                                                <TileMatrix>1</TileMatrix>
     51605                                                <MinTileRow>0</MinTileRow>
     51606                                                <MaxTileRow>0</MaxTileRow>
     51607                                                <MinTileCol>1</MinTileCol>
     51608                                                <MaxTileCol>1</MaxTileCol>
     51609                                        </TileMatrixLimits>
     51610                                        <TileMatrixLimits>
     51611                                                <TileMatrix>10</TileMatrix>
     51612                                                <MinTileRow>370</MinTileRow>
     51613                                                <MaxTileRow>370</MaxTileRow>
     51614                                                <MinTileCol>515</MinTileCol>
     51615                                                <MaxTileCol>516</MaxTileCol>
     51616                                        </TileMatrixLimits>
     51617                                        <TileMatrixLimits>
     51618                                                <TileMatrix>11</TileMatrix>
     51619                                                <MinTileRow>740</MinTileRow>
     51620                                                <MaxTileRow>741</MaxTileRow>
     51621                                                <MinTileCol>1030</MinTileCol>
     51622                                                <MaxTileCol>1032</MaxTileCol>
     51623                                        </TileMatrixLimits>
     51624                                        <TileMatrixLimits>
     51625                                                <TileMatrix>12</TileMatrix>
     51626                                                <MinTileRow>1480</MinTileRow>
     51627                                                <MaxTileRow>1483</MaxTileRow>
     51628                                                <MinTileCol>2061</MinTileCol>
     51629                                                <MaxTileCol>2065</MaxTileCol>
     51630                                        </TileMatrixLimits>
     51631                                        <TileMatrixLimits>
     51632                                                <TileMatrix>13</TileMatrix>
     51633                                                <MinTileRow>2960</MinTileRow>
     51634                                                <MaxTileRow>2967</MaxTileRow>
     51635                                                <MinTileCol>4123</MinTileCol>
     51636                                                <MaxTileCol>4130</MaxTileCol>
     51637                                        </TileMatrixLimits>
     51638                                        <TileMatrixLimits>
     51639                                                <TileMatrix>14</TileMatrix>
     51640                                                <MinTileRow>5921</MinTileRow>
     51641                                                <MaxTileRow>5934</MaxTileRow>
     51642                                                <MinTileCol>8247</MinTileCol>
     51643                                                <MaxTileCol>8260</MaxTileCol>
     51644                                        </TileMatrixLimits>
     51645                                        <TileMatrixLimits>
     51646                                                <TileMatrix>15</TileMatrix>
     51647                                                <MinTileRow>11843</MinTileRow>
     51648                                                <MaxTileRow>11869</MaxTileRow>
     51649                                                <MinTileCol>16494</MinTileCol>
     51650                                                <MaxTileCol>16520</MaxTileCol>
     51651                                        </TileMatrixLimits>
     51652                                        <TileMatrixLimits>
     51653                                                <TileMatrix>16</TileMatrix>
     51654                                                <MinTileRow>23687</MinTileRow>
     51655                                                <MaxTileRow>23738</MaxTileRow>
     51656                                                <MinTileCol>32988</MinTileCol>
     51657                                                <MaxTileCol>33040</MaxTileCol>
     51658                                        </TileMatrixLimits>
     51659                                        <TileMatrixLimits>
     51660                                                <TileMatrix>17</TileMatrix>
     51661                                                <MinTileRow>47375</MinTileRow>
     51662                                                <MaxTileRow>47476</MaxTileRow>
     51663                                                <MinTileCol>65977</MinTileCol>
     51664                                                <MaxTileCol>66080</MaxTileCol>
     51665                                        </TileMatrixLimits>
     51666                                        <TileMatrixLimits>
     51667                                                <TileMatrix>18</TileMatrix>
     51668                                                <MinTileRow>94750</MinTileRow>
     51669                                                <MaxTileRow>94953</MaxTileRow>
     51670                                                <MinTileCol>131955</MinTileCol>
     51671                                                <MaxTileCol>132160</MaxTileCol>
     51672                                        </TileMatrixLimits>
     51673                                        <TileMatrixLimits>
     51674                                                <TileMatrix>2</TileMatrix>
     51675                                                <MinTileRow>1</MinTileRow>
     51676                                                <MaxTileRow>1</MaxTileRow>
     51677                                                <MinTileCol>2</MinTileCol>
     51678                                                <MaxTileCol>2</MaxTileCol>
     51679                                        </TileMatrixLimits>
     51680                                        <TileMatrixLimits>
     51681                                                <TileMatrix>3</TileMatrix>
     51682                                                <MinTileRow>2</MinTileRow>
     51683                                                <MaxTileRow>2</MaxTileRow>
     51684                                                <MinTileCol>4</MinTileCol>
     51685                                                <MaxTileCol>4</MaxTileCol>
     51686                                        </TileMatrixLimits>
     51687                                        <TileMatrixLimits>
     51688                                                <TileMatrix>4</TileMatrix>
     51689                                                <MinTileRow>5</MinTileRow>
     51690                                                <MaxTileRow>5</MaxTileRow>
     51691                                                <MinTileCol>8</MinTileCol>
     51692                                                <MaxTileCol>8</MaxTileCol>
     51693                                        </TileMatrixLimits>
     51694                                        <TileMatrixLimits>
     51695                                                <TileMatrix>5</TileMatrix>
     51696                                                <MinTileRow>11</MinTileRow>
     51697                                                <MaxTileRow>11</MaxTileRow>
     51698                                                <MinTileCol>16</MinTileCol>
     51699                                                <MaxTileCol>16</MaxTileCol>
     51700                                        </TileMatrixLimits>
     51701                                        <TileMatrixLimits>
     51702                                                <TileMatrix>6</TileMatrix>
     51703                                                <MinTileRow>23</MinTileRow>
     51704                                                <MaxTileRow>23</MaxTileRow>
     51705                                                <MinTileCol>32</MinTileCol>
     51706                                                <MaxTileCol>32</MaxTileCol>
     51707                                        </TileMatrixLimits>
     51708                                        <TileMatrixLimits>
     51709                                                <TileMatrix>7</TileMatrix>
     51710                                                <MinTileRow>46</MinTileRow>
     51711                                                <MaxTileRow>46</MaxTileRow>
     51712                                                <MinTileCol>64</MinTileCol>
     51713                                                <MaxTileCol>64</MaxTileCol>
     51714                                        </TileMatrixLimits>
     51715                                        <TileMatrixLimits>
     51716                                                <TileMatrix>8</TileMatrix>
     51717                                                <MinTileRow>92</MinTileRow>
     51718                                                <MaxTileRow>92</MaxTileRow>
     51719                                                <MinTileCol>128</MinTileCol>
     51720                                                <MaxTileCol>129</MaxTileCol>
     51721                                        </TileMatrixLimits>
     51722                                        <TileMatrixLimits>
     51723                                                <TileMatrix>9</TileMatrix>
     51724                                                <MinTileRow>185</MinTileRow>
     51725                                                <MaxTileRow>185</MaxTileRow>
     51726                                                <MinTileCol>257</MinTileCol>
     51727                                                <MaxTileCol>258</MaxTileCol>
     51728                                        </TileMatrixLimits>
     51729                                </TileMatrixSetLimits>
     51730                        </TileMatrixSetLink>
     51731                </Layer>
     51732                <Layer>
     51733                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51734                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51735                        <ows:Keywords>
     51736                                <ows:Keyword>Photographies</ows:Keyword>
     51737                        </ows:Keywords>
     51738                        <ows:WGS84BoundingBox>
     51739                                <ows:LowerCorner>0.997588 44.3839</ows:LowerCorner>
     51740                                <ows:UpperCorner>1.28004 44.5686</ows:UpperCorner>
     51741                        </ows:WGS84BoundingBox>
     51742                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39861822</ows:Identifier>
     51743                        <Style isDefault="true">
     51744                                <ows:Title>Données Brutes</ows:Title>
     51745                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51746                                <ows:Keywords>
     51747                                        <ows:Keyword>Défaut</ows:Keyword>
     51748                                </ows:Keywords>
     51749                                <ows:Identifier>normal</ows:Identifier>
     51750                                <LegendURL format="image/jpeg" height="200"
     51751                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51752                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51753                        </Style>
     51754                        <Format>image/jpeg</Format>
     51755                        <TileMatrixSetLink>
     51756                                <TileMatrixSet>PM</TileMatrixSet>
     51757                                <TileMatrixSetLimits>
     51758                                        <TileMatrixLimits>
     51759                                                <TileMatrix>0</TileMatrix>
     51760                                                <MinTileRow>0</MinTileRow>
     51761                                                <MaxTileRow>0</MaxTileRow>
     51762                                                <MinTileCol>0</MinTileCol>
     51763                                                <MaxTileCol>0</MaxTileCol>
     51764                                        </TileMatrixLimits>
     51765                                        <TileMatrixLimits>
     51766                                                <TileMatrix>1</TileMatrix>
     51767                                                <MinTileRow>0</MinTileRow>
     51768                                                <MaxTileRow>0</MaxTileRow>
     51769                                                <MinTileCol>1</MinTileCol>
     51770                                                <MaxTileCol>1</MaxTileCol>
     51771                                        </TileMatrixLimits>
     51772                                        <TileMatrixLimits>
     51773                                                <TileMatrix>10</TileMatrix>
     51774                                                <MinTileRow>370</MinTileRow>
     51775                                                <MaxTileRow>370</MaxTileRow>
     51776                                                <MinTileCol>514</MinTileCol>
     51777                                                <MaxTileCol>515</MaxTileCol>
     51778                                        </TileMatrixLimits>
     51779                                        <TileMatrixLimits>
     51780                                                <TileMatrix>11</TileMatrix>
     51781                                                <MinTileRow>740</MinTileRow>
     51782                                                <MaxTileRow>741</MaxTileRow>
     51783                                                <MinTileCol>1029</MinTileCol>
     51784                                                <MaxTileCol>1031</MaxTileCol>
     51785                                        </TileMatrixLimits>
     51786                                        <TileMatrixLimits>
     51787                                                <TileMatrix>12</TileMatrix>
     51788                                                <MinTileRow>1480</MinTileRow>
     51789                                                <MaxTileRow>1483</MaxTileRow>
     51790                                                <MinTileCol>2059</MinTileCol>
     51791                                                <MaxTileCol>2062</MaxTileCol>
     51792                                        </TileMatrixLimits>
     51793                                        <TileMatrixLimits>
     51794                                                <TileMatrix>13</TileMatrix>
     51795                                                <MinTileRow>2960</MinTileRow>
     51796                                                <MaxTileRow>2966</MaxTileRow>
     51797                                                <MinTileCol>4118</MinTileCol>
     51798                                                <MaxTileCol>4125</MaxTileCol>
     51799                                        </TileMatrixLimits>
     51800                                        <TileMatrixLimits>
     51801                                                <TileMatrix>14</TileMatrix>
     51802                                                <MinTileRow>5921</MinTileRow>
     51803                                                <MaxTileRow>5933</MaxTileRow>
     51804                                                <MinTileCol>8237</MinTileCol>
     51805                                                <MaxTileCol>8250</MaxTileCol>
     51806                                        </TileMatrixLimits>
     51807                                        <TileMatrixLimits>
     51808                                                <TileMatrix>15</TileMatrix>
     51809                                                <MinTileRow>11842</MinTileRow>
     51810                                                <MaxTileRow>11866</MaxTileRow>
     51811                                                <MinTileCol>16474</MinTileCol>
     51812                                                <MaxTileCol>16500</MaxTileCol>
     51813                                        </TileMatrixLimits>
     51814                                        <TileMatrixLimits>
     51815                                                <TileMatrix>16</TileMatrix>
     51816                                                <MinTileRow>23685</MinTileRow>
     51817                                                <MaxTileRow>23732</MaxTileRow>
     51818                                                <MinTileCol>32949</MinTileCol>
     51819                                                <MaxTileCol>33000</MaxTileCol>
     51820                                        </TileMatrixLimits>
     51821                                        <TileMatrixLimits>
     51822                                                <TileMatrix>17</TileMatrix>
     51823                                                <MinTileRow>47371</MinTileRow>
     51824                                                <MaxTileRow>47465</MaxTileRow>
     51825                                                <MinTileCol>65899</MinTileCol>
     51826                                                <MaxTileCol>66001</MaxTileCol>
     51827                                        </TileMatrixLimits>
     51828                                        <TileMatrixLimits>
     51829                                                <TileMatrix>18</TileMatrix>
     51830                                                <MinTileRow>94742</MinTileRow>
     51831                                                <MaxTileRow>94930</MaxTileRow>
     51832                                                <MinTileCol>131798</MinTileCol>
     51833                                                <MaxTileCol>132002</MaxTileCol>
     51834                                        </TileMatrixLimits>
     51835                                        <TileMatrixLimits>
     51836                                                <TileMatrix>2</TileMatrix>
     51837                                                <MinTileRow>1</MinTileRow>
     51838                                                <MaxTileRow>1</MaxTileRow>
     51839                                                <MinTileCol>2</MinTileCol>
     51840                                                <MaxTileCol>2</MaxTileCol>
     51841                                        </TileMatrixLimits>
     51842                                        <TileMatrixLimits>
     51843                                                <TileMatrix>3</TileMatrix>
     51844                                                <MinTileRow>2</MinTileRow>
     51845                                                <MaxTileRow>2</MaxTileRow>
     51846                                                <MinTileCol>4</MinTileCol>
     51847                                                <MaxTileCol>4</MaxTileCol>
     51848                                        </TileMatrixLimits>
     51849                                        <TileMatrixLimits>
     51850                                                <TileMatrix>4</TileMatrix>
     51851                                                <MinTileRow>5</MinTileRow>
     51852                                                <MaxTileRow>5</MaxTileRow>
     51853                                                <MinTileCol>8</MinTileCol>
     51854                                                <MaxTileCol>8</MaxTileCol>
     51855                                        </TileMatrixLimits>
     51856                                        <TileMatrixLimits>
     51857                                                <TileMatrix>5</TileMatrix>
     51858                                                <MinTileRow>11</MinTileRow>
     51859                                                <MaxTileRow>11</MaxTileRow>
     51860                                                <MinTileCol>16</MinTileCol>
     51861                                                <MaxTileCol>16</MaxTileCol>
     51862                                        </TileMatrixLimits>
     51863                                        <TileMatrixLimits>
     51864                                                <TileMatrix>6</TileMatrix>
     51865                                                <MinTileRow>23</MinTileRow>
     51866                                                <MaxTileRow>23</MaxTileRow>
     51867                                                <MinTileCol>32</MinTileCol>
     51868                                                <MaxTileCol>32</MaxTileCol>
     51869                                        </TileMatrixLimits>
     51870                                        <TileMatrixLimits>
     51871                                                <TileMatrix>7</TileMatrix>
     51872                                                <MinTileRow>46</MinTileRow>
     51873                                                <MaxTileRow>46</MaxTileRow>
     51874                                                <MinTileCol>64</MinTileCol>
     51875                                                <MaxTileCol>64</MaxTileCol>
     51876                                        </TileMatrixLimits>
     51877                                        <TileMatrixLimits>
     51878                                                <TileMatrix>8</TileMatrix>
     51879                                                <MinTileRow>92</MinTileRow>
     51880                                                <MaxTileRow>92</MaxTileRow>
     51881                                                <MinTileCol>128</MinTileCol>
     51882                                                <MaxTileCol>128</MaxTileCol>
     51883                                        </TileMatrixLimits>
     51884                                        <TileMatrixLimits>
     51885                                                <TileMatrix>9</TileMatrix>
     51886                                                <MinTileRow>185</MinTileRow>
     51887                                                <MaxTileRow>185</MaxTileRow>
     51888                                                <MinTileCol>257</MinTileCol>
     51889                                                <MaxTileCol>257</MaxTileCol>
     51890                                        </TileMatrixLimits>
     51891                                </TileMatrixSetLimits>
     51892                        </TileMatrixSetLink>
     51893                </Layer>
     51894                <Layer>
     51895                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     51896                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     51897                        <ows:Keywords>
     51898                                <ows:Keyword>Photographies</ows:Keyword>
     51899                        </ows:Keywords>
     51900                        <ows:WGS84BoundingBox>
     51901                                <ows:LowerCorner>0.987888 43.7989</ows:LowerCorner>
     51902                                <ows:UpperCorner>1.31005 44.4878</ows:UpperCorner>
     51903                        </ows:WGS84BoundingBox>
     51904                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-02-39870946</ows:Identifier>
     51905                        <Style isDefault="true">
     51906                                <ows:Title>Données Brutes</ows:Title>
     51907                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     51908                                <ows:Keywords>
     51909                                        <ows:Keyword>Défaut</ows:Keyword>
     51910                                </ows:Keywords>
     51911                                <ows:Identifier>normal</ows:Identifier>
     51912                                <LegendURL format="image/jpeg" height="200"
     51913                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     51914                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     51915                        </Style>
     51916                        <Format>image/jpeg</Format>
     51917                        <TileMatrixSetLink>
     51918                                <TileMatrixSet>PM</TileMatrixSet>
     51919                                <TileMatrixSetLimits>
     51920                                        <TileMatrixLimits>
     51921                                                <TileMatrix>0</TileMatrix>
     51922                                                <MinTileRow>0</MinTileRow>
     51923                                                <MaxTileRow>0</MaxTileRow>
     51924                                                <MinTileCol>0</MinTileCol>
     51925                                                <MaxTileCol>0</MaxTileCol>
     51926                                        </TileMatrixLimits>
     51927                                        <TileMatrixLimits>
     51928                                                <TileMatrix>1</TileMatrix>
     51929                                                <MinTileRow>0</MinTileRow>
     51930                                                <MaxTileRow>0</MaxTileRow>
     51931                                                <MinTileCol>1</MinTileCol>
     51932                                                <MaxTileCol>1</MaxTileCol>
     51933                                        </TileMatrixLimits>
     51934                                        <TileMatrixLimits>
     51935                                                <TileMatrix>10</TileMatrix>
     51936                                                <MinTileRow>370</MinTileRow>
     51937                                                <MaxTileRow>373</MaxTileRow>
     51938                                                <MinTileCol>514</MinTileCol>
     51939                                                <MaxTileCol>515</MaxTileCol>
     51940                                        </TileMatrixLimits>
     51941                                        <TileMatrixLimits>
     51942                                                <TileMatrix>11</TileMatrix>
     51943                                                <MinTileRow>740</MinTileRow>
     51944                                                <MaxTileRow>746</MaxTileRow>
     51945                                                <MinTileCol>1029</MinTileCol>
     51946                                                <MaxTileCol>1031</MaxTileCol>
     51947                                        </TileMatrixLimits>
     51948                                        <TileMatrixLimits>
     51949                                                <TileMatrix>12</TileMatrix>
     51950                                                <MinTileRow>1481</MinTileRow>
     51951                                                <MaxTileRow>1492</MaxTileRow>
     51952                                                <MinTileCol>2059</MinTileCol>
     51953                                                <MaxTileCol>2062</MaxTileCol>
     51954                                        </TileMatrixLimits>
     51955                                        <TileMatrixLimits>
     51956                                                <TileMatrix>13</TileMatrix>
     51957                                                <MinTileRow>2963</MinTileRow>
     51958                                                <MaxTileRow>2985</MaxTileRow>
     51959                                                <MinTileCol>4118</MinTileCol>
     51960                                                <MaxTileCol>4125</MaxTileCol>
     51961                                        </TileMatrixLimits>
     51962                                        <TileMatrixLimits>
     51963                                                <TileMatrix>14</TileMatrix>
     51964                                                <MinTileRow>5926</MinTileRow>
     51965                                                <MaxTileRow>5970</MaxTileRow>
     51966                                                <MinTileCol>8237</MinTileCol>
     51967                                                <MaxTileCol>8250</MaxTileCol>
     51968                                        </TileMatrixLimits>
     51969                                        <TileMatrixLimits>
     51970                                                <TileMatrix>15</TileMatrix>
     51971                                                <MinTileRow>11853</MinTileRow>
     51972                                                <MaxTileRow>11940</MaxTileRow>
     51973                                                <MinTileCol>16475</MinTileCol>
     51974                                                <MaxTileCol>16501</MaxTileCol>
     51975                                        </TileMatrixLimits>
     51976                                        <TileMatrixLimits>
     51977                                                <TileMatrix>16</TileMatrix>
     51978                                                <MinTileRow>23706</MinTileRow>
     51979                                                <MaxTileRow>23880</MaxTileRow>
     51980                                                <MinTileCol>32950</MinTileCol>
     51981                                                <MaxTileCol>33003</MaxTileCol>
     51982                                        </TileMatrixLimits>
     51983                                        <TileMatrixLimits>
     51984                                                <TileMatrix>17</TileMatrix>
     51985                                                <MinTileRow>47412</MinTileRow>
     51986                                                <MaxTileRow>47761</MaxTileRow>
     51987                                                <MinTileCol>65901</MinTileCol>
     51988                                                <MaxTileCol>66006</MaxTileCol>
     51989                                        </TileMatrixLimits>
     51990                                        <TileMatrixLimits>
     51991                                                <TileMatrix>18</TileMatrix>
     51992                                                <MinTileRow>94824</MinTileRow>
     51993                                                <MaxTileRow>95523</MaxTileRow>
     51994                                                <MinTileCol>131803</MinTileCol>
     51995                                                <MaxTileCol>132013</MaxTileCol>
     51996                                        </TileMatrixLimits>
     51997                                        <TileMatrixLimits>
     51998                                                <TileMatrix>2</TileMatrix>
     51999                                                <MinTileRow>1</MinTileRow>
     52000                                                <MaxTileRow>1</MaxTileRow>
     52001                                                <MinTileCol>2</MinTileCol>
     52002                                                <MaxTileCol>2</MaxTileCol>
     52003                                        </TileMatrixLimits>
     52004                                        <TileMatrixLimits>
     52005                                                <TileMatrix>3</TileMatrix>
     52006                                                <MinTileRow>2</MinTileRow>
     52007                                                <MaxTileRow>2</MaxTileRow>
     52008                                                <MinTileCol>4</MinTileCol>
     52009                                                <MaxTileCol>4</MaxTileCol>
     52010                                        </TileMatrixLimits>
     52011                                        <TileMatrixLimits>
     52012                                                <TileMatrix>4</TileMatrix>
     52013                                                <MinTileRow>5</MinTileRow>
     52014                                                <MaxTileRow>5</MaxTileRow>
     52015                                                <MinTileCol>8</MinTileCol>
     52016                                                <MaxTileCol>8</MaxTileCol>
     52017                                        </TileMatrixLimits>
     52018                                        <TileMatrixLimits>
     52019                                                <TileMatrix>5</TileMatrix>
     52020                                                <MinTileRow>11</MinTileRow>
     52021                                                <MaxTileRow>11</MaxTileRow>
     52022                                                <MinTileCol>16</MinTileCol>
     52023                                                <MaxTileCol>16</MaxTileCol>
     52024                                        </TileMatrixLimits>
     52025                                        <TileMatrixLimits>
     52026                                                <TileMatrix>6</TileMatrix>
     52027                                                <MinTileRow>23</MinTileRow>
     52028                                                <MaxTileRow>23</MaxTileRow>
     52029                                                <MinTileCol>32</MinTileCol>
     52030                                                <MaxTileCol>32</MaxTileCol>
     52031                                        </TileMatrixLimits>
     52032                                        <TileMatrixLimits>
     52033                                                <TileMatrix>7</TileMatrix>
     52034                                                <MinTileRow>46</MinTileRow>
     52035                                                <MaxTileRow>46</MaxTileRow>
     52036                                                <MinTileCol>64</MinTileCol>
     52037                                                <MaxTileCol>64</MaxTileCol>
     52038                                        </TileMatrixLimits>
     52039                                        <TileMatrixLimits>
     52040                                                <TileMatrix>8</TileMatrix>
     52041                                                <MinTileRow>92</MinTileRow>
     52042                                                <MaxTileRow>93</MaxTileRow>
     52043                                                <MinTileCol>128</MinTileCol>
     52044                                                <MaxTileCol>128</MaxTileCol>
     52045                                        </TileMatrixLimits>
     52046                                        <TileMatrixLimits>
     52047                                                <TileMatrix>9</TileMatrix>
     52048                                                <MinTileRow>185</MinTileRow>
     52049                                                <MaxTileRow>186</MaxTileRow>
     52050                                                <MinTileCol>257</MinTileCol>
     52051                                                <MaxTileCol>257</MaxTileCol>
     52052                                        </TileMatrixLimits>
     52053                                </TileMatrixSetLimits>
     52054                        </TileMatrixSetLink>
     52055                </Layer>
     52056                <Layer>
     52057                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52058                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52059                        <ows:Keywords>
     52060                                <ows:Keyword>Photographies</ows:Keyword>
     52061                        </ows:Keywords>
     52062                        <ows:WGS84BoundingBox>
     52063                                <ows:LowerCorner>0.362132 43.4072</ows:LowerCorner>
     52064                                <ows:UpperCorner>0.642548 43.6113</ows:UpperCorner>
     52065                        </ows:WGS84BoundingBox>
     52066                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-03-39488700</ows:Identifier>
     52067                        <Style isDefault="true">
     52068                                <ows:Title>Données Brutes</ows:Title>
     52069                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52070                                <ows:Keywords>
     52071                                        <ows:Keyword>Défaut</ows:Keyword>
     52072                                </ows:Keywords>
     52073                                <ows:Identifier>normal</ows:Identifier>
     52074                                <LegendURL format="image/jpeg" height="200"
     52075                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52076                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52077                        </Style>
     52078                        <Format>image/jpeg</Format>
     52079                        <TileMatrixSetLink>
     52080                                <TileMatrixSet>PM</TileMatrixSet>
     52081                                <TileMatrixSetLimits>
     52082                                        <TileMatrixLimits>
     52083                                                <TileMatrix>0</TileMatrix>
     52084                                                <MinTileRow>0</MinTileRow>
     52085                                                <MaxTileRow>0</MaxTileRow>
     52086                                                <MinTileCol>0</MinTileCol>
     52087                                                <MaxTileCol>0</MaxTileCol>
     52088                                        </TileMatrixLimits>
     52089                                        <TileMatrixLimits>
     52090                                                <TileMatrix>1</TileMatrix>
     52091                                                <MinTileRow>0</MinTileRow>
     52092                                                <MaxTileRow>0</MaxTileRow>
     52093                                                <MinTileCol>1</MinTileCol>
     52094                                                <MaxTileCol>1</MaxTileCol>
     52095                                        </TileMatrixLimits>
     52096                                        <TileMatrixLimits>
     52097                                                <TileMatrix>10</TileMatrix>
     52098                                                <MinTileRow>373</MinTileRow>
     52099                                                <MaxTileRow>374</MaxTileRow>
     52100                                                <MinTileCol>513</MinTileCol>
     52101                                                <MaxTileCol>513</MaxTileCol>
     52102                                        </TileMatrixLimits>
     52103                                        <TileMatrixLimits>
     52104                                                <TileMatrix>11</TileMatrix>
     52105                                                <MinTileRow>747</MinTileRow>
     52106                                                <MaxTileRow>749</MaxTileRow>
     52107                                                <MinTileCol>1026</MinTileCol>
     52108                                                <MaxTileCol>1027</MaxTileCol>
     52109                                        </TileMatrixLimits>
     52110                                        <TileMatrixLimits>
     52111                                                <TileMatrix>12</TileMatrix>
     52112                                                <MinTileRow>1495</MinTileRow>
     52113                                                <MaxTileRow>1498</MaxTileRow>
     52114                                                <MinTileCol>2052</MinTileCol>
     52115                                                <MaxTileCol>2055</MaxTileCol>
     52116                                        </TileMatrixLimits>
     52117                                        <TileMatrixLimits>
     52118                                                <TileMatrix>13</TileMatrix>
     52119                                                <MinTileRow>2991</MinTileRow>
     52120                                                <MaxTileRow>2997</MaxTileRow>
     52121                                                <MinTileCol>4104</MinTileCol>
     52122                                                <MaxTileCol>4110</MaxTileCol>
     52123                                        </TileMatrixLimits>
     52124                                        <TileMatrixLimits>
     52125                                                <TileMatrix>14</TileMatrix>
     52126                                                <MinTileRow>5982</MinTileRow>
     52127                                                <MaxTileRow>5994</MaxTileRow>
     52128                                                <MinTileCol>8208</MinTileCol>
     52129                                                <MaxTileCol>8221</MaxTileCol>
     52130                                        </TileMatrixLimits>
     52131                                        <TileMatrixLimits>
     52132                                                <TileMatrix>15</TileMatrix>
     52133                                                <MinTileRow>11964</MinTileRow>
     52134                                                <MaxTileRow>11989</MaxTileRow>
     52135                                                <MinTileCol>16416</MinTileCol>
     52136                                                <MaxTileCol>16442</MaxTileCol>
     52137                                        </TileMatrixLimits>
     52138                                        <TileMatrixLimits>
     52139                                                <TileMatrix>16</TileMatrix>
     52140                                                <MinTileRow>23928</MinTileRow>
     52141                                                <MaxTileRow>23978</MaxTileRow>
     52142                                                <MinTileCol>32833</MinTileCol>
     52143                                                <MaxTileCol>32884</MaxTileCol>
     52144                                        </TileMatrixLimits>
     52145                                        <TileMatrixLimits>
     52146                                                <TileMatrix>17</TileMatrix>
     52147                                                <MinTileRow>47856</MinTileRow>
     52148                                                <MaxTileRow>47956</MaxTileRow>
     52149                                                <MinTileCol>65667</MinTileCol>
     52150                                                <MaxTileCol>65768</MaxTileCol>
     52151                                        </TileMatrixLimits>
     52152                                        <TileMatrixLimits>
     52153                                                <TileMatrix>18</TileMatrix>
     52154                                                <MinTileRow>95712</MinTileRow>
     52155                                                <MaxTileRow>95912</MaxTileRow>
     52156                                                <MinTileCol>131335</MinTileCol>
     52157                                                <MaxTileCol>131536</MaxTileCol>
     52158                                        </TileMatrixLimits>
     52159                                        <TileMatrixLimits>
     52160                                                <TileMatrix>2</TileMatrix>
     52161                                                <MinTileRow>1</MinTileRow>
     52162                                                <MaxTileRow>1</MaxTileRow>
     52163                                                <MinTileCol>2</MinTileCol>
     52164                                                <MaxTileCol>2</MaxTileCol>
     52165                                        </TileMatrixLimits>
     52166                                        <TileMatrixLimits>
     52167                                                <TileMatrix>3</TileMatrix>
     52168                                                <MinTileRow>2</MinTileRow>
     52169                                                <MaxTileRow>2</MaxTileRow>
     52170                                                <MinTileCol>4</MinTileCol>
     52171                                                <MaxTileCol>4</MaxTileCol>
     52172                                        </TileMatrixLimits>
     52173                                        <TileMatrixLimits>
     52174                                                <TileMatrix>4</TileMatrix>
     52175                                                <MinTileRow>5</MinTileRow>
     52176                                                <MaxTileRow>5</MaxTileRow>
     52177                                                <MinTileCol>8</MinTileCol>
     52178                                                <MaxTileCol>8</MaxTileCol>
     52179                                        </TileMatrixLimits>
     52180                                        <TileMatrixLimits>
     52181                                                <TileMatrix>5</TileMatrix>
     52182                                                <MinTileRow>11</MinTileRow>
     52183                                                <MaxTileRow>11</MaxTileRow>
     52184                                                <MinTileCol>16</MinTileCol>
     52185                                                <MaxTileCol>16</MaxTileCol>
     52186                                        </TileMatrixLimits>
     52187                                        <TileMatrixLimits>
     52188                                                <TileMatrix>6</TileMatrix>
     52189                                                <MinTileRow>23</MinTileRow>
     52190                                                <MaxTileRow>23</MaxTileRow>
     52191                                                <MinTileCol>32</MinTileCol>
     52192                                                <MaxTileCol>32</MaxTileCol>
     52193                                        </TileMatrixLimits>
     52194                                        <TileMatrixLimits>
     52195                                                <TileMatrix>7</TileMatrix>
     52196                                                <MinTileRow>46</MinTileRow>
     52197                                                <MaxTileRow>46</MaxTileRow>
     52198                                                <MinTileCol>64</MinTileCol>
     52199                                                <MaxTileCol>64</MaxTileCol>
     52200                                        </TileMatrixLimits>
     52201                                        <TileMatrixLimits>
     52202                                                <TileMatrix>8</TileMatrix>
     52203                                                <MinTileRow>93</MinTileRow>
     52204                                                <MaxTileRow>93</MaxTileRow>
     52205                                                <MinTileCol>128</MinTileCol>
     52206                                                <MaxTileCol>128</MaxTileCol>
     52207                                        </TileMatrixLimits>
     52208                                        <TileMatrixLimits>
     52209                                                <TileMatrix>9</TileMatrix>
     52210                                                <MinTileRow>186</MinTileRow>
     52211                                                <MaxTileRow>187</MaxTileRow>
     52212                                                <MinTileCol>256</MinTileCol>
     52213                                                <MaxTileCol>256</MaxTileCol>
     52214                                        </TileMatrixLimits>
     52215                                </TileMatrixSetLimits>
     52216                        </TileMatrixSetLink>
     52217                </Layer>
     52218                <Layer>
     52219                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52220                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52221                        <ows:Keywords>
     52222                                <ows:Keyword>Photographies</ows:Keyword>
     52223                        </ows:Keywords>
     52224                        <ows:WGS84BoundingBox>
     52225                                <ows:LowerCorner>2.50414 43.483</ows:LowerCorner>
     52226                                <ows:UpperCorner>2.77759 43.6728</ows:UpperCorner>
     52227                        </ows:WGS84BoundingBox>
     52228                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38749073</ows:Identifier>
     52229                        <Style isDefault="true">
     52230                                <ows:Title>Données Brutes</ows:Title>
     52231                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52232                                <ows:Keywords>
     52233                                        <ows:Keyword>Défaut</ows:Keyword>
     52234                                </ows:Keywords>
     52235                                <ows:Identifier>normal</ows:Identifier>
     52236                                <LegendURL format="image/jpeg" height="200"
     52237                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52238                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52239                        </Style>
     52240                        <Format>image/jpeg</Format>
     52241                        <TileMatrixSetLink>
     52242                                <TileMatrixSet>PM</TileMatrixSet>
     52243                                <TileMatrixSetLimits>
     52244                                        <TileMatrixLimits>
     52245                                                <TileMatrix>0</TileMatrix>
     52246                                                <MinTileRow>0</MinTileRow>
     52247                                                <MaxTileRow>0</MaxTileRow>
     52248                                                <MinTileCol>0</MinTileCol>
     52249                                                <MaxTileCol>0</MaxTileCol>
     52250                                        </TileMatrixLimits>
     52251                                        <TileMatrixLimits>
     52252                                                <TileMatrix>1</TileMatrix>
     52253                                                <MinTileRow>0</MinTileRow>
     52254                                                <MaxTileRow>0</MaxTileRow>
     52255                                                <MinTileCol>1</MinTileCol>
     52256                                                <MaxTileCol>1</MaxTileCol>
     52257                                        </TileMatrixLimits>
     52258                                        <TileMatrixLimits>
     52259                                                <TileMatrix>10</TileMatrix>
     52260                                                <MinTileRow>373</MinTileRow>
     52261                                                <MaxTileRow>374</MaxTileRow>
     52262                                                <MinTileCol>519</MinTileCol>
     52263                                                <MaxTileCol>519</MaxTileCol>
     52264                                        </TileMatrixLimits>
     52265                                        <TileMatrixLimits>
     52266                                                <TileMatrix>11</TileMatrix>
     52267                                                <MinTileRow>747</MinTileRow>
     52268                                                <MaxTileRow>748</MaxTileRow>
     52269                                                <MinTileCol>1038</MinTileCol>
     52270                                                <MaxTileCol>1039</MaxTileCol>
     52271                                        </TileMatrixLimits>
     52272                                        <TileMatrixLimits>
     52273                                                <TileMatrix>12</TileMatrix>
     52274                                                <MinTileRow>1494</MinTileRow>
     52275                                                <MaxTileRow>1497</MaxTileRow>
     52276                                                <MinTileCol>2076</MinTileCol>
     52277                                                <MaxTileCol>2079</MaxTileCol>
     52278                                        </TileMatrixLimits>
     52279                                        <TileMatrixLimits>
     52280                                                <TileMatrix>13</TileMatrix>
     52281                                                <MinTileRow>2989</MinTileRow>
     52282                                                <MaxTileRow>2995</MaxTileRow>
     52283                                                <MinTileCol>4152</MinTileCol>
     52284                                                <MaxTileCol>4159</MaxTileCol>
     52285                                        </TileMatrixLimits>
     52286                                        <TileMatrixLimits>
     52287                                                <TileMatrix>14</TileMatrix>
     52288                                                <MinTileRow>5978</MinTileRow>
     52289                                                <MaxTileRow>5990</MaxTileRow>
     52290                                                <MinTileCol>8305</MinTileCol>
     52291                                                <MaxTileCol>8318</MaxTileCol>
     52292                                        </TileMatrixLimits>
     52293                                        <TileMatrixLimits>
     52294                                                <TileMatrix>15</TileMatrix>
     52295                                                <MinTileRow>11956</MinTileRow>
     52296                                                <MaxTileRow>11980</MaxTileRow>
     52297                                                <MinTileCol>16611</MinTileCol>
     52298                                                <MaxTileCol>16636</MaxTileCol>
     52299                                        </TileMatrixLimits>
     52300                                        <TileMatrixLimits>
     52301                                                <TileMatrix>16</TileMatrix>
     52302                                                <MinTileRow>23912</MinTileRow>
     52303                                                <MaxTileRow>23960</MaxTileRow>
     52304                                                <MinTileCol>33223</MinTileCol>
     52305                                                <MaxTileCol>33273</MaxTileCol>
     52306                                        </TileMatrixLimits>
     52307                                        <TileMatrixLimits>
     52308                                                <TileMatrix>17</TileMatrix>
     52309                                                <MinTileRow>47825</MinTileRow>
     52310                                                <MaxTileRow>47920</MaxTileRow>
     52311                                                <MinTileCol>66447</MinTileCol>
     52312                                                <MaxTileCol>66547</MaxTileCol>
     52313                                        </TileMatrixLimits>
     52314                                        <TileMatrixLimits>
     52315                                                <TileMatrix>18</TileMatrix>
     52316                                                <MinTileRow>95651</MinTileRow>
     52317                                                <MaxTileRow>95841</MaxTileRow>
     52318                                                <MinTileCol>132895</MinTileCol>
     52319                                                <MaxTileCol>133094</MaxTileCol>
     52320                                        </TileMatrixLimits>
     52321                                        <TileMatrixLimits>
     52322                                                <TileMatrix>2</TileMatrix>
     52323                                                <MinTileRow>1</MinTileRow>
     52324                                                <MaxTileRow>1</MaxTileRow>
     52325                                                <MinTileCol>2</MinTileCol>
     52326                                                <MaxTileCol>2</MaxTileCol>
     52327                                        </TileMatrixLimits>
     52328                                        <TileMatrixLimits>
     52329                                                <TileMatrix>3</TileMatrix>
     52330                                                <MinTileRow>2</MinTileRow>
     52331                                                <MaxTileRow>2</MaxTileRow>
     52332                                                <MinTileCol>4</MinTileCol>
     52333                                                <MaxTileCol>4</MaxTileCol>
     52334                                        </TileMatrixLimits>
     52335                                        <TileMatrixLimits>
     52336                                                <TileMatrix>4</TileMatrix>
     52337                                                <MinTileRow>5</MinTileRow>
     52338                                                <MaxTileRow>5</MaxTileRow>
     52339                                                <MinTileCol>8</MinTileCol>
     52340                                                <MaxTileCol>8</MaxTileCol>
     52341                                        </TileMatrixLimits>
     52342                                        <TileMatrixLimits>
     52343                                                <TileMatrix>5</TileMatrix>
     52344                                                <MinTileRow>11</MinTileRow>
     52345                                                <MaxTileRow>11</MaxTileRow>
     52346                                                <MinTileCol>16</MinTileCol>
     52347                                                <MaxTileCol>16</MaxTileCol>
     52348                                        </TileMatrixLimits>
     52349                                        <TileMatrixLimits>
     52350                                                <TileMatrix>6</TileMatrix>
     52351                                                <MinTileRow>23</MinTileRow>
     52352                                                <MaxTileRow>23</MaxTileRow>
     52353                                                <MinTileCol>32</MinTileCol>
     52354                                                <MaxTileCol>32</MaxTileCol>
     52355                                        </TileMatrixLimits>
     52356                                        <TileMatrixLimits>
     52357                                                <TileMatrix>7</TileMatrix>
     52358                                                <MinTileRow>46</MinTileRow>
     52359                                                <MaxTileRow>46</MaxTileRow>
     52360                                                <MinTileCol>64</MinTileCol>
     52361                                                <MaxTileCol>64</MaxTileCol>
     52362                                        </TileMatrixLimits>
     52363                                        <TileMatrixLimits>
     52364                                                <TileMatrix>8</TileMatrix>
     52365                                                <MinTileRow>93</MinTileRow>
     52366                                                <MaxTileRow>93</MaxTileRow>
     52367                                                <MinTileCol>129</MinTileCol>
     52368                                                <MaxTileCol>129</MaxTileCol>
     52369                                        </TileMatrixLimits>
     52370                                        <TileMatrixLimits>
     52371                                                <TileMatrix>9</TileMatrix>
     52372                                                <MinTileRow>186</MinTileRow>
     52373                                                <MaxTileRow>187</MaxTileRow>
     52374                                                <MinTileCol>259</MinTileCol>
     52375                                                <MaxTileCol>259</MaxTileCol>
     52376                                        </TileMatrixLimits>
     52377                                </TileMatrixSetLimits>
     52378                        </TileMatrixSetLink>
     52379                </Layer>
     52380                <Layer>
     52381                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52382                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52383                        <ows:Keywords>
     52384                                <ows:Keyword>Photographies</ows:Keyword>
     52385                        </ows:Keywords>
     52386                        <ows:WGS84BoundingBox>
     52387                                <ows:LowerCorner>2.30558 43.4819</ows:LowerCorner>
     52388                                <ows:UpperCorner>2.59226 43.6903</ows:UpperCorner>
     52389                        </ows:WGS84BoundingBox>
     52390                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38768069</ows:Identifier>
     52391                        <Style isDefault="true">
     52392                                <ows:Title>Données Brutes</ows:Title>
     52393                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52394                                <ows:Keywords>
     52395                                        <ows:Keyword>Défaut</ows:Keyword>
     52396                                </ows:Keywords>
     52397                                <ows:Identifier>normal</ows:Identifier>
     52398                                <LegendURL format="image/jpeg" height="200"
     52399                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52400                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52401                        </Style>
     52402                        <Format>image/jpeg</Format>
     52403                        <TileMatrixSetLink>
     52404                                <TileMatrixSet>PM</TileMatrixSet>
     52405                                <TileMatrixSetLimits>
     52406                                        <TileMatrixLimits>
     52407                                                <TileMatrix>0</TileMatrix>
     52408                                                <MinTileRow>0</MinTileRow>
     52409                                                <MaxTileRow>0</MaxTileRow>
     52410                                                <MinTileCol>0</MinTileCol>
     52411                                                <MaxTileCol>0</MaxTileCol>
     52412                                        </TileMatrixLimits>
     52413                                        <TileMatrixLimits>
     52414                                                <TileMatrix>1</TileMatrix>
     52415                                                <MinTileRow>0</MinTileRow>
     52416                                                <MaxTileRow>0</MaxTileRow>
     52417                                                <MinTileCol>1</MinTileCol>
     52418                                                <MaxTileCol>1</MaxTileCol>
     52419                                        </TileMatrixLimits>
     52420                                        <TileMatrixLimits>
     52421                                                <TileMatrix>10</TileMatrix>
     52422                                                <MinTileRow>373</MinTileRow>
     52423                                                <MaxTileRow>374</MaxTileRow>
     52424                                                <MinTileCol>518</MinTileCol>
     52425                                                <MaxTileCol>519</MaxTileCol>
     52426                                        </TileMatrixLimits>
     52427                                        <TileMatrixLimits>
     52428                                                <TileMatrix>11</TileMatrix>
     52429                                                <MinTileRow>747</MinTileRow>
     52430                                                <MaxTileRow>748</MaxTileRow>
     52431                                                <MinTileCol>1037</MinTileCol>
     52432                                                <MaxTileCol>1038</MaxTileCol>
     52433                                        </TileMatrixLimits>
     52434                                        <TileMatrixLimits>
     52435                                                <TileMatrix>12</TileMatrix>
     52436                                                <MinTileRow>1494</MinTileRow>
     52437                                                <MaxTileRow>1497</MaxTileRow>
     52438                                                <MinTileCol>2074</MinTileCol>
     52439                                                <MaxTileCol>2077</MaxTileCol>
     52440                                        </TileMatrixLimits>
     52441                                        <TileMatrixLimits>
     52442                                                <TileMatrix>13</TileMatrix>
     52443                                                <MinTileRow>2988</MinTileRow>
     52444                                                <MaxTileRow>2995</MaxTileRow>
     52445                                                <MinTileCol>4148</MinTileCol>
     52446                                                <MaxTileCol>4154</MaxTileCol>
     52447                                        </TileMatrixLimits>
     52448                                        <TileMatrixLimits>
     52449                                                <TileMatrix>14</TileMatrix>
     52450                                                <MinTileRow>5977</MinTileRow>
     52451                                                <MaxTileRow>5990</MaxTileRow>
     52452                                                <MinTileCol>8296</MinTileCol>
     52453                                                <MaxTileCol>8309</MaxTileCol>
     52454                                        </TileMatrixLimits>
     52455                                        <TileMatrixLimits>
     52456                                                <TileMatrix>15</TileMatrix>
     52457                                                <MinTileRow>11954</MinTileRow>
     52458                                                <MaxTileRow>11980</MaxTileRow>
     52459                                                <MinTileCol>16593</MinTileCol>
     52460                                                <MaxTileCol>16619</MaxTileCol>
     52461                                        </TileMatrixLimits>
     52462                                        <TileMatrixLimits>
     52463                                                <TileMatrix>16</TileMatrix>
     52464                                                <MinTileRow>23908</MinTileRow>
     52465                                                <MaxTileRow>23960</MaxTileRow>
     52466                                                <MinTileCol>33187</MinTileCol>
     52467                                                <MaxTileCol>33239</MaxTileCol>
     52468                                        </TileMatrixLimits>
     52469                                        <TileMatrixLimits>
     52470                                                <TileMatrix>17</TileMatrix>
     52471                                                <MinTileRow>47817</MinTileRow>
     52472                                                <MaxTileRow>47920</MaxTileRow>
     52473                                                <MinTileCol>66375</MinTileCol>
     52474                                                <MaxTileCol>66479</MaxTileCol>
     52475                                        </TileMatrixLimits>
     52476                                        <TileMatrixLimits>
     52477                                                <TileMatrix>18</TileMatrix>
     52478                                                <MinTileRow>95634</MinTileRow>
     52479                                                <MaxTileRow>95841</MaxTileRow>
     52480                                                <MinTileCol>132751</MinTileCol>
     52481                                                <MaxTileCol>132959</MaxTileCol>
     52482                                        </TileMatrixLimits>
     52483                                        <TileMatrixLimits>
     52484                                                <TileMatrix>2</TileMatrix>
     52485                                                <MinTileRow>1</MinTileRow>
     52486                                                <MaxTileRow>1</MaxTileRow>
     52487                                                <MinTileCol>2</MinTileCol>
     52488                                                <MaxTileCol>2</MaxTileCol>
     52489                                        </TileMatrixLimits>
     52490                                        <TileMatrixLimits>
     52491                                                <TileMatrix>3</TileMatrix>
     52492                                                <MinTileRow>2</MinTileRow>
     52493                                                <MaxTileRow>2</MaxTileRow>
     52494                                                <MinTileCol>4</MinTileCol>
     52495                                                <MaxTileCol>4</MaxTileCol>
     52496                                        </TileMatrixLimits>
     52497                                        <TileMatrixLimits>
     52498                                                <TileMatrix>4</TileMatrix>
     52499                                                <MinTileRow>5</MinTileRow>
     52500                                                <MaxTileRow>5</MaxTileRow>
     52501                                                <MinTileCol>8</MinTileCol>
     52502                                                <MaxTileCol>8</MaxTileCol>
     52503                                        </TileMatrixLimits>
     52504                                        <TileMatrixLimits>
     52505                                                <TileMatrix>5</TileMatrix>
     52506                                                <MinTileRow>11</MinTileRow>
     52507                                                <MaxTileRow>11</MaxTileRow>
     52508                                                <MinTileCol>16</MinTileCol>
     52509                                                <MaxTileCol>16</MaxTileCol>
     52510                                        </TileMatrixLimits>
     52511                                        <TileMatrixLimits>
     52512                                                <TileMatrix>6</TileMatrix>
     52513                                                <MinTileRow>23</MinTileRow>
     52514                                                <MaxTileRow>23</MaxTileRow>
     52515                                                <MinTileCol>32</MinTileCol>
     52516                                                <MaxTileCol>32</MaxTileCol>
     52517                                        </TileMatrixLimits>
     52518                                        <TileMatrixLimits>
     52519                                                <TileMatrix>7</TileMatrix>
     52520                                                <MinTileRow>46</MinTileRow>
     52521                                                <MaxTileRow>46</MaxTileRow>
     52522                                                <MinTileCol>64</MinTileCol>
     52523                                                <MaxTileCol>64</MaxTileCol>
     52524                                        </TileMatrixLimits>
     52525                                        <TileMatrixLimits>
     52526                                                <TileMatrix>8</TileMatrix>
     52527                                                <MinTileRow>93</MinTileRow>
     52528                                                <MaxTileRow>93</MaxTileRow>
     52529                                                <MinTileCol>129</MinTileCol>
     52530                                                <MaxTileCol>129</MaxTileCol>
     52531                                        </TileMatrixLimits>
     52532                                        <TileMatrixLimits>
     52533                                                <TileMatrix>9</TileMatrix>
     52534                                                <MinTileRow>186</MinTileRow>
     52535                                                <MaxTileRow>187</MaxTileRow>
     52536                                                <MinTileCol>259</MinTileCol>
     52537                                                <MaxTileCol>259</MaxTileCol>
     52538                                        </TileMatrixLimits>
     52539                                </TileMatrixSetLimits>
     52540                        </TileMatrixSetLink>
     52541                </Layer>
     52542                <Layer>
     52543                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52544                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52545                        <ows:Keywords>
     52546                                <ows:Keyword>Photographies</ows:Keyword>
     52547                        </ows:Keywords>
     52548                        <ows:WGS84BoundingBox>
     52549                                <ows:LowerCorner>2.23323 43.3644</ows:LowerCorner>
     52550                                <ows:UpperCorner>2.50677 43.5369</ows:UpperCorner>
     52551                        </ows:WGS84BoundingBox>
     52552                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-11-38777196</ows:Identifier>
     52553                        <Style isDefault="true">
     52554                                <ows:Title>Données Brutes</ows:Title>
     52555                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52556                                <ows:Keywords>
     52557                                        <ows:Keyword>Défaut</ows:Keyword>
     52558                                </ows:Keywords>
     52559                                <ows:Identifier>normal</ows:Identifier>
     52560                                <LegendURL format="image/jpeg" height="200"
     52561                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52562                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52563                        </Style>
     52564                        <Format>image/jpeg</Format>
     52565                        <TileMatrixSetLink>
     52566                                <TileMatrixSet>PM</TileMatrixSet>
     52567                                <TileMatrixSetLimits>
     52568                                        <TileMatrixLimits>
     52569                                                <TileMatrix>0</TileMatrix>
     52570                                                <MinTileRow>0</MinTileRow>
     52571                                                <MaxTileRow>0</MaxTileRow>
     52572                                                <MinTileCol>0</MinTileCol>
     52573                                                <MaxTileCol>0</MaxTileCol>
     52574                                        </TileMatrixLimits>
     52575                                        <TileMatrixLimits>
     52576                                                <TileMatrix>1</TileMatrix>
     52577                                                <MinTileRow>0</MinTileRow>
     52578                                                <MaxTileRow>0</MaxTileRow>
     52579                                                <MinTileCol>1</MinTileCol>
     52580                                                <MaxTileCol>1</MaxTileCol>
     52581                                        </TileMatrixLimits>
     52582                                        <TileMatrixLimits>
     52583                                                <TileMatrix>10</TileMatrix>
     52584                                                <MinTileRow>374</MinTileRow>
     52585                                                <MaxTileRow>374</MaxTileRow>
     52586                                                <MinTileCol>518</MinTileCol>
     52587                                                <MaxTileCol>519</MaxTileCol>
     52588                                        </TileMatrixLimits>
     52589                                        <TileMatrixLimits>
     52590                                                <TileMatrix>11</TileMatrix>
     52591                                                <MinTileRow>748</MinTileRow>
     52592                                                <MaxTileRow>749</MaxTileRow>
     52593                                                <MinTileCol>1036</MinTileCol>
     52594                                                <MaxTileCol>1038</MaxTileCol>
     52595                                        </TileMatrixLimits>
     52596                                        <TileMatrixLimits>
     52597                                                <TileMatrix>12</TileMatrix>
     52598                                                <MinTileRow>1496</MinTileRow>
     52599                                                <MaxTileRow>1499</MaxTileRow>
     52600                                                <MinTileCol>2073</MinTileCol>
     52601                                                <MaxTileCol>2076</MaxTileCol>
     52602                                        </TileMatrixLimits>
     52603                                        <TileMatrixLimits>
     52604                                                <TileMatrix>13</TileMatrix>
     52605                                                <MinTileRow>2993</MinTileRow>
     52606                                                <MaxTileRow>2998</MaxTileRow>
     52607                                                <MinTileCol>4146</MinTileCol>
     52608                                                <MaxTileCol>4153</MaxTileCol>
     52609                                        </TileMatrixLimits>
     52610                                        <TileMatrixLimits>
     52611                                                <TileMatrix>14</TileMatrix>
     52612                                                <MinTileRow>5986</MinTileRow>
     52613                                                <MaxTileRow>5997</MaxTileRow>
     52614                                                <MinTileCol>8293</MinTileCol>
     52615                                                <MaxTileCol>8306</MaxTileCol>
     52616                                        </TileMatrixLimits>
     52617                                        <TileMatrixLimits>
     52618                                                <TileMatrix>15</TileMatrix>
     52619                                                <MinTileRow>11973</MinTileRow>
     52620                                                <MaxTileRow>11995</MaxTileRow>
     52621                                                <MinTileCol>16587</MinTileCol>
     52622                                                <MaxTileCol>16612</MaxTileCol>
     52623                                        </TileMatrixLimits>
     52624                                        <TileMatrixLimits>
     52625                                                <TileMatrix>16</TileMatrix>
     52626                                                <MinTileRow>23947</MinTileRow>
     52627                                                <MaxTileRow>23990</MaxTileRow>
     52628                                                <MinTileCol>33174</MinTileCol>
     52629                                                <MaxTileCol>33224</MaxTileCol>
     52630                                        </TileMatrixLimits>
     52631                                        <TileMatrixLimits>
     52632                                                <TileMatrix>17</TileMatrix>
     52633                                                <MinTileRow>47894</MinTileRow>
     52634                                                <MaxTileRow>47980</MaxTileRow>
     52635                                                <MinTileCol>66349</MinTileCol>
     52636                                                <MaxTileCol>66448</MaxTileCol>
     52637                                        </TileMatrixLimits>
     52638                                        <TileMatrixLimits>
     52639                                                <TileMatrix>18</TileMatrix>
     52640                                                <MinTileRow>95788</MinTileRow>
     52641                                                <MaxTileRow>95960</MaxTileRow>
     52642                                                <MinTileCol>132698</MinTileCol>
     52643                                                <MaxTileCol>132897</MaxTileCol>
     52644                                        </TileMatrixLimits>
     52645                                        <TileMatrixLimits>
     52646                                                <TileMatrix>2</TileMatrix>
     52647                                                <MinTileRow>1</MinTileRow>
     52648                                                <MaxTileRow>1</MaxTileRow>
     52649                                                <MinTileCol>2</MinTileCol>
     52650                                                <MaxTileCol>2</MaxTileCol>
     52651                                        </TileMatrixLimits>
     52652                                        <TileMatrixLimits>
     52653                                                <TileMatrix>3</TileMatrix>
     52654                                                <MinTileRow>2</MinTileRow>
     52655                                                <MaxTileRow>2</MaxTileRow>
     52656                                                <MinTileCol>4</MinTileCol>
     52657                                                <MaxTileCol>4</MaxTileCol>
     52658                                        </TileMatrixLimits>
     52659                                        <TileMatrixLimits>
     52660                                                <TileMatrix>4</TileMatrix>
     52661                                                <MinTileRow>5</MinTileRow>
     52662                                                <MaxTileRow>5</MaxTileRow>
     52663                                                <MinTileCol>8</MinTileCol>
     52664                                                <MaxTileCol>8</MaxTileCol>
     52665                                        </TileMatrixLimits>
     52666                                        <TileMatrixLimits>
     52667                                                <TileMatrix>5</TileMatrix>
     52668                                                <MinTileRow>11</MinTileRow>
     52669                                                <MaxTileRow>11</MaxTileRow>
     52670                                                <MinTileCol>16</MinTileCol>
     52671                                                <MaxTileCol>16</MaxTileCol>
     52672                                        </TileMatrixLimits>
     52673                                        <TileMatrixLimits>
     52674                                                <TileMatrix>6</TileMatrix>
     52675                                                <MinTileRow>23</MinTileRow>
     52676                                                <MaxTileRow>23</MaxTileRow>
     52677                                                <MinTileCol>32</MinTileCol>
     52678                                                <MaxTileCol>32</MaxTileCol>
     52679                                        </TileMatrixLimits>
     52680                                        <TileMatrixLimits>
     52681                                                <TileMatrix>7</TileMatrix>
     52682                                                <MinTileRow>46</MinTileRow>
     52683                                                <MaxTileRow>46</MaxTileRow>
     52684                                                <MinTileCol>64</MinTileCol>
     52685                                                <MaxTileCol>64</MaxTileCol>
     52686                                        </TileMatrixLimits>
     52687                                        <TileMatrixLimits>
     52688                                                <TileMatrix>8</TileMatrix>
     52689                                                <MinTileRow>93</MinTileRow>
     52690                                                <MaxTileRow>93</MaxTileRow>
     52691                                                <MinTileCol>129</MinTileCol>
     52692                                                <MaxTileCol>129</MaxTileCol>
     52693                                        </TileMatrixLimits>
     52694                                        <TileMatrixLimits>
     52695                                                <TileMatrix>9</TileMatrix>
     52696                                                <MinTileRow>187</MinTileRow>
     52697                                                <MaxTileRow>187</MaxTileRow>
     52698                                                <MinTileCol>259</MinTileCol>
     52699                                                <MaxTileCol>259</MaxTileCol>
     52700                                        </TileMatrixLimits>
     52701                                </TileMatrixSetLimits>
     52702                        </TileMatrixSetLink>
     52703                </Layer>
     52704                <Layer>
     52705                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52706                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52707                        <ows:Keywords>
     52708                                <ows:Keyword>Photographies</ows:Keyword>
     52709                        </ows:Keywords>
     52710                        <ows:WGS84BoundingBox>
     52711                                <ows:LowerCorner>0.352089 43.8841</ows:LowerCorner>
     52712                                <ows:UpperCorner>0.647737 44.0976</ows:UpperCorner>
     52713                        </ows:WGS84BoundingBox>
     52714                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-14-40323701</ows:Identifier>
     52715                        <Style isDefault="true">
     52716                                <ows:Title>Données Brutes</ows:Title>
     52717                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52718                                <ows:Keywords>
     52719                                        <ows:Keyword>Défaut</ows:Keyword>
     52720                                </ows:Keywords>
     52721                                <ows:Identifier>normal</ows:Identifier>
     52722                                <LegendURL format="image/jpeg" height="200"
     52723                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52724                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52725                        </Style>
     52726                        <Format>image/jpeg</Format>
     52727                        <TileMatrixSetLink>
     52728                                <TileMatrixSet>PM</TileMatrixSet>
     52729                                <TileMatrixSetLimits>
     52730                                        <TileMatrixLimits>
     52731                                                <TileMatrix>0</TileMatrix>
     52732                                                <MinTileRow>0</MinTileRow>
     52733                                                <MaxTileRow>0</MaxTileRow>
     52734                                                <MinTileCol>0</MinTileCol>
     52735                                                <MaxTileCol>0</MaxTileCol>
     52736                                        </TileMatrixLimits>
     52737                                        <TileMatrixLimits>
     52738                                                <TileMatrix>1</TileMatrix>
     52739                                                <MinTileRow>0</MinTileRow>
     52740                                                <MaxTileRow>0</MaxTileRow>
     52741                                                <MinTileCol>1</MinTileCol>
     52742                                                <MaxTileCol>1</MaxTileCol>
     52743                                        </TileMatrixLimits>
     52744                                        <TileMatrixLimits>
     52745                                                <TileMatrix>10</TileMatrix>
     52746                                                <MinTileRow>371</MinTileRow>
     52747                                                <MaxTileRow>372</MaxTileRow>
     52748                                                <MinTileCol>513</MinTileCol>
     52749                                                <MaxTileCol>513</MaxTileCol>
     52750                                        </TileMatrixLimits>
     52751                                        <TileMatrixLimits>
     52752                                                <TileMatrix>11</TileMatrix>
     52753                                                <MinTileRow>743</MinTileRow>
     52754                                                <MaxTileRow>745</MaxTileRow>
     52755                                                <MinTileCol>1026</MinTileCol>
     52756                                                <MaxTileCol>1027</MaxTileCol>
     52757                                        </TileMatrixLimits>
     52758                                        <TileMatrixLimits>
     52759                                                <TileMatrix>12</TileMatrix>
     52760                                                <MinTileRow>1487</MinTileRow>
     52761                                                <MaxTileRow>1491</MaxTileRow>
     52762                                                <MinTileCol>2052</MinTileCol>
     52763                                                <MaxTileCol>2055</MaxTileCol>
     52764                                        </TileMatrixLimits>
     52765                                        <TileMatrixLimits>
     52766                                                <TileMatrix>13</TileMatrix>
     52767                                                <MinTileRow>2975</MinTileRow>
     52768                                                <MaxTileRow>2982</MaxTileRow>
     52769                                                <MinTileCol>4104</MinTileCol>
     52770                                                <MaxTileCol>4110</MaxTileCol>
     52771                                        </TileMatrixLimits>
     52772                                        <TileMatrixLimits>
     52773                                                <TileMatrix>14</TileMatrix>
     52774                                                <MinTileRow>5951</MinTileRow>
     52775                                                <MaxTileRow>5964</MaxTileRow>
     52776                                                <MinTileCol>8208</MinTileCol>
     52777                                                <MaxTileCol>8221</MaxTileCol>
     52778                                        </TileMatrixLimits>
     52779                                        <TileMatrixLimits>
     52780                                                <TileMatrix>15</TileMatrix>
     52781                                                <MinTileRow>11902</MinTileRow>
     52782                                                <MaxTileRow>11928</MaxTileRow>
     52783                                                <MinTileCol>16416</MinTileCol>
     52784                                                <MaxTileCol>16442</MaxTileCol>
     52785                                        </TileMatrixLimits>
     52786                                        <TileMatrixLimits>
     52787                                                <TileMatrix>16</TileMatrix>
     52788                                                <MinTileRow>23805</MinTileRow>
     52789                                                <MaxTileRow>23857</MaxTileRow>
     52790                                                <MinTileCol>32832</MinTileCol>
     52791                                                <MaxTileCol>32885</MaxTileCol>
     52792                                        </TileMatrixLimits>
     52793                                        <TileMatrixLimits>
     52794                                                <TileMatrix>17</TileMatrix>
     52795                                                <MinTileRow>47611</MinTileRow>
     52796                                                <MaxTileRow>47715</MaxTileRow>
     52797                                                <MinTileCol>65664</MinTileCol>
     52798                                                <MaxTileCol>65771</MaxTileCol>
     52799                                        </TileMatrixLimits>
     52800                                        <TileMatrixLimits>
     52801                                                <TileMatrix>18</TileMatrix>
     52802                                                <MinTileRow>95222</MinTileRow>
     52803                                                <MaxTileRow>95431</MaxTileRow>
     52804                                                <MinTileCol>131329</MinTileCol>
     52805                                                <MaxTileCol>131543</MaxTileCol>
     52806                                        </TileMatrixLimits>
     52807                                        <TileMatrixLimits>
     52808                                                <TileMatrix>2</TileMatrix>
     52809                                                <MinTileRow>1</MinTileRow>
     52810                                                <MaxTileRow>1</MaxTileRow>
     52811                                                <MinTileCol>2</MinTileCol>
     52812                                                <MaxTileCol>2</MaxTileCol>
     52813                                        </TileMatrixLimits>
     52814                                        <TileMatrixLimits>
     52815                                                <TileMatrix>3</TileMatrix>
     52816                                                <MinTileRow>2</MinTileRow>
     52817                                                <MaxTileRow>2</MaxTileRow>
     52818                                                <MinTileCol>4</MinTileCol>
     52819                                                <MaxTileCol>4</MaxTileCol>
     52820                                        </TileMatrixLimits>
     52821                                        <TileMatrixLimits>
     52822                                                <TileMatrix>4</TileMatrix>
     52823                                                <MinTileRow>5</MinTileRow>
     52824                                                <MaxTileRow>5</MaxTileRow>
     52825                                                <MinTileCol>8</MinTileCol>
     52826                                                <MaxTileCol>8</MaxTileCol>
     52827                                        </TileMatrixLimits>
     52828                                        <TileMatrixLimits>
     52829                                                <TileMatrix>5</TileMatrix>
     52830                                                <MinTileRow>11</MinTileRow>
     52831                                                <MaxTileRow>11</MaxTileRow>
     52832                                                <MinTileCol>16</MinTileCol>
     52833                                                <MaxTileCol>16</MaxTileCol>
     52834                                        </TileMatrixLimits>
     52835                                        <TileMatrixLimits>
     52836                                                <TileMatrix>6</TileMatrix>
     52837                                                <MinTileRow>23</MinTileRow>
     52838                                                <MaxTileRow>23</MaxTileRow>
     52839                                                <MinTileCol>32</MinTileCol>
     52840                                                <MaxTileCol>32</MaxTileCol>
     52841                                        </TileMatrixLimits>
     52842                                        <TileMatrixLimits>
     52843                                                <TileMatrix>7</TileMatrix>
     52844                                                <MinTileRow>46</MinTileRow>
     52845                                                <MaxTileRow>46</MaxTileRow>
     52846                                                <MinTileCol>64</MinTileCol>
     52847                                                <MaxTileCol>64</MaxTileCol>
     52848                                        </TileMatrixLimits>
     52849                                        <TileMatrixLimits>
     52850                                                <TileMatrix>8</TileMatrix>
     52851                                                <MinTileRow>92</MinTileRow>
     52852                                                <MaxTileRow>93</MaxTileRow>
     52853                                                <MinTileCol>128</MinTileCol>
     52854                                                <MaxTileCol>128</MaxTileCol>
     52855                                        </TileMatrixLimits>
     52856                                        <TileMatrixLimits>
     52857                                                <TileMatrix>9</TileMatrix>
     52858                                                <MinTileRow>185</MinTileRow>
     52859                                                <MaxTileRow>186</MaxTileRow>
     52860                                                <MinTileCol>256</MinTileCol>
     52861                                                <MaxTileCol>256</MaxTileCol>
     52862                                        </TileMatrixLimits>
     52863                                </TileMatrixSetLimits>
     52864                        </TileMatrixSetLink>
     52865                </Layer>
     52866                <Layer>
     52867                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     52868                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     52869                        <ows:Keywords>
     52870                                <ows:Keyword>Photographies</ows:Keyword>
     52871                        </ows:Keywords>
     52872                        <ows:WGS84BoundingBox>
     52873                                <ows:LowerCorner>0.344344 43.5238</ows:LowerCorner>
     52874                                <ows:UpperCorner>0.66247 43.7288</ows:UpperCorner>
     52875                        </ows:WGS84BoundingBox>
     52876                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-14-40351949</ows:Identifier>
     52877                        <Style isDefault="true">
     52878                                <ows:Title>Données Brutes</ows:Title>
     52879                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     52880                                <ows:Keywords>
     52881                                        <ows:Keyword>Défaut</ows:Keyword>
     52882                                </ows:Keywords>
     52883                                <ows:Identifier>normal</ows:Identifier>
     52884                                <LegendURL format="image/jpeg" height="200"
     52885                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     52886                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     52887                        </Style>
     52888                        <Format>image/jpeg</Format>
     52889                        <TileMatrixSetLink>
     52890                                <TileMatrixSet>PM</TileMatrixSet>
     52891                                <TileMatrixSetLimits>
     52892                                        <TileMatrixLimits>
     52893                                                <TileMatrix>0</TileMatrix>
     52894                                                <MinTileRow>0</MinTileRow>
     52895                                                <MaxTileRow>0</MaxTileRow>
     52896                                                <MinTileCol>0</MinTileCol>
     52897                                                <MaxTileCol>0</MaxTileCol>
     52898                                        </TileMatrixLimits>
     52899                                        <TileMatrixLimits>
     52900                                                <TileMatrix>1</TileMatrix>
     52901                                                <MinTileRow>0</MinTileRow>
     52902                                                <MaxTileRow>0</MaxTileRow>
     52903                                                <MinTileCol>1</MinTileCol>
     52904                                                <MaxTileCol>1</MaxTileCol>
     52905                                        </TileMatrixLimits>
     52906                                        <TileMatrixLimits>
     52907                                                <TileMatrix>10</TileMatrix>
     52908                                                <MinTileRow>373</MinTileRow>
     52909                                                <MaxTileRow>374</MaxTileRow>
     52910                                                <MinTileCol>512</MinTileCol>
     52911                                                <MaxTileCol>513</MaxTileCol>
     52912                                        </TileMatrixLimits>
     52913                                        <TileMatrixLimits>
     52914                                                <TileMatrix>11</TileMatrix>
     52915                                                <MinTileRow>746</MinTileRow>
     52916                                                <MaxTileRow>748</MaxTileRow>
     52917                                                <MinTileCol>1025</MinTileCol>
     52918                                                <MaxTileCol>1027</MaxTileCol>
     52919                                        </TileMatrixLimits>
     52920                                        <TileMatrixLimits>
     52921                                                <TileMatrix>12</TileMatrix>
     52922                                                <MinTileRow>1493</MinTileRow>
     52923                                                <MaxTileRow>1496</MaxTileRow>
     52924                                                <MinTileCol>2051</MinTileCol>
     52925                                                <MaxTileCol>2055</MaxTileCol>
     52926                                        </TileMatrixLimits>
     52927                                        <TileMatrixLimits>
     52928                                                <TileMatrix>13</TileMatrix>
     52929                                                <MinTileRow>2987</MinTileRow>
     52930                                                <MaxTileRow>2993</MaxTileRow>
     52931                                                <MinTileCol>4103</MinTileCol>
     52932                                                <MaxTileCol>4110</MaxTileCol>
     52933                                        </TileMatrixLimits>
     52934                                        <TileMatrixLimits>
     52935                                                <TileMatrix>14</TileMatrix>
     52936                                                <MinTileRow>5974</MinTileRow>
     52937                                                <MaxTileRow>5987</MaxTileRow>
     52938                                                <MinTileCol>8207</MinTileCol>
     52939                                                <MaxTileCol>8221</MaxTileCol>
     52940                                        </TileMatrixLimits>
     52941                                        <TileMatrixLimits>
     52942                                                <TileMatrix>15</TileMatrix>
     52943                                                <MinTileRow>11949</MinTileRow>
     52944                                                <MaxTileRow>11975</MaxTileRow>
     52945                                                <MinTileCol>16415</MinTileCol>
     52946                                                <MaxTileCol>16443</MaxTileCol>
     52947                                        </TileMatrixLimits>
     52948                                        <TileMatrixLimits>
     52949                                                <TileMatrix>16</TileMatrix>
     52950                                                <MinTileRow>23898</MinTileRow>
     52951                                                <MaxTileRow>23950</MaxTileRow>
     52952                                                <MinTileCol>32830</MinTileCol>
     52953                                                <MaxTileCol>32887</MaxTileCol>
     52954                                        </TileMatrixLimits>
     52955                                        <TileMatrixLimits>
     52956                                                <TileMatrix>17</TileMatrix>
     52957                                                <MinTileRow>47797</MinTileRow>
     52958                                                <MaxTileRow>47900</MaxTileRow>
     52959                                                <MinTileCol>65661</MinTileCol>
     52960                                                <MaxTileCol>65775</MaxTileCol>
     52961                                        </TileMatrixLimits>
     52962                                        <TileMatrixLimits>
     52963                                                <TileMatrix>18</TileMatrix>
     52964                                                <MinTileRow>95594</MinTileRow>
     52965                                                <MaxTileRow>95800</MaxTileRow>
     52966                                                <MinTileCol>131322</MinTileCol>
     52967                                                <MaxTileCol>131551</MaxTileCol>
     52968                                        </TileMatrixLimits>
     52969                                        <TileMatrixLimits>
     52970                                                <TileMatrix>2</TileMatrix>
     52971                                                <MinTileRow>1</MinTileRow>
     52972                                                <MaxTileRow>1</MaxTileRow>
     52973                                                <MinTileCol>2</MinTileCol>
     52974                                                <MaxTileCol>2</MaxTileCol>
     52975                                        </TileMatrixLimits>
     52976                                        <TileMatrixLimits>
     52977                                                <TileMatrix>3</TileMatrix>
     52978                                                <MinTileRow>2</MinTileRow>
     52979                                                <MaxTileRow>2</MaxTileRow>
     52980                                                <MinTileCol>4</MinTileCol>
     52981                                                <MaxTileCol>4</MaxTileCol>
     52982                                        </TileMatrixLimits>
     52983                                        <TileMatrixLimits>
     52984                                                <TileMatrix>4</TileMatrix>
     52985                                                <MinTileRow>5</MinTileRow>
     52986                                                <MaxTileRow>5</MaxTileRow>
     52987                                                <MinTileCol>8</MinTileCol>
     52988                                                <MaxTileCol>8</MaxTileCol>
     52989                                        </TileMatrixLimits>
     52990                                        <TileMatrixLimits>
     52991                                                <TileMatrix>5</TileMatrix>
     52992                                                <MinTileRow>11</MinTileRow>
     52993                                                <MaxTileRow>11</MaxTileRow>
     52994                                                <MinTileCol>16</MinTileCol>
     52995                                                <MaxTileCol>16</MaxTileCol>
     52996                                        </TileMatrixLimits>
     52997                                        <TileMatrixLimits>
     52998                                                <TileMatrix>6</TileMatrix>
     52999                                                <MinTileRow>23</MinTileRow>
     53000                                                <MaxTileRow>23</MaxTileRow>
     53001                                                <MinTileCol>32</MinTileCol>
     53002                                                <MaxTileCol>32</MaxTileCol>
     53003                                        </TileMatrixLimits>
     53004                                        <TileMatrixLimits>
     53005                                                <TileMatrix>7</TileMatrix>
     53006                                                <MinTileRow>46</MinTileRow>
     53007                                                <MaxTileRow>46</MaxTileRow>
     53008                                                <MinTileCol>64</MinTileCol>
     53009                                                <MaxTileCol>64</MaxTileCol>
     53010                                        </TileMatrixLimits>
     53011                                        <TileMatrixLimits>
     53012                                                <TileMatrix>8</TileMatrix>
     53013                                                <MinTileRow>93</MinTileRow>
     53014                                                <MaxTileRow>93</MaxTileRow>
     53015                                                <MinTileCol>128</MinTileCol>
     53016                                                <MaxTileCol>128</MaxTileCol>
     53017                                        </TileMatrixLimits>
     53018                                        <TileMatrixLimits>
     53019                                                <TileMatrix>9</TileMatrix>
     53020                                                <MinTileRow>186</MinTileRow>
     53021                                                <MaxTileRow>187</MaxTileRow>
     53022                                                <MinTileCol>256</MinTileCol>
     53023                                                <MaxTileCol>256</MaxTileCol>
     53024                                        </TileMatrixLimits>
     53025                                </TileMatrixSetLimits>
     53026                        </TileMatrixSetLink>
     53027                </Layer>
     53028                <Layer>
     53029                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53030                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53031                        <ows:Keywords>
     53032                                <ows:Keyword>Photographies</ows:Keyword>
     53033                        </ows:Keywords>
     53034                        <ows:WGS84BoundingBox>
     53035                                <ows:LowerCorner>1.8644 44.4683</ows:LowerCorner>
     53036                                <ows:UpperCorner>2.14511 44.6778</ows:UpperCorner>
     53037                        </ows:WGS84BoundingBox>
     53038                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-17-39024699</ows:Identifier>
     53039                        <Style isDefault="true">
     53040                                <ows:Title>Données Brutes</ows:Title>
     53041                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53042                                <ows:Keywords>
     53043                                        <ows:Keyword>Défaut</ows:Keyword>
     53044                                </ows:Keywords>
     53045                                <ows:Identifier>normal</ows:Identifier>
     53046                                <LegendURL format="image/jpeg" height="200"
     53047                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53048                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53049                        </Style>
     53050                        <Format>image/jpeg</Format>
     53051                        <TileMatrixSetLink>
     53052                                <TileMatrixSet>PM</TileMatrixSet>
     53053                                <TileMatrixSetLimits>
     53054                                        <TileMatrixLimits>
     53055                                                <TileMatrix>0</TileMatrix>
     53056                                                <MinTileRow>0</MinTileRow>
     53057                                                <MaxTileRow>0</MaxTileRow>
     53058                                                <MinTileCol>0</MinTileCol>
     53059                                                <MaxTileCol>0</MaxTileCol>
     53060                                        </TileMatrixLimits>
     53061                                        <TileMatrixLimits>
     53062                                                <TileMatrix>1</TileMatrix>
     53063                                                <MinTileRow>0</MinTileRow>
     53064                                                <MaxTileRow>0</MaxTileRow>
     53065                                                <MinTileCol>1</MinTileCol>
     53066                                                <MaxTileCol>1</MaxTileCol>
     53067                                        </TileMatrixLimits>
     53068                                        <TileMatrixLimits>
     53069                                                <TileMatrix>10</TileMatrix>
     53070                                                <MinTileRow>369</MinTileRow>
     53071                                                <MaxTileRow>370</MaxTileRow>
     53072                                                <MinTileCol>517</MinTileCol>
     53073                                                <MaxTileCol>518</MaxTileCol>
     53074                                        </TileMatrixLimits>
     53075                                        <TileMatrixLimits>
     53076                                                <TileMatrix>11</TileMatrix>
     53077                                                <MinTileRow>739</MinTileRow>
     53078                                                <MaxTileRow>740</MaxTileRow>
     53079                                                <MinTileCol>1034</MinTileCol>
     53080                                                <MaxTileCol>1036</MaxTileCol>
     53081                                        </TileMatrixLimits>
     53082                                        <TileMatrixLimits>
     53083                                                <TileMatrix>12</TileMatrix>
     53084                                                <MinTileRow>1478</MinTileRow>
     53085                                                <MaxTileRow>1481</MaxTileRow>
     53086                                                <MinTileCol>2069</MinTileCol>
     53087                                                <MaxTileCol>2072</MaxTileCol>
     53088                                        </TileMatrixLimits>
     53089                                        <TileMatrixLimits>
     53090                                                <TileMatrix>13</TileMatrix>
     53091                                                <MinTileRow>2957</MinTileRow>
     53092                                                <MaxTileRow>2963</MaxTileRow>
     53093                                                <MinTileCol>4138</MinTileCol>
     53094                                                <MaxTileCol>4144</MaxTileCol>
     53095                                        </TileMatrixLimits>
     53096                                        <TileMatrixLimits>
     53097                                                <TileMatrix>14</TileMatrix>
     53098                                                <MinTileRow>5914</MinTileRow>
     53099                                                <MaxTileRow>5927</MaxTileRow>
     53100                                                <MinTileCol>8276</MinTileCol>
     53101                                                <MaxTileCol>8289</MaxTileCol>
     53102                                        </TileMatrixLimits>
     53103                                        <TileMatrixLimits>
     53104                                                <TileMatrix>15</TileMatrix>
     53105                                                <MinTileRow>11828</MinTileRow>
     53106                                                <MaxTileRow>11855</MaxTileRow>
     53107                                                <MinTileCol>16553</MinTileCol>
     53108                                                <MaxTileCol>16579</MaxTileCol>
     53109                                        </TileMatrixLimits>
     53110                                        <TileMatrixLimits>
     53111                                                <TileMatrix>16</TileMatrix>
     53112                                                <MinTileRow>23657</MinTileRow>
     53113                                                <MaxTileRow>23710</MaxTileRow>
     53114                                                <MinTileCol>33107</MinTileCol>
     53115                                                <MaxTileCol>33158</MaxTileCol>
     53116                                        </TileMatrixLimits>
     53117                                        <TileMatrixLimits>
     53118                                                <TileMatrix>17</TileMatrix>
     53119                                                <MinTileRow>47315</MinTileRow>
     53120                                                <MaxTileRow>47421</MaxTileRow>
     53121                                                <MinTileCol>66215</MinTileCol>
     53122                                                <MaxTileCol>66317</MaxTileCol>
     53123                                        </TileMatrixLimits>
     53124                                        <TileMatrixLimits>
     53125                                                <TileMatrix>18</TileMatrix>
     53126                                                <MinTileRow>94631</MinTileRow>
     53127                                                <MaxTileRow>94842</MaxTileRow>
     53128                                                <MinTileCol>132431</MinTileCol>
     53129                                                <MaxTileCol>132634</MaxTileCol>
     53130                                        </TileMatrixLimits>
     53131                                        <TileMatrixLimits>
     53132                                                <TileMatrix>2</TileMatrix>
     53133                                                <MinTileRow>1</MinTileRow>
     53134                                                <MaxTileRow>1</MaxTileRow>
     53135                                                <MinTileCol>2</MinTileCol>
     53136                                                <MaxTileCol>2</MaxTileCol>
     53137                                        </TileMatrixLimits>
     53138                                        <TileMatrixLimits>
     53139                                                <TileMatrix>3</TileMatrix>
     53140                                                <MinTileRow>2</MinTileRow>
     53141                                                <MaxTileRow>2</MaxTileRow>
     53142                                                <MinTileCol>4</MinTileCol>
     53143                                                <MaxTileCol>4</MaxTileCol>
     53144                                        </TileMatrixLimits>
     53145                                        <TileMatrixLimits>
     53146                                                <TileMatrix>4</TileMatrix>
     53147                                                <MinTileRow>5</MinTileRow>
     53148                                                <MaxTileRow>5</MaxTileRow>
     53149                                                <MinTileCol>8</MinTileCol>
     53150                                                <MaxTileCol>8</MaxTileCol>
     53151                                        </TileMatrixLimits>
     53152                                        <TileMatrixLimits>
     53153                                                <TileMatrix>5</TileMatrix>
     53154                                                <MinTileRow>11</MinTileRow>
     53155                                                <MaxTileRow>11</MaxTileRow>
     53156                                                <MinTileCol>16</MinTileCol>
     53157                                                <MaxTileCol>16</MaxTileCol>
     53158                                        </TileMatrixLimits>
     53159                                        <TileMatrixLimits>
     53160                                                <TileMatrix>6</TileMatrix>
     53161                                                <MinTileRow>23</MinTileRow>
     53162                                                <MaxTileRow>23</MaxTileRow>
     53163                                                <MinTileCol>32</MinTileCol>
     53164                                                <MaxTileCol>32</MaxTileCol>
     53165                                        </TileMatrixLimits>
     53166                                        <TileMatrixLimits>
     53167                                                <TileMatrix>7</TileMatrix>
     53168                                                <MinTileRow>46</MinTileRow>
     53169                                                <MaxTileRow>46</MaxTileRow>
     53170                                                <MinTileCol>64</MinTileCol>
     53171                                                <MaxTileCol>64</MaxTileCol>
     53172                                        </TileMatrixLimits>
     53173                                        <TileMatrixLimits>
     53174                                                <TileMatrix>8</TileMatrix>
     53175                                                <MinTileRow>92</MinTileRow>
     53176                                                <MaxTileRow>92</MaxTileRow>
     53177                                                <MinTileCol>129</MinTileCol>
     53178                                                <MaxTileCol>129</MaxTileCol>
     53179                                        </TileMatrixLimits>
     53180                                        <TileMatrixLimits>
     53181                                                <TileMatrix>9</TileMatrix>
     53182                                                <MinTileRow>184</MinTileRow>
     53183                                                <MaxTileRow>185</MaxTileRow>
     53184                                                <MinTileCol>258</MinTileCol>
     53185                                                <MaxTileCol>259</MaxTileCol>
     53186                                        </TileMatrixLimits>
     53187                                </TileMatrixSetLimits>
     53188                        </TileMatrixSetLink>
     53189                </Layer>
     53190                <Layer>
     53191                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53192                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53193                        <ows:Keywords>
     53194                                <ows:Keyword>Photographies</ows:Keyword>
     53195                        </ows:Keywords>
     53196                        <ows:WGS84BoundingBox>
     53197                                <ows:LowerCorner>1.20274 43.9105</ows:LowerCorner>
     53198                                <ows:UpperCorner>1.51845 44.4549</ows:UpperCorner>
     53199                        </ows:WGS84BoundingBox>
     53200                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-17-39045199</ows:Identifier>
     53201                        <Style isDefault="true">
     53202                                <ows:Title>Données Brutes</ows:Title>
     53203                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53204                                <ows:Keywords>
     53205                                        <ows:Keyword>Défaut</ows:Keyword>
     53206                                </ows:Keywords>
     53207                                <ows:Identifier>normal</ows:Identifier>
     53208                                <LegendURL format="image/jpeg" height="200"
     53209                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53210                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53211                        </Style>
     53212                        <Format>image/jpeg</Format>
     53213                        <TileMatrixSetLink>
     53214                                <TileMatrixSet>PM</TileMatrixSet>
     53215                                <TileMatrixSetLimits>
     53216                                        <TileMatrixLimits>
     53217                                                <TileMatrix>0</TileMatrix>
     53218                                                <MinTileRow>0</MinTileRow>
     53219                                                <MaxTileRow>0</MaxTileRow>
     53220                                                <MinTileCol>0</MinTileCol>
     53221                                                <MaxTileCol>0</MaxTileCol>
     53222                                        </TileMatrixLimits>
     53223                                        <TileMatrixLimits>
     53224                                                <TileMatrix>1</TileMatrix>
     53225                                                <MinTileRow>0</MinTileRow>
     53226                                                <MaxTileRow>0</MaxTileRow>
     53227                                                <MinTileCol>1</MinTileCol>
     53228                                                <MaxTileCol>1</MaxTileCol>
     53229                                        </TileMatrixLimits>
     53230                                        <TileMatrixLimits>
     53231                                                <TileMatrix>10</TileMatrix>
     53232                                                <MinTileRow>370</MinTileRow>
     53233                                                <MaxTileRow>372</MaxTileRow>
     53234                                                <MinTileCol>515</MinTileCol>
     53235                                                <MaxTileCol>516</MaxTileCol>
     53236                                        </TileMatrixLimits>
     53237                                        <TileMatrixLimits>
     53238                                                <TileMatrix>11</TileMatrix>
     53239                                                <MinTileRow>741</MinTileRow>
     53240                                                <MaxTileRow>745</MaxTileRow>
     53241                                                <MinTileCol>1030</MinTileCol>
     53242                                                <MaxTileCol>1032</MaxTileCol>
     53243                                        </TileMatrixLimits>
     53244                                        <TileMatrixLimits>
     53245                                                <TileMatrix>12</TileMatrix>
     53246                                                <MinTileRow>1482</MinTileRow>
     53247                                                <MaxTileRow>1490</MaxTileRow>
     53248                                                <MinTileCol>2061</MinTileCol>
     53249                                                <MaxTileCol>2065</MaxTileCol>
     53250                                        </TileMatrixLimits>
     53251                                        <TileMatrixLimits>
     53252                                                <TileMatrix>13</TileMatrix>
     53253                                                <MinTileRow>2964</MinTileRow>
     53254                                                <MaxTileRow>2981</MaxTileRow>
     53255                                                <MinTileCol>4123</MinTileCol>
     53256                                                <MaxTileCol>4130</MaxTileCol>
     53257                                        </TileMatrixLimits>
     53258                                        <TileMatrixLimits>
     53259                                                <TileMatrix>14</TileMatrix>
     53260                                                <MinTileRow>5928</MinTileRow>
     53261                                                <MaxTileRow>5962</MaxTileRow>
     53262                                                <MinTileCol>8247</MinTileCol>
     53263                                                <MaxTileCol>8260</MaxTileCol>
     53264                                        </TileMatrixLimits>
     53265                                        <TileMatrixLimits>
     53266                                                <TileMatrix>15</TileMatrix>
     53267                                                <MinTileRow>11857</MinTileRow>
     53268                                                <MaxTileRow>11925</MaxTileRow>
     53269                                                <MinTileCol>16494</MinTileCol>
     53270                                                <MaxTileCol>16521</MaxTileCol>
     53271                                        </TileMatrixLimits>
     53272                                        <TileMatrixLimits>
     53273                                                <TileMatrix>16</TileMatrix>
     53274                                                <MinTileRow>23715</MinTileRow>
     53275                                                <MaxTileRow>23851</MaxTileRow>
     53276                                                <MinTileCol>32989</MinTileCol>
     53277                                                <MaxTileCol>33043</MaxTileCol>
     53278                                        </TileMatrixLimits>
     53279                                        <TileMatrixLimits>
     53280                                                <TileMatrix>17</TileMatrix>
     53281                                                <MinTileRow>47430</MinTileRow>
     53282                                                <MaxTileRow>47703</MaxTileRow>
     53283                                                <MinTileCol>65978</MinTileCol>
     53284                                                <MaxTileCol>66086</MaxTileCol>
     53285                                        </TileMatrixLimits>
     53286                                        <TileMatrixLimits>
     53287                                                <TileMatrix>18</TileMatrix>
     53288                                                <MinTileRow>94860</MinTileRow>
     53289                                                <MaxTileRow>95407</MaxTileRow>
     53290                                                <MinTileCol>131956</MinTileCol>
     53291                                                <MaxTileCol>132173</MaxTileCol>
     53292                                        </TileMatrixLimits>
     53293                                        <TileMatrixLimits>
     53294                                                <TileMatrix>2</TileMatrix>
     53295                                                <MinTileRow>1</MinTileRow>
     53296                                                <MaxTileRow>1</MaxTileRow>
     53297                                                <MinTileCol>2</MinTileCol>
     53298                                                <MaxTileCol>2</MaxTileCol>
     53299                                        </TileMatrixLimits>
     53300                                        <TileMatrixLimits>
     53301                                                <TileMatrix>3</TileMatrix>
     53302                                                <MinTileRow>2</MinTileRow>
     53303                                                <MaxTileRow>2</MaxTileRow>
     53304                                                <MinTileCol>4</MinTileCol>
     53305                                                <MaxTileCol>4</MaxTileCol>
     53306                                        </TileMatrixLimits>
     53307                                        <TileMatrixLimits>
     53308                                                <TileMatrix>4</TileMatrix>
     53309                                                <MinTileRow>5</MinTileRow>
     53310                                                <MaxTileRow>5</MaxTileRow>
     53311                                                <MinTileCol>8</MinTileCol>
     53312                                                <MaxTileCol>8</MaxTileCol>
     53313                                        </TileMatrixLimits>
     53314                                        <TileMatrixLimits>
     53315                                                <TileMatrix>5</TileMatrix>
     53316                                                <MinTileRow>11</MinTileRow>
     53317                                                <MaxTileRow>11</MaxTileRow>
     53318                                                <MinTileCol>16</MinTileCol>
     53319                                                <MaxTileCol>16</MaxTileCol>
     53320                                        </TileMatrixLimits>
     53321                                        <TileMatrixLimits>
     53322                                                <TileMatrix>6</TileMatrix>
     53323                                                <MinTileRow>23</MinTileRow>
     53324                                                <MaxTileRow>23</MaxTileRow>
     53325                                                <MinTileCol>32</MinTileCol>
     53326                                                <MaxTileCol>32</MaxTileCol>
     53327                                        </TileMatrixLimits>
     53328                                        <TileMatrixLimits>
     53329                                                <TileMatrix>7</TileMatrix>
     53330                                                <MinTileRow>46</MinTileRow>
     53331                                                <MaxTileRow>46</MaxTileRow>
     53332                                                <MinTileCol>64</MinTileCol>
     53333                                                <MaxTileCol>64</MaxTileCol>
     53334                                        </TileMatrixLimits>
     53335                                        <TileMatrixLimits>
     53336                                                <TileMatrix>8</TileMatrix>
     53337                                                <MinTileRow>92</MinTileRow>
     53338                                                <MaxTileRow>93</MaxTileRow>
     53339                                                <MinTileCol>128</MinTileCol>
     53340                                                <MaxTileCol>129</MaxTileCol>
     53341                                        </TileMatrixLimits>
     53342                                        <TileMatrixLimits>
     53343                                                <TileMatrix>9</TileMatrix>
     53344                                                <MinTileRow>185</MinTileRow>
     53345                                                <MaxTileRow>186</MaxTileRow>
     53346                                                <MinTileCol>257</MinTileCol>
     53347                                                <MaxTileCol>258</MaxTileCol>
     53348                                        </TileMatrixLimits>
     53349                                </TileMatrixSetLimits>
     53350                        </TileMatrixSetLink>
     53351                </Layer>
     53352                <Layer>
     53353                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53354                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53355                        <ows:Keywords>
     53356                                <ows:Keyword>Photographies</ows:Keyword>
     53357                        </ows:Keywords>
     53358                        <ows:WGS84BoundingBox>
     53359                                <ows:LowerCorner>1.2204 44.0727</ows:LowerCorner>
     53360                                <ows:UpperCorner>1.51423 44.2929</ows:UpperCorner>
     53361                        </ows:WGS84BoundingBox>
     53362                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-21-40088577</ows:Identifier>
     53363                        <Style isDefault="true">
     53364                                <ows:Title>Données Brutes</ows:Title>
     53365                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53366                                <ows:Keywords>
     53367                                        <ows:Keyword>Défaut</ows:Keyword>
     53368                                </ows:Keywords>
     53369                                <ows:Identifier>normal</ows:Identifier>
     53370                                <LegendURL format="image/jpeg" height="200"
     53371                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53372                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53373                        </Style>
     53374                        <Format>image/jpeg</Format>
     53375                        <TileMatrixSetLink>
     53376                                <TileMatrixSet>PM</TileMatrixSet>
     53377                                <TileMatrixSetLimits>
     53378                                        <TileMatrixLimits>
     53379                                                <TileMatrix>0</TileMatrix>
     53380                                                <MinTileRow>0</MinTileRow>
     53381                                                <MaxTileRow>0</MaxTileRow>
     53382                                                <MinTileCol>0</MinTileCol>
     53383                                                <MaxTileCol>0</MaxTileCol>
     53384                                        </TileMatrixLimits>
     53385                                        <TileMatrixLimits>
     53386                                                <TileMatrix>1</TileMatrix>
     53387                                                <MinTileRow>0</MinTileRow>
     53388                                                <MaxTileRow>0</MaxTileRow>
     53389                                                <MinTileCol>1</MinTileCol>
     53390                                                <MaxTileCol>1</MaxTileCol>
     53391                                        </TileMatrixLimits>
     53392                                        <TileMatrixLimits>
     53393                                                <TileMatrix>10</TileMatrix>
     53394                                                <MinTileRow>371</MinTileRow>
     53395                                                <MaxTileRow>372</MaxTileRow>
     53396                                                <MinTileCol>515</MinTileCol>
     53397                                                <MaxTileCol>516</MaxTileCol>
     53398                                        </TileMatrixLimits>
     53399                                        <TileMatrixLimits>
     53400                                                <TileMatrix>11</TileMatrix>
     53401                                                <MinTileRow>742</MinTileRow>
     53402                                                <MaxTileRow>744</MaxTileRow>
     53403                                                <MinTileCol>1030</MinTileCol>
     53404                                                <MaxTileCol>1032</MaxTileCol>
     53405                                        </TileMatrixLimits>
     53406                                        <TileMatrixLimits>
     53407                                                <TileMatrix>12</TileMatrix>
     53408                                                <MinTileRow>1484</MinTileRow>
     53409                                                <MaxTileRow>1488</MaxTileRow>
     53410                                                <MinTileCol>2061</MinTileCol>
     53411                                                <MaxTileCol>2065</MaxTileCol>
     53412                                        </TileMatrixLimits>
     53413                                        <TileMatrixLimits>
     53414                                                <TileMatrix>13</TileMatrix>
     53415                                                <MinTileRow>2969</MinTileRow>
     53416                                                <MaxTileRow>2976</MaxTileRow>
     53417                                                <MinTileCol>4123</MinTileCol>
     53418                                                <MaxTileCol>4130</MaxTileCol>
     53419                                        </TileMatrixLimits>
     53420                                        <TileMatrixLimits>
     53421                                                <TileMatrix>14</TileMatrix>
     53422                                                <MinTileRow>5939</MinTileRow>
     53423                                                <MaxTileRow>5952</MaxTileRow>
     53424                                                <MinTileCol>8247</MinTileCol>
     53425                                                <MaxTileCol>8260</MaxTileCol>
     53426                                        </TileMatrixLimits>
     53427                                        <TileMatrixLimits>
     53428                                                <TileMatrix>15</TileMatrix>
     53429                                                <MinTileRow>11878</MinTileRow>
     53430                                                <MaxTileRow>11905</MaxTileRow>
     53431                                                <MinTileCol>16495</MinTileCol>
     53432                                                <MaxTileCol>16521</MaxTileCol>
     53433                                        </TileMatrixLimits>
     53434                                        <TileMatrixLimits>
     53435                                                <TileMatrix>16</TileMatrix>
     53436                                                <MinTileRow>23756</MinTileRow>
     53437                                                <MaxTileRow>23810</MaxTileRow>
     53438                                                <MinTileCol>32990</MinTileCol>
     53439                                                <MaxTileCol>33043</MaxTileCol>
     53440                                        </TileMatrixLimits>
     53441                                        <TileMatrixLimits>
     53442                                                <TileMatrix>17</TileMatrix>
     53443                                                <MinTileRow>47513</MinTileRow>
     53444                                                <MaxTileRow>47621</MaxTileRow>
     53445                                                <MinTileCol>65980</MinTileCol>
     53446                                                <MaxTileCol>66087</MaxTileCol>
     53447                                        </TileMatrixLimits>
     53448                                        <TileMatrixLimits>
     53449                                                <TileMatrix>18</TileMatrix>
     53450                                                <MinTileRow>95026</MinTileRow>
     53451                                                <MaxTileRow>95243</MaxTileRow>
     53452                                                <MinTileCol>131960</MinTileCol>
     53453                                                <MaxTileCol>132174</MaxTileCol>
     53454                                        </TileMatrixLimits>
     53455                                        <TileMatrixLimits>
     53456                                                <TileMatrix>2</TileMatrix>
     53457                                                <MinTileRow>1</MinTileRow>
     53458                                                <MaxTileRow>1</MaxTileRow>
     53459                                                <MinTileCol>2</MinTileCol>
     53460                                                <MaxTileCol>2</MaxTileCol>
     53461                                        </TileMatrixLimits>
     53462                                        <TileMatrixLimits>
     53463                                                <TileMatrix>3</TileMatrix>
     53464                                                <MinTileRow>2</MinTileRow>
     53465                                                <MaxTileRow>2</MaxTileRow>
     53466                                                <MinTileCol>4</MinTileCol>
     53467                                                <MaxTileCol>4</MaxTileCol>
     53468                                        </TileMatrixLimits>
     53469                                        <TileMatrixLimits>
     53470                                                <TileMatrix>4</TileMatrix>
     53471                                                <MinTileRow>5</MinTileRow>
     53472                                                <MaxTileRow>5</MaxTileRow>
     53473                                                <MinTileCol>8</MinTileCol>
     53474                                                <MaxTileCol>8</MaxTileCol>
     53475                                        </TileMatrixLimits>
     53476                                        <TileMatrixLimits>
     53477                                                <TileMatrix>5</TileMatrix>
     53478                                                <MinTileRow>11</MinTileRow>
     53479                                                <MaxTileRow>11</MaxTileRow>
     53480                                                <MinTileCol>16</MinTileCol>
     53481                                                <MaxTileCol>16</MaxTileCol>
     53482                                        </TileMatrixLimits>
     53483                                        <TileMatrixLimits>
     53484                                                <TileMatrix>6</TileMatrix>
     53485                                                <MinTileRow>23</MinTileRow>
     53486                                                <MaxTileRow>23</MaxTileRow>
     53487                                                <MinTileCol>32</MinTileCol>
     53488                                                <MaxTileCol>32</MaxTileCol>
     53489                                        </TileMatrixLimits>
     53490                                        <TileMatrixLimits>
     53491                                                <TileMatrix>7</TileMatrix>
     53492                                                <MinTileRow>46</MinTileRow>
     53493                                                <MaxTileRow>46</MaxTileRow>
     53494                                                <MinTileCol>64</MinTileCol>
     53495                                                <MaxTileCol>64</MaxTileCol>
     53496                                        </TileMatrixLimits>
     53497                                        <TileMatrixLimits>
     53498                                                <TileMatrix>8</TileMatrix>
     53499                                                <MinTileRow>92</MinTileRow>
     53500                                                <MaxTileRow>93</MaxTileRow>
     53501                                                <MinTileCol>128</MinTileCol>
     53502                                                <MaxTileCol>129</MaxTileCol>
     53503                                        </TileMatrixLimits>
     53504                                        <TileMatrixLimits>
     53505                                                <TileMatrix>9</TileMatrix>
     53506                                                <MinTileRow>185</MinTileRow>
     53507                                                <MaxTileRow>186</MaxTileRow>
     53508                                                <MinTileCol>257</MinTileCol>
     53509                                                <MaxTileCol>258</MaxTileCol>
     53510                                        </TileMatrixLimits>
     53511                                </TileMatrixSetLimits>
     53512                        </TileMatrixSetLink>
     53513                </Layer>
     53514                <Layer>
     53515                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53516                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53517                        <ows:Keywords>
     53518                                <ows:Keyword>Photographies</ows:Keyword>
     53519                        </ows:Keywords>
     53520                        <ows:WGS84BoundingBox>
     53521                                <ows:LowerCorner>1.86766 44.0002</ows:LowerCorner>
     53522                                <ows:UpperCorner>2.15213 44.5158</ows:UpperCorner>
     53523                        </ows:WGS84BoundingBox>
     53524                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39667576</ows:Identifier>
     53525                        <Style isDefault="true">
     53526                                <ows:Title>Données Brutes</ows:Title>
     53527                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53528                                <ows:Keywords>
     53529                                        <ows:Keyword>Défaut</ows:Keyword>
     53530                                </ows:Keywords>
     53531                                <ows:Identifier>normal</ows:Identifier>
     53532                                <LegendURL format="image/jpeg" height="200"
     53533                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53534                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53535                        </Style>
     53536                        <Format>image/jpeg</Format>
     53537                        <TileMatrixSetLink>
     53538                                <TileMatrixSet>PM</TileMatrixSet>
     53539                                <TileMatrixSetLimits>
     53540                                        <TileMatrixLimits>
     53541                                                <TileMatrix>0</TileMatrix>
     53542                                                <MinTileRow>0</MinTileRow>
     53543                                                <MaxTileRow>0</MaxTileRow>
     53544                                                <MinTileCol>0</MinTileCol>
     53545                                                <MaxTileCol>0</MaxTileCol>
     53546                                        </TileMatrixLimits>
     53547                                        <TileMatrixLimits>
     53548                                                <TileMatrix>1</TileMatrix>
     53549                                                <MinTileRow>0</MinTileRow>
     53550                                                <MaxTileRow>0</MaxTileRow>
     53551                                                <MinTileCol>1</MinTileCol>
     53552                                                <MaxTileCol>1</MaxTileCol>
     53553                                        </TileMatrixLimits>
     53554                                        <TileMatrixLimits>
     53555                                                <TileMatrix>10</TileMatrix>
     53556                                                <MinTileRow>370</MinTileRow>
     53557                                                <MaxTileRow>372</MaxTileRow>
     53558                                                <MinTileCol>517</MinTileCol>
     53559                                                <MaxTileCol>518</MaxTileCol>
     53560                                        </TileMatrixLimits>
     53561                                        <TileMatrixLimits>
     53562                                                <TileMatrix>11</TileMatrix>
     53563                                                <MinTileRow>740</MinTileRow>
     53564                                                <MaxTileRow>744</MaxTileRow>
     53565                                                <MinTileCol>1034</MinTileCol>
     53566                                                <MaxTileCol>1036</MaxTileCol>
     53567                                        </TileMatrixLimits>
     53568                                        <TileMatrixLimits>
     53569                                                <TileMatrix>12</TileMatrix>
     53570                                                <MinTileRow>1481</MinTileRow>
     53571                                                <MaxTileRow>1489</MaxTileRow>
     53572                                                <MinTileCol>2069</MinTileCol>
     53573                                                <MaxTileCol>2072</MaxTileCol>
     53574                                        </TileMatrixLimits>
     53575                                        <TileMatrixLimits>
     53576                                                <TileMatrix>13</TileMatrix>
     53577                                                <MinTileRow>2962</MinTileRow>
     53578                                                <MaxTileRow>2978</MaxTileRow>
     53579                                                <MinTileCol>4138</MinTileCol>
     53580                                                <MaxTileCol>4144</MaxTileCol>
     53581                                        </TileMatrixLimits>
     53582                                        <TileMatrixLimits>
     53583                                                <TileMatrix>14</TileMatrix>
     53584                                                <MinTileRow>5924</MinTileRow>
     53585                                                <MaxTileRow>5957</MaxTileRow>
     53586                                                <MinTileCol>8277</MinTileCol>
     53587                                                <MaxTileCol>8289</MaxTileCol>
     53588                                        </TileMatrixLimits>
     53589                                        <TileMatrixLimits>
     53590                                                <TileMatrix>15</TileMatrix>
     53591                                                <MinTileRow>11849</MinTileRow>
     53592                                                <MaxTileRow>11914</MaxTileRow>
     53593                                                <MinTileCol>16554</MinTileCol>
     53594                                                <MaxTileCol>16579</MaxTileCol>
     53595                                        </TileMatrixLimits>
     53596                                        <TileMatrixLimits>
     53597                                                <TileMatrix>16</TileMatrix>
     53598                                                <MinTileRow>23699</MinTileRow>
     53599                                                <MaxTileRow>23829</MaxTileRow>
     53600                                                <MinTileCol>33108</MinTileCol>
     53601                                                <MaxTileCol>33159</MaxTileCol>
     53602                                        </TileMatrixLimits>
     53603                                        <TileMatrixLimits>
     53604                                                <TileMatrix>17</TileMatrix>
     53605                                                <MinTileRow>47398</MinTileRow>
     53606                                                <MaxTileRow>47659</MaxTileRow>
     53607                                                <MinTileCol>66216</MinTileCol>
     53608                                                <MaxTileCol>66319</MaxTileCol>
     53609                                        </TileMatrixLimits>
     53610                                        <TileMatrixLimits>
     53611                                                <TileMatrix>18</TileMatrix>
     53612                                                <MinTileRow>94797</MinTileRow>
     53613                                                <MaxTileRow>95319</MaxTileRow>
     53614                                                <MinTileCol>132432</MinTileCol>
     53615                                                <MaxTileCol>132638</MaxTileCol>
     53616                                        </TileMatrixLimits>
     53617                                        <TileMatrixLimits>
     53618                                                <TileMatrix>2</TileMatrix>
     53619                                                <MinTileRow>1</MinTileRow>
     53620                                                <MaxTileRow>1</MaxTileRow>
     53621                                                <MinTileCol>2</MinTileCol>
     53622                                                <MaxTileCol>2</MaxTileCol>
     53623                                        </TileMatrixLimits>
     53624                                        <TileMatrixLimits>
     53625                                                <TileMatrix>3</TileMatrix>
     53626                                                <MinTileRow>2</MinTileRow>
     53627                                                <MaxTileRow>2</MaxTileRow>
     53628                                                <MinTileCol>4</MinTileCol>
     53629                                                <MaxTileCol>4</MaxTileCol>
     53630                                        </TileMatrixLimits>
     53631                                        <TileMatrixLimits>
     53632                                                <TileMatrix>4</TileMatrix>
     53633                                                <MinTileRow>5</MinTileRow>
     53634                                                <MaxTileRow>5</MaxTileRow>
     53635                                                <MinTileCol>8</MinTileCol>
     53636                                                <MaxTileCol>8</MaxTileCol>
     53637                                        </TileMatrixLimits>
     53638                                        <TileMatrixLimits>
     53639                                                <TileMatrix>5</TileMatrix>
     53640                                                <MinTileRow>11</MinTileRow>
     53641                                                <MaxTileRow>11</MaxTileRow>
     53642                                                <MinTileCol>16</MinTileCol>
     53643                                                <MaxTileCol>16</MaxTileCol>
     53644                                        </TileMatrixLimits>
     53645                                        <TileMatrixLimits>
     53646                                                <TileMatrix>6</TileMatrix>
     53647                                                <MinTileRow>23</MinTileRow>
     53648                                                <MaxTileRow>23</MaxTileRow>
     53649                                                <MinTileCol>32</MinTileCol>
     53650                                                <MaxTileCol>32</MaxTileCol>
     53651                                        </TileMatrixLimits>
     53652                                        <TileMatrixLimits>
     53653                                                <TileMatrix>7</TileMatrix>
     53654                                                <MinTileRow>46</MinTileRow>
     53655                                                <MaxTileRow>46</MaxTileRow>
     53656                                                <MinTileCol>64</MinTileCol>
     53657                                                <MaxTileCol>64</MaxTileCol>
     53658                                        </TileMatrixLimits>
     53659                                        <TileMatrixLimits>
     53660                                                <TileMatrix>8</TileMatrix>
     53661                                                <MinTileRow>92</MinTileRow>
     53662                                                <MaxTileRow>93</MaxTileRow>
     53663                                                <MinTileCol>129</MinTileCol>
     53664                                                <MaxTileCol>129</MaxTileCol>
     53665                                        </TileMatrixLimits>
     53666                                        <TileMatrixLimits>
     53667                                                <TileMatrix>9</TileMatrix>
     53668                                                <MinTileRow>185</MinTileRow>
     53669                                                <MaxTileRow>186</MaxTileRow>
     53670                                                <MinTileCol>258</MinTileCol>
     53671                                                <MaxTileCol>259</MaxTileCol>
     53672                                        </TileMatrixLimits>
     53673                                </TileMatrixSetLimits>
     53674                        </TileMatrixSetLink>
     53675                </Layer>
     53676                <Layer>
     53677                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53678                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53679                        <ows:Keywords>
     53680                                <ows:Keyword>Photographies</ows:Keyword>
     53681                        </ows:Keywords>
     53682                        <ows:WGS84BoundingBox>
     53683                                <ows:LowerCorner>1.65317 44.3758</ows:LowerCorner>
     53684                                <ows:UpperCorner>1.93311 44.5409</ows:UpperCorner>
     53685                        </ows:WGS84BoundingBox>
     53686                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39685201</ows:Identifier>
     53687                        <Style isDefault="true">
     53688                                <ows:Title>Données Brutes</ows:Title>
     53689                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53690                                <ows:Keywords>
     53691                                        <ows:Keyword>Défaut</ows:Keyword>
     53692                                </ows:Keywords>
     53693                                <ows:Identifier>normal</ows:Identifier>
     53694                                <LegendURL format="image/jpeg" height="200"
     53695                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53696                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53697                        </Style>
     53698                        <Format>image/jpeg</Format>
     53699                        <TileMatrixSetLink>
     53700                                <TileMatrixSet>PM</TileMatrixSet>
     53701                                <TileMatrixSetLimits>
     53702                                        <TileMatrixLimits>
     53703                                                <TileMatrix>0</TileMatrix>
     53704                                                <MinTileRow>0</MinTileRow>
     53705                                                <MaxTileRow>0</MaxTileRow>
     53706                                                <MinTileCol>0</MinTileCol>
     53707                                                <MaxTileCol>0</MaxTileCol>
     53708                                        </TileMatrixLimits>
     53709                                        <TileMatrixLimits>
     53710                                                <TileMatrix>1</TileMatrix>
     53711                                                <MinTileRow>0</MinTileRow>
     53712                                                <MaxTileRow>0</MaxTileRow>
     53713                                                <MinTileCol>1</MinTileCol>
     53714                                                <MaxTileCol>1</MaxTileCol>
     53715                                        </TileMatrixLimits>
     53716                                        <TileMatrixLimits>
     53717                                                <TileMatrix>10</TileMatrix>
     53718                                                <MinTileRow>370</MinTileRow>
     53719                                                <MaxTileRow>370</MaxTileRow>
     53720                                                <MinTileCol>516</MinTileCol>
     53721                                                <MaxTileCol>517</MaxTileCol>
     53722                                        </TileMatrixLimits>
     53723                                        <TileMatrixLimits>
     53724                                                <TileMatrix>11</TileMatrix>
     53725                                                <MinTileRow>740</MinTileRow>
     53726                                                <MaxTileRow>741</MaxTileRow>
     53727                                                <MinTileCol>1033</MinTileCol>
     53728                                                <MaxTileCol>1034</MaxTileCol>
     53729                                        </TileMatrixLimits>
     53730                                        <TileMatrixLimits>
     53731                                                <TileMatrix>12</TileMatrix>
     53732                                                <MinTileRow>1480</MinTileRow>
     53733                                                <MaxTileRow>1483</MaxTileRow>
     53734                                                <MinTileCol>2066</MinTileCol>
     53735                                                <MaxTileCol>2069</MaxTileCol>
     53736                                        </TileMatrixLimits>
     53737                                        <TileMatrixLimits>
     53738                                                <TileMatrix>13</TileMatrix>
     53739                                                <MinTileRow>2961</MinTileRow>
     53740                                                <MaxTileRow>2966</MaxTileRow>
     53741                                                <MinTileCol>4133</MinTileCol>
     53742                                                <MaxTileCol>4139</MaxTileCol>
     53743                                        </TileMatrixLimits>
     53744                                        <TileMatrixLimits>
     53745                                                <TileMatrix>14</TileMatrix>
     53746                                                <MinTileRow>5923</MinTileRow>
     53747                                                <MaxTileRow>5933</MaxTileRow>
     53748                                                <MinTileCol>8267</MinTileCol>
     53749                                                <MaxTileCol>8279</MaxTileCol>
     53750                                        </TileMatrixLimits>
     53751                                        <TileMatrixLimits>
     53752                                                <TileMatrix>15</TileMatrix>
     53753                                                <MinTileRow>11846</MinTileRow>
     53754                                                <MaxTileRow>11867</MaxTileRow>
     53755                                                <MinTileCol>16534</MinTileCol>
     53756                                                <MaxTileCol>16559</MaxTileCol>
     53757                                        </TileMatrixLimits>
     53758                                        <TileMatrixLimits>
     53759                                                <TileMatrix>16</TileMatrix>
     53760                                                <MinTileRow>23692</MinTileRow>
     53761                                                <MaxTileRow>23734</MaxTileRow>
     53762                                                <MinTileCol>33068</MinTileCol>
     53763                                                <MaxTileCol>33119</MaxTileCol>
     53764                                        </TileMatrixLimits>
     53765                                        <TileMatrixLimits>
     53766                                                <TileMatrix>17</TileMatrix>
     53767                                                <MinTileRow>47385</MinTileRow>
     53768                                                <MaxTileRow>47469</MaxTileRow>
     53769                                                <MinTileCol>66137</MinTileCol>
     53770                                                <MaxTileCol>66239</MaxTileCol>
     53771                                        </TileMatrixLimits>
     53772                                        <TileMatrixLimits>
     53773                                                <TileMatrix>18</TileMatrix>
     53774                                                <MinTileRow>94770</MinTileRow>
     53775                                                <MaxTileRow>94939</MaxTileRow>
     53776                                                <MinTileCol>132275</MinTileCol>
     53777                                                <MaxTileCol>132479</MaxTileCol>
     53778                                        </TileMatrixLimits>
     53779                                        <TileMatrixLimits>
     53780                                                <TileMatrix>2</TileMatrix>
     53781                                                <MinTileRow>1</MinTileRow>
     53782                                                <MaxTileRow>1</MaxTileRow>
     53783                                                <MinTileCol>2</MinTileCol>
     53784                                                <MaxTileCol>2</MaxTileCol>
     53785                                        </TileMatrixLimits>
     53786                                        <TileMatrixLimits>
     53787                                                <TileMatrix>3</TileMatrix>
     53788                                                <MinTileRow>2</MinTileRow>
     53789                                                <MaxTileRow>2</MaxTileRow>
     53790                                                <MinTileCol>4</MinTileCol>
     53791                                                <MaxTileCol>4</MaxTileCol>
     53792                                        </TileMatrixLimits>
     53793                                        <TileMatrixLimits>
     53794                                                <TileMatrix>4</TileMatrix>
     53795                                                <MinTileRow>5</MinTileRow>
     53796                                                <MaxTileRow>5</MaxTileRow>
     53797                                                <MinTileCol>8</MinTileCol>
     53798                                                <MaxTileCol>8</MaxTileCol>
     53799                                        </TileMatrixLimits>
     53800                                        <TileMatrixLimits>
     53801                                                <TileMatrix>5</TileMatrix>
     53802                                                <MinTileRow>11</MinTileRow>
     53803                                                <MaxTileRow>11</MaxTileRow>
     53804                                                <MinTileCol>16</MinTileCol>
     53805                                                <MaxTileCol>16</MaxTileCol>
     53806                                        </TileMatrixLimits>
     53807                                        <TileMatrixLimits>
     53808                                                <TileMatrix>6</TileMatrix>
     53809                                                <MinTileRow>23</MinTileRow>
     53810                                                <MaxTileRow>23</MaxTileRow>
     53811                                                <MinTileCol>32</MinTileCol>
     53812                                                <MaxTileCol>32</MaxTileCol>
     53813                                        </TileMatrixLimits>
     53814                                        <TileMatrixLimits>
     53815                                                <TileMatrix>7</TileMatrix>
     53816                                                <MinTileRow>46</MinTileRow>
     53817                                                <MaxTileRow>46</MaxTileRow>
     53818                                                <MinTileCol>64</MinTileCol>
     53819                                                <MaxTileCol>64</MaxTileCol>
     53820                                        </TileMatrixLimits>
     53821                                        <TileMatrixLimits>
     53822                                                <TileMatrix>8</TileMatrix>
     53823                                                <MinTileRow>92</MinTileRow>
     53824                                                <MaxTileRow>92</MaxTileRow>
     53825                                                <MinTileCol>129</MinTileCol>
     53826                                                <MaxTileCol>129</MaxTileCol>
     53827                                        </TileMatrixLimits>
     53828                                        <TileMatrixLimits>
     53829                                                <TileMatrix>9</TileMatrix>
     53830                                                <MinTileRow>185</MinTileRow>
     53831                                                <MaxTileRow>185</MaxTileRow>
     53832                                                <MinTileCol>258</MinTileCol>
     53833                                                <MaxTileCol>258</MaxTileCol>
     53834                                        </TileMatrixLimits>
     53835                                </TileMatrixSetLimits>
     53836                        </TileMatrixSetLink>
     53837                </Layer>
     53838                <Layer>
     53839                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     53840                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     53841                        <ows:Keywords>
     53842                                <ows:Keyword>Photographies</ows:Keyword>
     53843                        </ows:Keywords>
     53844                        <ows:WGS84BoundingBox>
     53845                                <ows:LowerCorner>2.08269 44.0922</ows:LowerCorner>
     53846                                <ows:UpperCorner>2.36308 44.4452</ows:UpperCorner>
     53847                        </ows:WGS84BoundingBox>
     53848                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39694575</ows:Identifier>
     53849                        <Style isDefault="true">
     53850                                <ows:Title>Données Brutes</ows:Title>
     53851                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     53852                                <ows:Keywords>
     53853                                        <ows:Keyword>Défaut</ows:Keyword>
     53854                                </ows:Keywords>
     53855                                <ows:Identifier>normal</ows:Identifier>
     53856                                <LegendURL format="image/jpeg" height="200"
     53857                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     53858                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     53859                        </Style>
     53860                        <Format>image/jpeg</Format>
     53861                        <TileMatrixSetLink>
     53862                                <TileMatrixSet>PM</TileMatrixSet>
     53863                                <TileMatrixSetLimits>
     53864                                        <TileMatrixLimits>
     53865                                                <TileMatrix>0</TileMatrix>
     53866                                                <MinTileRow>0</MinTileRow>
     53867                                                <MaxTileRow>0</MaxTileRow>
     53868                                                <MinTileCol>0</MinTileCol>
     53869                                                <MaxTileCol>0</MaxTileCol>
     53870                                        </TileMatrixLimits>
     53871                                        <TileMatrixLimits>
     53872                                                <TileMatrix>1</TileMatrix>
     53873                                                <MinTileRow>0</MinTileRow>
     53874                                                <MaxTileRow>0</MaxTileRow>
     53875                                                <MinTileCol>1</MinTileCol>
     53876                                                <MaxTileCol>1</MaxTileCol>
     53877                                        </TileMatrixLimits>
     53878                                        <TileMatrixLimits>
     53879                                                <TileMatrix>10</TileMatrix>
     53880                                                <MinTileRow>370</MinTileRow>
     53881                                                <MaxTileRow>371</MaxTileRow>
     53882                                                <MinTileCol>517</MinTileCol>
     53883                                                <MaxTileCol>518</MaxTileCol>
     53884                                        </TileMatrixLimits>
     53885                                        <TileMatrixLimits>
     53886                                                <TileMatrix>11</TileMatrix>
     53887                                                <MinTileRow>741</MinTileRow>
     53888                                                <MaxTileRow>743</MaxTileRow>
     53889                                                <MinTileCol>1035</MinTileCol>
     53890                                                <MaxTileCol>1037</MaxTileCol>
     53891                                        </TileMatrixLimits>
     53892                                        <TileMatrixLimits>
     53893                                                <TileMatrix>12</TileMatrix>
     53894                                                <MinTileRow>1482</MinTileRow>
     53895                                                <MaxTileRow>1487</MaxTileRow>
     53896                                                <MinTileCol>2071</MinTileCol>
     53897                                                <MaxTileCol>2074</MaxTileCol>
     53898                                        </TileMatrixLimits>
     53899                                        <TileMatrixLimits>
     53900                                                <TileMatrix>13</TileMatrix>
     53901                                                <MinTileRow>2964</MinTileRow>
     53902                                                <MaxTileRow>2975</MaxTileRow>
     53903                                                <MinTileCol>4143</MinTileCol>
     53904                                                <MaxTileCol>4149</MaxTileCol>
     53905                                        </TileMatrixLimits>
     53906                                        <TileMatrixLimits>
     53907                                                <TileMatrix>14</TileMatrix>
     53908                                                <MinTileRow>5929</MinTileRow>
     53909                                                <MaxTileRow>5951</MaxTileRow>
     53910                                                <MinTileCol>8286</MinTileCol>
     53911                                                <MaxTileCol>8299</MaxTileCol>
     53912                                        </TileMatrixLimits>
     53913                                        <TileMatrixLimits>
     53914                                                <TileMatrix>15</TileMatrix>
     53915                                                <MinTileRow>11858</MinTileRow>
     53916                                                <MaxTileRow>11903</MaxTileRow>
     53917                                                <MinTileCol>16573</MinTileCol>
     53918                                                <MaxTileCol>16599</MaxTileCol>
     53919                                        </TileMatrixLimits>
     53920                                        <TileMatrixLimits>
     53921                                                <TileMatrix>16</TileMatrix>
     53922                                                <MinTileRow>23717</MinTileRow>
     53923                                                <MaxTileRow>23806</MaxTileRow>
     53924                                                <MinTileCol>33147</MinTileCol>
     53925                                                <MaxTileCol>33198</MaxTileCol>
     53926                                        </TileMatrixLimits>
     53927                                        <TileMatrixLimits>
     53928                                                <TileMatrix>17</TileMatrix>
     53929                                                <MinTileRow>47434</MinTileRow>
     53930                                                <MaxTileRow>47613</MaxTileRow>
     53931                                                <MinTileCol>66294</MinTileCol>
     53932                                                <MaxTileCol>66396</MaxTileCol>
     53933                                        </TileMatrixLimits>
     53934                                        <TileMatrixLimits>
     53935                                                <TileMatrix>18</TileMatrix>
     53936                                                <MinTileRow>94868</MinTileRow>
     53937                                                <MaxTileRow>95227</MaxTileRow>
     53938                                                <MinTileCol>132589</MinTileCol>
     53939                                                <MaxTileCol>132792</MaxTileCol>
     53940                                        </TileMatrixLimits>
     53941                                        <TileMatrixLimits>
     53942                                                <TileMatrix>2</TileMatrix>
     53943                                                <MinTileRow>1</MinTileRow>
     53944                                                <MaxTileRow>1</MaxTileRow>
     53945                                                <MinTileCol>2</MinTileCol>
     53946                                                <MaxTileCol>2</MaxTileCol>
     53947                                        </TileMatrixLimits>
     53948                                        <TileMatrixLimits>
     53949                                                <TileMatrix>3</TileMatrix>
     53950                                                <MinTileRow>2</MinTileRow>
     53951                                                <MaxTileRow>2</MaxTileRow>
     53952                                                <MinTileCol>4</MinTileCol>
     53953                                                <MaxTileCol>4</MaxTileCol>
     53954                                        </TileMatrixLimits>
     53955                                        <TileMatrixLimits>
     53956                                                <TileMatrix>4</TileMatrix>
     53957                                                <MinTileRow>5</MinTileRow>
     53958                                                <MaxTileRow>5</MaxTileRow>
     53959                                                <MinTileCol>8</MinTileCol>
     53960                                                <MaxTileCol>8</MaxTileCol>
     53961                                        </TileMatrixLimits>
     53962                                        <TileMatrixLimits>
     53963                                                <TileMatrix>5</TileMatrix>
     53964                                                <MinTileRow>11</MinTileRow>
     53965                                                <MaxTileRow>11</MaxTileRow>
     53966                                                <MinTileCol>16</MinTileCol>
     53967                                                <MaxTileCol>16</MaxTileCol>
     53968                                        </TileMatrixLimits>
     53969                                        <TileMatrixLimits>
     53970                                                <TileMatrix>6</TileMatrix>
     53971                                                <MinTileRow>23</MinTileRow>
     53972                                                <MaxTileRow>23</MaxTileRow>
     53973                                                <MinTileCol>32</MinTileCol>
     53974                                                <MaxTileCol>32</MaxTileCol>
     53975                                        </TileMatrixLimits>
     53976                                        <TileMatrixLimits>
     53977                                                <TileMatrix>7</TileMatrix>
     53978                                                <MinTileRow>46</MinTileRow>
     53979                                                <MaxTileRow>46</MaxTileRow>
     53980                                                <MinTileCol>64</MinTileCol>
     53981                                                <MaxTileCol>64</MaxTileCol>
     53982                                        </TileMatrixLimits>
     53983                                        <TileMatrixLimits>
     53984                                                <TileMatrix>8</TileMatrix>
     53985                                                <MinTileRow>92</MinTileRow>
     53986                                                <MaxTileRow>92</MaxTileRow>
     53987                                                <MinTileCol>129</MinTileCol>
     53988                                                <MaxTileCol>129</MaxTileCol>
     53989                                        </TileMatrixLimits>
     53990                                        <TileMatrixLimits>
     53991                                                <TileMatrix>9</TileMatrix>
     53992                                                <MinTileRow>185</MinTileRow>
     53993                                                <MaxTileRow>185</MaxTileRow>
     53994                                                <MinTileCol>258</MinTileCol>
     53995                                                <MaxTileCol>259</MaxTileCol>
     53996                                        </TileMatrixLimits>
     53997                                </TileMatrixSetLimits>
     53998                        </TileMatrixSetLink>
     53999                </Layer>
     54000                <Layer>
     54001                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54002                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54003                        <ows:Keywords>
     54004                                <ows:Keyword>Photographies</ows:Keyword>
     54005                        </ows:Keywords>
     54006                        <ows:WGS84BoundingBox>
     54007                                <ows:LowerCorner>1.64641 43.9437</ows:LowerCorner>
     54008                                <ows:UpperCorner>1.94119 44.2979</ows:UpperCorner>
     54009                        </ows:WGS84BoundingBox>
     54010                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-22-39707324</ows:Identifier>
     54011                        <Style isDefault="true">
     54012                                <ows:Title>Données Brutes</ows:Title>
     54013                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54014                                <ows:Keywords>
     54015                                        <ows:Keyword>Défaut</ows:Keyword>
     54016                                </ows:Keywords>
     54017                                <ows:Identifier>normal</ows:Identifier>
     54018                                <LegendURL format="image/jpeg" height="200"
     54019                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54020                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54021                        </Style>
     54022                        <Format>image/jpeg</Format>
     54023                        <TileMatrixSetLink>
     54024                                <TileMatrixSet>PM</TileMatrixSet>
     54025                                <TileMatrixSetLimits>
     54026                                        <TileMatrixLimits>
     54027                                                <TileMatrix>0</TileMatrix>
     54028                                                <MinTileRow>0</MinTileRow>
     54029                                                <MaxTileRow>0</MaxTileRow>
     54030                                                <MinTileCol>0</MinTileCol>
     54031                                                <MaxTileCol>0</MaxTileCol>
     54032                                        </TileMatrixLimits>
     54033                                        <TileMatrixLimits>
     54034                                                <TileMatrix>1</TileMatrix>
     54035                                                <MinTileRow>0</MinTileRow>
     54036                                                <MaxTileRow>0</MaxTileRow>
     54037                                                <MinTileCol>1</MinTileCol>
     54038                                                <MaxTileCol>1</MaxTileCol>
     54039                                        </TileMatrixLimits>
     54040                                        <TileMatrixLimits>
     54041                                                <TileMatrix>10</TileMatrix>
     54042                                                <MinTileRow>371</MinTileRow>
     54043                                                <MaxTileRow>372</MaxTileRow>
     54044                                                <MinTileCol>516</MinTileCol>
     54045                                                <MaxTileCol>517</MaxTileCol>
     54046                                        </TileMatrixLimits>
     54047                                        <TileMatrixLimits>
     54048                                                <TileMatrix>11</TileMatrix>
     54049                                                <MinTileRow>742</MinTileRow>
     54050                                                <MaxTileRow>745</MaxTileRow>
     54051                                                <MinTileCol>1033</MinTileCol>
     54052                                                <MaxTileCol>1035</MaxTileCol>
     54053                                        </TileMatrixLimits>
     54054                                        <TileMatrixLimits>
     54055                                                <TileMatrix>12</TileMatrix>
     54056                                                <MinTileRow>1484</MinTileRow>
     54057                                                <MaxTileRow>1490</MaxTileRow>
     54058                                                <MinTileCol>2066</MinTileCol>
     54059                                                <MaxTileCol>2070</MaxTileCol>
     54060                                        </TileMatrixLimits>
     54061                                        <TileMatrixLimits>
     54062                                                <TileMatrix>13</TileMatrix>
     54063                                                <MinTileRow>2969</MinTileRow>
     54064                                                <MaxTileRow>2980</MaxTileRow>
     54065                                                <MinTileCol>4133</MinTileCol>
     54066                                                <MaxTileCol>4140</MaxTileCol>
     54067                                        </TileMatrixLimits>
     54068                                        <TileMatrixLimits>
     54069                                                <TileMatrix>14</TileMatrix>
     54070                                                <MinTileRow>5938</MinTileRow>
     54071                                                <MaxTileRow>5961</MaxTileRow>
     54072                                                <MinTileCol>8267</MinTileCol>
     54073                                                <MaxTileCol>8280</MaxTileCol>
     54074                                        </TileMatrixLimits>
     54075                                        <TileMatrixLimits>
     54076                                                <TileMatrix>15</TileMatrix>
     54077                                                <MinTileRow>11877</MinTileRow>
     54078                                                <MaxTileRow>11922</MaxTileRow>
     54079                                                <MinTileCol>16534</MinTileCol>
     54080                                                <MaxTileCol>16560</MaxTileCol>
     54081                                        </TileMatrixLimits>
     54082                                        <TileMatrixLimits>
     54083                                                <TileMatrix>16</TileMatrix>
     54084                                                <MinTileRow>23754</MinTileRow>
     54085                                                <MaxTileRow>23844</MaxTileRow>
     54086                                                <MinTileCol>33068</MinTileCol>
     54087                                                <MaxTileCol>33120</MaxTileCol>
     54088                                        </TileMatrixLimits>
     54089                                        <TileMatrixLimits>
     54090                                                <TileMatrix>17</TileMatrix>
     54091                                                <MinTileRow>47509</MinTileRow>
     54092                                                <MaxTileRow>47688</MaxTileRow>
     54093                                                <MinTileCol>66136</MinTileCol>
     54094                                                <MaxTileCol>66241</MaxTileCol>
     54095                                        </TileMatrixLimits>
     54096                                        <TileMatrixLimits>
     54097                                                <TileMatrix>18</TileMatrix>
     54098                                                <MinTileRow>95018</MinTileRow>
     54099                                                <MaxTileRow>95377</MaxTileRow>
     54100                                                <MinTileCol>132273</MinTileCol>
     54101                                                <MaxTileCol>132483</MaxTileCol>
     54102                                        </TileMatrixLimits>
     54103                                        <TileMatrixLimits>
     54104                                                <TileMatrix>2</TileMatrix>
     54105                                                <MinTileRow>1</MinTileRow>
     54106                                                <MaxTileRow>1</MaxTileRow>
     54107                                                <MinTileCol>2</MinTileCol>
     54108                                                <MaxTileCol>2</MaxTileCol>
     54109                                        </TileMatrixLimits>
     54110                                        <TileMatrixLimits>
     54111                                                <TileMatrix>3</TileMatrix>
     54112                                                <MinTileRow>2</MinTileRow>
     54113                                                <MaxTileRow>2</MaxTileRow>
     54114                                                <MinTileCol>4</MinTileCol>
     54115                                                <MaxTileCol>4</MaxTileCol>
     54116                                        </TileMatrixLimits>
     54117                                        <TileMatrixLimits>
     54118                                                <TileMatrix>4</TileMatrix>
     54119                                                <MinTileRow>5</MinTileRow>
     54120                                                <MaxTileRow>5</MaxTileRow>
     54121                                                <MinTileCol>8</MinTileCol>
     54122                                                <MaxTileCol>8</MaxTileCol>
     54123                                        </TileMatrixLimits>
     54124                                        <TileMatrixLimits>
     54125                                                <TileMatrix>5</TileMatrix>
     54126                                                <MinTileRow>11</MinTileRow>
     54127                                                <MaxTileRow>11</MaxTileRow>
     54128                                                <MinTileCol>16</MinTileCol>
     54129                                                <MaxTileCol>16</MaxTileCol>
     54130                                        </TileMatrixLimits>
     54131                                        <TileMatrixLimits>
     54132                                                <TileMatrix>6</TileMatrix>
     54133                                                <MinTileRow>23</MinTileRow>
     54134                                                <MaxTileRow>23</MaxTileRow>
     54135                                                <MinTileCol>32</MinTileCol>
     54136                                                <MaxTileCol>32</MaxTileCol>
     54137                                        </TileMatrixLimits>
     54138                                        <TileMatrixLimits>
     54139                                                <TileMatrix>7</TileMatrix>
     54140                                                <MinTileRow>46</MinTileRow>
     54141                                                <MaxTileRow>46</MaxTileRow>
     54142                                                <MinTileCol>64</MinTileCol>
     54143                                                <MaxTileCol>64</MaxTileCol>
     54144                                        </TileMatrixLimits>
     54145                                        <TileMatrixLimits>
     54146                                                <TileMatrix>8</TileMatrix>
     54147                                                <MinTileRow>92</MinTileRow>
     54148                                                <MaxTileRow>93</MaxTileRow>
     54149                                                <MinTileCol>129</MinTileCol>
     54150                                                <MaxTileCol>129</MaxTileCol>
     54151                                        </TileMatrixLimits>
     54152                                        <TileMatrixLimits>
     54153                                                <TileMatrix>9</TileMatrix>
     54154                                                <MinTileRow>185</MinTileRow>
     54155                                                <MaxTileRow>186</MaxTileRow>
     54156                                                <MinTileCol>258</MinTileCol>
     54157                                                <MaxTileCol>258</MaxTileCol>
     54158                                        </TileMatrixLimits>
     54159                                </TileMatrixSetLimits>
     54160                        </TileMatrixSetLink>
     54161                </Layer>
     54162                <Layer>
     54163                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54164                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54165                        <ows:Keywords>
     54166                                <ows:Keyword>Photographies</ows:Keyword>
     54167                        </ows:Keywords>
     54168                        <ows:WGS84BoundingBox>
     54169                                <ows:LowerCorner>1.65417 44.8351</ows:LowerCorner>
     54170                                <ows:UpperCorner>1.92439 45.027</ows:UpperCorner>
     54171                        </ows:WGS84BoundingBox>
     54172                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39454832</ows:Identifier>
     54173                        <Style isDefault="true">
     54174                                <ows:Title>Données Brutes</ows:Title>
     54175                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54176                                <ows:Keywords>
     54177                                        <ows:Keyword>Défaut</ows:Keyword>
     54178                                </ows:Keywords>
     54179                                <ows:Identifier>normal</ows:Identifier>
     54180                                <LegendURL format="image/jpeg" height="200"
     54181                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54182                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54183                        </Style>
     54184                        <Format>image/jpeg</Format>
     54185                        <TileMatrixSetLink>
     54186                                <TileMatrixSet>PM</TileMatrixSet>
     54187                                <TileMatrixSetLimits>
     54188                                        <TileMatrixLimits>
     54189                                                <TileMatrix>0</TileMatrix>
     54190                                                <MinTileRow>0</MinTileRow>
     54191                                                <MaxTileRow>0</MaxTileRow>
     54192                                                <MinTileCol>0</MinTileCol>
     54193                                                <MaxTileCol>0</MaxTileCol>
     54194                                        </TileMatrixLimits>
     54195                                        <TileMatrixLimits>
     54196                                                <TileMatrix>1</TileMatrix>
     54197                                                <MinTileRow>0</MinTileRow>
     54198                                                <MaxTileRow>0</MaxTileRow>
     54199                                                <MinTileCol>1</MinTileCol>
     54200                                                <MaxTileCol>1</MaxTileCol>
     54201                                        </TileMatrixLimits>
     54202                                        <TileMatrixLimits>
     54203                                                <TileMatrix>10</TileMatrix>
     54204                                                <MinTileRow>368</MinTileRow>
     54205                                                <MaxTileRow>369</MaxTileRow>
     54206                                                <MinTileCol>516</MinTileCol>
     54207                                                <MaxTileCol>517</MaxTileCol>
     54208                                        </TileMatrixLimits>
     54209                                        <TileMatrixLimits>
     54210                                                <TileMatrix>11</TileMatrix>
     54211                                                <MinTileRow>736</MinTileRow>
     54212                                                <MaxTileRow>738</MaxTileRow>
     54213                                                <MinTileCol>1033</MinTileCol>
     54214                                                <MaxTileCol>1034</MaxTileCol>
     54215                                        </TileMatrixLimits>
     54216                                        <TileMatrixLimits>
     54217                                                <TileMatrix>12</TileMatrix>
     54218                                                <MinTileRow>1473</MinTileRow>
     54219                                                <MaxTileRow>1476</MaxTileRow>
     54220                                                <MinTileCol>2066</MinTileCol>
     54221                                                <MaxTileCol>2069</MaxTileCol>
     54222                                        </TileMatrixLimits>
     54223                                        <TileMatrixLimits>
     54224                                                <TileMatrix>13</TileMatrix>
     54225                                                <MinTileRow>2946</MinTileRow>
     54226                                                <MaxTileRow>2952</MaxTileRow>
     54227                                                <MinTileCol>4133</MinTileCol>
     54228                                                <MaxTileCol>4139</MaxTileCol>
     54229                                        </TileMatrixLimits>
     54230                                        <TileMatrixLimits>
     54231                                                <TileMatrix>14</TileMatrix>
     54232                                                <MinTileRow>5892</MinTileRow>
     54233                                                <MaxTileRow>5904</MaxTileRow>
     54234                                                <MinTileCol>8267</MinTileCol>
     54235                                                <MaxTileCol>8279</MaxTileCol>
     54236                                        </TileMatrixLimits>
     54237                                        <TileMatrixLimits>
     54238                                                <TileMatrix>15</TileMatrix>
     54239                                                <MinTileRow>11784</MinTileRow>
     54240                                                <MaxTileRow>11808</MaxTileRow>
     54241                                                <MinTileCol>16534</MinTileCol>
     54242                                                <MaxTileCol>16559</MaxTileCol>
     54243                                        </TileMatrixLimits>
     54244                                        <TileMatrixLimits>
     54245                                                <TileMatrix>16</TileMatrix>
     54246                                                <MinTileRow>23568</MinTileRow>
     54247                                                <MaxTileRow>23617</MaxTileRow>
     54248                                                <MinTileCol>33069</MinTileCol>
     54249                                                <MaxTileCol>33118</MaxTileCol>
     54250                                        </TileMatrixLimits>
     54251                                        <TileMatrixLimits>
     54252                                                <TileMatrix>17</TileMatrix>
     54253                                                <MinTileRow>47137</MinTileRow>
     54254                                                <MaxTileRow>47234</MaxTileRow>
     54255                                                <MinTileCol>66138</MinTileCol>
     54256                                                <MaxTileCol>66236</MaxTileCol>
     54257                                        </TileMatrixLimits>
     54258                                        <TileMatrixLimits>
     54259                                                <TileMatrix>18</TileMatrix>
     54260                                                <MinTileRow>94274</MinTileRow>
     54261                                                <MaxTileRow>94469</MaxTileRow>
     54262                                                <MinTileCol>132276</MinTileCol>
     54263                                                <MaxTileCol>132473</MaxTileCol>
     54264                                        </TileMatrixLimits>
     54265                                        <TileMatrixLimits>
     54266                                                <TileMatrix>2</TileMatrix>
     54267                                                <MinTileRow>1</MinTileRow>
     54268                                                <MaxTileRow>1</MaxTileRow>
     54269                                                <MinTileCol>2</MinTileCol>
     54270                                                <MaxTileCol>2</MaxTileCol>
     54271                                        </TileMatrixLimits>
     54272                                        <TileMatrixLimits>
     54273                                                <TileMatrix>3</TileMatrix>
     54274                                                <MinTileRow>2</MinTileRow>
     54275                                                <MaxTileRow>2</MaxTileRow>
     54276                                                <MinTileCol>4</MinTileCol>
     54277                                                <MaxTileCol>4</MaxTileCol>
     54278                                        </TileMatrixLimits>
     54279                                        <TileMatrixLimits>
     54280                                                <TileMatrix>4</TileMatrix>
     54281                                                <MinTileRow>5</MinTileRow>
     54282                                                <MaxTileRow>5</MaxTileRow>
     54283                                                <MinTileCol>8</MinTileCol>
     54284                                                <MaxTileCol>8</MaxTileCol>
     54285                                        </TileMatrixLimits>
     54286                                        <TileMatrixLimits>
     54287                                                <TileMatrix>5</TileMatrix>
     54288                                                <MinTileRow>11</MinTileRow>
     54289                                                <MaxTileRow>11</MaxTileRow>
     54290                                                <MinTileCol>16</MinTileCol>
     54291                                                <MaxTileCol>16</MaxTileCol>
     54292                                        </TileMatrixLimits>
     54293                                        <TileMatrixLimits>
     54294                                                <TileMatrix>6</TileMatrix>
     54295                                                <MinTileRow>23</MinTileRow>
     54296                                                <MaxTileRow>23</MaxTileRow>
     54297                                                <MinTileCol>32</MinTileCol>
     54298                                                <MaxTileCol>32</MaxTileCol>
     54299                                        </TileMatrixLimits>
     54300                                        <TileMatrixLimits>
     54301                                                <TileMatrix>7</TileMatrix>
     54302                                                <MinTileRow>46</MinTileRow>
     54303                                                <MaxTileRow>46</MaxTileRow>
     54304                                                <MinTileCol>64</MinTileCol>
     54305                                                <MaxTileCol>64</MaxTileCol>
     54306                                        </TileMatrixLimits>
     54307                                        <TileMatrixLimits>
     54308                                                <TileMatrix>8</TileMatrix>
     54309                                                <MinTileRow>92</MinTileRow>
     54310                                                <MaxTileRow>92</MaxTileRow>
     54311                                                <MinTileCol>129</MinTileCol>
     54312                                                <MaxTileCol>129</MaxTileCol>
     54313                                        </TileMatrixLimits>
     54314                                        <TileMatrixLimits>
     54315                                                <TileMatrix>9</TileMatrix>
     54316                                                <MinTileRow>184</MinTileRow>
     54317                                                <MaxTileRow>184</MaxTileRow>
     54318                                                <MinTileCol>258</MinTileCol>
     54319                                                <MaxTileCol>258</MaxTileCol>
     54320                                        </TileMatrixLimits>
     54321                                </TileMatrixSetLimits>
     54322                        </TileMatrixSetLink>
     54323                </Layer>
     54324                <Layer>
     54325                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54326                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54327                        <ows:Keywords>
     54328                                <ows:Keyword>Photographies</ows:Keyword>
     54329                        </ows:Keywords>
     54330                        <ows:WGS84BoundingBox>
     54331                                <ows:LowerCorner>1.87378 44.6394</ows:LowerCorner>
     54332                                <ows:UpperCorner>2.14252 44.8398</ows:UpperCorner>
     54333                        </ows:WGS84BoundingBox>
     54334                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39464074</ows:Identifier>
     54335                        <Style isDefault="true">
     54336                                <ows:Title>Données Brutes</ows:Title>
     54337                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54338                                <ows:Keywords>
     54339                                        <ows:Keyword>Défaut</ows:Keyword>
     54340                                </ows:Keywords>
     54341                                <ows:Identifier>normal</ows:Identifier>
     54342                                <LegendURL format="image/jpeg" height="200"
     54343                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54344                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54345                        </Style>
     54346                        <Format>image/jpeg</Format>
     54347                        <TileMatrixSetLink>
     54348                                <TileMatrixSet>PM</TileMatrixSet>
     54349                                <TileMatrixSetLimits>
     54350                                        <TileMatrixLimits>
     54351                                                <TileMatrix>0</TileMatrix>
     54352                                                <MinTileRow>0</MinTileRow>
     54353                                                <MaxTileRow>0</MaxTileRow>
     54354                                                <MinTileCol>0</MinTileCol>
     54355                                                <MaxTileCol>0</MaxTileCol>
     54356                                        </TileMatrixLimits>
     54357                                        <TileMatrixLimits>
     54358                                                <TileMatrix>1</TileMatrix>
     54359                                                <MinTileRow>0</MinTileRow>
     54360                                                <MaxTileRow>0</MaxTileRow>
     54361                                                <MinTileCol>1</MinTileCol>
     54362                                                <MaxTileCol>1</MaxTileCol>
     54363                                        </TileMatrixLimits>
     54364                                        <TileMatrixLimits>
     54365                                                <TileMatrix>10</TileMatrix>
     54366                                                <MinTileRow>369</MinTileRow>
     54367                                                <MaxTileRow>369</MaxTileRow>
     54368                                                <MinTileCol>517</MinTileCol>
     54369                                                <MaxTileCol>518</MaxTileCol>
     54370                                        </TileMatrixLimits>
     54371                                        <TileMatrixLimits>
     54372                                                <TileMatrix>11</TileMatrix>
     54373                                                <MinTileRow>738</MinTileRow>
     54374                                                <MaxTileRow>739</MaxTileRow>
     54375                                                <MinTileCol>1034</MinTileCol>
     54376                                                <MaxTileCol>1036</MaxTileCol>
     54377                                        </TileMatrixLimits>
     54378                                        <TileMatrixLimits>
     54379                                                <TileMatrix>12</TileMatrix>
     54380                                                <MinTileRow>1476</MinTileRow>
     54381                                                <MaxTileRow>1479</MaxTileRow>
     54382                                                <MinTileCol>2069</MinTileCol>
     54383                                                <MaxTileCol>2072</MaxTileCol>
     54384                                        </TileMatrixLimits>
     54385                                        <TileMatrixLimits>
     54386                                                <TileMatrix>13</TileMatrix>
     54387                                                <MinTileRow>2952</MinTileRow>
     54388                                                <MaxTileRow>2958</MaxTileRow>
     54389                                                <MinTileCol>4138</MinTileCol>
     54390                                                <MaxTileCol>4144</MaxTileCol>
     54391                                        </TileMatrixLimits>
     54392                                        <TileMatrixLimits>
     54393                                                <TileMatrix>14</TileMatrix>
     54394                                                <MinTileRow>5904</MinTileRow>
     54395                                                <MaxTileRow>5916</MaxTileRow>
     54396                                                <MinTileCol>8277</MinTileCol>
     54397                                                <MaxTileCol>8289</MaxTileCol>
     54398                                        </TileMatrixLimits>
     54399                                        <TileMatrixLimits>
     54400                                                <TileMatrix>15</TileMatrix>
     54401                                                <MinTileRow>11808</MinTileRow>
     54402                                                <MaxTileRow>11833</MaxTileRow>
     54403                                                <MinTileCol>16554</MinTileCol>
     54404                                                <MaxTileCol>16579</MaxTileCol>
     54405                                        </TileMatrixLimits>
     54406                                        <TileMatrixLimits>
     54407                                                <TileMatrix>16</TileMatrix>
     54408                                                <MinTileRow>23616</MinTileRow>
     54409                                                <MaxTileRow>23667</MaxTileRow>
     54410                                                <MinTileCol>33109</MinTileCol>
     54411                                                <MaxTileCol>33158</MaxTileCol>
     54412                                        </TileMatrixLimits>
     54413                                        <TileMatrixLimits>
     54414                                                <TileMatrix>17</TileMatrix>
     54415                                                <MinTileRow>47232</MinTileRow>
     54416                                                <MaxTileRow>47334</MaxTileRow>
     54417                                                <MinTileCol>66218</MinTileCol>
     54418                                                <MaxTileCol>66316</MaxTileCol>
     54419                                        </TileMatrixLimits>
     54420                                        <TileMatrixLimits>
     54421                                                <TileMatrix>18</TileMatrix>
     54422                                                <MinTileRow>94465</MinTileRow>
     54423                                                <MaxTileRow>94669</MaxTileRow>
     54424                                                <MinTileCol>132436</MinTileCol>
     54425                                                <MaxTileCol>132632</MaxTileCol>
     54426                                        </TileMatrixLimits>
     54427                                        <TileMatrixLimits>
     54428                                                <TileMatrix>2</TileMatrix>
     54429                                                <MinTileRow>1</MinTileRow>
     54430                                                <MaxTileRow>1</MaxTileRow>
     54431                                                <MinTileCol>2</MinTileCol>
     54432                                                <MaxTileCol>2</MaxTileCol>
     54433                                        </TileMatrixLimits>
     54434                                        <TileMatrixLimits>
     54435                                                <TileMatrix>3</TileMatrix>
     54436                                                <MinTileRow>2</MinTileRow>
     54437                                                <MaxTileRow>2</MaxTileRow>
     54438                                                <MinTileCol>4</MinTileCol>
     54439                                                <MaxTileCol>4</MaxTileCol>
     54440                                        </TileMatrixLimits>
     54441                                        <TileMatrixLimits>
     54442                                                <TileMatrix>4</TileMatrix>
     54443                                                <MinTileRow>5</MinTileRow>
     54444                                                <MaxTileRow>5</MaxTileRow>
     54445                                                <MinTileCol>8</MinTileCol>
     54446                                                <MaxTileCol>8</MaxTileCol>
     54447                                        </TileMatrixLimits>
     54448                                        <TileMatrixLimits>
     54449                                                <TileMatrix>5</TileMatrix>
     54450                                                <MinTileRow>11</MinTileRow>
     54451                                                <MaxTileRow>11</MaxTileRow>
     54452                                                <MinTileCol>16</MinTileCol>
     54453                                                <MaxTileCol>16</MaxTileCol>
     54454                                        </TileMatrixLimits>
     54455                                        <TileMatrixLimits>
     54456                                                <TileMatrix>6</TileMatrix>
     54457                                                <MinTileRow>23</MinTileRow>
     54458                                                <MaxTileRow>23</MaxTileRow>
     54459                                                <MinTileCol>32</MinTileCol>
     54460                                                <MaxTileCol>32</MaxTileCol>
     54461                                        </TileMatrixLimits>
     54462                                        <TileMatrixLimits>
     54463                                                <TileMatrix>7</TileMatrix>
     54464                                                <MinTileRow>46</MinTileRow>
     54465                                                <MaxTileRow>46</MaxTileRow>
     54466                                                <MinTileCol>64</MinTileCol>
     54467                                                <MaxTileCol>64</MaxTileCol>
     54468                                        </TileMatrixLimits>
     54469                                        <TileMatrixLimits>
     54470                                                <TileMatrix>8</TileMatrix>
     54471                                                <MinTileRow>92</MinTileRow>
     54472                                                <MaxTileRow>92</MaxTileRow>
     54473                                                <MinTileCol>129</MinTileCol>
     54474                                                <MaxTileCol>129</MaxTileCol>
     54475                                        </TileMatrixLimits>
     54476                                        <TileMatrixLimits>
     54477                                                <TileMatrix>9</TileMatrix>
     54478                                                <MinTileRow>184</MinTileRow>
     54479                                                <MaxTileRow>184</MaxTileRow>
     54480                                                <MinTileCol>258</MinTileCol>
     54481                                                <MaxTileCol>259</MaxTileCol>
     54482                                        </TileMatrixLimits>
     54483                                </TileMatrixSetLimits>
     54484                        </TileMatrixSetLink>
     54485                </Layer>
     54486                <Layer>
     54487                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54488                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54489                        <ows:Keywords>
     54490                                <ows:Keyword>Photographies</ows:Keyword>
     54491                        </ows:Keywords>
     54492                        <ows:WGS84BoundingBox>
     54493                                <ows:LowerCorner>1.65805 44.673</ows:LowerCorner>
     54494                                <ows:UpperCorner>1.92748 44.865</ows:UpperCorner>
     54495                        </ows:WGS84BoundingBox>
     54496                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-29-39473828</ows:Identifier>
     54497                        <Style isDefault="true">
     54498                                <ows:Title>Données Brutes</ows:Title>
     54499                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54500                                <ows:Keywords>
     54501                                        <ows:Keyword>Défaut</ows:Keyword>
     54502                                </ows:Keywords>
     54503                                <ows:Identifier>normal</ows:Identifier>
     54504                                <LegendURL format="image/jpeg" height="200"
     54505                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54506                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54507                        </Style>
     54508                        <Format>image/jpeg</Format>
     54509                        <TileMatrixSetLink>
     54510                                <TileMatrixSet>PM</TileMatrixSet>
     54511                                <TileMatrixSetLimits>
     54512                                        <TileMatrixLimits>
     54513                                                <TileMatrix>0</TileMatrix>
     54514                                                <MinTileRow>0</MinTileRow>
     54515                                                <MaxTileRow>0</MaxTileRow>
     54516                                                <MinTileCol>0</MinTileCol>
     54517                                                <MaxTileCol>0</MaxTileCol>
     54518                                        </TileMatrixLimits>
     54519                                        <TileMatrixLimits>
     54520                                                <TileMatrix>1</TileMatrix>
     54521                                                <MinTileRow>0</MinTileRow>
     54522                                                <MaxTileRow>0</MaxTileRow>
     54523                                                <MinTileCol>1</MinTileCol>
     54524                                                <MaxTileCol>1</MaxTileCol>
     54525                                        </TileMatrixLimits>
     54526                                        <TileMatrixLimits>
     54527                                                <TileMatrix>10</TileMatrix>
     54528                                                <MinTileRow>368</MinTileRow>
     54529                                                <MaxTileRow>369</MaxTileRow>
     54530                                                <MinTileCol>516</MinTileCol>
     54531                                                <MaxTileCol>517</MaxTileCol>
     54532                                        </TileMatrixLimits>
     54533                                        <TileMatrixLimits>
     54534                                                <TileMatrix>11</TileMatrix>
     54535                                                <MinTileRow>737</MinTileRow>
     54536                                                <MaxTileRow>739</MaxTileRow>
     54537                                                <MinTileCol>1033</MinTileCol>
     54538                                                <MaxTileCol>1034</MaxTileCol>
     54539                                        </TileMatrixLimits>
     54540                                        <TileMatrixLimits>
     54541                                                <TileMatrix>12</TileMatrix>
     54542                                                <MinTileRow>1475</MinTileRow>
     54543                                                <MaxTileRow>1478</MaxTileRow>
     54544                                                <MinTileCol>2066</MinTileCol>
     54545                                                <MaxTileCol>2069</MaxTileCol>
     54546                                        </TileMatrixLimits>
     54547                                        <TileMatrixLimits>
     54548                                                <TileMatrix>13</TileMatrix>
     54549                                                <MinTileRow>2951</MinTileRow>
     54550                                                <MaxTileRow>2957</MaxTileRow>
     54551                                                <MinTileCol>4133</MinTileCol>
     54552                                                <MaxTileCol>4139</MaxTileCol>
     54553                                        </TileMatrixLimits>
     54554                                        <TileMatrixLimits>
     54555                                                <TileMatrix>14</TileMatrix>
     54556                                                <MinTileRow>5902</MinTileRow>
     54557                                                <MaxTileRow>5914</MaxTileRow>
     54558                                                <MinTileCol>8267</MinTileCol>
     54559                                                <MaxTileCol>8279</MaxTileCol>
     54560                                        </TileMatrixLimits>
     54561                                        <TileMatrixLimits>
     54562                                                <TileMatrix>15</TileMatrix>
     54563                                                <MinTileRow>11804</MinTileRow>
     54564                                                <MaxTileRow>11829</MaxTileRow>
     54565                                                <MinTileCol>16534</MinTileCol>
     54566                                                <MaxTileCol>16559</MaxTileCol>
     54567                                        </TileMatrixLimits>
     54568                                        <TileMatrixLimits>
     54569                                                <TileMatrix>16</TileMatrix>
     54570                                                <MinTileRow>23609</MinTileRow>
     54571                                                <MaxTileRow>23658</MaxTileRow>
     54572                                                <MinTileCol>33069</MinTileCol>
     54573                                                <MaxTileCol>33118</MaxTileCol>
     54574                                        </TileMatrixLimits>
     54575                                        <TileMatrixLimits>
     54576                                                <TileMatrix>17</TileMatrix>
     54577                                                <MinTileRow>47219</MinTileRow>
     54578                                                <MaxTileRow>47317</MaxTileRow>
     54579                                                <MinTileCol>66139</MinTileCol>
     54580                                                <MaxTileCol>66237</MaxTileCol>
     54581                                        </TileMatrixLimits>
     54582                                        <TileMatrixLimits>
     54583                                                <TileMatrix>18</TileMatrix>
     54584                                                <MinTileRow>94438</MinTileRow>
     54585                                                <MaxTileRow>94635</MaxTileRow>
     54586                                                <MinTileCol>132279</MinTileCol>
     54587                                                <MaxTileCol>132475</MaxTileCol>
     54588                                        </TileMatrixLimits>
     54589                                        <TileMatrixLimits>
     54590                                                <TileMatrix>2</TileMatrix>
     54591                                                <MinTileRow>1</MinTileRow>
     54592                                                <MaxTileRow>1</MaxTileRow>
     54593                                                <MinTileCol>2</MinTileCol>
     54594                                                <MaxTileCol>2</MaxTileCol>
     54595                                        </TileMatrixLimits>
     54596                                        <TileMatrixLimits>
     54597                                                <TileMatrix>3</TileMatrix>
     54598                                                <MinTileRow>2</MinTileRow>
     54599                                                <MaxTileRow>2</MaxTileRow>
     54600                                                <MinTileCol>4</MinTileCol>
     54601                                                <MaxTileCol>4</MaxTileCol>
     54602                                        </TileMatrixLimits>
     54603                                        <TileMatrixLimits>
     54604                                                <TileMatrix>4</TileMatrix>
     54605                                                <MinTileRow>5</MinTileRow>
     54606                                                <MaxTileRow>5</MaxTileRow>
     54607                                                <MinTileCol>8</MinTileCol>
     54608                                                <MaxTileCol>8</MaxTileCol>
     54609                                        </TileMatrixLimits>
     54610                                        <TileMatrixLimits>
     54611                                                <TileMatrix>5</TileMatrix>
     54612                                                <MinTileRow>11</MinTileRow>
     54613                                                <MaxTileRow>11</MaxTileRow>
     54614                                                <MinTileCol>16</MinTileCol>
     54615                                                <MaxTileCol>16</MaxTileCol>
     54616                                        </TileMatrixLimits>
     54617                                        <TileMatrixLimits>
     54618                                                <TileMatrix>6</TileMatrix>
     54619                                                <MinTileRow>23</MinTileRow>
     54620                                                <MaxTileRow>23</MaxTileRow>
     54621                                                <MinTileCol>32</MinTileCol>
     54622                                                <MaxTileCol>32</MaxTileCol>
     54623                                        </TileMatrixLimits>
     54624                                        <TileMatrixLimits>
     54625                                                <TileMatrix>7</TileMatrix>
     54626                                                <MinTileRow>46</MinTileRow>
     54627                                                <MaxTileRow>46</MaxTileRow>
     54628                                                <MinTileCol>64</MinTileCol>
     54629                                                <MaxTileCol>64</MaxTileCol>
     54630                                        </TileMatrixLimits>
     54631                                        <TileMatrixLimits>
     54632                                                <TileMatrix>8</TileMatrix>
     54633                                                <MinTileRow>92</MinTileRow>
     54634                                                <MaxTileRow>92</MaxTileRow>
     54635                                                <MinTileCol>129</MinTileCol>
     54636                                                <MaxTileCol>129</MaxTileCol>
     54637                                        </TileMatrixLimits>
     54638                                        <TileMatrixLimits>
     54639                                                <TileMatrix>9</TileMatrix>
     54640                                                <MinTileRow>184</MinTileRow>
     54641                                                <MaxTileRow>184</MaxTileRow>
     54642                                                <MinTileCol>258</MinTileCol>
     54643                                                <MaxTileCol>258</MaxTileCol>
     54644                                        </TileMatrixLimits>
     54645                                </TileMatrixSetLimits>
     54646                        </TileMatrixSetLink>
     54647                </Layer>
     54648                <Layer>
     54649                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54650                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54651                        <ows:Keywords>
     54652                                <ows:Keyword>Photographies</ows:Keyword>
     54653                        </ows:Keywords>
     54654                        <ows:WGS84BoundingBox>
     54655                                <ows:LowerCorner>1.87378 44.6394</ows:LowerCorner>
     54656                                <ows:UpperCorner>2.14252 44.8398</ows:UpperCorner>
     54657                        </ows:WGS84BoundingBox>
     54658                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38949700</ows:Identifier>
     54659                        <Style isDefault="true">
     54660                                <ows:Title>Données Brutes</ows:Title>
     54661                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54662                                <ows:Keywords>
     54663                                        <ows:Keyword>Défaut</ows:Keyword>
     54664                                </ows:Keywords>
     54665                                <ows:Identifier>normal</ows:Identifier>
     54666                                <LegendURL format="image/jpeg" height="200"
     54667                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54668                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54669                        </Style>
     54670                        <Format>image/jpeg</Format>
     54671                        <TileMatrixSetLink>
     54672                                <TileMatrixSet>PM</TileMatrixSet>
     54673                                <TileMatrixSetLimits>
     54674                                        <TileMatrixLimits>
     54675                                                <TileMatrix>0</TileMatrix>
     54676                                                <MinTileRow>0</MinTileRow>
     54677                                                <MaxTileRow>0</MaxTileRow>
     54678                                                <MinTileCol>0</MinTileCol>
     54679                                                <MaxTileCol>0</MaxTileCol>
     54680                                        </TileMatrixLimits>
     54681                                        <TileMatrixLimits>
     54682                                                <TileMatrix>1</TileMatrix>
     54683                                                <MinTileRow>0</MinTileRow>
     54684                                                <MaxTileRow>0</MaxTileRow>
     54685                                                <MinTileCol>1</MinTileCol>
     54686                                                <MaxTileCol>1</MaxTileCol>
     54687                                        </TileMatrixLimits>
     54688                                        <TileMatrixLimits>
     54689                                                <TileMatrix>10</TileMatrix>
     54690                                                <MinTileRow>369</MinTileRow>
     54691                                                <MaxTileRow>369</MaxTileRow>
     54692                                                <MinTileCol>517</MinTileCol>
     54693                                                <MaxTileCol>518</MaxTileCol>
     54694                                        </TileMatrixLimits>
     54695                                        <TileMatrixLimits>
     54696                                                <TileMatrix>11</TileMatrix>
     54697                                                <MinTileRow>738</MinTileRow>
     54698                                                <MaxTileRow>739</MaxTileRow>
     54699                                                <MinTileCol>1034</MinTileCol>
     54700                                                <MaxTileCol>1036</MaxTileCol>
     54701                                        </TileMatrixLimits>
     54702                                        <TileMatrixLimits>
     54703                                                <TileMatrix>12</TileMatrix>
     54704                                                <MinTileRow>1476</MinTileRow>
     54705                                                <MaxTileRow>1479</MaxTileRow>
     54706                                                <MinTileCol>2069</MinTileCol>
     54707                                                <MaxTileCol>2072</MaxTileCol>
     54708                                        </TileMatrixLimits>
     54709                                        <TileMatrixLimits>
     54710                                                <TileMatrix>13</TileMatrix>
     54711                                                <MinTileRow>2952</MinTileRow>
     54712                                                <MaxTileRow>2958</MaxTileRow>
     54713                                                <MinTileCol>4138</MinTileCol>
     54714                                                <MaxTileCol>4144</MaxTileCol>
     54715                                        </TileMatrixLimits>
     54716                                        <TileMatrixLimits>
     54717                                                <TileMatrix>14</TileMatrix>
     54718                                                <MinTileRow>5904</MinTileRow>
     54719                                                <MaxTileRow>5916</MaxTileRow>
     54720                                                <MinTileCol>8277</MinTileCol>
     54721                                                <MaxTileCol>8289</MaxTileCol>
     54722                                        </TileMatrixLimits>
     54723                                        <TileMatrixLimits>
     54724                                                <TileMatrix>15</TileMatrix>
     54725                                                <MinTileRow>11808</MinTileRow>
     54726                                                <MaxTileRow>11833</MaxTileRow>
     54727                                                <MinTileCol>16554</MinTileCol>
     54728                                                <MaxTileCol>16579</MaxTileCol>
     54729                                        </TileMatrixLimits>
     54730                                        <TileMatrixLimits>
     54731                                                <TileMatrix>16</TileMatrix>
     54732                                                <MinTileRow>23616</MinTileRow>
     54733                                                <MaxTileRow>23667</MaxTileRow>
     54734                                                <MinTileCol>33109</MinTileCol>
     54735                                                <MaxTileCol>33158</MaxTileCol>
     54736                                        </TileMatrixLimits>
     54737                                        <TileMatrixLimits>
     54738                                                <TileMatrix>17</TileMatrix>
     54739                                                <MinTileRow>47232</MinTileRow>
     54740                                                <MaxTileRow>47334</MaxTileRow>
     54741                                                <MinTileCol>66218</MinTileCol>
     54742                                                <MaxTileCol>66316</MaxTileCol>
     54743                                        </TileMatrixLimits>
     54744                                        <TileMatrixLimits>
     54745                                                <TileMatrix>18</TileMatrix>
     54746                                                <MinTileRow>94464</MinTileRow>
     54747                                                <MaxTileRow>94669</MaxTileRow>
     54748                                                <MinTileCol>132436</MinTileCol>
     54749                                                <MaxTileCol>132632</MaxTileCol>
     54750                                        </TileMatrixLimits>
     54751                                        <TileMatrixLimits>
     54752                                                <TileMatrix>2</TileMatrix>
     54753                                                <MinTileRow>1</MinTileRow>
     54754                                                <MaxTileRow>1</MaxTileRow>
     54755                                                <MinTileCol>2</MinTileCol>
     54756                                                <MaxTileCol>2</MaxTileCol>
     54757                                        </TileMatrixLimits>
     54758                                        <TileMatrixLimits>
     54759                                                <TileMatrix>3</TileMatrix>
     54760                                                <MinTileRow>2</MinTileRow>
     54761                                                <MaxTileRow>2</MaxTileRow>
     54762                                                <MinTileCol>4</MinTileCol>
     54763                                                <MaxTileCol>4</MaxTileCol>
     54764                                        </TileMatrixLimits>
     54765                                        <TileMatrixLimits>
     54766                                                <TileMatrix>4</TileMatrix>
     54767                                                <MinTileRow>5</MinTileRow>
     54768                                                <MaxTileRow>5</MaxTileRow>
     54769                                                <MinTileCol>8</MinTileCol>
     54770                                                <MaxTileCol>8</MaxTileCol>
     54771                                        </TileMatrixLimits>
     54772                                        <TileMatrixLimits>
     54773                                                <TileMatrix>5</TileMatrix>
     54774                                                <MinTileRow>11</MinTileRow>
     54775                                                <MaxTileRow>11</MaxTileRow>
     54776                                                <MinTileCol>16</MinTileCol>
     54777                                                <MaxTileCol>16</MaxTileCol>
     54778                                        </TileMatrixLimits>
     54779                                        <TileMatrixLimits>
     54780                                                <TileMatrix>6</TileMatrix>
     54781                                                <MinTileRow>23</MinTileRow>
     54782                                                <MaxTileRow>23</MaxTileRow>
     54783                                                <MinTileCol>32</MinTileCol>
     54784                                                <MaxTileCol>32</MaxTileCol>
     54785                                        </TileMatrixLimits>
     54786                                        <TileMatrixLimits>
     54787                                                <TileMatrix>7</TileMatrix>
     54788                                                <MinTileRow>46</MinTileRow>
     54789                                                <MaxTileRow>46</MaxTileRow>
     54790                                                <MinTileCol>64</MinTileCol>
     54791                                                <MaxTileCol>64</MaxTileCol>
     54792                                        </TileMatrixLimits>
     54793                                        <TileMatrixLimits>
     54794                                                <TileMatrix>8</TileMatrix>
     54795                                                <MinTileRow>92</MinTileRow>
     54796                                                <MaxTileRow>92</MaxTileRow>
     54797                                                <MinTileCol>129</MinTileCol>
     54798                                                <MaxTileCol>129</MaxTileCol>
     54799                                        </TileMatrixLimits>
     54800                                        <TileMatrixLimits>
     54801                                                <TileMatrix>9</TileMatrix>
     54802                                                <MinTileRow>184</MinTileRow>
     54803                                                <MaxTileRow>184</MaxTileRow>
     54804                                                <MinTileCol>258</MinTileCol>
     54805                                                <MaxTileCol>259</MaxTileCol>
     54806                                        </TileMatrixLimits>
     54807                                </TileMatrixSetLimits>
     54808                        </TileMatrixSetLink>
     54809                </Layer>
     54810                <Layer>
     54811                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54812                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54813                        <ows:Keywords>
     54814                                <ows:Keyword>Photographies</ows:Keyword>
     54815                        </ows:Keywords>
     54816                        <ows:WGS84BoundingBox>
     54817                                <ows:LowerCorner>2.31051 43.6349</ows:LowerCorner>
     54818                                <ows:UpperCorner>2.57878 44.3112</ows:UpperCorner>
     54819                        </ows:WGS84BoundingBox>
     54820                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38958951</ows:Identifier>
     54821                        <Style isDefault="true">
     54822                                <ows:Title>Données Brutes</ows:Title>
     54823                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54824                                <ows:Keywords>
     54825                                        <ows:Keyword>Défaut</ows:Keyword>
     54826                                </ows:Keywords>
     54827                                <ows:Identifier>normal</ows:Identifier>
     54828                                <LegendURL format="image/jpeg" height="200"
     54829                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54830                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54831                        </Style>
     54832                        <Format>image/jpeg</Format>
     54833                        <TileMatrixSetLink>
     54834                                <TileMatrixSet>PM</TileMatrixSet>
     54835                                <TileMatrixSetLimits>
     54836                                        <TileMatrixLimits>
     54837                                                <TileMatrix>0</TileMatrix>
     54838                                                <MinTileRow>0</MinTileRow>
     54839                                                <MaxTileRow>0</MaxTileRow>
     54840                                                <MinTileCol>0</MinTileCol>
     54841                                                <MaxTileCol>0</MaxTileCol>
     54842                                        </TileMatrixLimits>
     54843                                        <TileMatrixLimits>
     54844                                                <TileMatrix>1</TileMatrix>
     54845                                                <MinTileRow>0</MinTileRow>
     54846                                                <MaxTileRow>0</MaxTileRow>
     54847                                                <MinTileCol>1</MinTileCol>
     54848                                                <MaxTileCol>1</MaxTileCol>
     54849                                        </TileMatrixLimits>
     54850                                        <TileMatrixLimits>
     54851                                                <TileMatrix>10</TileMatrix>
     54852                                                <MinTileRow>371</MinTileRow>
     54853                                                <MaxTileRow>373</MaxTileRow>
     54854                                                <MinTileCol>518</MinTileCol>
     54855                                                <MaxTileCol>519</MaxTileCol>
     54856                                        </TileMatrixLimits>
     54857                                        <TileMatrixLimits>
     54858                                                <TileMatrix>11</TileMatrix>
     54859                                                <MinTileRow>742</MinTileRow>
     54860                                                <MaxTileRow>747</MaxTileRow>
     54861                                                <MinTileCol>1037</MinTileCol>
     54862                                                <MaxTileCol>1038</MaxTileCol>
     54863                                        </TileMatrixLimits>
     54864                                        <TileMatrixLimits>
     54865                                                <TileMatrix>12</TileMatrix>
     54866                                                <MinTileRow>1484</MinTileRow>
     54867                                                <MaxTileRow>1495</MaxTileRow>
     54868                                                <MinTileCol>2074</MinTileCol>
     54869                                                <MaxTileCol>2077</MaxTileCol>
     54870                                        </TileMatrixLimits>
     54871                                        <TileMatrixLimits>
     54872                                                <TileMatrix>13</TileMatrix>
     54873                                                <MinTileRow>2968</MinTileRow>
     54874                                                <MaxTileRow>2990</MaxTileRow>
     54875                                                <MinTileCol>4148</MinTileCol>
     54876                                                <MaxTileCol>4154</MaxTileCol>
     54877                                        </TileMatrixLimits>
     54878                                        <TileMatrixLimits>
     54879                                                <TileMatrix>14</TileMatrix>
     54880                                                <MinTileRow>5937</MinTileRow>
     54881                                                <MaxTileRow>5980</MaxTileRow>
     54882                                                <MinTileCol>8297</MinTileCol>
     54883                                                <MaxTileCol>8309</MaxTileCol>
     54884                                        </TileMatrixLimits>
     54885                                        <TileMatrixLimits>
     54886                                                <TileMatrix>15</TileMatrix>
     54887                                                <MinTileRow>11875</MinTileRow>
     54888                                                <MaxTileRow>11961</MaxTileRow>
     54889                                                <MinTileCol>16594</MinTileCol>
     54890                                                <MaxTileCol>16618</MaxTileCol>
     54891                                        </TileMatrixLimits>
     54892                                        <TileMatrixLimits>
     54893                                                <TileMatrix>16</TileMatrix>
     54894                                                <MinTileRow>23751</MinTileRow>
     54895                                                <MaxTileRow>23922</MaxTileRow>
     54896                                                <MinTileCol>33188</MinTileCol>
     54897                                                <MaxTileCol>33237</MaxTileCol>
     54898                                        </TileMatrixLimits>
     54899                                        <TileMatrixLimits>
     54900                                                <TileMatrix>17</TileMatrix>
     54901                                                <MinTileRow>47502</MinTileRow>
     54902                                                <MaxTileRow>47844</MaxTileRow>
     54903                                                <MinTileCol>66377</MinTileCol>
     54904                                                <MaxTileCol>66474</MaxTileCol>
     54905                                        </TileMatrixLimits>
     54906                                        <TileMatrixLimits>
     54907                                                <TileMatrix>18</TileMatrix>
     54908                                                <MinTileRow>95004</MinTileRow>
     54909                                                <MaxTileRow>95689</MaxTileRow>
     54910                                                <MinTileCol>132754</MinTileCol>
     54911                                                <MaxTileCol>132949</MaxTileCol>
     54912                                        </TileMatrixLimits>
     54913                                        <TileMatrixLimits>
     54914                                                <TileMatrix>2</TileMatrix>
     54915                                                <MinTileRow>1</MinTileRow>
     54916                                                <MaxTileRow>1</MaxTileRow>
     54917                                                <MinTileCol>2</MinTileCol>
     54918                                                <MaxTileCol>2</MaxTileCol>
     54919                                        </TileMatrixLimits>
     54920                                        <TileMatrixLimits>
     54921                                                <TileMatrix>3</TileMatrix>
     54922                                                <MinTileRow>2</MinTileRow>
     54923                                                <MaxTileRow>2</MaxTileRow>
     54924                                                <MinTileCol>4</MinTileCol>
     54925                                                <MaxTileCol>4</MaxTileCol>
     54926                                        </TileMatrixLimits>
     54927                                        <TileMatrixLimits>
     54928                                                <TileMatrix>4</TileMatrix>
     54929                                                <MinTileRow>5</MinTileRow>
     54930                                                <MaxTileRow>5</MaxTileRow>
     54931                                                <MinTileCol>8</MinTileCol>
     54932                                                <MaxTileCol>8</MaxTileCol>
     54933                                        </TileMatrixLimits>
     54934                                        <TileMatrixLimits>
     54935                                                <TileMatrix>5</TileMatrix>
     54936                                                <MinTileRow>11</MinTileRow>
     54937                                                <MaxTileRow>11</MaxTileRow>
     54938                                                <MinTileCol>16</MinTileCol>
     54939                                                <MaxTileCol>16</MaxTileCol>
     54940                                        </TileMatrixLimits>
     54941                                        <TileMatrixLimits>
     54942                                                <TileMatrix>6</TileMatrix>
     54943                                                <MinTileRow>23</MinTileRow>
     54944                                                <MaxTileRow>23</MaxTileRow>
     54945                                                <MinTileCol>32</MinTileCol>
     54946                                                <MaxTileCol>32</MaxTileCol>
     54947                                        </TileMatrixLimits>
     54948                                        <TileMatrixLimits>
     54949                                                <TileMatrix>7</TileMatrix>
     54950                                                <MinTileRow>46</MinTileRow>
     54951                                                <MaxTileRow>46</MaxTileRow>
     54952                                                <MinTileCol>64</MinTileCol>
     54953                                                <MaxTileCol>64</MaxTileCol>
     54954                                        </TileMatrixLimits>
     54955                                        <TileMatrixLimits>
     54956                                                <TileMatrix>8</TileMatrix>
     54957                                                <MinTileRow>92</MinTileRow>
     54958                                                <MaxTileRow>93</MaxTileRow>
     54959                                                <MinTileCol>129</MinTileCol>
     54960                                                <MaxTileCol>129</MaxTileCol>
     54961                                        </TileMatrixLimits>
     54962                                        <TileMatrixLimits>
     54963                                                <TileMatrix>9</TileMatrix>
     54964                                                <MinTileRow>185</MinTileRow>
     54965                                                <MaxTileRow>186</MaxTileRow>
     54966                                                <MinTileCol>259</MinTileCol>
     54967                                                <MaxTileCol>259</MaxTileCol>
     54968                                        </TileMatrixLimits>
     54969                                </TileMatrixSetLimits>
     54970                        </TileMatrixSetLink>
     54971                </Layer>
     54972                <Layer>
     54973                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     54974                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     54975                        <ows:Keywords>
     54976                                <ows:Keyword>Photographies</ows:Keyword>
     54977                        </ows:Keywords>
     54978                        <ows:WGS84BoundingBox>
     54979                                <ows:LowerCorner>2.16762 43.6069</ows:LowerCorner>
     54980                                <ows:UpperCorner>2.43039 43.7975</ows:UpperCorner>
     54981                        </ows:WGS84BoundingBox>
     54982                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38976195</ows:Identifier>
     54983                        <Style isDefault="true">
     54984                                <ows:Title>Données Brutes</ows:Title>
     54985                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     54986                                <ows:Keywords>
     54987                                        <ows:Keyword>Défaut</ows:Keyword>
     54988                                </ows:Keywords>
     54989                                <ows:Identifier>normal</ows:Identifier>
     54990                                <LegendURL format="image/jpeg" height="200"
     54991                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     54992                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     54993                        </Style>
     54994                        <Format>image/jpeg</Format>
     54995                        <TileMatrixSetLink>
     54996                                <TileMatrixSet>PM</TileMatrixSet>
     54997                                <TileMatrixSetLimits>
     54998                                        <TileMatrixLimits>
     54999                                                <TileMatrix>0</TileMatrix>
     55000                                                <MinTileRow>0</MinTileRow>
     55001                                                <MaxTileRow>0</MaxTileRow>
     55002                                                <MinTileCol>0</MinTileCol>
     55003                                                <MaxTileCol>0</MaxTileCol>
     55004                                        </TileMatrixLimits>
     55005                                        <TileMatrixLimits>
     55006                                                <TileMatrix>1</TileMatrix>
     55007                                                <MinTileRow>0</MinTileRow>
     55008                                                <MaxTileRow>0</MaxTileRow>
     55009                                                <MinTileCol>1</MinTileCol>
     55010                                                <MaxTileCol>1</MaxTileCol>
     55011                                        </TileMatrixLimits>
     55012                                        <TileMatrixLimits>
     55013                                                <TileMatrix>10</TileMatrix>
     55014                                                <MinTileRow>373</MinTileRow>
     55015                                                <MaxTileRow>373</MaxTileRow>
     55016                                                <MinTileCol>518</MinTileCol>
     55017                                                <MaxTileCol>518</MaxTileCol>
     55018                                        </TileMatrixLimits>
     55019                                        <TileMatrixLimits>
     55020                                                <TileMatrix>11</TileMatrix>
     55021                                                <MinTileRow>746</MinTileRow>
     55022                                                <MaxTileRow>747</MaxTileRow>
     55023                                                <MinTileCol>1036</MinTileCol>
     55024                                                <MaxTileCol>1037</MaxTileCol>
     55025                                        </TileMatrixLimits>
     55026                                        <TileMatrixLimits>
     55027                                                <TileMatrix>12</TileMatrix>
     55028                                                <MinTileRow>1492</MinTileRow>
     55029                                                <MaxTileRow>1495</MaxTileRow>
     55030                                                <MinTileCol>2072</MinTileCol>
     55031                                                <MaxTileCol>2075</MaxTileCol>
     55032                                        </TileMatrixLimits>
     55033                                        <TileMatrixLimits>
     55034                                                <TileMatrix>13</TileMatrix>
     55035                                                <MinTileRow>2985</MinTileRow>
     55036                                                <MaxTileRow>2991</MaxTileRow>
     55037                                                <MinTileCol>4145</MinTileCol>
     55038                                                <MaxTileCol>4151</MaxTileCol>
     55039                                        </TileMatrixLimits>
     55040                                        <TileMatrixLimits>
     55041                                                <TileMatrix>14</TileMatrix>
     55042                                                <MinTileRow>5970</MinTileRow>
     55043                                                <MaxTileRow>5982</MaxTileRow>
     55044                                                <MinTileCol>8290</MinTileCol>
     55045                                                <MaxTileCol>8302</MaxTileCol>
     55046                                        </TileMatrixLimits>
     55047                                        <TileMatrixLimits>
     55048                                                <TileMatrix>15</TileMatrix>
     55049                                                <MinTileRow>11940</MinTileRow>
     55050                                                <MaxTileRow>11964</MaxTileRow>
     55051                                                <MinTileCol>16581</MinTileCol>
     55052                                                <MaxTileCol>16605</MaxTileCol>
     55053                                        </TileMatrixLimits>
     55054                                        <TileMatrixLimits>
     55055                                                <TileMatrix>16</TileMatrix>
     55056                                                <MinTileRow>23881</MinTileRow>
     55057                                                <MaxTileRow>23929</MaxTileRow>
     55058                                                <MinTileCol>33162</MinTileCol>
     55059                                                <MaxTileCol>33210</MaxTileCol>
     55060                                        </TileMatrixLimits>
     55061                                        <TileMatrixLimits>
     55062                                                <TileMatrix>17</TileMatrix>
     55063                                                <MinTileRow>47762</MinTileRow>
     55064                                                <MaxTileRow>47858</MaxTileRow>
     55065                                                <MinTileCol>66325</MinTileCol>
     55066                                                <MaxTileCol>66420</MaxTileCol>
     55067                                        </TileMatrixLimits>
     55068                                        <TileMatrixLimits>
     55069                                                <TileMatrix>18</TileMatrix>
     55070                                                <MinTileRow>95525</MinTileRow>
     55071                                                <MaxTileRow>95717</MaxTileRow>
     55072                                                <MinTileCol>132650</MinTileCol>
     55073                                                <MaxTileCol>132841</MaxTileCol>
     55074                                        </TileMatrixLimits>
     55075                                        <TileMatrixLimits>
     55076                                                <TileMatrix>2</TileMatrix>
     55077                                                <MinTileRow>1</MinTileRow>
     55078                                                <MaxTileRow>1</MaxTileRow>
     55079                                                <MinTileCol>2</MinTileCol>
     55080                                                <MaxTileCol>2</MaxTileCol>
     55081                                        </TileMatrixLimits>
     55082                                        <TileMatrixLimits>
     55083                                                <TileMatrix>3</TileMatrix>
     55084                                                <MinTileRow>2</MinTileRow>
     55085                                                <MaxTileRow>2</MaxTileRow>
     55086                                                <MinTileCol>4</MinTileCol>
     55087                                                <MaxTileCol>4</MaxTileCol>
     55088                                        </TileMatrixLimits>
     55089                                        <TileMatrixLimits>
     55090                                                <TileMatrix>4</TileMatrix>
     55091                                                <MinTileRow>5</MinTileRow>
     55092                                                <MaxTileRow>5</MaxTileRow>
     55093                                                <MinTileCol>8</MinTileCol>
     55094                                                <MaxTileCol>8</MaxTileCol>
     55095                                        </TileMatrixLimits>
     55096                                        <TileMatrixLimits>
     55097                                                <TileMatrix>5</TileMatrix>
     55098                                                <MinTileRow>11</MinTileRow>
     55099                                                <MaxTileRow>11</MaxTileRow>
     55100                                                <MinTileCol>16</MinTileCol>
     55101                                                <MaxTileCol>16</MaxTileCol>
     55102                                        </TileMatrixLimits>
     55103                                        <TileMatrixLimits>
     55104                                                <TileMatrix>6</TileMatrix>
     55105                                                <MinTileRow>23</MinTileRow>
     55106                                                <MaxTileRow>23</MaxTileRow>
     55107                                                <MinTileCol>32</MinTileCol>
     55108                                                <MaxTileCol>32</MaxTileCol>
     55109                                        </TileMatrixLimits>
     55110                                        <TileMatrixLimits>
     55111                                                <TileMatrix>7</TileMatrix>
     55112                                                <MinTileRow>46</MinTileRow>
     55113                                                <MaxTileRow>46</MaxTileRow>
     55114                                                <MinTileCol>64</MinTileCol>
     55115                                                <MaxTileCol>64</MaxTileCol>
     55116                                        </TileMatrixLimits>
     55117                                        <TileMatrixLimits>
     55118                                                <TileMatrix>8</TileMatrix>
     55119                                                <MinTileRow>93</MinTileRow>
     55120                                                <MaxTileRow>93</MaxTileRow>
     55121                                                <MinTileCol>129</MinTileCol>
     55122                                                <MaxTileCol>129</MaxTileCol>
     55123                                        </TileMatrixLimits>
     55124                                        <TileMatrixLimits>
     55125                                                <TileMatrix>9</TileMatrix>
     55126                                                <MinTileRow>186</MinTileRow>
     55127                                                <MaxTileRow>186</MaxTileRow>
     55128                                                <MinTileCol>259</MinTileCol>
     55129                                                <MaxTileCol>259</MaxTileCol>
     55130                                        </TileMatrixLimits>
     55131                                </TileMatrixSetLimits>
     55132                        </TileMatrixSetLink>
     55133                </Layer>
     55134                <Layer>
     55135                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55136                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55137                        <ows:Keywords>
     55138                                <ows:Keyword>Photographies</ows:Keyword>
     55139                        </ows:Keywords>
     55140                        <ows:WGS84BoundingBox>
     55141                                <ows:LowerCorner>2.10565 43.5884</ows:LowerCorner>
     55142                                <ows:UpperCorner>2.36867 43.7882</ows:UpperCorner>
     55143                        </ows:WGS84BoundingBox>
     55144                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-08-30-38985569</ows:Identifier>
     55145                        <Style isDefault="true">
     55146                                <ows:Title>Données Brutes</ows:Title>
     55147                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55148                                <ows:Keywords>
     55149                                        <ows:Keyword>Défaut</ows:Keyword>
     55150                                </ows:Keywords>
     55151                                <ows:Identifier>normal</ows:Identifier>
     55152                                <LegendURL format="image/jpeg" height="200"
     55153                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55154                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55155                        </Style>
     55156                        <Format>image/jpeg</Format>
     55157                        <TileMatrixSetLink>
     55158                                <TileMatrixSet>PM</TileMatrixSet>
     55159                                <TileMatrixSetLimits>
     55160                                        <TileMatrixLimits>
     55161                                                <TileMatrix>0</TileMatrix>
     55162                                                <MinTileRow>0</MinTileRow>
     55163                                                <MaxTileRow>0</MaxTileRow>
     55164                                                <MinTileCol>0</MinTileCol>
     55165                                                <MaxTileCol>0</MaxTileCol>
     55166                                        </TileMatrixLimits>
     55167                                        <TileMatrixLimits>
     55168                                                <TileMatrix>1</TileMatrix>
     55169                                                <MinTileRow>0</MinTileRow>
     55170                                                <MaxTileRow>0</MaxTileRow>
     55171                                                <MinTileCol>1</MinTileCol>
     55172                                                <MaxTileCol>1</MaxTileCol>
     55173                                        </TileMatrixLimits>
     55174                                        <TileMatrixLimits>
     55175                                                <TileMatrix>10</TileMatrix>
     55176                                                <MinTileRow>373</MinTileRow>
     55177                                                <MaxTileRow>373</MaxTileRow>
     55178                                                <MinTileCol>517</MinTileCol>
     55179                                                <MaxTileCol>518</MaxTileCol>
     55180                                        </TileMatrixLimits>
     55181                                        <TileMatrixLimits>
     55182                                                <TileMatrix>11</TileMatrix>
     55183                                                <MinTileRow>746</MinTileRow>
     55184                                                <MaxTileRow>747</MaxTileRow>
     55185                                                <MinTileCol>1035</MinTileCol>
     55186                                                <MaxTileCol>1037</MaxTileCol>
     55187                                        </TileMatrixLimits>
     55188                                        <TileMatrixLimits>
     55189                                                <TileMatrix>12</TileMatrix>
     55190                                                <MinTileRow>1492</MinTileRow>
     55191                                                <MaxTileRow>1495</MaxTileRow>
     55192                                                <MinTileCol>2071</MinTileCol>
     55193                                                <MaxTileCol>2074</MaxTileCol>
     55194                                        </TileMatrixLimits>
     55195                                        <TileMatrixLimits>
     55196                                                <TileMatrix>13</TileMatrix>
     55197                                                <MinTileRow>2985</MinTileRow>
     55198                                                <MaxTileRow>2991</MaxTileRow>
     55199                                                <MinTileCol>4143</MinTileCol>
     55200                                                <MaxTileCol>4149</MaxTileCol>
     55201                                        </TileMatrixLimits>
     55202                                        <TileMatrixLimits>
     55203                                                <TileMatrix>14</TileMatrix>
     55204                                                <MinTileRow>5970</MinTileRow>
     55205                                                <MaxTileRow>5983</MaxTileRow>
     55206                                                <MinTileCol>8287</MinTileCol>
     55207                                                <MaxTileCol>8299</MaxTileCol>
     55208                                        </TileMatrixLimits>
     55209                                        <TileMatrixLimits>
     55210                                                <TileMatrix>15</TileMatrix>
     55211                                                <MinTileRow>11941</MinTileRow>
     55212                                                <MaxTileRow>11966</MaxTileRow>
     55213                                                <MinTileCol>16575</MinTileCol>
     55214                                                <MaxTileCol>16599</MaxTileCol>
     55215                                        </TileMatrixLimits>
     55216                                        <TileMatrixLimits>
     55217                                                <TileMatrix>16</TileMatrix>
     55218                                                <MinTileRow>23883</MinTileRow>
     55219                                                <MaxTileRow>23933</MaxTileRow>
     55220                                                <MinTileCol>33151</MinTileCol>
     55221                                                <MaxTileCol>33199</MaxTileCol>
     55222                                        </TileMatrixLimits>
     55223                                        <TileMatrixLimits>
     55224                                                <TileMatrix>17</TileMatrix>
     55225                                                <MinTileRow>47767</MinTileRow>
     55226                                                <MaxTileRow>47867</MaxTileRow>
     55227                                                <MinTileCol>66302</MinTileCol>
     55228                                                <MaxTileCol>66398</MaxTileCol>
     55229                                        </TileMatrixLimits>
     55230                                        <TileMatrixLimits>
     55231                                                <TileMatrix>18</TileMatrix>
     55232                                                <MinTileRow>95534</MinTileRow>
     55233                                                <MaxTileRow>95734</MaxTileRow>
     55234                                                <MinTileCol>132605</MinTileCol>
     55235                                                <MaxTileCol>132796</MaxTileCol>
     55236                                        </TileMatrixLimits>
     55237                                        <TileMatrixLimits>
     55238                                                <TileMatrix>2</TileMatrix>
     55239                                                <MinTileRow>1</MinTileRow>
     55240                                                <MaxTileRow>1</MaxTileRow>
     55241                                                <MinTileCol>2</MinTileCol>
     55242                                                <MaxTileCol>2</MaxTileCol>
     55243                                        </TileMatrixLimits>
     55244                                        <TileMatrixLimits>
     55245                                                <TileMatrix>3</TileMatrix>
     55246                                                <MinTileRow>2</MinTileRow>
     55247                                                <MaxTileRow>2</MaxTileRow>
     55248                                                <MinTileCol>4</MinTileCol>
     55249                                                <MaxTileCol>4</MaxTileCol>
     55250                                        </TileMatrixLimits>
     55251                                        <TileMatrixLimits>
     55252                                                <TileMatrix>4</TileMatrix>
     55253                                                <MinTileRow>5</MinTileRow>
     55254                                                <MaxTileRow>5</MaxTileRow>
     55255                                                <MinTileCol>8</MinTileCol>
     55256                                                <MaxTileCol>8</MaxTileCol>
     55257                                        </TileMatrixLimits>
     55258                                        <TileMatrixLimits>
     55259                                                <TileMatrix>5</TileMatrix>
     55260                                                <MinTileRow>11</MinTileRow>
     55261                                                <MaxTileRow>11</MaxTileRow>
     55262                                                <MinTileCol>16</MinTileCol>
     55263                                                <MaxTileCol>16</MaxTileCol>
     55264                                        </TileMatrixLimits>
     55265                                        <TileMatrixLimits>
     55266                                                <TileMatrix>6</TileMatrix>
     55267                                                <MinTileRow>23</MinTileRow>
     55268                                                <MaxTileRow>23</MaxTileRow>
     55269                                                <MinTileCol>32</MinTileCol>
     55270                                                <MaxTileCol>32</MaxTileCol>
     55271                                        </TileMatrixLimits>
     55272                                        <TileMatrixLimits>
     55273                                                <TileMatrix>7</TileMatrix>
     55274                                                <MinTileRow>46</MinTileRow>
     55275                                                <MaxTileRow>46</MaxTileRow>
     55276                                                <MinTileCol>64</MinTileCol>
     55277                                                <MaxTileCol>64</MaxTileCol>
     55278                                        </TileMatrixLimits>
     55279                                        <TileMatrixLimits>
     55280                                                <TileMatrix>8</TileMatrix>
     55281                                                <MinTileRow>93</MinTileRow>
     55282                                                <MaxTileRow>93</MaxTileRow>
     55283                                                <MinTileCol>129</MinTileCol>
     55284                                                <MaxTileCol>129</MaxTileCol>
     55285                                        </TileMatrixLimits>
     55286                                        <TileMatrixLimits>
     55287                                                <TileMatrix>9</TileMatrix>
     55288                                                <MinTileRow>186</MinTileRow>
     55289                                                <MaxTileRow>186</MaxTileRow>
     55290                                                <MinTileCol>258</MinTileCol>
     55291                                                <MaxTileCol>259</MaxTileCol>
     55292                                        </TileMatrixLimits>
     55293                                </TileMatrixSetLimits>
     55294                        </TileMatrixSetLink>
     55295                </Layer>
     55296                <Layer>
     55297                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55298                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55299                        <ows:Keywords>
     55300                                <ows:Keyword>Photographies</ows:Keyword>
     55301                        </ows:Keywords>
     55302                        <ows:WGS84BoundingBox>
     55303                                <ows:LowerCorner>0.991825 44.5369</ows:LowerCorner>
     55304                                <ows:UpperCorner>1.27538 44.7306</ows:UpperCorner>
     55305                        </ows:WGS84BoundingBox>
     55306                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-04-39628450</ows:Identifier>
     55307                        <Style isDefault="true">
     55308                                <ows:Title>Données Brutes</ows:Title>
     55309                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55310                                <ows:Keywords>
     55311                                        <ows:Keyword>Défaut</ows:Keyword>
     55312                                </ows:Keywords>
     55313                                <ows:Identifier>normal</ows:Identifier>
     55314                                <LegendURL format="image/jpeg" height="200"
     55315                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55316                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55317                        </Style>
     55318                        <Format>image/jpeg</Format>
     55319                        <TileMatrixSetLink>
     55320                                <TileMatrixSet>PM</TileMatrixSet>
     55321                                <TileMatrixSetLimits>
     55322                                        <TileMatrixLimits>
     55323                                                <TileMatrix>0</TileMatrix>
     55324                                                <MinTileRow>0</MinTileRow>
     55325                                                <MaxTileRow>0</MaxTileRow>
     55326                                                <MinTileCol>0</MinTileCol>
     55327                                                <MaxTileCol>0</MaxTileCol>
     55328                                        </TileMatrixLimits>
     55329                                        <TileMatrixLimits>
     55330                                                <TileMatrix>1</TileMatrix>
     55331                                                <MinTileRow>0</MinTileRow>
     55332                                                <MaxTileRow>0</MaxTileRow>
     55333                                                <MinTileCol>1</MinTileCol>
     55334                                                <MaxTileCol>1</MaxTileCol>
     55335                                        </TileMatrixLimits>
     55336                                        <TileMatrixLimits>
     55337                                                <TileMatrix>10</TileMatrix>
     55338                                                <MinTileRow>369</MinTileRow>
     55339                                                <MaxTileRow>370</MaxTileRow>
     55340                                                <MinTileCol>514</MinTileCol>
     55341                                                <MaxTileCol>515</MaxTileCol>
     55342                                        </TileMatrixLimits>
     55343                                        <TileMatrixLimits>
     55344                                                <TileMatrix>11</TileMatrix>
     55345                                                <MinTileRow>738</MinTileRow>
     55346                                                <MaxTileRow>740</MaxTileRow>
     55347                                                <MinTileCol>1029</MinTileCol>
     55348                                                <MaxTileCol>1031</MaxTileCol>
     55349                                        </TileMatrixLimits>
     55350                                        <TileMatrixLimits>
     55351                                                <TileMatrix>12</TileMatrix>
     55352                                                <MinTileRow>1477</MinTileRow>
     55353                                                <MaxTileRow>1480</MaxTileRow>
     55354                                                <MinTileCol>2059</MinTileCol>
     55355                                                <MaxTileCol>2062</MaxTileCol>
     55356                                        </TileMatrixLimits>
     55357                                        <TileMatrixLimits>
     55358                                                <TileMatrix>13</TileMatrix>
     55359                                                <MinTileRow>2955</MinTileRow>
     55360                                                <MaxTileRow>2961</MaxTileRow>
     55361                                                <MinTileCol>4118</MinTileCol>
     55362                                                <MaxTileCol>4124</MaxTileCol>
     55363                                        </TileMatrixLimits>
     55364                                        <TileMatrixLimits>
     55365                                                <TileMatrix>14</TileMatrix>
     55366                                                <MinTileRow>5911</MinTileRow>
     55367                                                <MaxTileRow>5923</MaxTileRow>
     55368                                                <MinTileCol>8237</MinTileCol>
     55369                                                <MaxTileCol>8249</MaxTileCol>
     55370                                        </TileMatrixLimits>
     55371                                        <TileMatrixLimits>
     55372                                                <TileMatrix>15</TileMatrix>
     55373                                                <MinTileRow>11822</MinTileRow>
     55374                                                <MaxTileRow>11846</MaxTileRow>
     55375                                                <MinTileCol>16474</MinTileCol>
     55376                                                <MaxTileCol>16499</MaxTileCol>
     55377                                        </TileMatrixLimits>
     55378                                        <TileMatrixLimits>
     55379                                                <TileMatrix>16</TileMatrix>
     55380                                                <MinTileRow>23644</MinTileRow>
     55381                                                <MaxTileRow>23693</MaxTileRow>
     55382                                                <MinTileCol>32949</MinTileCol>
     55383                                                <MaxTileCol>32999</MaxTileCol>
     55384                                        </TileMatrixLimits>
     55385                                        <TileMatrixLimits>
     55386                                                <TileMatrix>17</TileMatrix>
     55387                                                <MinTileRow>47288</MinTileRow>
     55388                                                <MaxTileRow>47387</MaxTileRow>
     55389                                                <MinTileCol>65899</MinTileCol>
     55390                                                <MaxTileCol>65998</MaxTileCol>
     55391                                        </TileMatrixLimits>
     55392                                        <TileMatrixLimits>
     55393                                                <TileMatrix>18</TileMatrix>
     55394                                                <MinTileRow>94576</MinTileRow>
     55395                                                <MaxTileRow>94774</MaxTileRow>
     55396                                                <MinTileCol>131798</MinTileCol>
     55397                                                <MaxTileCol>131997</MaxTileCol>
     55398                                        </TileMatrixLimits>
     55399                                        <TileMatrixLimits>
     55400                                                <TileMatrix>2</TileMatrix>
     55401                                                <MinTileRow>1</MinTileRow>
     55402                                                <MaxTileRow>1</MaxTileRow>
     55403                                                <MinTileCol>2</MinTileCol>
     55404                                                <MaxTileCol>2</MaxTileCol>
     55405                                        </TileMatrixLimits>
     55406                                        <TileMatrixLimits>
     55407                                                <TileMatrix>3</TileMatrix>
     55408                                                <MinTileRow>2</MinTileRow>
     55409                                                <MaxTileRow>2</MaxTileRow>
     55410                                                <MinTileCol>4</MinTileCol>
     55411                                                <MaxTileCol>4</MaxTileCol>
     55412                                        </TileMatrixLimits>
     55413                                        <TileMatrixLimits>
     55414                                                <TileMatrix>4</TileMatrix>
     55415                                                <MinTileRow>5</MinTileRow>
     55416                                                <MaxTileRow>5</MaxTileRow>
     55417                                                <MinTileCol>8</MinTileCol>
     55418                                                <MaxTileCol>8</MaxTileCol>
     55419                                        </TileMatrixLimits>
     55420                                        <TileMatrixLimits>
     55421                                                <TileMatrix>5</TileMatrix>
     55422                                                <MinTileRow>11</MinTileRow>
     55423                                                <MaxTileRow>11</MaxTileRow>
     55424                                                <MinTileCol>16</MinTileCol>
     55425                                                <MaxTileCol>16</MaxTileCol>
     55426                                        </TileMatrixLimits>
     55427                                        <TileMatrixLimits>
     55428                                                <TileMatrix>6</TileMatrix>
     55429                                                <MinTileRow>23</MinTileRow>
     55430                                                <MaxTileRow>23</MaxTileRow>
     55431                                                <MinTileCol>32</MinTileCol>
     55432                                                <MaxTileCol>32</MaxTileCol>
     55433                                        </TileMatrixLimits>
     55434                                        <TileMatrixLimits>
     55435                                                <TileMatrix>7</TileMatrix>
     55436                                                <MinTileRow>46</MinTileRow>
     55437                                                <MaxTileRow>46</MaxTileRow>
     55438                                                <MinTileCol>64</MinTileCol>
     55439                                                <MaxTileCol>64</MaxTileCol>
     55440                                        </TileMatrixLimits>
     55441                                        <TileMatrixLimits>
     55442                                                <TileMatrix>8</TileMatrix>
     55443                                                <MinTileRow>92</MinTileRow>
     55444                                                <MaxTileRow>92</MaxTileRow>
     55445                                                <MinTileCol>128</MinTileCol>
     55446                                                <MaxTileCol>128</MaxTileCol>
     55447                                        </TileMatrixLimits>
     55448                                        <TileMatrixLimits>
     55449                                                <TileMatrix>9</TileMatrix>
     55450                                                <MinTileRow>184</MinTileRow>
     55451                                                <MaxTileRow>185</MaxTileRow>
     55452                                                <MinTileCol>257</MinTileCol>
     55453                                                <MaxTileCol>257</MaxTileCol>
     55454                                        </TileMatrixLimits>
     55455                                </TileMatrixSetLimits>
     55456                        </TileMatrixSetLink>
     55457                </Layer>
     55458                <Layer>
     55459                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55460                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55461                        <ows:Keywords>
     55462                                <ows:Keyword>Photographies</ows:Keyword>
     55463                        </ows:Keywords>
     55464                        <ows:WGS84BoundingBox>
     55465                                <ows:LowerCorner>2.08792 43.7772</ows:LowerCorner>
     55466                                <ows:UpperCorner>2.36659 44.1212</ows:UpperCorner>
     55467                        </ows:WGS84BoundingBox>
     55468                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-05-39225702</ows:Identifier>
     55469                        <Style isDefault="true">
     55470                                <ows:Title>Données Brutes</ows:Title>
     55471                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55472                                <ows:Keywords>
     55473                                        <ows:Keyword>Défaut</ows:Keyword>
     55474                                </ows:Keywords>
     55475                                <ows:Identifier>normal</ows:Identifier>
     55476                                <LegendURL format="image/jpeg" height="200"
     55477                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55478                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55479                        </Style>
     55480                        <Format>image/jpeg</Format>
     55481                        <TileMatrixSetLink>
     55482                                <TileMatrixSet>PM</TileMatrixSet>
     55483                                <TileMatrixSetLimits>
     55484                                        <TileMatrixLimits>
     55485                                                <TileMatrix>0</TileMatrix>
     55486                                                <MinTileRow>0</MinTileRow>
     55487                                                <MaxTileRow>0</MaxTileRow>
     55488                                                <MinTileCol>0</MinTileCol>
     55489                                                <MaxTileCol>0</MaxTileCol>
     55490                                        </TileMatrixLimits>
     55491                                        <TileMatrixLimits>
     55492                                                <TileMatrix>1</TileMatrix>
     55493                                                <MinTileRow>0</MinTileRow>
     55494                                                <MaxTileRow>0</MaxTileRow>
     55495                                                <MinTileCol>1</MinTileCol>
     55496                                                <MaxTileCol>1</MaxTileCol>
     55497                                        </TileMatrixLimits>
     55498                                        <TileMatrixLimits>
     55499                                                <TileMatrix>10</TileMatrix>
     55500                                                <MinTileRow>371</MinTileRow>
     55501                                                <MaxTileRow>373</MaxTileRow>
     55502                                                <MinTileCol>517</MinTileCol>
     55503                                                <MaxTileCol>518</MaxTileCol>
     55504                                        </TileMatrixLimits>
     55505                                        <TileMatrixLimits>
     55506                                                <TileMatrix>11</TileMatrix>
     55507                                                <MinTileRow>743</MinTileRow>
     55508                                                <MaxTileRow>746</MaxTileRow>
     55509                                                <MinTileCol>1035</MinTileCol>
     55510                                                <MaxTileCol>1037</MaxTileCol>
     55511                                        </TileMatrixLimits>
     55512                                        <TileMatrixLimits>
     55513                                                <TileMatrix>12</TileMatrix>
     55514                                                <MinTileRow>1487</MinTileRow>
     55515                                                <MaxTileRow>1492</MaxTileRow>
     55516                                                <MinTileCol>2071</MinTileCol>
     55517                                                <MaxTileCol>2074</MaxTileCol>
     55518                                        </TileMatrixLimits>
     55519                                        <TileMatrixLimits>
     55520                                                <TileMatrix>13</TileMatrix>
     55521                                                <MinTileRow>2974</MinTileRow>
     55522                                                <MaxTileRow>2985</MaxTileRow>
     55523                                                <MinTileCol>4143</MinTileCol>
     55524                                                <MaxTileCol>4149</MaxTileCol>
     55525                                        </TileMatrixLimits>
     55526                                        <TileMatrixLimits>
     55527                                                <TileMatrix>14</TileMatrix>
     55528                                                <MinTileRow>5949</MinTileRow>
     55529                                                <MaxTileRow>5971</MaxTileRow>
     55530                                                <MinTileCol>8287</MinTileCol>
     55531                                                <MaxTileCol>8299</MaxTileCol>
     55532                                        </TileMatrixLimits>
     55533                                        <TileMatrixLimits>
     55534                                                <TileMatrix>15</TileMatrix>
     55535                                                <MinTileRow>11899</MinTileRow>
     55536                                                <MaxTileRow>11943</MaxTileRow>
     55537                                                <MinTileCol>16574</MinTileCol>
     55538                                                <MaxTileCol>16599</MaxTileCol>
     55539                                        </TileMatrixLimits>
     55540                                        <TileMatrixLimits>
     55541                                                <TileMatrix>16</TileMatrix>
     55542                                                <MinTileRow>23799</MinTileRow>
     55543                                                <MaxTileRow>23886</MaxTileRow>
     55544                                                <MinTileCol>33148</MinTileCol>
     55545                                                <MaxTileCol>33198</MaxTileCol>
     55546                                        </TileMatrixLimits>
     55547                                        <TileMatrixLimits>
     55548                                                <TileMatrix>17</TileMatrix>
     55549                                                <MinTileRow>47598</MinTileRow>
     55550                                                <MaxTileRow>47772</MaxTileRow>
     55551                                                <MinTileCol>66297</MinTileCol>
     55552                                                <MaxTileCol>66397</MaxTileCol>
     55553                                        </TileMatrixLimits>
     55554                                        <TileMatrixLimits>
     55555                                                <TileMatrix>18</TileMatrix>
     55556                                                <MinTileRow>95197</MinTileRow>
     55557                                                <MaxTileRow>95545</MaxTileRow>
     55558                                                <MinTileCol>132594</MinTileCol>
     55559                                                <MaxTileCol>132794</MaxTileCol>
     55560                                        </TileMatrixLimits>
     55561                                        <TileMatrixLimits>
     55562                                                <TileMatrix>2</TileMatrix>
     55563                                                <MinTileRow>1</MinTileRow>
     55564                                                <MaxTileRow>1</MaxTileRow>
     55565                                                <MinTileCol>2</MinTileCol>
     55566                                                <MaxTileCol>2</MaxTileCol>
     55567                                        </TileMatrixLimits>
     55568                                        <TileMatrixLimits>
     55569                                                <TileMatrix>3</TileMatrix>
     55570                                                <MinTileRow>2</MinTileRow>
     55571                                                <MaxTileRow>2</MaxTileRow>
     55572                                                <MinTileCol>4</MinTileCol>
     55573                                                <MaxTileCol>4</MaxTileCol>
     55574                                        </TileMatrixLimits>
     55575                                        <TileMatrixLimits>
     55576                                                <TileMatrix>4</TileMatrix>
     55577                                                <MinTileRow>5</MinTileRow>
     55578                                                <MaxTileRow>5</MaxTileRow>
     55579                                                <MinTileCol>8</MinTileCol>
     55580                                                <MaxTileCol>8</MaxTileCol>
     55581                                        </TileMatrixLimits>
     55582                                        <TileMatrixLimits>
     55583                                                <TileMatrix>5</TileMatrix>
     55584                                                <MinTileRow>11</MinTileRow>
     55585                                                <MaxTileRow>11</MaxTileRow>
     55586                                                <MinTileCol>16</MinTileCol>
     55587                                                <MaxTileCol>16</MaxTileCol>
     55588                                        </TileMatrixLimits>
     55589                                        <TileMatrixLimits>
     55590                                                <TileMatrix>6</TileMatrix>
     55591                                                <MinTileRow>23</MinTileRow>
     55592                                                <MaxTileRow>23</MaxTileRow>
     55593                                                <MinTileCol>32</MinTileCol>
     55594                                                <MaxTileCol>32</MaxTileCol>
     55595                                        </TileMatrixLimits>
     55596                                        <TileMatrixLimits>
     55597                                                <TileMatrix>7</TileMatrix>
     55598                                                <MinTileRow>46</MinTileRow>
     55599                                                <MaxTileRow>46</MaxTileRow>
     55600                                                <MinTileCol>64</MinTileCol>
     55601                                                <MaxTileCol>64</MaxTileCol>
     55602                                        </TileMatrixLimits>
     55603                                        <TileMatrixLimits>
     55604                                                <TileMatrix>8</TileMatrix>
     55605                                                <MinTileRow>92</MinTileRow>
     55606                                                <MaxTileRow>93</MaxTileRow>
     55607                                                <MinTileCol>129</MinTileCol>
     55608                                                <MaxTileCol>129</MaxTileCol>
     55609                                        </TileMatrixLimits>
     55610                                        <TileMatrixLimits>
     55611                                                <TileMatrix>9</TileMatrix>
     55612                                                <MinTileRow>185</MinTileRow>
     55613                                                <MaxTileRow>186</MaxTileRow>
     55614                                                <MinTileCol>258</MinTileCol>
     55615                                                <MaxTileCol>259</MaxTileCol>
     55616                                        </TileMatrixLimits>
     55617                                </TileMatrixSetLimits>
     55618                        </TileMatrixSetLink>
     55619                </Layer>
     55620                <Layer>
     55621                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55622                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55623                        <ows:Keywords>
     55624                                <ows:Keyword>Photographies</ows:Keyword>
     55625                        </ows:Keywords>
     55626                        <ows:WGS84BoundingBox>
     55627                                <ows:LowerCorner>2.31051 44.1119</ows:LowerCorner>
     55628                                <ows:UpperCorner>2.57525 44.3112</ows:UpperCorner>
     55629                        </ows:WGS84BoundingBox>
     55630                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-25-38960320</ows:Identifier>
     55631                        <Style isDefault="true">
     55632                                <ows:Title>Données Brutes</ows:Title>
     55633                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55634                                <ows:Keywords>
     55635                                        <ows:Keyword>Défaut</ows:Keyword>
     55636                                </ows:Keywords>
     55637                                <ows:Identifier>normal</ows:Identifier>
     55638                                <LegendURL format="image/jpeg" height="200"
     55639                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55640                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55641                        </Style>
     55642                        <Format>image/jpeg</Format>
     55643                        <TileMatrixSetLink>
     55644                                <TileMatrixSet>PM</TileMatrixSet>
     55645                                <TileMatrixSetLimits>
     55646                                        <TileMatrixLimits>
     55647                                                <TileMatrix>0</TileMatrix>
     55648                                                <MinTileRow>0</MinTileRow>
     55649                                                <MaxTileRow>0</MaxTileRow>
     55650                                                <MinTileCol>0</MinTileCol>
     55651                                                <MaxTileCol>0</MaxTileCol>
     55652                                        </TileMatrixLimits>
     55653                                        <TileMatrixLimits>
     55654                                                <TileMatrix>1</TileMatrix>
     55655                                                <MinTileRow>0</MinTileRow>
     55656                                                <MaxTileRow>0</MaxTileRow>
     55657                                                <MinTileCol>1</MinTileCol>
     55658                                                <MaxTileCol>1</MaxTileCol>
     55659                                        </TileMatrixLimits>
     55660                                        <TileMatrixLimits>
     55661                                                <TileMatrix>10</TileMatrix>
     55662                                                <MinTileRow>371</MinTileRow>
     55663                                                <MaxTileRow>371</MaxTileRow>
     55664                                                <MinTileCol>518</MinTileCol>
     55665                                                <MaxTileCol>519</MaxTileCol>
     55666                                        </TileMatrixLimits>
     55667                                        <TileMatrixLimits>
     55668                                                <TileMatrix>11</TileMatrix>
     55669                                                <MinTileRow>742</MinTileRow>
     55670                                                <MaxTileRow>743</MaxTileRow>
     55671                                                <MinTileCol>1037</MinTileCol>
     55672                                                <MaxTileCol>1038</MaxTileCol>
     55673                                        </TileMatrixLimits>
     55674                                        <TileMatrixLimits>
     55675                                                <TileMatrix>12</TileMatrix>
     55676                                                <MinTileRow>1484</MinTileRow>
     55677                                                <MaxTileRow>1487</MaxTileRow>
     55678                                                <MinTileCol>2074</MinTileCol>
     55679                                                <MaxTileCol>2077</MaxTileCol>
     55680                                        </TileMatrixLimits>
     55681                                        <TileMatrixLimits>
     55682                                                <TileMatrix>13</TileMatrix>
     55683                                                <MinTileRow>2968</MinTileRow>
     55684                                                <MaxTileRow>2975</MaxTileRow>
     55685                                                <MinTileCol>4148</MinTileCol>
     55686                                                <MaxTileCol>4154</MaxTileCol>
     55687                                        </TileMatrixLimits>
     55688                                        <TileMatrixLimits>
     55689                                                <TileMatrix>14</TileMatrix>
     55690                                                <MinTileRow>5937</MinTileRow>
     55691                                                <MaxTileRow>5950</MaxTileRow>
     55692                                                <MinTileCol>8297</MinTileCol>
     55693                                                <MaxTileCol>8309</MaxTileCol>
     55694                                        </TileMatrixLimits>
     55695                                        <TileMatrixLimits>
     55696                                                <TileMatrix>15</TileMatrix>
     55697                                                <MinTileRow>11875</MinTileRow>
     55698                                                <MaxTileRow>11900</MaxTileRow>
     55699                                                <MinTileCol>16594</MinTileCol>
     55700                                                <MaxTileCol>16618</MaxTileCol>
     55701                                        </TileMatrixLimits>
     55702                                        <TileMatrixLimits>
     55703                                                <TileMatrix>16</TileMatrix>
     55704                                                <MinTileRow>23751</MinTileRow>
     55705                                                <MaxTileRow>23801</MaxTileRow>
     55706                                                <MinTileCol>33188</MinTileCol>
     55707                                                <MaxTileCol>33236</MaxTileCol>
     55708                                        </TileMatrixLimits>
     55709                                        <TileMatrixLimits>
     55710                                                <TileMatrix>17</TileMatrix>
     55711                                                <MinTileRow>47502</MinTileRow>
     55712                                                <MaxTileRow>47603</MaxTileRow>
     55713                                                <MinTileCol>66377</MinTileCol>
     55714                                                <MaxTileCol>66473</MaxTileCol>
     55715                                        </TileMatrixLimits>
     55716                                        <TileMatrixLimits>
     55717                                                <TileMatrix>18</TileMatrix>
     55718                                                <MinTileRow>95005</MinTileRow>
     55719                                                <MaxTileRow>95206</MaxTileRow>
     55720                                                <MinTileCol>132754</MinTileCol>
     55721                                                <MaxTileCol>132947</MaxTileCol>
     55722                                        </TileMatrixLimits>
     55723                                        <TileMatrixLimits>
     55724                                                <TileMatrix>2</TileMatrix>
     55725                                                <MinTileRow>1</MinTileRow>
     55726                                                <MaxTileRow>1</MaxTileRow>
     55727                                                <MinTileCol>2</MinTileCol>
     55728                                                <MaxTileCol>2</MaxTileCol>
     55729                                        </TileMatrixLimits>
     55730                                        <TileMatrixLimits>
     55731                                                <TileMatrix>3</TileMatrix>
     55732                                                <MinTileRow>2</MinTileRow>
     55733                                                <MaxTileRow>2</MaxTileRow>
     55734                                                <MinTileCol>4</MinTileCol>
     55735                                                <MaxTileCol>4</MaxTileCol>
     55736                                        </TileMatrixLimits>
     55737                                        <TileMatrixLimits>
     55738                                                <TileMatrix>4</TileMatrix>
     55739                                                <MinTileRow>5</MinTileRow>
     55740                                                <MaxTileRow>5</MaxTileRow>
     55741                                                <MinTileCol>8</MinTileCol>
     55742                                                <MaxTileCol>8</MaxTileCol>
     55743                                        </TileMatrixLimits>
     55744                                        <TileMatrixLimits>
     55745                                                <TileMatrix>5</TileMatrix>
     55746                                                <MinTileRow>11</MinTileRow>
     55747                                                <MaxTileRow>11</MaxTileRow>
     55748                                                <MinTileCol>16</MinTileCol>
     55749                                                <MaxTileCol>16</MaxTileCol>
     55750                                        </TileMatrixLimits>
     55751                                        <TileMatrixLimits>
     55752                                                <TileMatrix>6</TileMatrix>
     55753                                                <MinTileRow>23</MinTileRow>
     55754                                                <MaxTileRow>23</MaxTileRow>
     55755                                                <MinTileCol>32</MinTileCol>
     55756                                                <MaxTileCol>32</MaxTileCol>
     55757                                        </TileMatrixLimits>
     55758                                        <TileMatrixLimits>
     55759                                                <TileMatrix>7</TileMatrix>
     55760                                                <MinTileRow>46</MinTileRow>
     55761                                                <MaxTileRow>46</MaxTileRow>
     55762                                                <MinTileCol>64</MinTileCol>
     55763                                                <MaxTileCol>64</MaxTileCol>
     55764                                        </TileMatrixLimits>
     55765                                        <TileMatrixLimits>
     55766                                                <TileMatrix>8</TileMatrix>
     55767                                                <MinTileRow>92</MinTileRow>
     55768                                                <MaxTileRow>92</MaxTileRow>
     55769                                                <MinTileCol>129</MinTileCol>
     55770                                                <MaxTileCol>129</MaxTileCol>
     55771                                        </TileMatrixLimits>
     55772                                        <TileMatrixLimits>
     55773                                                <TileMatrix>9</TileMatrix>
     55774                                                <MinTileRow>185</MinTileRow>
     55775                                                <MaxTileRow>185</MaxTileRow>
     55776                                                <MinTileCol>259</MinTileCol>
     55777                                                <MaxTileCol>259</MaxTileCol>
     55778                                        </TileMatrixLimits>
     55779                                </TileMatrixSetLimits>
     55780                        </TileMatrixSetLink>
     55781                </Layer>
     55782                <Layer>
     55783                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55784                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55785                        <ows:Keywords>
     55786                                <ows:Keyword>Photographies</ows:Keyword>
     55787                        </ows:Keywords>
     55788                        <ows:WGS84BoundingBox>
     55789                                <ows:LowerCorner>2.52362 43.636</ows:LowerCorner>
     55790                                <ows:UpperCorner>2.80178 44.3118</ows:UpperCorner>
     55791                        </ows:WGS84BoundingBox>
     55792                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-09-25-38970319</ows:Identifier>
     55793                        <Style isDefault="true">
     55794                                <ows:Title>Données Brutes</ows:Title>
     55795                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55796                                <ows:Keywords>
     55797                                        <ows:Keyword>Défaut</ows:Keyword>
     55798                                </ows:Keywords>
     55799                                <ows:Identifier>normal</ows:Identifier>
     55800                                <LegendURL format="image/jpeg" height="200"
     55801                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55802                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55803                        </Style>
     55804                        <Format>image/jpeg</Format>
     55805                        <TileMatrixSetLink>
     55806                                <TileMatrixSet>PM</TileMatrixSet>
     55807                                <TileMatrixSetLimits>
     55808                                        <TileMatrixLimits>
     55809                                                <TileMatrix>0</TileMatrix>
     55810                                                <MinTileRow>0</MinTileRow>
     55811                                                <MaxTileRow>0</MaxTileRow>
     55812                                                <MinTileCol>0</MinTileCol>
     55813                                                <MaxTileCol>0</MaxTileCol>
     55814                                        </TileMatrixLimits>
     55815                                        <TileMatrixLimits>
     55816                                                <TileMatrix>1</TileMatrix>
     55817                                                <MinTileRow>0</MinTileRow>
     55818                                                <MaxTileRow>0</MaxTileRow>
     55819                                                <MinTileCol>1</MinTileCol>
     55820                                                <MaxTileCol>1</MaxTileCol>
     55821                                        </TileMatrixLimits>
     55822                                        <TileMatrixLimits>
     55823                                                <TileMatrix>10</TileMatrix>
     55824                                                <MinTileRow>371</MinTileRow>
     55825                                                <MaxTileRow>373</MaxTileRow>
     55826                                                <MinTileCol>519</MinTileCol>
     55827                                                <MaxTileCol>519</MaxTileCol>
     55828                                        </TileMatrixLimits>
     55829                                        <TileMatrixLimits>
     55830                                                <TileMatrix>11</TileMatrix>
     55831                                                <MinTileRow>742</MinTileRow>
     55832                                                <MaxTileRow>747</MaxTileRow>
     55833                                                <MinTileCol>1038</MinTileCol>
     55834                                                <MaxTileCol>1039</MaxTileCol>
     55835                                        </TileMatrixLimits>
     55836                                        <TileMatrixLimits>
     55837                                                <TileMatrix>12</TileMatrix>
     55838                                                <MinTileRow>1484</MinTileRow>
     55839                                                <MaxTileRow>1495</MaxTileRow>
     55840                                                <MinTileCol>2076</MinTileCol>
     55841                                                <MaxTileCol>2079</MaxTileCol>
     55842                                        </TileMatrixLimits>
     55843                                        <TileMatrixLimits>
     55844                                                <TileMatrix>13</TileMatrix>
     55845                                                <MinTileRow>2968</MinTileRow>
     55846                                                <MaxTileRow>2990</MaxTileRow>
     55847                                                <MinTileCol>4153</MinTileCol>
     55848                                                <MaxTileCol>4159</MaxTileCol>
     55849                                        </TileMatrixLimits>
     55850                                        <TileMatrixLimits>
     55851                                                <TileMatrix>14</TileMatrix>
     55852                                                <MinTileRow>5937</MinTileRow>
     55853                                                <MaxTileRow>5980</MaxTileRow>
     55854                                                <MinTileCol>8306</MinTileCol>
     55855                                                <MaxTileCol>8319</MaxTileCol>
     55856                                        </TileMatrixLimits>
     55857                                        <TileMatrixLimits>
     55858                                                <TileMatrix>15</TileMatrix>
     55859                                                <MinTileRow>11875</MinTileRow>
     55860                                                <MaxTileRow>11961</MaxTileRow>
     55861                                                <MinTileCol>16613</MinTileCol>
     55862                                                <MaxTileCol>16638</MaxTileCol>
     55863                                        </TileMatrixLimits>
     55864                                        <TileMatrixLimits>
     55865                                                <TileMatrix>16</TileMatrix>
     55866                                                <MinTileRow>23751</MinTileRow>
     55867                                                <MaxTileRow>23922</MaxTileRow>
     55868                                                <MinTileCol>33227</MinTileCol>
     55869                                                <MaxTileCol>33277</MaxTileCol>
     55870                                        </TileMatrixLimits>
     55871                                        <TileMatrixLimits>
     55872                                                <TileMatrix>17</TileMatrix>
     55873                                                <MinTileRow>47502</MinTileRow>
     55874                                                <MaxTileRow>47844</MaxTileRow>
     55875                                                <MinTileCol>66454</MinTileCol>
     55876                                                <MaxTileCol>66555</MaxTileCol>
     55877                                        </TileMatrixLimits>
     55878                                        <TileMatrixLimits>
     55879                                                <TileMatrix>18</TileMatrix>
     55880                                                <MinTileRow>95004</MinTileRow>
     55881                                                <MaxTileRow>95688</MaxTileRow>
     55882                                                <MinTileCol>132909</MinTileCol>
     55883                                                <MaxTileCol>133111</MaxTileCol>
     55884                                        </TileMatrixLimits>
     55885                                        <TileMatrixLimits>
     55886                                                <TileMatrix>2</TileMatrix>
     55887                                                <MinTileRow>1</MinTileRow>
     55888                                                <MaxTileRow>1</MaxTileRow>
     55889                                                <MinTileCol>2</MinTileCol>
     55890                                                <MaxTileCol>2</MaxTileCol>
     55891                                        </TileMatrixLimits>
     55892                                        <TileMatrixLimits>
     55893                                                <TileMatrix>3</TileMatrix>
     55894                                                <MinTileRow>2</MinTileRow>
     55895                                                <MaxTileRow>2</MaxTileRow>
     55896                                                <MinTileCol>4</MinTileCol>
     55897                                                <MaxTileCol>4</MaxTileCol>
     55898                                        </TileMatrixLimits>
     55899                                        <TileMatrixLimits>
     55900                                                <TileMatrix>4</TileMatrix>
     55901                                                <MinTileRow>5</MinTileRow>
     55902                                                <MaxTileRow>5</MaxTileRow>
     55903                                                <MinTileCol>8</MinTileCol>
     55904                                                <MaxTileCol>8</MaxTileCol>
     55905                                        </TileMatrixLimits>
     55906                                        <TileMatrixLimits>
     55907                                                <TileMatrix>5</TileMatrix>
     55908                                                <MinTileRow>11</MinTileRow>
     55909                                                <MaxTileRow>11</MaxTileRow>
     55910                                                <MinTileCol>16</MinTileCol>
     55911                                                <MaxTileCol>16</MaxTileCol>
     55912                                        </TileMatrixLimits>
     55913                                        <TileMatrixLimits>
     55914                                                <TileMatrix>6</TileMatrix>
     55915                                                <MinTileRow>23</MinTileRow>
     55916                                                <MaxTileRow>23</MaxTileRow>
     55917                                                <MinTileCol>32</MinTileCol>
     55918                                                <MaxTileCol>32</MaxTileCol>
     55919                                        </TileMatrixLimits>
     55920                                        <TileMatrixLimits>
     55921                                                <TileMatrix>7</TileMatrix>
     55922                                                <MinTileRow>46</MinTileRow>
     55923                                                <MaxTileRow>46</MaxTileRow>
     55924                                                <MinTileCol>64</MinTileCol>
     55925                                                <MaxTileCol>64</MaxTileCol>
     55926                                        </TileMatrixLimits>
     55927                                        <TileMatrixLimits>
     55928                                                <TileMatrix>8</TileMatrix>
     55929                                                <MinTileRow>92</MinTileRow>
     55930                                                <MaxTileRow>93</MaxTileRow>
     55931                                                <MinTileCol>129</MinTileCol>
     55932                                                <MaxTileCol>129</MaxTileCol>
     55933                                        </TileMatrixLimits>
     55934                                        <TileMatrixLimits>
     55935                                                <TileMatrix>9</TileMatrix>
     55936                                                <MinTileRow>185</MinTileRow>
     55937                                                <MaxTileRow>186</MaxTileRow>
     55938                                                <MinTileCol>259</MinTileCol>
     55939                                                <MaxTileCol>259</MaxTileCol>
     55940                                        </TileMatrixLimits>
     55941                                </TileMatrixSetLimits>
     55942                        </TileMatrixSetLink>
     55943                </Layer>
     55944                <Layer>
     55945                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     55946                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     55947                        <ows:Keywords>
     55948                                <ows:Keyword>Photographies</ows:Keyword>
     55949                        </ows:Keywords>
     55950                        <ows:WGS84BoundingBox>
     55951                                <ows:LowerCorner>1.87034 44.8014</ows:LowerCorner>
     55952                                <ows:UpperCorner>2.14004 45.0109</ows:UpperCorner>
     55953                        </ows:WGS84BoundingBox>
     55954                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-07-39378864</ows:Identifier>
     55955                        <Style isDefault="true">
     55956                                <ows:Title>Données Brutes</ows:Title>
     55957                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     55958                                <ows:Keywords>
     55959                                        <ows:Keyword>Défaut</ows:Keyword>
     55960                                </ows:Keywords>
     55961                                <ows:Identifier>normal</ows:Identifier>
     55962                                <LegendURL format="image/jpeg" height="200"
     55963                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     55964                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     55965                        </Style>
     55966                        <Format>image/jpeg</Format>
     55967                        <TileMatrixSetLink>
     55968                                <TileMatrixSet>PM</TileMatrixSet>
     55969                                <TileMatrixSetLimits>
     55970                                        <TileMatrixLimits>
     55971                                                <TileMatrix>0</TileMatrix>
     55972                                                <MinTileRow>0</MinTileRow>
     55973                                                <MaxTileRow>0</MaxTileRow>
     55974                                                <MinTileCol>0</MinTileCol>
     55975                                                <MaxTileCol>0</MaxTileCol>
     55976                                        </TileMatrixLimits>
     55977                                        <TileMatrixLimits>
     55978                                                <TileMatrix>1</TileMatrix>
     55979                                                <MinTileRow>0</MinTileRow>
     55980                                                <MaxTileRow>0</MaxTileRow>
     55981                                                <MinTileCol>1</MinTileCol>
     55982                                                <MaxTileCol>1</MaxTileCol>
     55983                                        </TileMatrixLimits>
     55984                                        <TileMatrixLimits>
     55985                                                <TileMatrix>10</TileMatrix>
     55986                                                <MinTileRow>368</MinTileRow>
     55987                                                <MaxTileRow>369</MaxTileRow>
     55988                                                <MinTileCol>517</MinTileCol>
     55989                                                <MaxTileCol>518</MaxTileCol>
     55990                                        </TileMatrixLimits>
     55991                                        <TileMatrixLimits>
     55992                                                <TileMatrix>11</TileMatrix>
     55993                                                <MinTileRow>736</MinTileRow>
     55994                                                <MaxTileRow>738</MaxTileRow>
     55995                                                <MinTileCol>1034</MinTileCol>
     55996                                                <MaxTileCol>1036</MaxTileCol>
     55997                                        </TileMatrixLimits>
     55998                                        <TileMatrixLimits>
     55999                                                <TileMatrix>12</TileMatrix>
     56000                                                <MinTileRow>1473</MinTileRow>
     56001                                                <MaxTileRow>1476</MaxTileRow>
     56002                                                <MinTileCol>2069</MinTileCol>
     56003                                                <MaxTileCol>2072</MaxTileCol>
     56004                                        </TileMatrixLimits>
     56005                                        <TileMatrixLimits>
     56006                                                <TileMatrix>13</TileMatrix>
     56007                                                <MinTileRow>2946</MinTileRow>
     56008                                                <MaxTileRow>2953</MaxTileRow>
     56009                                                <MinTileCol>4138</MinTileCol>
     56010                                                <MaxTileCol>4144</MaxTileCol>
     56011                                        </TileMatrixLimits>
     56012                                        <TileMatrixLimits>
     56013                                                <TileMatrix>14</TileMatrix>
     56014                                                <MinTileRow>5893</MinTileRow>
     56015                                                <MaxTileRow>5906</MaxTileRow>
     56016                                                <MinTileCol>8277</MinTileCol>
     56017                                                <MaxTileCol>8289</MaxTileCol>
     56018                                        </TileMatrixLimits>
     56019                                        <TileMatrixLimits>
     56020                                                <TileMatrix>15</TileMatrix>
     56021                                                <MinTileRow>11786</MinTileRow>
     56022                                                <MaxTileRow>11812</MaxTileRow>
     56023                                                <MinTileCol>16554</MinTileCol>
     56024                                                <MaxTileCol>16578</MaxTileCol>
     56025                                        </TileMatrixLimits>
     56026                                        <TileMatrixLimits>
     56027                                                <TileMatrix>16</TileMatrix>
     56028                                                <MinTileRow>23572</MinTileRow>
     56029                                                <MaxTileRow>23625</MaxTileRow>
     56030                                                <MinTileCol>33108</MinTileCol>
     56031                                                <MaxTileCol>33157</MaxTileCol>
     56032                                        </TileMatrixLimits>
     56033                                        <TileMatrixLimits>
     56034                                                <TileMatrix>17</TileMatrix>
     56035                                                <MinTileRow>47144</MinTileRow>
     56036                                                <MaxTileRow>47251</MaxTileRow>
     56037                                                <MinTileCol>66217</MinTileCol>
     56038                                                <MaxTileCol>66315</MaxTileCol>
     56039                                        </TileMatrixLimits>
     56040                                        <TileMatrixLimits>
     56041                                                <TileMatrix>18</TileMatrix>
     56042                                                <MinTileRow>94289</MinTileRow>
     56043                                                <MaxTileRow>94503</MaxTileRow>
     56044                                                <MinTileCol>132434</MinTileCol>
     56045                                                <MaxTileCol>132630</MaxTileCol>
     56046                                        </TileMatrixLimits>
     56047                                        <TileMatrixLimits>
     56048                                                <TileMatrix>2</TileMatrix>
     56049                                                <MinTileRow>1</MinTileRow>
     56050                                                <MaxTileRow>1</MaxTileRow>
     56051                                                <MinTileCol>2</MinTileCol>
     56052                                                <MaxTileCol>2</MaxTileCol>
     56053                                        </TileMatrixLimits>
     56054                                        <TileMatrixLimits>
     56055                                                <TileMatrix>3</TileMatrix>
     56056                                                <MinTileRow>2</MinTileRow>
     56057                                                <MaxTileRow>2</MaxTileRow>
     56058                                                <MinTileCol>4</MinTileCol>
     56059                                                <MaxTileCol>4</MaxTileCol>
     56060                                        </TileMatrixLimits>
     56061                                        <TileMatrixLimits>
     56062                                                <TileMatrix>4</TileMatrix>
     56063                                                <MinTileRow>5</MinTileRow>
     56064                                                <MaxTileRow>5</MaxTileRow>
     56065                                                <MinTileCol>8</MinTileCol>
     56066                                                <MaxTileCol>8</MaxTileCol>
     56067                                        </TileMatrixLimits>
     56068                                        <TileMatrixLimits>
     56069                                                <TileMatrix>5</TileMatrix>
     56070                                                <MinTileRow>11</MinTileRow>
     56071                                                <MaxTileRow>11</MaxTileRow>
     56072                                                <MinTileCol>16</MinTileCol>
     56073                                                <MaxTileCol>16</MaxTileCol>
     56074                                        </TileMatrixLimits>
     56075                                        <TileMatrixLimits>
     56076                                                <TileMatrix>6</TileMatrix>
     56077                                                <MinTileRow>23</MinTileRow>
     56078                                                <MaxTileRow>23</MaxTileRow>
     56079                                                <MinTileCol>32</MinTileCol>
     56080                                                <MaxTileCol>32</MaxTileCol>
     56081                                        </TileMatrixLimits>
     56082                                        <TileMatrixLimits>
     56083                                                <TileMatrix>7</TileMatrix>
     56084                                                <MinTileRow>46</MinTileRow>
     56085                                                <MaxTileRow>46</MaxTileRow>
     56086                                                <MinTileCol>64</MinTileCol>
     56087                                                <MaxTileCol>64</MaxTileCol>
     56088                                        </TileMatrixLimits>
     56089                                        <TileMatrixLimits>
     56090                                                <TileMatrix>8</TileMatrix>
     56091                                                <MinTileRow>92</MinTileRow>
     56092                                                <MaxTileRow>92</MaxTileRow>
     56093                                                <MinTileCol>129</MinTileCol>
     56094                                                <MaxTileCol>129</MaxTileCol>
     56095                                        </TileMatrixLimits>
     56096                                        <TileMatrixLimits>
     56097                                                <TileMatrix>9</TileMatrix>
     56098                                                <MinTileRow>184</MinTileRow>
     56099                                                <MaxTileRow>184</MaxTileRow>
     56100                                                <MinTileCol>258</MinTileCol>
     56101                                                <MaxTileCol>259</MaxTileCol>
     56102                                        </TileMatrixLimits>
     56103                                </TileMatrixSetLimits>
     56104                        </TileMatrixSetLink>
     56105                </Layer>
     56106                <Layer>
     56107                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56108                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56109                        <ows:Keywords>
     56110                                <ows:Keyword>Photographies</ows:Keyword>
     56111                        </ows:Keywords>
     56112                        <ows:WGS84BoundingBox>
     56113                                <ows:LowerCorner>1.42922 44.544</ows:LowerCorner>
     56114                                <ows:UpperCorner>1.71589 44.8987</ows:UpperCorner>
     56115                        </ows:WGS84BoundingBox>
     56116                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-07-39388324</ows:Identifier>
     56117                        <Style isDefault="true">
     56118                                <ows:Title>Données Brutes</ows:Title>
     56119                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56120                                <ows:Keywords>
     56121                                        <ows:Keyword>Défaut</ows:Keyword>
     56122                                </ows:Keywords>
     56123                                <ows:Identifier>normal</ows:Identifier>
     56124                                <LegendURL format="image/jpeg" height="200"
     56125                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56126                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56127                        </Style>
     56128                        <Format>image/jpeg</Format>
     56129                        <TileMatrixSetLink>
     56130                                <TileMatrixSet>PM</TileMatrixSet>
     56131                                <TileMatrixSetLimits>
     56132                                        <TileMatrixLimits>
     56133                                                <TileMatrix>0</TileMatrix>
     56134                                                <MinTileRow>0</MinTileRow>
     56135                                                <MaxTileRow>0</MaxTileRow>
     56136                                                <MinTileCol>0</MinTileCol>
     56137                                                <MaxTileCol>0</MaxTileCol>
     56138                                        </TileMatrixLimits>
     56139                                        <TileMatrixLimits>
     56140                                                <TileMatrix>1</TileMatrix>
     56141                                                <MinTileRow>0</MinTileRow>
     56142                                                <MaxTileRow>0</MaxTileRow>
     56143                                                <MinTileCol>1</MinTileCol>
     56144                                                <MaxTileCol>1</MaxTileCol>
     56145                                        </TileMatrixLimits>
     56146                                        <TileMatrixLimits>
     56147                                                <TileMatrix>10</TileMatrix>
     56148                                                <MinTileRow>368</MinTileRow>
     56149                                                <MaxTileRow>370</MaxTileRow>
     56150                                                <MinTileCol>516</MinTileCol>
     56151                                                <MaxTileCol>516</MaxTileCol>
     56152                                        </TileMatrixLimits>
     56153                                        <TileMatrixLimits>
     56154                                                <TileMatrix>11</TileMatrix>
     56155                                                <MinTileRow>737</MinTileRow>
     56156                                                <MaxTileRow>740</MaxTileRow>
     56157                                                <MinTileCol>1032</MinTileCol>
     56158                                                <MaxTileCol>1033</MaxTileCol>
     56159                                        </TileMatrixLimits>
     56160                                        <TileMatrixLimits>
     56161                                                <TileMatrix>12</TileMatrix>
     56162                                                <MinTileRow>1475</MinTileRow>
     56163                                                <MaxTileRow>1480</MaxTileRow>
     56164                                                <MinTileCol>2064</MinTileCol>
     56165                                                <MaxTileCol>2067</MaxTileCol>
     56166                                        </TileMatrixLimits>
     56167                                        <TileMatrixLimits>
     56168                                                <TileMatrix>13</TileMatrix>
     56169                                                <MinTileRow>2950</MinTileRow>
     56170                                                <MaxTileRow>2961</MaxTileRow>
     56171                                                <MinTileCol>4128</MinTileCol>
     56172                                                <MaxTileCol>4134</MaxTileCol>
     56173                                        </TileMatrixLimits>
     56174                                        <TileMatrixLimits>
     56175                                                <TileMatrix>14</TileMatrix>
     56176                                                <MinTileRow>5900</MinTileRow>
     56177                                                <MaxTileRow>5922</MaxTileRow>
     56178                                                <MinTileCol>8257</MinTileCol>
     56179                                                <MaxTileCol>8269</MaxTileCol>
     56180                                        </TileMatrixLimits>
     56181                                        <TileMatrixLimits>
     56182                                                <TileMatrix>15</TileMatrix>
     56183                                                <MinTileRow>11800</MinTileRow>
     56184                                                <MaxTileRow>11845</MaxTileRow>
     56185                                                <MinTileCol>16514</MinTileCol>
     56186                                                <MaxTileCol>16539</MaxTileCol>
     56187                                        </TileMatrixLimits>
     56188                                        <TileMatrixLimits>
     56189                                                <TileMatrix>16</TileMatrix>
     56190                                                <MinTileRow>23601</MinTileRow>
     56191                                                <MaxTileRow>23691</MaxTileRow>
     56192                                                <MinTileCol>33029</MinTileCol>
     56193                                                <MaxTileCol>33079</MaxTileCol>
     56194                                        </TileMatrixLimits>
     56195                                        <TileMatrixLimits>
     56196                                                <TileMatrix>17</TileMatrix>
     56197                                                <MinTileRow>47202</MinTileRow>
     56198                                                <MaxTileRow>47383</MaxTileRow>
     56199                                                <MinTileCol>66058</MinTileCol>
     56200                                                <MaxTileCol>66159</MaxTileCol>
     56201                                        </TileMatrixLimits>
     56202                                        <TileMatrixLimits>
     56203                                                <TileMatrix>18</TileMatrix>
     56204                                                <MinTileRow>94404</MinTileRow>
     56205                                                <MaxTileRow>94767</MaxTileRow>
     56206                                                <MinTileCol>132117</MinTileCol>
     56207                                                <MaxTileCol>132319</MaxTileCol>
     56208                                        </TileMatrixLimits>
     56209                                        <TileMatrixLimits>
     56210                                                <TileMatrix>2</TileMatrix>
     56211                                                <MinTileRow>1</MinTileRow>
     56212                                                <MaxTileRow>1</MaxTileRow>
     56213                                                <MinTileCol>2</MinTileCol>
     56214                                                <MaxTileCol>2</MaxTileCol>
     56215                                        </TileMatrixLimits>
     56216                                        <TileMatrixLimits>
     56217                                                <TileMatrix>3</TileMatrix>
     56218                                                <MinTileRow>2</MinTileRow>
     56219                                                <MaxTileRow>2</MaxTileRow>
     56220                                                <MinTileCol>4</MinTileCol>
     56221                                                <MaxTileCol>4</MaxTileCol>
     56222                                        </TileMatrixLimits>
     56223                                        <TileMatrixLimits>
     56224                                                <TileMatrix>4</TileMatrix>
     56225                                                <MinTileRow>5</MinTileRow>
     56226                                                <MaxTileRow>5</MaxTileRow>
     56227                                                <MinTileCol>8</MinTileCol>
     56228                                                <MaxTileCol>8</MaxTileCol>
     56229                                        </TileMatrixLimits>
     56230                                        <TileMatrixLimits>
     56231                                                <TileMatrix>5</TileMatrix>
     56232                                                <MinTileRow>11</MinTileRow>
     56233                                                <MaxTileRow>11</MaxTileRow>
     56234                                                <MinTileCol>16</MinTileCol>
     56235                                                <MaxTileCol>16</MaxTileCol>
     56236                                        </TileMatrixLimits>
     56237                                        <TileMatrixLimits>
     56238                                                <TileMatrix>6</TileMatrix>
     56239                                                <MinTileRow>23</MinTileRow>
     56240                                                <MaxTileRow>23</MaxTileRow>
     56241                                                <MinTileCol>32</MinTileCol>
     56242                                                <MaxTileCol>32</MaxTileCol>
     56243                                        </TileMatrixLimits>
     56244                                        <TileMatrixLimits>
     56245                                                <TileMatrix>7</TileMatrix>
     56246                                                <MinTileRow>46</MinTileRow>
     56247                                                <MaxTileRow>46</MaxTileRow>
     56248                                                <MinTileCol>64</MinTileCol>
     56249                                                <MaxTileCol>64</MaxTileCol>
     56250                                        </TileMatrixLimits>
     56251                                        <TileMatrixLimits>
     56252                                                <TileMatrix>8</TileMatrix>
     56253                                                <MinTileRow>92</MinTileRow>
     56254                                                <MaxTileRow>92</MaxTileRow>
     56255                                                <MinTileCol>129</MinTileCol>
     56256                                                <MaxTileCol>129</MaxTileCol>
     56257                                        </TileMatrixLimits>
     56258                                        <TileMatrixLimits>
     56259                                                <TileMatrix>9</TileMatrix>
     56260                                                <MinTileRow>184</MinTileRow>
     56261                                                <MaxTileRow>185</MaxTileRow>
     56262                                                <MinTileCol>258</MinTileCol>
     56263                                                <MaxTileCol>258</MaxTileCol>
     56264                                        </TileMatrixLimits>
     56265                                </TileMatrixSetLimits>
     56266                        </TileMatrixSetLink>
     56267                </Layer>
     56268                <Layer>
     56269                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56270                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56271                        <ows:Keywords>
     56272                                <ows:Keyword>Photographies</ows:Keyword>
     56273                        </ows:Keywords>
     56274                        <ows:WGS84BoundingBox>
     56275                                <ows:LowerCorner>0.824483 44.2816</ows:LowerCorner>
     56276                                <ows:UpperCorner>1.10765 44.4847</ows:UpperCorner>
     56277                        </ows:WGS84BoundingBox>
     56278                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-08-39004077</ows:Identifier>
     56279                        <Style isDefault="true">
     56280                                <ows:Title>Données Brutes</ows:Title>
     56281                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56282                                <ows:Keywords>
     56283                                        <ows:Keyword>Défaut</ows:Keyword>
     56284                                </ows:Keywords>
     56285                                <ows:Identifier>normal</ows:Identifier>
     56286                                <LegendURL format="image/jpeg" height="200"
     56287                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56288                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56289                        </Style>
     56290                        <Format>image/jpeg</Format>
     56291                        <TileMatrixSetLink>
     56292                                <TileMatrixSet>PM</TileMatrixSet>
     56293                                <TileMatrixSetLimits>
     56294                                        <TileMatrixLimits>
     56295                                                <TileMatrix>0</TileMatrix>
     56296                                                <MinTileRow>0</MinTileRow>
     56297                                                <MaxTileRow>0</MaxTileRow>
     56298                                                <MinTileCol>0</MinTileCol>
     56299                                                <MaxTileCol>0</MaxTileCol>
     56300                                        </TileMatrixLimits>
     56301                                        <TileMatrixLimits>
     56302                                                <TileMatrix>1</TileMatrix>
     56303                                                <MinTileRow>0</MinTileRow>
     56304                                                <MaxTileRow>0</MaxTileRow>
     56305                                                <MinTileCol>1</MinTileCol>
     56306                                                <MaxTileCol>1</MaxTileCol>
     56307                                        </TileMatrixLimits>
     56308                                        <TileMatrixLimits>
     56309                                                <TileMatrix>10</TileMatrix>
     56310                                                <MinTileRow>370</MinTileRow>
     56311                                                <MaxTileRow>371</MaxTileRow>
     56312                                                <MinTileCol>514</MinTileCol>
     56313                                                <MaxTileCol>515</MaxTileCol>
     56314                                        </TileMatrixLimits>
     56315                                        <TileMatrixLimits>
     56316                                                <TileMatrix>11</TileMatrix>
     56317                                                <MinTileRow>740</MinTileRow>
     56318                                                <MaxTileRow>742</MaxTileRow>
     56319                                                <MinTileCol>1028</MinTileCol>
     56320                                                <MaxTileCol>1030</MaxTileCol>
     56321                                        </TileMatrixLimits>
     56322                                        <TileMatrixLimits>
     56323                                                <TileMatrix>12</TileMatrix>
     56324                                                <MinTileRow>1481</MinTileRow>
     56325                                                <MaxTileRow>1484</MaxTileRow>
     56326                                                <MinTileCol>2057</MinTileCol>
     56327                                                <MaxTileCol>2060</MaxTileCol>
     56328                                        </TileMatrixLimits>
     56329                                        <TileMatrixLimits>
     56330                                                <TileMatrix>13</TileMatrix>
     56331                                                <MinTileRow>2963</MinTileRow>
     56332                                                <MaxTileRow>2969</MaxTileRow>
     56333                                                <MinTileCol>4114</MinTileCol>
     56334                                                <MaxTileCol>4121</MaxTileCol>
     56335                                        </TileMatrixLimits>
     56336                                        <TileMatrixLimits>
     56337                                                <TileMatrix>14</TileMatrix>
     56338                                                <MinTileRow>5926</MinTileRow>
     56339                                                <MaxTileRow>5939</MaxTileRow>
     56340                                                <MinTileCol>8229</MinTileCol>
     56341                                                <MaxTileCol>8242</MaxTileCol>
     56342                                        </TileMatrixLimits>
     56343                                        <TileMatrixLimits>
     56344                                                <TileMatrix>15</TileMatrix>
     56345                                                <MinTileRow>11853</MinTileRow>
     56346                                                <MaxTileRow>11879</MaxTileRow>
     56347                                                <MinTileCol>16459</MinTileCol>
     56348                                                <MaxTileCol>16484</MaxTileCol>
     56349                                        </TileMatrixLimits>
     56350                                        <TileMatrixLimits>
     56351                                                <TileMatrix>16</TileMatrix>
     56352                                                <MinTileRow>23707</MinTileRow>
     56353                                                <MaxTileRow>23758</MaxTileRow>
     56354                                                <MinTileCol>32919</MinTileCol>
     56355                                                <MaxTileCol>32969</MaxTileCol>
     56356                                        </TileMatrixLimits>
     56357                                        <TileMatrixLimits>
     56358                                                <TileMatrix>17</TileMatrix>
     56359                                                <MinTileRow>47414</MinTileRow>
     56360                                                <MaxTileRow>47516</MaxTileRow>
     56361                                                <MinTileCol>65838</MinTileCol>
     56362                                                <MaxTileCol>65939</MaxTileCol>
     56363                                        </TileMatrixLimits>
     56364                                        <TileMatrixLimits>
     56365                                                <TileMatrix>18</TileMatrix>
     56366                                                <MinTileRow>94828</MinTileRow>
     56367                                                <MaxTileRow>95032</MaxTileRow>
     56368                                                <MinTileCol>131676</MinTileCol>
     56369                                                <MaxTileCol>131878</MaxTileCol>
     56370                                        </TileMatrixLimits>
     56371                                        <TileMatrixLimits>
     56372                                                <TileMatrix>2</TileMatrix>
     56373                                                <MinTileRow>1</MinTileRow>
     56374                                                <MaxTileRow>1</MaxTileRow>
     56375                                                <MinTileCol>2</MinTileCol>
     56376                                                <MaxTileCol>2</MaxTileCol>
     56377                                        </TileMatrixLimits>
     56378                                        <TileMatrixLimits>
     56379                                                <TileMatrix>3</TileMatrix>
     56380                                                <MinTileRow>2</MinTileRow>
     56381                                                <MaxTileRow>2</MaxTileRow>
     56382                                                <MinTileCol>4</MinTileCol>
     56383                                                <MaxTileCol>4</MaxTileCol>
     56384                                        </TileMatrixLimits>
     56385                                        <TileMatrixLimits>
     56386                                                <TileMatrix>4</TileMatrix>
     56387                                                <MinTileRow>5</MinTileRow>
     56388                                                <MaxTileRow>5</MaxTileRow>
     56389                                                <MinTileCol>8</MinTileCol>
     56390                                                <MaxTileCol>8</MaxTileCol>
     56391                                        </TileMatrixLimits>
     56392                                        <TileMatrixLimits>
     56393                                                <TileMatrix>5</TileMatrix>
     56394                                                <MinTileRow>11</MinTileRow>
     56395                                                <MaxTileRow>11</MaxTileRow>
     56396                                                <MinTileCol>16</MinTileCol>
     56397                                                <MaxTileCol>16</MaxTileCol>
     56398                                        </TileMatrixLimits>
     56399                                        <TileMatrixLimits>
     56400                                                <TileMatrix>6</TileMatrix>
     56401                                                <MinTileRow>23</MinTileRow>
     56402                                                <MaxTileRow>23</MaxTileRow>
     56403                                                <MinTileCol>32</MinTileCol>
     56404                                                <MaxTileCol>32</MaxTileCol>
     56405                                        </TileMatrixLimits>
     56406                                        <TileMatrixLimits>
     56407                                                <TileMatrix>7</TileMatrix>
     56408                                                <MinTileRow>46</MinTileRow>
     56409                                                <MaxTileRow>46</MaxTileRow>
     56410                                                <MinTileCol>64</MinTileCol>
     56411                                                <MaxTileCol>64</MaxTileCol>
     56412                                        </TileMatrixLimits>
     56413                                        <TileMatrixLimits>
     56414                                                <TileMatrix>8</TileMatrix>
     56415                                                <MinTileRow>92</MinTileRow>
     56416                                                <MaxTileRow>92</MaxTileRow>
     56417                                                <MinTileCol>128</MinTileCol>
     56418                                                <MaxTileCol>128</MaxTileCol>
     56419                                        </TileMatrixLimits>
     56420                                        <TileMatrixLimits>
     56421                                                <TileMatrix>9</TileMatrix>
     56422                                                <MinTileRow>185</MinTileRow>
     56423                                                <MaxTileRow>185</MaxTileRow>
     56424                                                <MinTileCol>257</MinTileCol>
     56425                                                <MaxTileCol>257</MaxTileCol>
     56426                                        </TileMatrixLimits>
     56427                                </TileMatrixSetLimits>
     56428                        </TileMatrixSetLink>
     56429                </Layer>
     56430                <Layer>
     56431                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56432                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56433                        <ows:Keywords>
     56434                                <ows:Keyword>Photographies</ows:Keyword>
     56435                        </ows:Keywords>
     56436                        <ows:WGS84BoundingBox>
     56437                                <ows:LowerCorner>1.20186 44.5226</ows:LowerCorner>
     56438                                <ows:UpperCorner>1.50239 44.878</ows:UpperCorner>
     56439                        </ows:WGS84BoundingBox>
     56440                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-20-39471328</ows:Identifier>
     56441                        <Style isDefault="true">
     56442                                <ows:Title>Données Brutes</ows:Title>
     56443                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56444                                <ows:Keywords>
     56445                                        <ows:Keyword>Défaut</ows:Keyword>
     56446                                </ows:Keywords>
     56447                                <ows:Identifier>normal</ows:Identifier>
     56448                                <LegendURL format="image/jpeg" height="200"
     56449                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56450                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56451                        </Style>
     56452                        <Format>image/jpeg</Format>
     56453                        <TileMatrixSetLink>
     56454                                <TileMatrixSet>PM</TileMatrixSet>
     56455                                <TileMatrixSetLimits>
     56456                                        <TileMatrixLimits>
     56457                                                <TileMatrix>0</TileMatrix>
     56458                                                <MinTileRow>0</MinTileRow>
     56459                                                <MaxTileRow>0</MaxTileRow>
     56460                                                <MinTileCol>0</MinTileCol>
     56461                                                <MaxTileCol>0</MaxTileCol>
     56462                                        </TileMatrixLimits>
     56463                                        <TileMatrixLimits>
     56464                                                <TileMatrix>1</TileMatrix>
     56465                                                <MinTileRow>0</MinTileRow>
     56466                                                <MaxTileRow>0</MaxTileRow>
     56467                                                <MinTileCol>1</MinTileCol>
     56468                                                <MaxTileCol>1</MaxTileCol>
     56469                                        </TileMatrixLimits>
     56470                                        <TileMatrixLimits>
     56471                                                <TileMatrix>10</TileMatrix>
     56472                                                <MinTileRow>368</MinTileRow>
     56473                                                <MaxTileRow>370</MaxTileRow>
     56474                                                <MinTileCol>515</MinTileCol>
     56475                                                <MaxTileCol>516</MaxTileCol>
     56476                                        </TileMatrixLimits>
     56477                                        <TileMatrixLimits>
     56478                                                <TileMatrix>11</TileMatrix>
     56479                                                <MinTileRow>737</MinTileRow>
     56480                                                <MaxTileRow>740</MaxTileRow>
     56481                                                <MinTileCol>1030</MinTileCol>
     56482                                                <MaxTileCol>1032</MaxTileCol>
     56483                                        </TileMatrixLimits>
     56484                                        <TileMatrixLimits>
     56485                                                <TileMatrix>12</TileMatrix>
     56486                                                <MinTileRow>1475</MinTileRow>
     56487                                                <MaxTileRow>1481</MaxTileRow>
     56488                                                <MinTileCol>2061</MinTileCol>
     56489                                                <MaxTileCol>2065</MaxTileCol>
     56490                                        </TileMatrixLimits>
     56491                                        <TileMatrixLimits>
     56492                                                <TileMatrix>13</TileMatrix>
     56493                                                <MinTileRow>2950</MinTileRow>
     56494                                                <MaxTileRow>2962</MaxTileRow>
     56495                                                <MinTileCol>4123</MinTileCol>
     56496                                                <MaxTileCol>4130</MaxTileCol>
     56497                                        </TileMatrixLimits>
     56498                                        <TileMatrixLimits>
     56499                                                <TileMatrix>14</TileMatrix>
     56500                                                <MinTileRow>5901</MinTileRow>
     56501                                                <MaxTileRow>5924</MaxTileRow>
     56502                                                <MinTileCol>8247</MinTileCol>
     56503                                                <MaxTileCol>8260</MaxTileCol>
     56504                                        </TileMatrixLimits>
     56505                                        <TileMatrixLimits>
     56506                                                <TileMatrix>15</TileMatrix>
     56507                                                <MinTileRow>11803</MinTileRow>
     56508                                                <MaxTileRow>11848</MaxTileRow>
     56509                                                <MinTileCol>16494</MinTileCol>
     56510                                                <MaxTileCol>16520</MaxTileCol>
     56511                                        </TileMatrixLimits>
     56512                                        <TileMatrixLimits>
     56513                                                <TileMatrix>16</TileMatrix>
     56514                                                <MinTileRow>23606</MinTileRow>
     56515                                                <MaxTileRow>23696</MaxTileRow>
     56516                                                <MinTileCol>32988</MinTileCol>
     56517                                                <MaxTileCol>33040</MaxTileCol>
     56518                                        </TileMatrixLimits>
     56519                                        <TileMatrixLimits>
     56520                                                <TileMatrix>17</TileMatrix>
     56521                                                <MinTileRow>47212</MinTileRow>
     56522                                                <MaxTileRow>47393</MaxTileRow>
     56523                                                <MinTileCol>65977</MinTileCol>
     56524                                                <MaxTileCol>66081</MaxTileCol>
     56525                                        </TileMatrixLimits>
     56526                                        <TileMatrixLimits>
     56527                                                <TileMatrix>18</TileMatrix>
     56528                                                <MinTileRow>94425</MinTileRow>
     56529                                                <MaxTileRow>94786</MaxTileRow>
     56530                                                <MinTileCol>131954</MinTileCol>
     56531                                                <MaxTileCol>132162</MaxTileCol>
     56532                                        </TileMatrixLimits>
     56533                                        <TileMatrixLimits>
     56534                                                <TileMatrix>2</TileMatrix>
     56535                                                <MinTileRow>1</MinTileRow>
     56536                                                <MaxTileRow>1</MaxTileRow>
     56537                                                <MinTileCol>2</MinTileCol>
     56538                                                <MaxTileCol>2</MaxTileCol>
     56539                                        </TileMatrixLimits>
     56540                                        <TileMatrixLimits>
     56541                                                <TileMatrix>3</TileMatrix>
     56542                                                <MinTileRow>2</MinTileRow>
     56543                                                <MaxTileRow>2</MaxTileRow>
     56544                                                <MinTileCol>4</MinTileCol>
     56545                                                <MaxTileCol>4</MaxTileCol>
     56546                                        </TileMatrixLimits>
     56547                                        <TileMatrixLimits>
     56548                                                <TileMatrix>4</TileMatrix>
     56549                                                <MinTileRow>5</MinTileRow>
     56550                                                <MaxTileRow>5</MaxTileRow>
     56551                                                <MinTileCol>8</MinTileCol>
     56552                                                <MaxTileCol>8</MaxTileCol>
     56553                                        </TileMatrixLimits>
     56554                                        <TileMatrixLimits>
     56555                                                <TileMatrix>5</TileMatrix>
     56556                                                <MinTileRow>11</MinTileRow>
     56557                                                <MaxTileRow>11</MaxTileRow>
     56558                                                <MinTileCol>16</MinTileCol>
     56559                                                <MaxTileCol>16</MaxTileCol>
     56560                                        </TileMatrixLimits>
     56561                                        <TileMatrixLimits>
     56562                                                <TileMatrix>6</TileMatrix>
     56563                                                <MinTileRow>23</MinTileRow>
     56564                                                <MaxTileRow>23</MaxTileRow>
     56565                                                <MinTileCol>32</MinTileCol>
     56566                                                <MaxTileCol>32</MaxTileCol>
     56567                                        </TileMatrixLimits>
     56568                                        <TileMatrixLimits>
     56569                                                <TileMatrix>7</TileMatrix>
     56570                                                <MinTileRow>46</MinTileRow>
     56571                                                <MaxTileRow>46</MaxTileRow>
     56572                                                <MinTileCol>64</MinTileCol>
     56573                                                <MaxTileCol>64</MaxTileCol>
     56574                                        </TileMatrixLimits>
     56575                                        <TileMatrixLimits>
     56576                                                <TileMatrix>8</TileMatrix>
     56577                                                <MinTileRow>92</MinTileRow>
     56578                                                <MaxTileRow>92</MaxTileRow>
     56579                                                <MinTileCol>128</MinTileCol>
     56580                                                <MaxTileCol>129</MaxTileCol>
     56581                                        </TileMatrixLimits>
     56582                                        <TileMatrixLimits>
     56583                                                <TileMatrix>9</TileMatrix>
     56584                                                <MinTileRow>184</MinTileRow>
     56585                                                <MaxTileRow>185</MaxTileRow>
     56586                                                <MinTileCol>257</MinTileCol>
     56587                                                <MaxTileCol>258</MaxTileCol>
     56588                                        </TileMatrixLimits>
     56589                                </TileMatrixSetLimits>
     56590                        </TileMatrixSetLink>
     56591                </Layer>
     56592                <Layer>
     56593                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56594                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56595                        <ows:Keywords>
     56596                                <ows:Keyword>Photographies</ows:Keyword>
     56597                        </ows:Keywords>
     56598                        <ows:WGS84BoundingBox>
     56599                                <ows:LowerCorner>1.21451 44.5228</ows:LowerCorner>
     56600                                <ows:UpperCorner>1.50239 44.878</ows:UpperCorner>
     56601                        </ows:WGS84BoundingBox>
     56602                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-26-39619071</ows:Identifier>
     56603                        <Style isDefault="true">
     56604                                <ows:Title>Données Brutes</ows:Title>
     56605                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56606                                <ows:Keywords>
     56607                                        <ows:Keyword>Défaut</ows:Keyword>
     56608                                </ows:Keywords>
     56609                                <ows:Identifier>normal</ows:Identifier>
     56610                                <LegendURL format="image/jpeg" height="200"
     56611                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56612                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56613                        </Style>
     56614                        <Format>image/jpeg</Format>
     56615                        <TileMatrixSetLink>
     56616                                <TileMatrixSet>PM</TileMatrixSet>
     56617                                <TileMatrixSetLimits>
     56618                                        <TileMatrixLimits>
     56619                                                <TileMatrix>0</TileMatrix>
     56620                                                <MinTileRow>0</MinTileRow>
     56621                                                <MaxTileRow>0</MaxTileRow>
     56622                                                <MinTileCol>0</MinTileCol>
     56623                                                <MaxTileCol>0</MaxTileCol>
     56624                                        </TileMatrixLimits>
     56625                                        <TileMatrixLimits>
     56626                                                <TileMatrix>1</TileMatrix>
     56627                                                <MinTileRow>0</MinTileRow>
     56628                                                <MaxTileRow>0</MaxTileRow>
     56629                                                <MinTileCol>1</MinTileCol>
     56630                                                <MaxTileCol>1</MaxTileCol>
     56631                                        </TileMatrixLimits>
     56632                                        <TileMatrixLimits>
     56633                                                <TileMatrix>10</TileMatrix>
     56634                                                <MinTileRow>368</MinTileRow>
     56635                                                <MaxTileRow>370</MaxTileRow>
     56636                                                <MinTileCol>515</MinTileCol>
     56637                                                <MaxTileCol>516</MaxTileCol>
     56638                                        </TileMatrixLimits>
     56639                                        <TileMatrixLimits>
     56640                                                <TileMatrix>11</TileMatrix>
     56641                                                <MinTileRow>737</MinTileRow>
     56642                                                <MaxTileRow>740</MaxTileRow>
     56643                                                <MinTileCol>1030</MinTileCol>
     56644                                                <MaxTileCol>1032</MaxTileCol>
     56645                                        </TileMatrixLimits>
     56646                                        <TileMatrixLimits>
     56647                                                <TileMatrix>12</TileMatrix>
     56648                                                <MinTileRow>1475</MinTileRow>
     56649                                                <MaxTileRow>1481</MaxTileRow>
     56650                                                <MinTileCol>2061</MinTileCol>
     56651                                                <MaxTileCol>2065</MaxTileCol>
     56652                                        </TileMatrixLimits>
     56653                                        <TileMatrixLimits>
     56654                                                <TileMatrix>13</TileMatrix>
     56655                                                <MinTileRow>2950</MinTileRow>
     56656                                                <MaxTileRow>2962</MaxTileRow>
     56657                                                <MinTileCol>4123</MinTileCol>
     56658                                                <MaxTileCol>4130</MaxTileCol>
     56659                                        </TileMatrixLimits>
     56660                                        <TileMatrixLimits>
     56661                                                <TileMatrix>14</TileMatrix>
     56662                                                <MinTileRow>5901</MinTileRow>
     56663                                                <MaxTileRow>5924</MaxTileRow>
     56664                                                <MinTileCol>8247</MinTileCol>
     56665                                                <MaxTileCol>8260</MaxTileCol>
     56666                                        </TileMatrixLimits>
     56667                                        <TileMatrixLimits>
     56668                                                <TileMatrix>15</TileMatrix>
     56669                                                <MinTileRow>11803</MinTileRow>
     56670                                                <MaxTileRow>11848</MaxTileRow>
     56671                                                <MinTileCol>16494</MinTileCol>
     56672                                                <MaxTileCol>16520</MaxTileCol>
     56673                                        </TileMatrixLimits>
     56674                                        <TileMatrixLimits>
     56675                                                <TileMatrix>16</TileMatrix>
     56676                                                <MinTileRow>23606</MinTileRow>
     56677                                                <MaxTileRow>23696</MaxTileRow>
     56678                                                <MinTileCol>32989</MinTileCol>
     56679                                                <MaxTileCol>33040</MaxTileCol>
     56680                                        </TileMatrixLimits>
     56681                                        <TileMatrixLimits>
     56682                                                <TileMatrix>17</TileMatrix>
     56683                                                <MinTileRow>47212</MinTileRow>
     56684                                                <MaxTileRow>47393</MaxTileRow>
     56685                                                <MinTileCol>65979</MinTileCol>
     56686                                                <MaxTileCol>66080</MaxTileCol>
     56687                                        </TileMatrixLimits>
     56688                                        <TileMatrixLimits>
     56689                                                <TileMatrix>18</TileMatrix>
     56690                                                <MinTileRow>94425</MinTileRow>
     56691                                                <MaxTileRow>94787</MaxTileRow>
     56692                                                <MinTileCol>131959</MinTileCol>
     56693                                                <MaxTileCol>132160</MaxTileCol>
     56694                                        </TileMatrixLimits>
     56695                                        <TileMatrixLimits>
     56696                                                <TileMatrix>2</TileMatrix>
     56697                                                <MinTileRow>1</MinTileRow>
     56698                                                <MaxTileRow>1</MaxTileRow>
     56699                                                <MinTileCol>2</MinTileCol>
     56700                                                <MaxTileCol>2</MaxTileCol>
     56701                                        </TileMatrixLimits>
     56702                                        <TileMatrixLimits>
     56703                                                <TileMatrix>3</TileMatrix>
     56704                                                <MinTileRow>2</MinTileRow>
     56705                                                <MaxTileRow>2</MaxTileRow>
     56706                                                <MinTileCol>4</MinTileCol>
     56707                                                <MaxTileCol>4</MaxTileCol>
     56708                                        </TileMatrixLimits>
     56709                                        <TileMatrixLimits>
     56710                                                <TileMatrix>4</TileMatrix>
     56711                                                <MinTileRow>5</MinTileRow>
     56712                                                <MaxTileRow>5</MaxTileRow>
     56713                                                <MinTileCol>8</MinTileCol>
     56714                                                <MaxTileCol>8</MaxTileCol>
     56715                                        </TileMatrixLimits>
     56716                                        <TileMatrixLimits>
     56717                                                <TileMatrix>5</TileMatrix>
     56718                                                <MinTileRow>11</MinTileRow>
     56719                                                <MaxTileRow>11</MaxTileRow>
     56720                                                <MinTileCol>16</MinTileCol>
     56721                                                <MaxTileCol>16</MaxTileCol>
     56722                                        </TileMatrixLimits>
     56723                                        <TileMatrixLimits>
     56724                                                <TileMatrix>6</TileMatrix>
     56725                                                <MinTileRow>23</MinTileRow>
     56726                                                <MaxTileRow>23</MaxTileRow>
     56727                                                <MinTileCol>32</MinTileCol>
     56728                                                <MaxTileCol>32</MaxTileCol>
     56729                                        </TileMatrixLimits>
     56730                                        <TileMatrixLimits>
     56731                                                <TileMatrix>7</TileMatrix>
     56732                                                <MinTileRow>46</MinTileRow>
     56733                                                <MaxTileRow>46</MaxTileRow>
     56734                                                <MinTileCol>64</MinTileCol>
     56735                                                <MaxTileCol>64</MaxTileCol>
     56736                                        </TileMatrixLimits>
     56737                                        <TileMatrixLimits>
     56738                                                <TileMatrix>8</TileMatrix>
     56739                                                <MinTileRow>92</MinTileRow>
     56740                                                <MaxTileRow>92</MaxTileRow>
     56741                                                <MinTileCol>128</MinTileCol>
     56742                                                <MaxTileCol>129</MaxTileCol>
     56743                                        </TileMatrixLimits>
     56744                                        <TileMatrixLimits>
     56745                                                <TileMatrix>9</TileMatrix>
     56746                                                <MinTileRow>184</MinTileRow>
     56747                                                <MaxTileRow>185</MaxTileRow>
     56748                                                <MinTileCol>257</MinTileCol>
     56749                                                <MaxTileCol>258</MaxTileCol>
     56750                                        </TileMatrixLimits>
     56751                                </TileMatrixSetLimits>
     56752                        </TileMatrixSetLink>
     56753                </Layer>
     56754                <Layer>
     56755                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56756                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56757                        <ows:Keywords>
     56758                                <ows:Keyword>Photographies</ows:Keyword>
     56759                        </ows:Keywords>
     56760                        <ows:WGS84BoundingBox>
     56761                                <ows:LowerCorner>2.31051 44.1209</ows:LowerCorner>
     56762                                <ows:UpperCorner>2.57518 44.3112</ows:UpperCorner>
     56763                        </ows:WGS84BoundingBox>
     56764                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-27-39224952</ows:Identifier>
     56765                        <Style isDefault="true">
     56766                                <ows:Title>Données Brutes</ows:Title>
     56767                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56768                                <ows:Keywords>
     56769                                        <ows:Keyword>Défaut</ows:Keyword>
     56770                                </ows:Keywords>
     56771                                <ows:Identifier>normal</ows:Identifier>
     56772                                <LegendURL format="image/jpeg" height="200"
     56773                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56774                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56775                        </Style>
     56776                        <Format>image/jpeg</Format>
     56777                        <TileMatrixSetLink>
     56778                                <TileMatrixSet>PM</TileMatrixSet>
     56779                                <TileMatrixSetLimits>
     56780                                        <TileMatrixLimits>
     56781                                                <TileMatrix>0</TileMatrix>
     56782                                                <MinTileRow>0</MinTileRow>
     56783                                                <MaxTileRow>0</MaxTileRow>
     56784                                                <MinTileCol>0</MinTileCol>
     56785                                                <MaxTileCol>0</MaxTileCol>
     56786                                        </TileMatrixLimits>
     56787                                        <TileMatrixLimits>
     56788                                                <TileMatrix>1</TileMatrix>
     56789                                                <MinTileRow>0</MinTileRow>
     56790                                                <MaxTileRow>0</MaxTileRow>
     56791                                                <MinTileCol>1</MinTileCol>
     56792                                                <MaxTileCol>1</MaxTileCol>
     56793                                        </TileMatrixLimits>
     56794                                        <TileMatrixLimits>
     56795                                                <TileMatrix>10</TileMatrix>
     56796                                                <MinTileRow>371</MinTileRow>
     56797                                                <MaxTileRow>371</MaxTileRow>
     56798                                                <MinTileCol>518</MinTileCol>
     56799                                                <MaxTileCol>519</MaxTileCol>
     56800                                        </TileMatrixLimits>
     56801                                        <TileMatrixLimits>
     56802                                                <TileMatrix>11</TileMatrix>
     56803                                                <MinTileRow>742</MinTileRow>
     56804                                                <MaxTileRow>743</MaxTileRow>
     56805                                                <MinTileCol>1037</MinTileCol>
     56806                                                <MaxTileCol>1038</MaxTileCol>
     56807                                        </TileMatrixLimits>
     56808                                        <TileMatrixLimits>
     56809                                                <TileMatrix>12</TileMatrix>
     56810                                                <MinTileRow>1484</MinTileRow>
     56811                                                <MaxTileRow>1487</MaxTileRow>
     56812                                                <MinTileCol>2074</MinTileCol>
     56813                                                <MaxTileCol>2077</MaxTileCol>
     56814                                        </TileMatrixLimits>
     56815                                        <TileMatrixLimits>
     56816                                                <TileMatrix>13</TileMatrix>
     56817                                                <MinTileRow>2968</MinTileRow>
     56818                                                <MaxTileRow>2974</MaxTileRow>
     56819                                                <MinTileCol>4148</MinTileCol>
     56820                                                <MaxTileCol>4154</MaxTileCol>
     56821                                        </TileMatrixLimits>
     56822                                        <TileMatrixLimits>
     56823                                                <TileMatrix>14</TileMatrix>
     56824                                                <MinTileRow>5937</MinTileRow>
     56825                                                <MaxTileRow>5949</MaxTileRow>
     56826                                                <MinTileCol>8297</MinTileCol>
     56827                                                <MaxTileCol>8309</MaxTileCol>
     56828                                        </TileMatrixLimits>
     56829                                        <TileMatrixLimits>
     56830                                                <TileMatrix>15</TileMatrix>
     56831                                                <MinTileRow>11875</MinTileRow>
     56832                                                <MaxTileRow>11899</MaxTileRow>
     56833                                                <MinTileCol>16594</MinTileCol>
     56834                                                <MaxTileCol>16618</MaxTileCol>
     56835                                        </TileMatrixLimits>
     56836                                        <TileMatrixLimits>
     56837                                                <TileMatrix>16</TileMatrix>
     56838                                                <MinTileRow>23751</MinTileRow>
     56839                                                <MaxTileRow>23799</MaxTileRow>
     56840                                                <MinTileCol>33188</MinTileCol>
     56841                                                <MaxTileCol>33236</MaxTileCol>
     56842                                        </TileMatrixLimits>
     56843                                        <TileMatrixLimits>
     56844                                                <TileMatrix>17</TileMatrix>
     56845                                                <MinTileRow>47502</MinTileRow>
     56846                                                <MaxTileRow>47599</MaxTileRow>
     56847                                                <MinTileCol>66377</MinTileCol>
     56848                                                <MaxTileCol>66473</MaxTileCol>
     56849                                        </TileMatrixLimits>
     56850                                        <TileMatrixLimits>
     56851                                                <TileMatrix>18</TileMatrix>
     56852                                                <MinTileRow>95005</MinTileRow>
     56853                                                <MaxTileRow>95198</MaxTileRow>
     56854                                                <MinTileCol>132754</MinTileCol>
     56855                                                <MaxTileCol>132947</MaxTileCol>
     56856                                        </TileMatrixLimits>
     56857                                        <TileMatrixLimits>
     56858                                                <TileMatrix>2</TileMatrix>
     56859                                                <MinTileRow>1</MinTileRow>
     56860                                                <MaxTileRow>1</MaxTileRow>
     56861                                                <MinTileCol>2</MinTileCol>
     56862                                                <MaxTileCol>2</MaxTileCol>
     56863                                        </TileMatrixLimits>
     56864                                        <TileMatrixLimits>
     56865                                                <TileMatrix>3</TileMatrix>
     56866                                                <MinTileRow>2</MinTileRow>
     56867                                                <MaxTileRow>2</MaxTileRow>
     56868                                                <MinTileCol>4</MinTileCol>
     56869                                                <MaxTileCol>4</MaxTileCol>
     56870                                        </TileMatrixLimits>
     56871                                        <TileMatrixLimits>
     56872                                                <TileMatrix>4</TileMatrix>
     56873                                                <MinTileRow>5</MinTileRow>
     56874                                                <MaxTileRow>5</MaxTileRow>
     56875                                                <MinTileCol>8</MinTileCol>
     56876                                                <MaxTileCol>8</MaxTileCol>
     56877                                        </TileMatrixLimits>
     56878                                        <TileMatrixLimits>
     56879                                                <TileMatrix>5</TileMatrix>
     56880                                                <MinTileRow>11</MinTileRow>
     56881                                                <MaxTileRow>11</MaxTileRow>
     56882                                                <MinTileCol>16</MinTileCol>
     56883                                                <MaxTileCol>16</MaxTileCol>
     56884                                        </TileMatrixLimits>
     56885                                        <TileMatrixLimits>
     56886                                                <TileMatrix>6</TileMatrix>
     56887                                                <MinTileRow>23</MinTileRow>
     56888                                                <MaxTileRow>23</MaxTileRow>
     56889                                                <MinTileCol>32</MinTileCol>
     56890                                                <MaxTileCol>32</MaxTileCol>
     56891                                        </TileMatrixLimits>
     56892                                        <TileMatrixLimits>
     56893                                                <TileMatrix>7</TileMatrix>
     56894                                                <MinTileRow>46</MinTileRow>
     56895                                                <MaxTileRow>46</MaxTileRow>
     56896                                                <MinTileCol>64</MinTileCol>
     56897                                                <MaxTileCol>64</MaxTileCol>
     56898                                        </TileMatrixLimits>
     56899                                        <TileMatrixLimits>
     56900                                                <TileMatrix>8</TileMatrix>
     56901                                                <MinTileRow>92</MinTileRow>
     56902                                                <MaxTileRow>92</MaxTileRow>
     56903                                                <MinTileCol>129</MinTileCol>
     56904                                                <MaxTileCol>129</MaxTileCol>
     56905                                        </TileMatrixLimits>
     56906                                        <TileMatrixLimits>
     56907                                                <TileMatrix>9</TileMatrix>
     56908                                                <MinTileRow>185</MinTileRow>
     56909                                                <MaxTileRow>185</MaxTileRow>
     56910                                                <MinTileCol>259</MinTileCol>
     56911                                                <MaxTileCol>259</MaxTileCol>
     56912                                        </TileMatrixLimits>
     56913                                </TileMatrixSetLimits>
     56914                        </TileMatrixSetLink>
     56915                </Layer>
     56916                <Layer>
     56917                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     56918                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     56919                        <ows:Keywords>
     56920                                <ows:Keyword>Photographies</ows:Keyword>
     56921                        </ows:Keywords>
     56922                        <ows:WGS84BoundingBox>
     56923                                <ows:LowerCorner>2.52633 43.798</ows:LowerCorner>
     56924                                <ows:UpperCorner>2.78879 43.9878</ows:UpperCorner>
     56925                        </ows:WGS84BoundingBox>
     56926                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-10-27-39233701</ows:Identifier>
     56927                        <Style isDefault="true">
     56928                                <ows:Title>Données Brutes</ows:Title>
     56929                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     56930                                <ows:Keywords>
     56931                                        <ows:Keyword>Défaut</ows:Keyword>
     56932                                </ows:Keywords>
     56933                                <ows:Identifier>normal</ows:Identifier>
     56934                                <LegendURL format="image/jpeg" height="200"
     56935                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     56936                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     56937                        </Style>
     56938                        <Format>image/jpeg</Format>
     56939                        <TileMatrixSetLink>
     56940                                <TileMatrixSet>PM</TileMatrixSet>
     56941                                <TileMatrixSetLimits>
     56942                                        <TileMatrixLimits>
     56943                                                <TileMatrix>0</TileMatrix>
     56944                                                <MinTileRow>0</MinTileRow>
     56945                                                <MaxTileRow>0</MaxTileRow>
     56946                                                <MinTileCol>0</MinTileCol>
     56947                                                <MaxTileCol>0</MaxTileCol>
     56948                                        </TileMatrixLimits>
     56949                                        <TileMatrixLimits>
     56950                                                <TileMatrix>1</TileMatrix>
     56951                                                <MinTileRow>0</MinTileRow>
     56952                                                <MaxTileRow>0</MaxTileRow>
     56953                                                <MinTileCol>1</MinTileCol>
     56954                                                <MaxTileCol>1</MaxTileCol>
     56955                                        </TileMatrixLimits>
     56956                                        <TileMatrixLimits>
     56957                                                <TileMatrix>10</TileMatrix>
     56958                                                <MinTileRow>372</MinTileRow>
     56959                                                <MaxTileRow>373</MaxTileRow>
     56960                                                <MinTileCol>519</MinTileCol>
     56961                                                <MaxTileCol>519</MaxTileCol>
     56962                                        </TileMatrixLimits>
     56963                                        <TileMatrixLimits>
     56964                                                <TileMatrix>11</TileMatrix>
     56965                                                <MinTileRow>744</MinTileRow>
     56966                                                <MaxTileRow>746</MaxTileRow>
     56967                                                <MinTileCol>1038</MinTileCol>
     56968                                                <MaxTileCol>1039</MaxTileCol>
     56969                                        </TileMatrixLimits>
     56970                                        <TileMatrixLimits>
     56971                                                <TileMatrix>12</TileMatrix>
     56972                                                <MinTileRow>1489</MinTileRow>
     56973                                                <MaxTileRow>1492</MaxTileRow>
     56974                                                <MinTileCol>2076</MinTileCol>
     56975                                                <MaxTileCol>2079</MaxTileCol>
     56976                                        </TileMatrixLimits>
     56977                                        <TileMatrixLimits>
     56978                                                <TileMatrix>13</TileMatrix>
     56979                                                <MinTileRow>2979</MinTileRow>
     56980                                                <MaxTileRow>2985</MaxTileRow>
     56981                                                <MinTileCol>4153</MinTileCol>
     56982                                                <MaxTileCol>4159</MaxTileCol>
     56983                                        </TileMatrixLimits>
     56984                                        <TileMatrixLimits>
     56985                                                <TileMatrix>14</TileMatrix>
     56986                                                <MinTileRow>5958</MinTileRow>
     56987                                                <MaxTileRow>5970</MaxTileRow>
     56988                                                <MinTileCol>8306</MinTileCol>
     56989                                                <MaxTileCol>8318</MaxTileCol>
     56990                                        </TileMatrixLimits>
     56991                                        <TileMatrixLimits>
     56992                                                <TileMatrix>15</TileMatrix>
     56993                                                <MinTileRow>11916</MinTileRow>
     56994                                                <MaxTileRow>11940</MaxTileRow>
     56995                                                <MinTileCol>16613</MinTileCol>
     56996                                                <MaxTileCol>16637</MaxTileCol>
     56997                                        </TileMatrixLimits>
     56998                                        <TileMatrixLimits>
     56999                                                <TileMatrix>16</TileMatrix>
     57000                                                <MinTileRow>23833</MinTileRow>
     57001                                                <MaxTileRow>23881</MaxTileRow>
     57002                                                <MinTileCol>33227</MinTileCol>
     57003                                                <MaxTileCol>33275</MaxTileCol>
     57004                                        </TileMatrixLimits>
     57005                                        <TileMatrixLimits>
     57006                                                <TileMatrix>17</TileMatrix>
     57007                                                <MinTileRow>47666</MinTileRow>
     57008                                                <MaxTileRow>47762</MaxTileRow>
     57009                                                <MinTileCol>66455</MinTileCol>
     57010                                                <MaxTileCol>66551</MaxTileCol>
     57011                                        </TileMatrixLimits>
     57012                                        <TileMatrixLimits>
     57013                                                <TileMatrix>18</TileMatrix>
     57014                                                <MinTileRow>95333</MinTileRow>
     57015                                                <MaxTileRow>95524</MaxTileRow>
     57016                                                <MinTileCol>132911</MinTileCol>
     57017                                                <MaxTileCol>133102</MaxTileCol>
     57018                                        </TileMatrixLimits>
     57019                                        <TileMatrixLimits>
     57020                                                <TileMatrix>2</TileMatrix>
     57021                                                <MinTileRow>1</MinTileRow>
     57022                                                <MaxTileRow>1</MaxTileRow>
     57023                                                <MinTileCol>2</MinTileCol>
     57024                                                <MaxTileCol>2</MaxTileCol>
     57025                                        </TileMatrixLimits>
     57026                                        <TileMatrixLimits>
     57027                                                <TileMatrix>3</TileMatrix>
     57028                                                <MinTileRow>2</MinTileRow>
     57029                                                <MaxTileRow>2</MaxTileRow>
     57030                                                <MinTileCol>4</MinTileCol>
     57031                                                <MaxTileCol>4</MaxTileCol>
     57032                                        </TileMatrixLimits>
     57033                                        <TileMatrixLimits>
     57034                                                <TileMatrix>4</TileMatrix>
     57035                                                <MinTileRow>5</MinTileRow>
     57036                                                <MaxTileRow>5</MaxTileRow>
     57037                                                <MinTileCol>8</MinTileCol>
     57038                                                <MaxTileCol>8</MaxTileCol>
     57039                                        </TileMatrixLimits>
     57040                                        <TileMatrixLimits>
     57041                                                <TileMatrix>5</TileMatrix>
     57042                                                <MinTileRow>11</MinTileRow>
     57043                                                <MaxTileRow>11</MaxTileRow>
     57044                                                <MinTileCol>16</MinTileCol>
     57045                                                <MaxTileCol>16</MaxTileCol>
     57046                                        </TileMatrixLimits>
     57047                                        <TileMatrixLimits>
     57048                                                <TileMatrix>6</TileMatrix>
     57049                                                <MinTileRow>23</MinTileRow>
     57050                                                <MaxTileRow>23</MaxTileRow>
     57051                                                <MinTileCol>32</MinTileCol>
     57052                                                <MaxTileCol>32</MaxTileCol>
     57053                                        </TileMatrixLimits>
     57054                                        <TileMatrixLimits>
     57055                                                <TileMatrix>7</TileMatrix>
     57056                                                <MinTileRow>46</MinTileRow>
     57057                                                <MaxTileRow>46</MaxTileRow>
     57058                                                <MinTileCol>64</MinTileCol>
     57059                                                <MaxTileCol>64</MaxTileCol>
     57060                                        </TileMatrixLimits>
     57061                                        <TileMatrixLimits>
     57062                                                <TileMatrix>8</TileMatrix>
     57063                                                <MinTileRow>93</MinTileRow>
     57064                                                <MaxTileRow>93</MaxTileRow>
     57065                                                <MinTileCol>129</MinTileCol>
     57066                                                <MaxTileCol>129</MaxTileCol>
     57067                                        </TileMatrixLimits>
     57068                                        <TileMatrixLimits>
     57069                                                <TileMatrix>9</TileMatrix>
     57070                                                <MinTileRow>186</MinTileRow>
     57071                                                <MaxTileRow>186</MaxTileRow>
     57072                                                <MinTileCol>259</MinTileCol>
     57073                                                <MaxTileCol>259</MaxTileCol>
     57074                                        </TileMatrixLimits>
     57075                                </TileMatrixSetLimits>
     57076                        </TileMatrixSetLink>
     57077                </Layer>
     57078                <Layer>
     57079                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57080                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57081                        <ows:Keywords>
     57082                                <ows:Keyword>Photographies</ows:Keyword>
     57083                        </ows:Keywords>
     57084                        <ows:WGS84BoundingBox>
     57085                                <ows:LowerCorner>0.153356 42.8709</ows:LowerCorner>
     57086                                <ows:UpperCorner>0.431872 43.0755</ows:UpperCorner>
     57087                        </ows:WGS84BoundingBox>
     57088                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-11-02-39437577</ows:Identifier>
     57089                        <Style isDefault="true">
     57090                                <ows:Title>Données Brutes</ows:Title>
     57091                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57092                                <ows:Keywords>
     57093                                        <ows:Keyword>Défaut</ows:Keyword>
     57094                                </ows:Keywords>
     57095                                <ows:Identifier>normal</ows:Identifier>
     57096                                <LegendURL format="image/jpeg" height="200"
     57097                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57098                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57099                        </Style>
     57100                        <Format>image/jpeg</Format>
     57101                        <TileMatrixSetLink>
     57102                                <TileMatrixSet>PM</TileMatrixSet>
     57103                                <TileMatrixSetLimits>
     57104                                        <TileMatrixLimits>
     57105                                                <TileMatrix>0</TileMatrix>
     57106                                                <MinTileRow>0</MinTileRow>
     57107                                                <MaxTileRow>0</MaxTileRow>
     57108                                                <MinTileCol>0</MinTileCol>
     57109                                                <MaxTileCol>0</MaxTileCol>
     57110                                        </TileMatrixLimits>
     57111                                        <TileMatrixLimits>
     57112                                                <TileMatrix>1</TileMatrix>
     57113                                                <MinTileRow>0</MinTileRow>
     57114                                                <MaxTileRow>0</MaxTileRow>
     57115                                                <MinTileCol>1</MinTileCol>
     57116                                                <MaxTileCol>1</MaxTileCol>
     57117                                        </TileMatrixLimits>
     57118                                        <TileMatrixLimits>
     57119                                                <TileMatrix>10</TileMatrix>
     57120                                                <MinTileRow>375</MinTileRow>
     57121                                                <MaxTileRow>376</MaxTileRow>
     57122                                                <MinTileCol>512</MinTileCol>
     57123                                                <MaxTileCol>513</MaxTileCol>
     57124                                        </TileMatrixLimits>
     57125                                        <TileMatrixLimits>
     57126                                                <TileMatrix>11</TileMatrix>
     57127                                                <MinTileRow>751</MinTileRow>
     57128                                                <MaxTileRow>753</MaxTileRow>
     57129                                                <MinTileCol>1024</MinTileCol>
     57130                                                <MaxTileCol>1026</MaxTileCol>
     57131                                        </TileMatrixLimits>
     57132                                        <TileMatrixLimits>
     57133                                                <TileMatrix>12</TileMatrix>
     57134                                                <MinTileRow>1503</MinTileRow>
     57135                                                <MaxTileRow>1506</MaxTileRow>
     57136                                                <MinTileCol>2049</MinTileCol>
     57137                                                <MaxTileCol>2052</MaxTileCol>
     57138                                        </TileMatrixLimits>
     57139                                        <TileMatrixLimits>
     57140                                                <TileMatrix>13</TileMatrix>
     57141                                                <MinTileRow>3007</MinTileRow>
     57142                                                <MaxTileRow>3013</MaxTileRow>
     57143                                                <MinTileCol>4099</MinTileCol>
     57144                                                <MaxTileCol>4105</MaxTileCol>
     57145                                        </TileMatrixLimits>
     57146                                        <TileMatrixLimits>
     57147                                                <TileMatrix>14</TileMatrix>
     57148                                                <MinTileRow>6015</MinTileRow>
     57149                                                <MaxTileRow>6027</MaxTileRow>
     57150                                                <MinTileCol>8198</MinTileCol>
     57151                                                <MaxTileCol>8211</MaxTileCol>
     57152                                        </TileMatrixLimits>
     57153                                        <TileMatrixLimits>
     57154                                                <TileMatrix>15</TileMatrix>
     57155                                                <MinTileRow>12031</MinTileRow>
     57156                                                <MaxTileRow>12055</MaxTileRow>
     57157                                                <MinTileCol>16397</MinTileCol>
     57158                                                <MaxTileCol>16422</MaxTileCol>
     57159                                        </TileMatrixLimits>
     57160                                        <TileMatrixLimits>
     57161                                                <TileMatrix>16</TileMatrix>
     57162                                                <MinTileRow>24062</MinTileRow>
     57163                                                <MaxTileRow>24111</MaxTileRow>
     57164                                                <MinTileCol>32795</MinTileCol>
     57165                                                <MaxTileCol>32845</MaxTileCol>
     57166                                        </TileMatrixLimits>
     57167                                        <TileMatrixLimits>
     57168                                                <TileMatrix>17</TileMatrix>
     57169                                                <MinTileRow>48124</MinTileRow>
     57170                                                <MaxTileRow>48223</MaxTileRow>
     57171                                                <MinTileCol>65591</MinTileCol>
     57172                                                <MaxTileCol>65690</MaxTileCol>
     57173                                        </TileMatrixLimits>
     57174                                        <TileMatrixLimits>
     57175                                                <TileMatrix>18</TileMatrix>
     57176                                                <MinTileRow>96249</MinTileRow>
     57177                                                <MaxTileRow>96447</MaxTileRow>
     57178                                                <MinTileCol>131183</MinTileCol>
     57179                                                <MaxTileCol>131381</MaxTileCol>
     57180                                        </TileMatrixLimits>
     57181                                        <TileMatrixLimits>
     57182                                                <TileMatrix>2</TileMatrix>
     57183                                                <MinTileRow>1</MinTileRow>
     57184                                                <MaxTileRow>1</MaxTileRow>
     57185                                                <MinTileCol>2</MinTileCol>
     57186                                                <MaxTileCol>2</MaxTileCol>
     57187                                        </TileMatrixLimits>
     57188                                        <TileMatrixLimits>
     57189                                                <TileMatrix>3</TileMatrix>
     57190                                                <MinTileRow>2</MinTileRow>
     57191                                                <MaxTileRow>2</MaxTileRow>
     57192                                                <MinTileCol>4</MinTileCol>
     57193                                                <MaxTileCol>4</MaxTileCol>
     57194                                        </TileMatrixLimits>
     57195                                        <TileMatrixLimits>
     57196                                                <TileMatrix>4</TileMatrix>
     57197                                                <MinTileRow>5</MinTileRow>
     57198                                                <MaxTileRow>5</MaxTileRow>
     57199                                                <MinTileCol>8</MinTileCol>
     57200                                                <MaxTileCol>8</MaxTileCol>
     57201                                        </TileMatrixLimits>
     57202                                        <TileMatrixLimits>
     57203                                                <TileMatrix>5</TileMatrix>
     57204                                                <MinTileRow>11</MinTileRow>
     57205                                                <MaxTileRow>11</MaxTileRow>
     57206                                                <MinTileCol>16</MinTileCol>
     57207                                                <MaxTileCol>16</MaxTileCol>
     57208                                        </TileMatrixLimits>
     57209                                        <TileMatrixLimits>
     57210                                                <TileMatrix>6</TileMatrix>
     57211                                                <MinTileRow>23</MinTileRow>
     57212                                                <MaxTileRow>23</MaxTileRow>
     57213                                                <MinTileCol>32</MinTileCol>
     57214                                                <MaxTileCol>32</MaxTileCol>
     57215                                        </TileMatrixLimits>
     57216                                        <TileMatrixLimits>
     57217                                                <TileMatrix>7</TileMatrix>
     57218                                                <MinTileRow>46</MinTileRow>
     57219                                                <MaxTileRow>47</MaxTileRow>
     57220                                                <MinTileCol>64</MinTileCol>
     57221                                                <MaxTileCol>64</MaxTileCol>
     57222                                        </TileMatrixLimits>
     57223                                        <TileMatrixLimits>
     57224                                                <TileMatrix>8</TileMatrix>
     57225                                                <MinTileRow>93</MinTileRow>
     57226                                                <MaxTileRow>94</MaxTileRow>
     57227                                                <MinTileCol>128</MinTileCol>
     57228                                                <MaxTileCol>128</MaxTileCol>
     57229                                        </TileMatrixLimits>
     57230                                        <TileMatrixLimits>
     57231                                                <TileMatrix>9</TileMatrix>
     57232                                                <MinTileRow>187</MinTileRow>
     57233                                                <MaxTileRow>188</MaxTileRow>
     57234                                                <MinTileCol>256</MinTileCol>
     57235                                                <MaxTileCol>256</MaxTileCol>
     57236                                        </TileMatrixLimits>
     57237                                </TileMatrixSetLimits>
     57238                        </TileMatrixSetLink>
     57239                </Layer>
     57240                <Layer>
     57241                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57242                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57243                        <ows:Keywords>
     57244                                <ows:Keyword>Photographies</ows:Keyword>
     57245                        </ows:Keywords>
     57246                        <ows:WGS84BoundingBox>
     57247                                <ows:LowerCorner>1.43374 44.535</ows:LowerCorner>
     57248                                <ows:UpperCorner>1.71609 44.7366</ows:UpperCorner>
     57249                        </ows:WGS84BoundingBox>
     57250                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-11-27-39891075</ows:Identifier>
     57251                        <Style isDefault="true">
     57252                                <ows:Title>Données Brutes</ows:Title>
     57253                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57254                                <ows:Keywords>
     57255                                        <ows:Keyword>Défaut</ows:Keyword>
     57256                                </ows:Keywords>
     57257                                <ows:Identifier>normal</ows:Identifier>
     57258                                <LegendURL format="image/jpeg" height="200"
     57259                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57260                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57261                        </Style>
     57262                        <Format>image/jpeg</Format>
     57263                        <TileMatrixSetLink>
     57264                                <TileMatrixSet>PM</TileMatrixSet>
     57265                                <TileMatrixSetLimits>
     57266                                        <TileMatrixLimits>
     57267                                                <TileMatrix>0</TileMatrix>
     57268                                                <MinTileRow>0</MinTileRow>
     57269                                                <MaxTileRow>0</MaxTileRow>
     57270                                                <MinTileCol>0</MinTileCol>
     57271                                                <MaxTileCol>0</MaxTileCol>
     57272                                        </TileMatrixLimits>
     57273                                        <TileMatrixLimits>
     57274                                                <TileMatrix>1</TileMatrix>
     57275                                                <MinTileRow>0</MinTileRow>
     57276                                                <MaxTileRow>0</MaxTileRow>
     57277                                                <MinTileCol>1</MinTileCol>
     57278                                                <MaxTileCol>1</MaxTileCol>
     57279                                        </TileMatrixLimits>
     57280                                        <TileMatrixLimits>
     57281                                                <TileMatrix>10</TileMatrix>
     57282                                                <MinTileRow>369</MinTileRow>
     57283                                                <MaxTileRow>370</MaxTileRow>
     57284                                                <MinTileCol>516</MinTileCol>
     57285                                                <MaxTileCol>516</MaxTileCol>
     57286                                        </TileMatrixLimits>
     57287                                        <TileMatrixLimits>
     57288                                                <TileMatrix>11</TileMatrix>
     57289                                                <MinTileRow>738</MinTileRow>
     57290                                                <MaxTileRow>740</MaxTileRow>
     57291                                                <MinTileCol>1032</MinTileCol>
     57292                                                <MaxTileCol>1033</MaxTileCol>
     57293                                        </TileMatrixLimits>
     57294                                        <TileMatrixLimits>
     57295                                                <TileMatrix>12</TileMatrix>
     57296                                                <MinTileRow>1477</MinTileRow>
     57297                                                <MaxTileRow>1480</MaxTileRow>
     57298                                                <MinTileCol>2064</MinTileCol>
     57299                                                <MaxTileCol>2067</MaxTileCol>
     57300                                        </TileMatrixLimits>
     57301                                        <TileMatrixLimits>
     57302                                                <TileMatrix>13</TileMatrix>
     57303                                                <MinTileRow>2955</MinTileRow>
     57304                                                <MaxTileRow>2961</MaxTileRow>
     57305                                                <MinTileCol>4128</MinTileCol>
     57306                                                <MaxTileCol>4135</MaxTileCol>
     57307                                        </TileMatrixLimits>
     57308                                        <TileMatrixLimits>
     57309                                                <TileMatrix>14</TileMatrix>
     57310                                                <MinTileRow>5910</MinTileRow>
     57311                                                <MaxTileRow>5923</MaxTileRow>
     57312                                                <MinTileCol>8257</MinTileCol>
     57313                                                <MaxTileCol>8270</MaxTileCol>
     57314                                        </TileMatrixLimits>
     57315                                        <TileMatrixLimits>
     57316                                                <TileMatrix>15</TileMatrix>
     57317                                                <MinTileRow>11821</MinTileRow>
     57318                                                <MaxTileRow>11846</MaxTileRow>
     57319                                                <MinTileCol>16514</MinTileCol>
     57320                                                <MaxTileCol>16540</MaxTileCol>
     57321                                        </TileMatrixLimits>
     57322                                        <TileMatrixLimits>
     57323                                                <TileMatrix>16</TileMatrix>
     57324                                                <MinTileRow>23642</MinTileRow>
     57325                                                <MaxTileRow>23693</MaxTileRow>
     57326                                                <MinTileCol>33028</MinTileCol>
     57327                                                <MaxTileCol>33080</MaxTileCol>
     57328                                        </TileMatrixLimits>
     57329                                        <TileMatrixLimits>
     57330                                                <TileMatrix>17</TileMatrix>
     57331                                                <MinTileRow>47285</MinTileRow>
     57332                                                <MaxTileRow>47386</MaxTileRow>
     57333                                                <MinTileCol>66057</MinTileCol>
     57334                                                <MaxTileCol>66160</MaxTileCol>
     57335                                        </TileMatrixLimits>
     57336                                        <TileMatrixLimits>
     57337                                                <TileMatrix>18</TileMatrix>
     57338                                                <MinTileRow>94570</MinTileRow>
     57339                                                <MaxTileRow>94773</MaxTileRow>
     57340                                                <MinTileCol>132115</MinTileCol>
     57341                                                <MaxTileCol>132321</MaxTileCol>
     57342                                        </TileMatrixLimits>
     57343                                        <TileMatrixLimits>
     57344                                                <TileMatrix>2</TileMatrix>
     57345                                                <MinTileRow>1</MinTileRow>
     57346                                                <MaxTileRow>1</MaxTileRow>
     57347                                                <MinTileCol>2</MinTileCol>
     57348                                                <MaxTileCol>2</MaxTileCol>
     57349                                        </TileMatrixLimits>
     57350                                        <TileMatrixLimits>
     57351                                                <TileMatrix>3</TileMatrix>
     57352                                                <MinTileRow>2</MinTileRow>
     57353                                                <MaxTileRow>2</MaxTileRow>
     57354                                                <MinTileCol>4</MinTileCol>
     57355                                                <MaxTileCol>4</MaxTileCol>
     57356                                        </TileMatrixLimits>
     57357                                        <TileMatrixLimits>
     57358                                                <TileMatrix>4</TileMatrix>
     57359                                                <MinTileRow>5</MinTileRow>
     57360                                                <MaxTileRow>5</MaxTileRow>
     57361                                                <MinTileCol>8</MinTileCol>
     57362                                                <MaxTileCol>8</MaxTileCol>
     57363                                        </TileMatrixLimits>
     57364                                        <TileMatrixLimits>
     57365                                                <TileMatrix>5</TileMatrix>
     57366                                                <MinTileRow>11</MinTileRow>
     57367                                                <MaxTileRow>11</MaxTileRow>
     57368                                                <MinTileCol>16</MinTileCol>
     57369                                                <MaxTileCol>16</MaxTileCol>
     57370                                        </TileMatrixLimits>
     57371                                        <TileMatrixLimits>
     57372                                                <TileMatrix>6</TileMatrix>
     57373                                                <MinTileRow>23</MinTileRow>
     57374                                                <MaxTileRow>23</MaxTileRow>
     57375                                                <MinTileCol>32</MinTileCol>
     57376                                                <MaxTileCol>32</MaxTileCol>
     57377                                        </TileMatrixLimits>
     57378                                        <TileMatrixLimits>
     57379                                                <TileMatrix>7</TileMatrix>
     57380                                                <MinTileRow>46</MinTileRow>
     57381                                                <MaxTileRow>46</MaxTileRow>
     57382                                                <MinTileCol>64</MinTileCol>
     57383                                                <MaxTileCol>64</MaxTileCol>
     57384                                        </TileMatrixLimits>
     57385                                        <TileMatrixLimits>
     57386                                                <TileMatrix>8</TileMatrix>
     57387                                                <MinTileRow>92</MinTileRow>
     57388                                                <MaxTileRow>92</MaxTileRow>
     57389                                                <MinTileCol>129</MinTileCol>
     57390                                                <MaxTileCol>129</MaxTileCol>
     57391                                        </TileMatrixLimits>
     57392                                        <TileMatrixLimits>
     57393                                                <TileMatrix>9</TileMatrix>
     57394                                                <MinTileRow>184</MinTileRow>
     57395                                                <MaxTileRow>185</MaxTileRow>
     57396                                                <MinTileCol>258</MinTileCol>
     57397                                                <MaxTileCol>258</MaxTileCol>
     57398                                        </TileMatrixLimits>
     57399                                </TileMatrixSetLimits>
     57400                        </TileMatrixSetLink>
     57401                </Layer>
     57402                <Layer>
     57403                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57404                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57405                        <ows:Keywords>
     57406                                <ows:Keyword>Photographies</ows:Keyword>
     57407                        </ows:Keywords>
     57408                        <ows:WGS84BoundingBox>
     57409                                <ows:LowerCorner>1.3363 44.8488</ows:LowerCorner>
     57410                                <ows:UpperCorner>1.55702 45.0408</ows:UpperCorner>
     57411                        </ows:WGS84BoundingBox>
     57412                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-04-39653953</ows:Identifier>
     57413                        <Style isDefault="true">
     57414                                <ows:Title>Données Brutes</ows:Title>
     57415                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57416                                <ows:Keywords>
     57417                                        <ows:Keyword>Défaut</ows:Keyword>
     57418                                </ows:Keywords>
     57419                                <ows:Identifier>normal</ows:Identifier>
     57420                                <LegendURL format="image/jpeg" height="200"
     57421                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57422                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57423                        </Style>
     57424                        <Format>image/jpeg</Format>
     57425                        <TileMatrixSetLink>
     57426                                <TileMatrixSet>PM</TileMatrixSet>
     57427                                <TileMatrixSetLimits>
     57428                                        <TileMatrixLimits>
     57429                                                <TileMatrix>0</TileMatrix>
     57430                                                <MinTileRow>0</MinTileRow>
     57431                                                <MaxTileRow>0</MaxTileRow>
     57432                                                <MinTileCol>0</MinTileCol>
     57433                                                <MaxTileCol>0</MaxTileCol>
     57434                                        </TileMatrixLimits>
     57435                                        <TileMatrixLimits>
     57436                                                <TileMatrix>1</TileMatrix>
     57437                                                <MinTileRow>0</MinTileRow>
     57438                                                <MaxTileRow>0</MaxTileRow>
     57439                                                <MinTileCol>1</MinTileCol>
     57440                                                <MaxTileCol>1</MaxTileCol>
     57441                                        </TileMatrixLimits>
     57442                                        <TileMatrixLimits>
     57443                                                <TileMatrix>10</TileMatrix>
     57444                                                <MinTileRow>368</MinTileRow>
     57445                                                <MaxTileRow>368</MaxTileRow>
     57446                                                <MinTileCol>515</MinTileCol>
     57447                                                <MaxTileCol>516</MaxTileCol>
     57448                                        </TileMatrixLimits>
     57449                                        <TileMatrixLimits>
     57450                                                <TileMatrix>11</TileMatrix>
     57451                                                <MinTileRow>736</MinTileRow>
     57452                                                <MaxTileRow>737</MaxTileRow>
     57453                                                <MinTileCol>1031</MinTileCol>
     57454                                                <MaxTileCol>1032</MaxTileCol>
     57455                                        </TileMatrixLimits>
     57456                                        <TileMatrixLimits>
     57457                                                <TileMatrix>12</TileMatrix>
     57458                                                <MinTileRow>1472</MinTileRow>
     57459                                                <MaxTileRow>1475</MaxTileRow>
     57460                                                <MinTileCol>2063</MinTileCol>
     57461                                                <MaxTileCol>2065</MaxTileCol>
     57462                                        </TileMatrixLimits>
     57463                                        <TileMatrixLimits>
     57464                                                <TileMatrix>13</TileMatrix>
     57465                                                <MinTileRow>2945</MinTileRow>
     57466                                                <MaxTileRow>2951</MaxTileRow>
     57467                                                <MinTileCol>4126</MinTileCol>
     57468                                                <MaxTileCol>4131</MaxTileCol>
     57469                                        </TileMatrixLimits>
     57470                                        <TileMatrixLimits>
     57471                                                <TileMatrix>14</TileMatrix>
     57472                                                <MinTileRow>5891</MinTileRow>
     57473                                                <MaxTileRow>5903</MaxTileRow>
     57474                                                <MinTileCol>8253</MinTileCol>
     57475                                                <MaxTileCol>8262</MaxTileCol>
     57476                                        </TileMatrixLimits>
     57477                                        <TileMatrixLimits>
     57478                                                <TileMatrix>15</TileMatrix>
     57479                                                <MinTileRow>11782</MinTileRow>
     57480                                                <MaxTileRow>11806</MaxTileRow>
     57481                                                <MinTileCol>16506</MinTileCol>
     57482                                                <MaxTileCol>16525</MaxTileCol>
     57483                                        </TileMatrixLimits>
     57484                                        <TileMatrixLimits>
     57485                                                <TileMatrix>16</TileMatrix>
     57486                                                <MinTileRow>23564</MinTileRow>
     57487                                                <MaxTileRow>23613</MaxTileRow>
     57488                                                <MinTileCol>33012</MinTileCol>
     57489                                                <MaxTileCol>33051</MaxTileCol>
     57490                                        </TileMatrixLimits>
     57491                                        <TileMatrixLimits>
     57492                                                <TileMatrix>17</TileMatrix>
     57493                                                <MinTileRow>47128</MinTileRow>
     57494                                                <MaxTileRow>47227</MaxTileRow>
     57495                                                <MinTileCol>66024</MinTileCol>
     57496                                                <MaxTileCol>66102</MaxTileCol>
     57497                                        </TileMatrixLimits>
     57498                                        <TileMatrixLimits>
     57499                                                <TileMatrix>18</TileMatrix>
     57500                                                <MinTileRow>94257</MinTileRow>
     57501                                                <MaxTileRow>94455</MaxTileRow>
     57502                                                <MinTileCol>132048</MinTileCol>
     57503                                                <MaxTileCol>132205</MaxTileCol>
     57504                                        </TileMatrixLimits>
     57505                                        <TileMatrixLimits>
     57506                                                <TileMatrix>2</TileMatrix>
     57507                                                <MinTileRow>1</MinTileRow>
     57508                                                <MaxTileRow>1</MaxTileRow>
     57509                                                <MinTileCol>2</MinTileCol>
     57510                                                <MaxTileCol>2</MaxTileCol>
     57511                                        </TileMatrixLimits>
     57512                                        <TileMatrixLimits>
     57513                                                <TileMatrix>3</TileMatrix>
     57514                                                <MinTileRow>2</MinTileRow>
     57515                                                <MaxTileRow>2</MaxTileRow>
     57516                                                <MinTileCol>4</MinTileCol>
     57517                                                <MaxTileCol>4</MaxTileCol>
     57518                                        </TileMatrixLimits>
     57519                                        <TileMatrixLimits>
     57520                                                <TileMatrix>4</TileMatrix>
     57521                                                <MinTileRow>5</MinTileRow>
     57522                                                <MaxTileRow>5</MaxTileRow>
     57523                                                <MinTileCol>8</MinTileCol>
     57524                                                <MaxTileCol>8</MaxTileCol>
     57525                                        </TileMatrixLimits>
     57526                                        <TileMatrixLimits>
     57527                                                <TileMatrix>5</TileMatrix>
     57528                                                <MinTileRow>11</MinTileRow>
     57529                                                <MaxTileRow>11</MaxTileRow>
     57530                                                <MinTileCol>16</MinTileCol>
     57531                                                <MaxTileCol>16</MaxTileCol>
     57532                                        </TileMatrixLimits>
     57533                                        <TileMatrixLimits>
     57534                                                <TileMatrix>6</TileMatrix>
     57535                                                <MinTileRow>23</MinTileRow>
     57536                                                <MaxTileRow>23</MaxTileRow>
     57537                                                <MinTileCol>32</MinTileCol>
     57538                                                <MaxTileCol>32</MaxTileCol>
     57539                                        </TileMatrixLimits>
     57540                                        <TileMatrixLimits>
     57541                                                <TileMatrix>7</TileMatrix>
     57542                                                <MinTileRow>46</MinTileRow>
     57543                                                <MaxTileRow>46</MaxTileRow>
     57544                                                <MinTileCol>64</MinTileCol>
     57545                                                <MaxTileCol>64</MaxTileCol>
     57546                                        </TileMatrixLimits>
     57547                                        <TileMatrixLimits>
     57548                                                <TileMatrix>8</TileMatrix>
     57549                                                <MinTileRow>92</MinTileRow>
     57550                                                <MaxTileRow>92</MaxTileRow>
     57551                                                <MinTileCol>128</MinTileCol>
     57552                                                <MaxTileCol>129</MaxTileCol>
     57553                                        </TileMatrixLimits>
     57554                                        <TileMatrixLimits>
     57555                                                <TileMatrix>9</TileMatrix>
     57556                                                <MinTileRow>184</MinTileRow>
     57557                                                <MaxTileRow>184</MaxTileRow>
     57558                                                <MinTileCol>257</MinTileCol>
     57559                                                <MaxTileCol>258</MaxTileCol>
     57560                                        </TileMatrixLimits>
     57561                                </TileMatrixSetLimits>
     57562                        </TileMatrixSetLink>
     57563                </Layer>
     57564                <Layer>
     57565                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57566                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57567                        <ows:Keywords>
     57568                                <ows:Keyword>Photographies</ows:Keyword>
     57569                        </ows:Keywords>
     57570                        <ows:WGS84BoundingBox>
     57571                                <ows:LowerCorner>1.87378 44.6394</ows:LowerCorner>
     57572                                <ows:UpperCorner>2.14252 44.8398</ows:UpperCorner>
     57573                        </ows:WGS84BoundingBox>
     57574                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-04-39663827</ows:Identifier>
     57575                        <Style isDefault="true">
     57576                                <ows:Title>Données Brutes</ows:Title>
     57577                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57578                                <ows:Keywords>
     57579                                        <ows:Keyword>Défaut</ows:Keyword>
     57580                                </ows:Keywords>
     57581                                <ows:Identifier>normal</ows:Identifier>
     57582                                <LegendURL format="image/jpeg" height="200"
     57583                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57584                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57585                        </Style>
     57586                        <Format>image/jpeg</Format>
     57587                        <TileMatrixSetLink>
     57588                                <TileMatrixSet>PM</TileMatrixSet>
     57589                                <TileMatrixSetLimits>
     57590                                        <TileMatrixLimits>
     57591                                                <TileMatrix>0</TileMatrix>
     57592                                                <MinTileRow>0</MinTileRow>
     57593                                                <MaxTileRow>0</MaxTileRow>
     57594                                                <MinTileCol>0</MinTileCol>
     57595                                                <MaxTileCol>0</MaxTileCol>
     57596                                        </TileMatrixLimits>
     57597                                        <TileMatrixLimits>
     57598                                                <TileMatrix>1</TileMatrix>
     57599                                                <MinTileRow>0</MinTileRow>
     57600                                                <MaxTileRow>0</MaxTileRow>
     57601                                                <MinTileCol>1</MinTileCol>
     57602                                                <MaxTileCol>1</MaxTileCol>
     57603                                        </TileMatrixLimits>
     57604                                        <TileMatrixLimits>
     57605                                                <TileMatrix>10</TileMatrix>
     57606                                                <MinTileRow>369</MinTileRow>
     57607                                                <MaxTileRow>369</MaxTileRow>
     57608                                                <MinTileCol>517</MinTileCol>
     57609                                                <MaxTileCol>518</MaxTileCol>
     57610                                        </TileMatrixLimits>
     57611                                        <TileMatrixLimits>
     57612                                                <TileMatrix>11</TileMatrix>
     57613                                                <MinTileRow>738</MinTileRow>
     57614                                                <MaxTileRow>739</MaxTileRow>
     57615                                                <MinTileCol>1034</MinTileCol>
     57616                                                <MaxTileCol>1036</MaxTileCol>
     57617                                        </TileMatrixLimits>
     57618                                        <TileMatrixLimits>
     57619                                                <TileMatrix>12</TileMatrix>
     57620                                                <MinTileRow>1476</MinTileRow>
     57621                                                <MaxTileRow>1479</MaxTileRow>
     57622                                                <MinTileCol>2069</MinTileCol>
     57623                                                <MaxTileCol>2072</MaxTileCol>
     57624                                        </TileMatrixLimits>
     57625                                        <TileMatrixLimits>
     57626                                                <TileMatrix>13</TileMatrix>
     57627                                                <MinTileRow>2952</MinTileRow>
     57628                                                <MaxTileRow>2958</MaxTileRow>
     57629                                                <MinTileCol>4138</MinTileCol>
     57630                                                <MaxTileCol>4144</MaxTileCol>
     57631                                        </TileMatrixLimits>
     57632                                        <TileMatrixLimits>
     57633                                                <TileMatrix>14</TileMatrix>
     57634                                                <MinTileRow>5904</MinTileRow>
     57635                                                <MaxTileRow>5916</MaxTileRow>
     57636                                                <MinTileCol>8277</MinTileCol>
     57637                                                <MaxTileCol>8289</MaxTileCol>
     57638                                        </TileMatrixLimits>
     57639                                        <TileMatrixLimits>
     57640                                                <TileMatrix>15</TileMatrix>
     57641                                                <MinTileRow>11808</MinTileRow>
     57642                                                <MaxTileRow>11833</MaxTileRow>
     57643                                                <MinTileCol>16554</MinTileCol>
     57644                                                <MaxTileCol>16579</MaxTileCol>
     57645                                        </TileMatrixLimits>
     57646                                        <TileMatrixLimits>
     57647                                                <TileMatrix>16</TileMatrix>
     57648                                                <MinTileRow>23616</MinTileRow>
     57649                                                <MaxTileRow>23667</MaxTileRow>
     57650                                                <MinTileCol>33109</MinTileCol>
     57651                                                <MaxTileCol>33158</MaxTileCol>
     57652                                        </TileMatrixLimits>
     57653                                        <TileMatrixLimits>
     57654                                                <TileMatrix>17</TileMatrix>
     57655                                                <MinTileRow>47232</MinTileRow>
     57656                                                <MaxTileRow>47334</MaxTileRow>
     57657                                                <MinTileCol>66218</MinTileCol>
     57658                                                <MaxTileCol>66316</MaxTileCol>
     57659                                        </TileMatrixLimits>
     57660                                        <TileMatrixLimits>
     57661                                                <TileMatrix>18</TileMatrix>
     57662                                                <MinTileRow>94465</MinTileRow>
     57663                                                <MaxTileRow>94669</MaxTileRow>
     57664                                                <MinTileCol>132436</MinTileCol>
     57665                                                <MaxTileCol>132632</MaxTileCol>
     57666                                        </TileMatrixLimits>
     57667                                        <TileMatrixLimits>
     57668                                                <TileMatrix>2</TileMatrix>
     57669                                                <MinTileRow>1</MinTileRow>
     57670                                                <MaxTileRow>1</MaxTileRow>
     57671                                                <MinTileCol>2</MinTileCol>
     57672                                                <MaxTileCol>2</MaxTileCol>
     57673                                        </TileMatrixLimits>
     57674                                        <TileMatrixLimits>
     57675                                                <TileMatrix>3</TileMatrix>
     57676                                                <MinTileRow>2</MinTileRow>
     57677                                                <MaxTileRow>2</MaxTileRow>
     57678                                                <MinTileCol>4</MinTileCol>
     57679                                                <MaxTileCol>4</MaxTileCol>
     57680                                        </TileMatrixLimits>
     57681                                        <TileMatrixLimits>
     57682                                                <TileMatrix>4</TileMatrix>
     57683                                                <MinTileRow>5</MinTileRow>
     57684                                                <MaxTileRow>5</MaxTileRow>
     57685                                                <MinTileCol>8</MinTileCol>
     57686                                                <MaxTileCol>8</MaxTileCol>
     57687                                        </TileMatrixLimits>
     57688                                        <TileMatrixLimits>
     57689                                                <TileMatrix>5</TileMatrix>
     57690                                                <MinTileRow>11</MinTileRow>
     57691                                                <MaxTileRow>11</MaxTileRow>
     57692                                                <MinTileCol>16</MinTileCol>
     57693                                                <MaxTileCol>16</MaxTileCol>
     57694                                        </TileMatrixLimits>
     57695                                        <TileMatrixLimits>
     57696                                                <TileMatrix>6</TileMatrix>
     57697                                                <MinTileRow>23</MinTileRow>
     57698                                                <MaxTileRow>23</MaxTileRow>
     57699                                                <MinTileCol>32</MinTileCol>
     57700                                                <MaxTileCol>32</MaxTileCol>
     57701                                        </TileMatrixLimits>
     57702                                        <TileMatrixLimits>
     57703                                                <TileMatrix>7</TileMatrix>
     57704                                                <MinTileRow>46</MinTileRow>
     57705                                                <MaxTileRow>46</MaxTileRow>
     57706                                                <MinTileCol>64</MinTileCol>
     57707                                                <MaxTileCol>64</MaxTileCol>
     57708                                        </TileMatrixLimits>
     57709                                        <TileMatrixLimits>
     57710                                                <TileMatrix>8</TileMatrix>
     57711                                                <MinTileRow>92</MinTileRow>
     57712                                                <MaxTileRow>92</MaxTileRow>
     57713                                                <MinTileCol>129</MinTileCol>
     57714                                                <MaxTileCol>129</MaxTileCol>
     57715                                        </TileMatrixLimits>
     57716                                        <TileMatrixLimits>
     57717                                                <TileMatrix>9</TileMatrix>
     57718                                                <MinTileRow>184</MinTileRow>
     57719                                                <MaxTileRow>184</MaxTileRow>
     57720                                                <MinTileCol>258</MinTileCol>
     57721                                                <MaxTileCol>259</MaxTileCol>
     57722                                        </TileMatrixLimits>
     57723                                </TileMatrixSetLimits>
     57724                        </TileMatrixSetLink>
     57725                </Layer>
     57726                <Layer>
     57727                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57728                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57729                        <ows:Keywords>
     57730                                <ows:Keyword>Photographies</ows:Keyword>
     57731                        </ows:Keywords>
     57732                        <ows:WGS84BoundingBox>
     57733                                <ows:LowerCorner>1.8707 44.8014</ows:LowerCorner>
     57734                                <ows:UpperCorner>2.14004 44.9929</ows:UpperCorner>
     57735                        </ows:WGS84BoundingBox>
     57736                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-11-39433576</ows:Identifier>
     57737                        <Style isDefault="true">
     57738                                <ows:Title>Données Brutes</ows:Title>
     57739                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57740                                <ows:Keywords>
     57741                                        <ows:Keyword>Défaut</ows:Keyword>
     57742                                </ows:Keywords>
     57743                                <ows:Identifier>normal</ows:Identifier>
     57744                                <LegendURL format="image/jpeg" height="200"
     57745                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57746                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57747                        </Style>
     57748                        <Format>image/jpeg</Format>
     57749                        <TileMatrixSetLink>
     57750                                <TileMatrixSet>PM</TileMatrixSet>
     57751                                <TileMatrixSetLimits>
     57752                                        <TileMatrixLimits>
     57753                                                <TileMatrix>0</TileMatrix>
     57754                                                <MinTileRow>0</MinTileRow>
     57755                                                <MaxTileRow>0</MaxTileRow>
     57756                                                <MinTileCol>0</MinTileCol>
     57757                                                <MaxTileCol>0</MaxTileCol>
     57758                                        </TileMatrixLimits>
     57759                                        <TileMatrixLimits>
     57760                                                <TileMatrix>1</TileMatrix>
     57761                                                <MinTileRow>0</MinTileRow>
     57762                                                <MaxTileRow>0</MaxTileRow>
     57763                                                <MinTileCol>1</MinTileCol>
     57764                                                <MaxTileCol>1</MaxTileCol>
     57765                                        </TileMatrixLimits>
     57766                                        <TileMatrixLimits>
     57767                                                <TileMatrix>10</TileMatrix>
     57768                                                <MinTileRow>368</MinTileRow>
     57769                                                <MaxTileRow>369</MaxTileRow>
     57770                                                <MinTileCol>517</MinTileCol>
     57771                                                <MaxTileCol>518</MaxTileCol>
     57772                                        </TileMatrixLimits>
     57773                                        <TileMatrixLimits>
     57774                                                <TileMatrix>11</TileMatrix>
     57775                                                <MinTileRow>736</MinTileRow>
     57776                                                <MaxTileRow>738</MaxTileRow>
     57777                                                <MinTileCol>1034</MinTileCol>
     57778                                                <MaxTileCol>1036</MaxTileCol>
     57779                                        </TileMatrixLimits>
     57780                                        <TileMatrixLimits>
     57781                                                <TileMatrix>12</TileMatrix>
     57782                                                <MinTileRow>1473</MinTileRow>
     57783                                                <MaxTileRow>1476</MaxTileRow>
     57784                                                <MinTileCol>2069</MinTileCol>
     57785                                                <MaxTileCol>2072</MaxTileCol>
     57786                                        </TileMatrixLimits>
     57787                                        <TileMatrixLimits>
     57788                                                <TileMatrix>13</TileMatrix>
     57789                                                <MinTileRow>2947</MinTileRow>
     57790                                                <MaxTileRow>2953</MaxTileRow>
     57791                                                <MinTileCol>4138</MinTileCol>
     57792                                                <MaxTileCol>4144</MaxTileCol>
     57793                                        </TileMatrixLimits>
     57794                                        <TileMatrixLimits>
     57795                                                <TileMatrix>14</TileMatrix>
     57796                                                <MinTileRow>5894</MinTileRow>
     57797                                                <MaxTileRow>5906</MaxTileRow>
     57798                                                <MinTileCol>8277</MinTileCol>
     57799                                                <MaxTileCol>8289</MaxTileCol>
     57800                                        </TileMatrixLimits>
     57801                                        <TileMatrixLimits>
     57802                                                <TileMatrix>15</TileMatrix>
     57803                                                <MinTileRow>11788</MinTileRow>
     57804                                                <MaxTileRow>11812</MaxTileRow>
     57805                                                <MinTileCol>16554</MinTileCol>
     57806                                                <MaxTileCol>16578</MaxTileCol>
     57807                                        </TileMatrixLimits>
     57808                                        <TileMatrixLimits>
     57809                                                <TileMatrix>16</TileMatrix>
     57810                                                <MinTileRow>23576</MinTileRow>
     57811                                                <MaxTileRow>23625</MaxTileRow>
     57812                                                <MinTileCol>33108</MinTileCol>
     57813                                                <MaxTileCol>33157</MaxTileCol>
     57814                                        </TileMatrixLimits>
     57815                                        <TileMatrixLimits>
     57816                                                <TileMatrix>17</TileMatrix>
     57817                                                <MinTileRow>47153</MinTileRow>
     57818                                                <MaxTileRow>47251</MaxTileRow>
     57819                                                <MinTileCol>66217</MinTileCol>
     57820                                                <MaxTileCol>66315</MaxTileCol>
     57821                                        </TileMatrixLimits>
     57822                                        <TileMatrixLimits>
     57823                                                <TileMatrix>18</TileMatrix>
     57824                                                <MinTileRow>94307</MinTileRow>
     57825                                                <MaxTileRow>94503</MaxTileRow>
     57826                                                <MinTileCol>132434</MinTileCol>
     57827                                                <MaxTileCol>132630</MaxTileCol>
     57828                                        </TileMatrixLimits>
     57829                                        <TileMatrixLimits>
     57830                                                <TileMatrix>2</TileMatrix>
     57831                                                <MinTileRow>1</MinTileRow>
     57832                                                <MaxTileRow>1</MaxTileRow>
     57833                                                <MinTileCol>2</MinTileCol>
     57834                                                <MaxTileCol>2</MaxTileCol>
     57835                                        </TileMatrixLimits>
     57836                                        <TileMatrixLimits>
     57837                                                <TileMatrix>3</TileMatrix>
     57838                                                <MinTileRow>2</MinTileRow>
     57839                                                <MaxTileRow>2</MaxTileRow>
     57840                                                <MinTileCol>4</MinTileCol>
     57841                                                <MaxTileCol>4</MaxTileCol>
     57842                                        </TileMatrixLimits>
     57843                                        <TileMatrixLimits>
     57844                                                <TileMatrix>4</TileMatrix>
     57845                                                <MinTileRow>5</MinTileRow>
     57846                                                <MaxTileRow>5</MaxTileRow>
     57847                                                <MinTileCol>8</MinTileCol>
     57848                                                <MaxTileCol>8</MaxTileCol>
     57849                                        </TileMatrixLimits>
     57850                                        <TileMatrixLimits>
     57851                                                <TileMatrix>5</TileMatrix>
     57852                                                <MinTileRow>11</MinTileRow>
     57853                                                <MaxTileRow>11</MaxTileRow>
     57854                                                <MinTileCol>16</MinTileCol>
     57855                                                <MaxTileCol>16</MaxTileCol>
     57856                                        </TileMatrixLimits>
     57857                                        <TileMatrixLimits>
     57858                                                <TileMatrix>6</TileMatrix>
     57859                                                <MinTileRow>23</MinTileRow>
     57860                                                <MaxTileRow>23</MaxTileRow>
     57861                                                <MinTileCol>32</MinTileCol>
     57862                                                <MaxTileCol>32</MaxTileCol>
     57863                                        </TileMatrixLimits>
     57864                                        <TileMatrixLimits>
     57865                                                <TileMatrix>7</TileMatrix>
     57866                                                <MinTileRow>46</MinTileRow>
     57867                                                <MaxTileRow>46</MaxTileRow>
     57868                                                <MinTileCol>64</MinTileCol>
     57869                                                <MaxTileCol>64</MaxTileCol>
     57870                                        </TileMatrixLimits>
     57871                                        <TileMatrixLimits>
     57872                                                <TileMatrix>8</TileMatrix>
     57873                                                <MinTileRow>92</MinTileRow>
     57874                                                <MaxTileRow>92</MaxTileRow>
     57875                                                <MinTileCol>129</MinTileCol>
     57876                                                <MaxTileCol>129</MaxTileCol>
     57877                                        </TileMatrixLimits>
     57878                                        <TileMatrixLimits>
     57879                                                <TileMatrix>9</TileMatrix>
     57880                                                <MinTileRow>184</MinTileRow>
     57881                                                <MaxTileRow>184</MaxTileRow>
     57882                                                <MinTileCol>258</MinTileCol>
     57883                                                <MaxTileCol>259</MaxTileCol>
     57884                                        </TileMatrixLimits>
     57885                                </TileMatrixSetLimits>
     57886                        </TileMatrixSetLink>
     57887                </Layer>
     57888                <Layer>
     57889                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     57890                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     57891                        <ows:Keywords>
     57892                                <ows:Keyword>Photographies</ows:Keyword>
     57893                        </ows:Keywords>
     57894                        <ows:WGS84BoundingBox>
     57895                                <ows:LowerCorner>1.43737 44.8683</ows:LowerCorner>
     57896                                <ows:UpperCorner>1.70847 45.0607</ows:UpperCorner>
     57897                        </ows:WGS84BoundingBox>
     57898                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-11-39456329</ows:Identifier>
     57899                        <Style isDefault="true">
     57900                                <ows:Title>Données Brutes</ows:Title>
     57901                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     57902                                <ows:Keywords>
     57903                                        <ows:Keyword>Défaut</ows:Keyword>
     57904                                </ows:Keywords>
     57905                                <ows:Identifier>normal</ows:Identifier>
     57906                                <LegendURL format="image/jpeg" height="200"
     57907                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     57908                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     57909                        </Style>
     57910                        <Format>image/jpeg</Format>
     57911                        <TileMatrixSetLink>
     57912                                <TileMatrixSet>PM</TileMatrixSet>
     57913                                <TileMatrixSetLimits>
     57914                                        <TileMatrixLimits>
     57915                                                <TileMatrix>0</TileMatrix>
     57916                                                <MinTileRow>0</MinTileRow>
     57917                                                <MaxTileRow>0</MaxTileRow>
     57918                                                <MinTileCol>0</MinTileCol>
     57919                                                <MaxTileCol>0</MaxTileCol>
     57920                                        </TileMatrixLimits>
     57921                                        <TileMatrixLimits>
     57922                                                <TileMatrix>1</TileMatrix>
     57923                                                <MinTileRow>0</MinTileRow>
     57924                                                <MaxTileRow>0</MaxTileRow>
     57925                                                <MinTileCol>1</MinTileCol>
     57926                                                <MaxTileCol>1</MaxTileCol>
     57927                                        </TileMatrixLimits>
     57928                                        <TileMatrixLimits>
     57929                                                <TileMatrix>10</TileMatrix>
     57930                                                <MinTileRow>368</MinTileRow>
     57931                                                <MaxTileRow>368</MaxTileRow>
     57932                                                <MinTileCol>516</MinTileCol>
     57933                                                <MaxTileCol>516</MaxTileCol>
     57934                                        </TileMatrixLimits>
     57935                                        <TileMatrixLimits>
     57936                                                <TileMatrix>11</TileMatrix>
     57937                                                <MinTileRow>736</MinTileRow>
     57938                                                <MaxTileRow>737</MaxTileRow>
     57939                                                <MinTileCol>1032</MinTileCol>
     57940                                                <MaxTileCol>1033</MaxTileCol>
     57941                                        </TileMatrixLimits>
     57942                                        <TileMatrixLimits>
     57943                                                <TileMatrix>12</TileMatrix>
     57944                                                <MinTileRow>1472</MinTileRow>
     57945                                                <MaxTileRow>1475</MaxTileRow>
     57946                                                <MinTileCol>2064</MinTileCol>
     57947                                                <MaxTileCol>2067</MaxTileCol>
     57948                                        </TileMatrixLimits>
     57949                                        <TileMatrixLimits>
     57950                                                <TileMatrix>13</TileMatrix>
     57951                                                <MinTileRow>2944</MinTileRow>
     57952                                                <MaxTileRow>2951</MaxTileRow>
     57953                                                <MinTileCol>4128</MinTileCol>
     57954                                                <MaxTileCol>4134</MaxTileCol>
     57955                                        </TileMatrixLimits>
     57956                                        <TileMatrixLimits>
     57957                                                <TileMatrix>14</TileMatrix>
     57958                                                <MinTileRow>5889</MinTileRow>
     57959                                                <MaxTileRow>5902</MaxTileRow>
     57960                                                <MinTileCol>8257</MinTileCol>
     57961                                                <MaxTileCol>8269</MaxTileCol>
     57962                                        </TileMatrixLimits>
     57963                                        <TileMatrixLimits>
     57964                                                <TileMatrix>15</TileMatrix>
     57965                                                <MinTileRow>11779</MinTileRow>
     57966                                                <MaxTileRow>11804</MaxTileRow>
     57967                                                <MinTileCol>16514</MinTileCol>
     57968                                                <MaxTileCol>16539</MaxTileCol>
     57969                                        </TileMatrixLimits>
     57970                                        <TileMatrixLimits>
     57971                                                <TileMatrix>16</TileMatrix>
     57972                                                <MinTileRow>23559</MinTileRow>
     57973                                                <MaxTileRow>23608</MaxTileRow>
     57974                                                <MinTileCol>33029</MinTileCol>
     57975                                                <MaxTileCol>33079</MaxTileCol>
     57976                                        </TileMatrixLimits>
     57977                                        <TileMatrixLimits>
     57978                                                <TileMatrix>17</TileMatrix>
     57979                                                <MinTileRow>47118</MinTileRow>
     57980                                                <MaxTileRow>47217</MaxTileRow>
     57981                                                <MinTileCol>66059</MinTileCol>
     57982                                                <MaxTileCol>66158</MaxTileCol>
     57983                                        </TileMatrixLimits>
     57984                                        <TileMatrixLimits>
     57985                                                <TileMatrix>18</TileMatrix>
     57986                                                <MinTileRow>94237</MinTileRow>
     57987                                                <MaxTileRow>94435</MaxTileRow>
     57988                                                <MinTileCol>132118</MinTileCol>
     57989                                                <MaxTileCol>132316</MaxTileCol>
     57990                                        </TileMatrixLimits>
     57991                                        <TileMatrixLimits>
     57992                                                <TileMatrix>2</TileMatrix>
     57993                                                <MinTileRow>1</MinTileRow>
     57994                                                <MaxTileRow>1</MaxTileRow>
     57995                                                <MinTileCol>2</MinTileCol>
     57996                                                <MaxTileCol>2</MaxTileCol>
     57997                                        </TileMatrixLimits>
     57998                                        <TileMatrixLimits>
     57999                                                <TileMatrix>3</TileMatrix>
     58000                                                <MinTileRow>2</MinTileRow>
     58001                                                <MaxTileRow>2</MaxTileRow>
     58002                                                <MinTileCol>4</MinTileCol>
     58003                                                <MaxTileCol>4</MaxTileCol>
     58004                                        </TileMatrixLimits>
     58005                                        <TileMatrixLimits>
     58006                                                <TileMatrix>4</TileMatrix>
     58007                                                <MinTileRow>5</MinTileRow>
     58008                                                <MaxTileRow>5</MaxTileRow>
     58009                                                <MinTileCol>8</MinTileCol>
     58010                                                <MaxTileCol>8</MaxTileCol>
     58011                                        </TileMatrixLimits>
     58012                                        <TileMatrixLimits>
     58013                                                <TileMatrix>5</TileMatrix>
     58014                                                <MinTileRow>11</MinTileRow>
     58015                                                <MaxTileRow>11</MaxTileRow>
     58016                                                <MinTileCol>16</MinTileCol>
     58017                                                <MaxTileCol>16</MaxTileCol>
     58018                                        </TileMatrixLimits>
     58019                                        <TileMatrixLimits>
     58020                                                <TileMatrix>6</TileMatrix>
     58021                                                <MinTileRow>23</MinTileRow>
     58022                                                <MaxTileRow>23</MaxTileRow>
     58023                                                <MinTileCol>32</MinTileCol>
     58024                                                <MaxTileCol>32</MaxTileCol>
     58025                                        </TileMatrixLimits>
     58026                                        <TileMatrixLimits>
     58027                                                <TileMatrix>7</TileMatrix>
     58028                                                <MinTileRow>46</MinTileRow>
     58029                                                <MaxTileRow>46</MaxTileRow>
     58030                                                <MinTileCol>64</MinTileCol>
     58031                                                <MaxTileCol>64</MaxTileCol>
     58032                                        </TileMatrixLimits>
     58033                                        <TileMatrixLimits>
     58034                                                <TileMatrix>8</TileMatrix>
     58035                                                <MinTileRow>92</MinTileRow>
     58036                                                <MaxTileRow>92</MaxTileRow>
     58037                                                <MinTileCol>129</MinTileCol>
     58038                                                <MaxTileCol>129</MaxTileCol>
     58039                                        </TileMatrixLimits>
     58040                                        <TileMatrixLimits>
     58041                                                <TileMatrix>9</TileMatrix>
     58042                                                <MinTileRow>184</MinTileRow>
     58043                                                <MaxTileRow>184</MaxTileRow>
     58044                                                <MinTileCol>258</MinTileCol>
     58045                                                <MaxTileCol>258</MaxTileCol>
     58046                                        </TileMatrixLimits>
     58047                                </TileMatrixSetLimits>
     58048                        </TileMatrixSetLink>
     58049                </Layer>
     58050                <Layer>
     58051                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     58052                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     58053                        <ows:Keywords>
     58054                                <ows:Keyword>Photographies</ows:Keyword>
     58055                        </ows:Keywords>
     58056                        <ows:WGS84BoundingBox>
     58057                                <ows:LowerCorner>2.53349 44.284</ows:LowerCorner>
     58058                                <ows:UpperCorner>2.79951 44.6359</ows:UpperCorner>
     58059                        </ows:WGS84BoundingBox>
     58060                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-12-38951945</ows:Identifier>
     58061                        <Style isDefault="true">
     58062                                <ows:Title>Données Brutes</ows:Title>
     58063                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58064                                <ows:Keywords>
     58065                                        <ows:Keyword>Défaut</ows:Keyword>
     58066                                </ows:Keywords>
     58067                                <ows:Identifier>normal</ows:Identifier>
     58068                                <LegendURL format="image/jpeg" height="200"
     58069                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58070                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58071                        </Style>
     58072                        <Format>image/jpeg</Format>
     58073                        <TileMatrixSetLink>
     58074                                <TileMatrixSet>PM</TileMatrixSet>
     58075                                <TileMatrixSetLimits>
     58076                                        <TileMatrixLimits>
     58077                                                <TileMatrix>0</TileMatrix>
     58078                                                <MinTileRow>0</MinTileRow>
     58079                                                <MaxTileRow>0</MaxTileRow>
     58080                                                <MinTileCol>0</MinTileCol>
     58081                                                <MaxTileCol>0</MaxTileCol>
     58082                                        </TileMatrixLimits>
     58083                                        <TileMatrixLimits>
     58084                                                <TileMatrix>1</TileMatrix>
     58085                                                <MinTileRow>0</MinTileRow>
     58086                                                <MaxTileRow>0</MaxTileRow>
     58087                                                <MinTileCol>1</MinTileCol>
     58088                                                <MaxTileCol>1</MaxTileCol>
     58089                                        </TileMatrixLimits>
     58090                                        <TileMatrixLimits>
     58091                                                <TileMatrix>10</TileMatrix>
     58092                                                <MinTileRow>369</MinTileRow>
     58093                                                <MaxTileRow>371</MaxTileRow>
     58094                                                <MinTileCol>519</MinTileCol>
     58095                                                <MaxTileCol>519</MaxTileCol>
     58096                                        </TileMatrixLimits>
     58097                                        <TileMatrixLimits>
     58098                                                <TileMatrix>11</TileMatrix>
     58099                                                <MinTileRow>739</MinTileRow>
     58100                                                <MaxTileRow>742</MaxTileRow>
     58101                                                <MinTileCol>1038</MinTileCol>
     58102                                                <MaxTileCol>1039</MaxTileCol>
     58103                                        </TileMatrixLimits>
     58104                                        <TileMatrixLimits>
     58105                                                <TileMatrix>12</TileMatrix>
     58106                                                <MinTileRow>1479</MinTileRow>
     58107                                                <MaxTileRow>1484</MaxTileRow>
     58108                                                <MinTileCol>2076</MinTileCol>
     58109                                                <MaxTileCol>2079</MaxTileCol>
     58110                                        </TileMatrixLimits>
     58111                                        <TileMatrixLimits>
     58112                                                <TileMatrix>13</TileMatrix>
     58113                                                <MinTileRow>2958</MinTileRow>
     58114                                                <MaxTileRow>2969</MaxTileRow>
     58115                                                <MinTileCol>4153</MinTileCol>
     58116                                                <MaxTileCol>4159</MaxTileCol>
     58117                                        </TileMatrixLimits>
     58118                                        <TileMatrixLimits>
     58119                                                <TileMatrix>14</TileMatrix>
     58120                                                <MinTileRow>5917</MinTileRow>
     58121                                                <MaxTileRow>5939</MaxTileRow>
     58122                                                <MinTileCol>8307</MinTileCol>
     58123                                                <MaxTileCol>8319</MaxTileCol>
     58124                                        </TileMatrixLimits>
     58125                                        <TileMatrixLimits>
     58126                                                <TileMatrix>15</TileMatrix>
     58127                                                <MinTileRow>11834</MinTileRow>
     58128                                                <MaxTileRow>11879</MaxTileRow>
     58129                                                <MinTileCol>16614</MinTileCol>
     58130                                                <MaxTileCol>16638</MaxTileCol>
     58131                                        </TileMatrixLimits>
     58132                                        <TileMatrixLimits>
     58133                                                <TileMatrix>16</TileMatrix>
     58134                                                <MinTileRow>23668</MinTileRow>
     58135                                                <MaxTileRow>23758</MaxTileRow>
     58136                                                <MinTileCol>33229</MinTileCol>
     58137                                                <MaxTileCol>33277</MaxTileCol>
     58138                                        </TileMatrixLimits>
     58139                                        <TileMatrixLimits>
     58140                                                <TileMatrix>17</TileMatrix>
     58141                                                <MinTileRow>47336</MinTileRow>
     58142                                                <MaxTileRow>47516</MaxTileRow>
     58143                                                <MinTileCol>66458</MinTileCol>
     58144                                                <MaxTileCol>66555</MaxTileCol>
     58145                                        </TileMatrixLimits>
     58146                                        <TileMatrixLimits>
     58147                                                <TileMatrix>18</TileMatrix>
     58148                                                <MinTileRow>94673</MinTileRow>
     58149                                                <MaxTileRow>95032</MaxTileRow>
     58150                                                <MinTileCol>132916</MinTileCol>
     58151                                                <MaxTileCol>133110</MaxTileCol>
     58152                                        </TileMatrixLimits>
     58153                                        <TileMatrixLimits>
     58154                                                <TileMatrix>2</TileMatrix>
     58155                                                <MinTileRow>1</MinTileRow>
     58156                                                <MaxTileRow>1</MaxTileRow>
     58157                                                <MinTileCol>2</MinTileCol>
     58158                                                <MaxTileCol>2</MaxTileCol>
     58159                                        </TileMatrixLimits>
     58160                                        <TileMatrixLimits>
     58161                                                <TileMatrix>3</TileMatrix>
     58162                                                <MinTileRow>2</MinTileRow>
     58163                                                <MaxTileRow>2</MaxTileRow>
     58164                                                <MinTileCol>4</MinTileCol>
     58165                                                <MaxTileCol>4</MaxTileCol>
     58166                                        </TileMatrixLimits>
     58167                                        <TileMatrixLimits>
     58168                                                <TileMatrix>4</TileMatrix>
     58169                                                <MinTileRow>5</MinTileRow>
     58170                                                <MaxTileRow>5</MaxTileRow>
     58171                                                <MinTileCol>8</MinTileCol>
     58172                                                <MaxTileCol>8</MaxTileCol>
     58173                                        </TileMatrixLimits>
     58174                                        <TileMatrixLimits>
     58175                                                <TileMatrix>5</TileMatrix>
     58176                                                <MinTileRow>11</MinTileRow>
     58177                                                <MaxTileRow>11</MaxTileRow>
     58178                                                <MinTileCol>16</MinTileCol>
     58179                                                <MaxTileCol>16</MaxTileCol>
     58180                                        </TileMatrixLimits>
     58181                                        <TileMatrixLimits>
     58182                                                <TileMatrix>6</TileMatrix>
     58183                                                <MinTileRow>23</MinTileRow>
     58184                                                <MaxTileRow>23</MaxTileRow>
     58185                                                <MinTileCol>32</MinTileCol>
     58186                                                <MaxTileCol>32</MaxTileCol>
     58187                                        </TileMatrixLimits>
     58188                                        <TileMatrixLimits>
     58189                                                <TileMatrix>7</TileMatrix>
     58190                                                <MinTileRow>46</MinTileRow>
     58191                                                <MaxTileRow>46</MaxTileRow>
     58192                                                <MinTileCol>64</MinTileCol>
     58193                                                <MaxTileCol>64</MaxTileCol>
     58194                                        </TileMatrixLimits>
     58195                                        <TileMatrixLimits>
     58196                                                <TileMatrix>8</TileMatrix>
     58197                                                <MinTileRow>92</MinTileRow>
     58198                                                <MaxTileRow>92</MaxTileRow>
     58199                                                <MinTileCol>129</MinTileCol>
     58200                                                <MaxTileCol>129</MaxTileCol>
     58201                                        </TileMatrixLimits>
     58202                                        <TileMatrixLimits>
     58203                                                <TileMatrix>9</TileMatrix>
     58204                                                <MinTileRow>184</MinTileRow>
     58205                                                <MaxTileRow>185</MaxTileRow>
     58206                                                <MinTileCol>259</MinTileCol>
     58207                                                <MaxTileCol>259</MaxTileCol>
     58208                                        </TileMatrixLimits>
     58209                                </TileMatrixSetLimits>
     58210                        </TileMatrixSetLink>
     58211                </Layer>
     58212                <Layer>
     58213                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     58214                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     58215                        <ows:Keywords>
     58216                                <ows:Keyword>Photographies</ows:Keyword>
     58217                        </ows:Keywords>
     58218                        <ows:WGS84BoundingBox>
     58219                                <ows:LowerCorner>2.08742 44.4163</ows:LowerCorner>
     58220                                <ows:UpperCorner>2.35943 44.9313</ows:UpperCorner>
     58221                        </ows:WGS84BoundingBox>
     58222                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-18-39227949</ows:Identifier>
     58223                        <Style isDefault="true">
     58224                                <ows:Title>Données Brutes</ows:Title>
     58225                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58226                                <ows:Keywords>
     58227                                        <ows:Keyword>Défaut</ows:Keyword>
     58228                                </ows:Keywords>
     58229                                <ows:Identifier>normal</ows:Identifier>
     58230                                <LegendURL format="image/jpeg" height="200"
     58231                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58232                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58233                        </Style>
     58234                        <Format>image/jpeg</Format>
     58235                        <TileMatrixSetLink>
     58236                                <TileMatrixSet>PM</TileMatrixSet>
     58237                                <TileMatrixSetLimits>
     58238                                        <TileMatrixLimits>
     58239                                                <TileMatrix>0</TileMatrix>
     58240                                                <MinTileRow>0</MinTileRow>
     58241                                                <MaxTileRow>0</MaxTileRow>
     58242                                                <MinTileCol>0</MinTileCol>
     58243                                                <MaxTileCol>0</MaxTileCol>
     58244                                        </TileMatrixLimits>
     58245                                        <TileMatrixLimits>
     58246                                                <TileMatrix>1</TileMatrix>
     58247                                                <MinTileRow>0</MinTileRow>
     58248                                                <MaxTileRow>0</MaxTileRow>
     58249                                                <MinTileCol>1</MinTileCol>
     58250                                                <MaxTileCol>1</MaxTileCol>
     58251                                        </TileMatrixLimits>
     58252                                        <TileMatrixLimits>
     58253                                                <TileMatrix>10</TileMatrix>
     58254                                                <MinTileRow>368</MinTileRow>
     58255                                                <MaxTileRow>370</MaxTileRow>
     58256                                                <MinTileCol>517</MinTileCol>
     58257                                                <MaxTileCol>518</MaxTileCol>
     58258                                        </TileMatrixLimits>
     58259                                        <TileMatrixLimits>
     58260                                                <TileMatrix>11</TileMatrix>
     58261                                                <MinTileRow>737</MinTileRow>
     58262                                                <MaxTileRow>741</MaxTileRow>
     58263                                                <MinTileCol>1035</MinTileCol>
     58264                                                <MaxTileCol>1037</MaxTileCol>
     58265                                        </TileMatrixLimits>
     58266                                        <TileMatrixLimits>
     58267                                                <TileMatrix>12</TileMatrix>
     58268                                                <MinTileRow>1474</MinTileRow>
     58269                                                <MaxTileRow>1482</MaxTileRow>
     58270                                                <MinTileCol>2071</MinTileCol>
     58271                                                <MaxTileCol>2074</MaxTileCol>
     58272                                        </TileMatrixLimits>
     58273                                        <TileMatrixLimits>
     58274                                                <TileMatrix>13</TileMatrix>
     58275                                                <MinTileRow>2949</MinTileRow>
     58276                                                <MaxTileRow>2965</MaxTileRow>
     58277                                                <MinTileCol>4143</MinTileCol>
     58278                                                <MaxTileCol>4149</MaxTileCol>
     58279                                        </TileMatrixLimits>
     58280                                        <TileMatrixLimits>
     58281                                                <TileMatrix>14</TileMatrix>
     58282                                                <MinTileRow>5898</MinTileRow>
     58283                                                <MaxTileRow>5931</MaxTileRow>
     58284                                                <MinTileCol>8286</MinTileCol>
     58285                                                <MaxTileCol>8299</MaxTileCol>
     58286                                        </TileMatrixLimits>
     58287                                        <TileMatrixLimits>
     58288                                                <TileMatrix>15</TileMatrix>
     58289                                                <MinTileRow>11796</MinTileRow>
     58290                                                <MaxTileRow>11862</MaxTileRow>
     58291                                                <MinTileCol>16573</MinTileCol>
     58292                                                <MaxTileCol>16598</MaxTileCol>
     58293                                        </TileMatrixLimits>
     58294                                        <TileMatrixLimits>
     58295                                                <TileMatrix>16</TileMatrix>
     58296                                                <MinTileRow>23593</MinTileRow>
     58297                                                <MaxTileRow>23724</MaxTileRow>
     58298                                                <MinTileCol>33147</MinTileCol>
     58299                                                <MaxTileCol>33197</MaxTileCol>
     58300                                        </TileMatrixLimits>
     58301                                        <TileMatrixLimits>
     58302                                                <TileMatrix>17</TileMatrix>
     58303                                                <MinTileRow>47186</MinTileRow>
     58304                                                <MaxTileRow>47448</MaxTileRow>
     58305                                                <MinTileCol>66295</MinTileCol>
     58306                                                <MaxTileCol>66395</MaxTileCol>
     58307                                        </TileMatrixLimits>
     58308                                        <TileMatrixLimits>
     58309                                                <TileMatrix>18</TileMatrix>
     58310                                                <MinTileRow>94372</MinTileRow>
     58311                                                <MaxTileRow>94897</MaxTileRow>
     58312                                                <MinTileCol>132591</MinTileCol>
     58313                                                <MaxTileCol>132790</MaxTileCol>
     58314                                        </TileMatrixLimits>
     58315                                        <TileMatrixLimits>
     58316                                                <TileMatrix>2</TileMatrix>
     58317                                                <MinTileRow>1</MinTileRow>
     58318                                                <MaxTileRow>1</MaxTileRow>
     58319                                                <MinTileCol>2</MinTileCol>
     58320                                                <MaxTileCol>2</MaxTileCol>
     58321                                        </TileMatrixLimits>
     58322                                        <TileMatrixLimits>
     58323                                                <TileMatrix>3</TileMatrix>
     58324                                                <MinTileRow>2</MinTileRow>
     58325                                                <MaxTileRow>2</MaxTileRow>
     58326                                                <MinTileCol>4</MinTileCol>
     58327                                                <MaxTileCol>4</MaxTileCol>
     58328                                        </TileMatrixLimits>
     58329                                        <TileMatrixLimits>
     58330                                                <TileMatrix>4</TileMatrix>
     58331                                                <MinTileRow>5</MinTileRow>
     58332                                                <MaxTileRow>5</MaxTileRow>
     58333                                                <MinTileCol>8</MinTileCol>
     58334                                                <MaxTileCol>8</MaxTileCol>
     58335                                        </TileMatrixLimits>
     58336                                        <TileMatrixLimits>
     58337                                                <TileMatrix>5</TileMatrix>
     58338                                                <MinTileRow>11</MinTileRow>
     58339                                                <MaxTileRow>11</MaxTileRow>
     58340                                                <MinTileCol>16</MinTileCol>
     58341                                                <MaxTileCol>16</MaxTileCol>
     58342                                        </TileMatrixLimits>
     58343                                        <TileMatrixLimits>
     58344                                                <TileMatrix>6</TileMatrix>
     58345                                                <MinTileRow>23</MinTileRow>
     58346                                                <MaxTileRow>23</MaxTileRow>
     58347                                                <MinTileCol>32</MinTileCol>
     58348                                                <MaxTileCol>32</MaxTileCol>
     58349                                        </TileMatrixLimits>
     58350                                        <TileMatrixLimits>
     58351                                                <TileMatrix>7</TileMatrix>
     58352                                                <MinTileRow>46</MinTileRow>
     58353                                                <MaxTileRow>46</MaxTileRow>
     58354                                                <MinTileCol>64</MinTileCol>
     58355                                                <MaxTileCol>64</MaxTileCol>
     58356                                        </TileMatrixLimits>
     58357                                        <TileMatrixLimits>
     58358                                                <TileMatrix>8</TileMatrix>
     58359                                                <MinTileRow>92</MinTileRow>
     58360                                                <MaxTileRow>92</MaxTileRow>
     58361                                                <MinTileCol>129</MinTileCol>
     58362                                                <MaxTileCol>129</MaxTileCol>
     58363                                        </TileMatrixLimits>
     58364                                        <TileMatrixLimits>
     58365                                                <TileMatrix>9</TileMatrix>
     58366                                                <MinTileRow>184</MinTileRow>
     58367                                                <MaxTileRow>185</MaxTileRow>
     58368                                                <MinTileCol>258</MinTileCol>
     58369                                                <MaxTileCol>259</MaxTileCol>
     58370                                        </TileMatrixLimits>
     58371                                </TileMatrixSetLimits>
     58372                        </TileMatrixSetLink>
     58373                </Layer>
     58374                <Layer>
     58375                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     58376                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     58377                        <ows:Keywords>
     58378                                <ows:Keyword>Photographies</ows:Keyword>
     58379                        </ows:Keywords>
     58380                        <ows:WGS84BoundingBox>
     58381                                <ows:LowerCorner>2.08742 44.4163</ows:LowerCorner>
     58382                                <ows:UpperCorner>2.37199 44.9314</ows:UpperCorner>
     58383                        </ows:WGS84BoundingBox>
     58384                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RESTE-MIDPY-2013-12-31-39148329</ows:Identifier>
     58385                        <Style isDefault="true">
     58386                                <ows:Title>Données Brutes</ows:Title>
     58387                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58388                                <ows:Keywords>
     58389                                        <ows:Keyword>Défaut</ows:Keyword>
     58390                                </ows:Keywords>
     58391                                <ows:Identifier>normal</ows:Identifier>
     58392                                <LegendURL format="image/jpeg" height="200"
     58393                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58394                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58395                        </Style>
     58396                        <Format>image/jpeg</Format>
     58397                        <TileMatrixSetLink>
     58398                                <TileMatrixSet>PM</TileMatrixSet>
     58399                                <TileMatrixSetLimits>
     58400                                        <TileMatrixLimits>
     58401                                                <TileMatrix>0</TileMatrix>
     58402                                                <MinTileRow>0</MinTileRow>
     58403                                                <MaxTileRow>0</MaxTileRow>
     58404                                                <MinTileCol>0</MinTileCol>
     58405                                                <MaxTileCol>0</MaxTileCol>
     58406                                        </TileMatrixLimits>
     58407                                        <TileMatrixLimits>
     58408                                                <TileMatrix>1</TileMatrix>
     58409                                                <MinTileRow>0</MinTileRow>
     58410                                                <MaxTileRow>0</MaxTileRow>
     58411                                                <MinTileCol>1</MinTileCol>
     58412                                                <MaxTileCol>1</MaxTileCol>
     58413                                        </TileMatrixLimits>
     58414                                        <TileMatrixLimits>
     58415                                                <TileMatrix>10</TileMatrix>
     58416                                                <MinTileRow>368</MinTileRow>
     58417                                                <MaxTileRow>370</MaxTileRow>
     58418                                                <MinTileCol>517</MinTileCol>
     58419                                                <MaxTileCol>518</MaxTileCol>
     58420                                        </TileMatrixLimits>
     58421                                        <TileMatrixLimits>
     58422                                                <TileMatrix>11</TileMatrix>
     58423                                                <MinTileRow>737</MinTileRow>
     58424                                                <MaxTileRow>741</MaxTileRow>
     58425                                                <MinTileCol>1035</MinTileCol>
     58426                                                <MaxTileCol>1037</MaxTileCol>
     58427                                        </TileMatrixLimits>
     58428                                        <TileMatrixLimits>
     58429                                                <TileMatrix>12</TileMatrix>
     58430                                                <MinTileRow>1474</MinTileRow>
     58431                                                <MaxTileRow>1482</MaxTileRow>
     58432                                                <MinTileCol>2071</MinTileCol>
     58433                                                <MaxTileCol>2074</MaxTileCol>
     58434                                        </TileMatrixLimits>
     58435                                        <TileMatrixLimits>
     58436                                                <TileMatrix>13</TileMatrix>
     58437                                                <MinTileRow>2949</MinTileRow>
     58438                                                <MaxTileRow>2965</MaxTileRow>
     58439                                                <MinTileCol>4143</MinTileCol>
     58440                                                <MaxTileCol>4149</MaxTileCol>
     58441                                        </TileMatrixLimits>
     58442                                        <TileMatrixLimits>
     58443                                                <TileMatrix>14</TileMatrix>
     58444                                                <MinTileRow>5898</MinTileRow>
     58445                                                <MaxTileRow>5931</MaxTileRow>
     58446                                                <MinTileCol>8287</MinTileCol>
     58447                                                <MaxTileCol>8299</MaxTileCol>
     58448                                        </TileMatrixLimits>
     58449                                        <TileMatrixLimits>
     58450                                                <TileMatrix>15</TileMatrix>
     58451                                                <MinTileRow>11796</MinTileRow>
     58452                                                <MaxTileRow>11862</MaxTileRow>
     58453                                                <MinTileCol>16574</MinTileCol>
     58454                                                <MaxTileCol>16599</MaxTileCol>
     58455                                        </TileMatrixLimits>
     58456                                        <TileMatrixLimits>
     58457                                                <TileMatrix>16</TileMatrix>
     58458                                                <MinTileRow>23593</MinTileRow>
     58459                                                <MaxTileRow>23724</MaxTileRow>
     58460                                                <MinTileCol>33148</MinTileCol>
     58461                                                <MaxTileCol>33199</MaxTileCol>
     58462                                        </TileMatrixLimits>
     58463                                        <TileMatrixLimits>
     58464                                                <TileMatrix>17</TileMatrix>
     58465                                                <MinTileRow>47186</MinTileRow>
     58466                                                <MaxTileRow>47448</MaxTileRow>
     58467                                                <MinTileCol>66296</MinTileCol>
     58468                                                <MaxTileCol>66398</MaxTileCol>
     58469                                        </TileMatrixLimits>
     58470                                        <TileMatrixLimits>
     58471                                                <TileMatrix>18</TileMatrix>
     58472                                                <MinTileRow>94372</MinTileRow>
     58473                                                <MaxTileRow>94897</MaxTileRow>
     58474                                                <MinTileCol>132592</MinTileCol>
     58475                                                <MaxTileCol>132797</MaxTileCol>
     58476                                        </TileMatrixLimits>
     58477                                        <TileMatrixLimits>
     58478                                                <TileMatrix>2</TileMatrix>
     58479                                                <MinTileRow>1</MinTileRow>
     58480                                                <MaxTileRow>1</MaxTileRow>
     58481                                                <MinTileCol>2</MinTileCol>
     58482                                                <MaxTileCol>2</MaxTileCol>
     58483                                        </TileMatrixLimits>
     58484                                        <TileMatrixLimits>
     58485                                                <TileMatrix>3</TileMatrix>
     58486                                                <MinTileRow>2</MinTileRow>
     58487                                                <MaxTileRow>2</MaxTileRow>
     58488                                                <MinTileCol>4</MinTileCol>
     58489                                                <MaxTileCol>4</MaxTileCol>
     58490                                        </TileMatrixLimits>
     58491                                        <TileMatrixLimits>
     58492                                                <TileMatrix>4</TileMatrix>
     58493                                                <MinTileRow>5</MinTileRow>
     58494                                                <MaxTileRow>5</MaxTileRow>
     58495                                                <MinTileCol>8</MinTileCol>
     58496                                                <MaxTileCol>8</MaxTileCol>
     58497                                        </TileMatrixLimits>
     58498                                        <TileMatrixLimits>
     58499                                                <TileMatrix>5</TileMatrix>
     58500                                                <MinTileRow>11</MinTileRow>
     58501                                                <MaxTileRow>11</MaxTileRow>
     58502                                                <MinTileCol>16</MinTileCol>
     58503                                                <MaxTileCol>16</MaxTileCol>
     58504                                        </TileMatrixLimits>
     58505                                        <TileMatrixLimits>
     58506                                                <TileMatrix>6</TileMatrix>
     58507                                                <MinTileRow>23</MinTileRow>
     58508                                                <MaxTileRow>23</MaxTileRow>
     58509                                                <MinTileCol>32</MinTileCol>
     58510                                                <MaxTileCol>32</MaxTileCol>
     58511                                        </TileMatrixLimits>
     58512                                        <TileMatrixLimits>
     58513                                                <TileMatrix>7</TileMatrix>
     58514                                                <MinTileRow>46</MinTileRow>
     58515                                                <MaxTileRow>46</MaxTileRow>
     58516                                                <MinTileCol>64</MinTileCol>
     58517                                                <MaxTileCol>64</MaxTileCol>
     58518                                        </TileMatrixLimits>
     58519                                        <TileMatrixLimits>
     58520                                                <TileMatrix>8</TileMatrix>
     58521                                                <MinTileRow>92</MinTileRow>
     58522                                                <MaxTileRow>92</MaxTileRow>
     58523                                                <MinTileCol>129</MinTileCol>
     58524                                                <MaxTileCol>129</MaxTileCol>
     58525                                        </TileMatrixLimits>
     58526                                        <TileMatrixLimits>
     58527                                                <TileMatrix>9</TileMatrix>
     58528                                                <MinTileRow>184</MinTileRow>
     58529                                                <MaxTileRow>185</MaxTileRow>
     58530                                                <MinTileCol>258</MinTileCol>
     58531                                                <MaxTileCol>259</MaxTileCol>
     58532                                        </TileMatrixLimits>
     58533                                </TileMatrixSetLimits>
     58534                        </TileMatrixSetLink>
     58535                </Layer>
     58536                <Layer>
     58537                        <ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title>
     58538                        <ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract>
     58539                        <ows:Keywords>
     58540                                <ows:Keyword>Photographies</ows:Keyword>
     58541                        </ows:Keywords>
     58542                        <ows:WGS84BoundingBox>
     58543                                <ows:LowerCorner>55.2058 -21.4013</ows:LowerCorner>
     58544                                <ows:UpperCorner>55.8464 -20.8628</ows:UpperCorner>
     58545                        </ows:WGS84BoundingBox>
     58546                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013</ows:Identifier>
     58547                        <Style isDefault="true">
     58548                                <ows:Title>Données Brutes</ows:Title>
     58549                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58550                                <ows:Keywords>
     58551                                        <ows:Keyword>Défaut</ows:Keyword>
     58552                                </ows:Keywords>
     58553                                <ows:Identifier>normal</ows:Identifier>
     58554                                <LegendURL format="image/jpeg" height="200"
     58555                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58556                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58557                        </Style>
     58558                        <Format>image/jpeg</Format>
     58559                        <TileMatrixSetLink>
     58560                                <TileMatrixSet>PM</TileMatrixSet>
     58561                                <TileMatrixSetLimits>
     58562                                        <TileMatrixLimits>
     58563                                                <TileMatrix>0</TileMatrix>
     58564                                                <MinTileRow>0</MinTileRow>
     58565                                                <MaxTileRow>0</MaxTileRow>
     58566                                                <MinTileCol>0</MinTileCol>
     58567                                                <MaxTileCol>0</MaxTileCol>
     58568                                        </TileMatrixLimits>
     58569                                        <TileMatrixLimits>
     58570                                                <TileMatrix>1</TileMatrix>
     58571                                                <MinTileRow>1</MinTileRow>
     58572                                                <MaxTileRow>1</MaxTileRow>
     58573                                                <MinTileCol>1</MinTileCol>
     58574                                                <MaxTileCol>1</MaxTileCol>
     58575                                        </TileMatrixLimits>
     58576                                        <TileMatrixLimits>
     58577                                                <TileMatrix>10</TileMatrix>
     58578                                                <MinTileRow>572</MinTileRow>
     58579                                                <MaxTileRow>574</MaxTileRow>
     58580                                                <MinTileCol>669</MinTileCol>
     58581                                                <MaxTileCol>670</MaxTileCol>
     58582                                        </TileMatrixLimits>
     58583                                        <TileMatrixLimits>
     58584                                                <TileMatrix>11</TileMatrix>
     58585                                                <MinTileRow>1145</MinTileRow>
     58586                                                <MaxTileRow>1148</MaxTileRow>
     58587                                                <MinTileCol>1338</MinTileCol>
     58588                                                <MaxTileCol>1341</MaxTileCol>
     58589                                        </TileMatrixLimits>
     58590                                        <TileMatrixLimits>
     58591                                                <TileMatrix>12</TileMatrix>
     58592                                                <MinTileRow>2290</MinTileRow>
     58593                                                <MaxTileRow>2297</MaxTileRow>
     58594                                                <MinTileCol>2676</MinTileCol>
     58595                                                <MaxTileCol>2683</MaxTileCol>
     58596                                        </TileMatrixLimits>
     58597                                        <TileMatrixLimits>
     58598                                                <TileMatrix>13</TileMatrix>
     58599                                                <MinTileRow>4581</MinTileRow>
     58600                                                <MaxTileRow>4594</MaxTileRow>
     58601                                                <MinTileCol>5352</MinTileCol>
     58602                                                <MaxTileCol>5366</MaxTileCol>
     58603                                        </TileMatrixLimits>
     58604                                        <TileMatrixLimits>
     58605                                                <TileMatrix>14</TileMatrix>
     58606                                                <MinTileRow>9163</MinTileRow>
     58607                                                <MaxTileRow>9189</MaxTileRow>
     58608                                                <MinTileCol>10704</MinTileCol>
     58609                                                <MaxTileCol>10733</MaxTileCol>
     58610                                        </TileMatrixLimits>
     58611                                        <TileMatrixLimits>
     58612                                                <TileMatrix>15</TileMatrix>
     58613                                                <MinTileRow>18326</MinTileRow>
     58614                                                <MaxTileRow>18378</MaxTileRow>
     58615                                                <MinTileCol>21409</MinTileCol>
     58616                                                <MaxTileCol>21467</MaxTileCol>
     58617                                        </TileMatrixLimits>
     58618                                        <TileMatrixLimits>
     58619                                                <TileMatrix>16</TileMatrix>
     58620                                                <MinTileRow>36653</MinTileRow>
     58621                                                <MaxTileRow>36757</MaxTileRow>
     58622                                                <MinTileCol>42818</MinTileCol>
     58623                                                <MaxTileCol>42934</MaxTileCol>
     58624                                        </TileMatrixLimits>
     58625                                        <TileMatrixLimits>
     58626                                                <TileMatrix>17</TileMatrix>
     58627                                                <MinTileRow>73306</MinTileRow>
     58628                                                <MaxTileRow>73515</MaxTileRow>
     58629                                                <MinTileCol>85637</MinTileCol>
     58630                                                <MaxTileCol>85868</MaxTileCol>
     58631                                        </TileMatrixLimits>
     58632                                        <TileMatrixLimits>
     58633                                                <TileMatrix>18</TileMatrix>
     58634                                                <MinTileRow>146612</MinTileRow>
     58635                                                <MaxTileRow>147030</MaxTileRow>
     58636                                                <MinTileCol>171274</MinTileCol>
     58637                                                <MaxTileCol>171736</MaxTileCol>
     58638                                        </TileMatrixLimits>
     58639                                        <TileMatrixLimits>
     58640                                                <TileMatrix>2</TileMatrix>
     58641                                                <MinTileRow>2</MinTileRow>
     58642                                                <MaxTileRow>2</MaxTileRow>
     58643                                                <MinTileCol>2</MinTileCol>
     58644                                                <MaxTileCol>2</MaxTileCol>
     58645                                        </TileMatrixLimits>
     58646                                        <TileMatrixLimits>
     58647                                                <TileMatrix>3</TileMatrix>
     58648                                                <MinTileRow>4</MinTileRow>
     58649                                                <MaxTileRow>4</MaxTileRow>
     58650                                                <MinTileCol>5</MinTileCol>
     58651                                                <MaxTileCol>5</MaxTileCol>
     58652                                        </TileMatrixLimits>
     58653                                        <TileMatrixLimits>
     58654                                                <TileMatrix>4</TileMatrix>
     58655                                                <MinTileRow>8</MinTileRow>
     58656                                                <MaxTileRow>8</MaxTileRow>
     58657                                                <MinTileCol>10</MinTileCol>
     58658                                                <MaxTileCol>10</MaxTileCol>
     58659                                        </TileMatrixLimits>
     58660                                        <TileMatrixLimits>
     58661                                                <TileMatrix>5</TileMatrix>
     58662                                                <MinTileRow>17</MinTileRow>
     58663                                                <MaxTileRow>17</MaxTileRow>
     58664                                                <MinTileCol>20</MinTileCol>
     58665                                                <MaxTileCol>20</MaxTileCol>
     58666                                        </TileMatrixLimits>
     58667                                        <TileMatrixLimits>
     58668                                                <TileMatrix>6</TileMatrix>
     58669                                                <MinTileRow>35</MinTileRow>
     58670                                                <MaxTileRow>35</MaxTileRow>
     58671                                                <MinTileCol>41</MinTileCol>
     58672                                                <MaxTileCol>41</MaxTileCol>
     58673                                        </TileMatrixLimits>
     58674                                        <TileMatrixLimits>
     58675                                                <TileMatrix>7</TileMatrix>
     58676                                                <MinTileRow>71</MinTileRow>
     58677                                                <MaxTileRow>71</MaxTileRow>
     58678                                                <MinTileCol>83</MinTileCol>
     58679                                                <MaxTileCol>83</MaxTileCol>
     58680                                        </TileMatrixLimits>
     58681                                        <TileMatrixLimits>
     58682                                                <TileMatrix>8</TileMatrix>
     58683                                                <MinTileRow>143</MinTileRow>
     58684                                                <MaxTileRow>143</MaxTileRow>
     58685                                                <MinTileCol>167</MinTileCol>
     58686                                                <MaxTileCol>167</MaxTileCol>
     58687                                        </TileMatrixLimits>
     58688                                        <TileMatrixLimits>
     58689                                                <TileMatrix>9</TileMatrix>
     58690                                                <MinTileRow>286</MinTileRow>
     58691                                                <MaxTileRow>287</MaxTileRow>
     58692                                                <MinTileCol>334</MinTileCol>
     58693                                                <MaxTileCol>335</MaxTileCol>
     58694                                        </TileMatrixLimits>
     58695                                </TileMatrixSetLimits>
     58696                        </TileMatrixSetLink>
     58697                </Layer>
     58698                <Layer>
     58699                        <ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title>
     58700                        <ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract>
     58701                        <ows:Keywords>
     58702                                <ows:Keyword>Photographies</ows:Keyword>
     58703                        </ows:Keywords>
     58704                        <ows:WGS84BoundingBox>
     58705                                <ows:LowerCorner>55.4858 -21.3638</ows:LowerCorner>
     58706                                <ows:UpperCorner>55.6618 -21.0913</ows:UpperCorner>
     58707                        </ows:WGS84BoundingBox>
     58708                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-15-23908619</ows:Identifier>
     58709                        <Style isDefault="true">
     58710                                <ows:Title>Données Brutes</ows:Title>
     58711                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58712                                <ows:Keywords>
     58713                                        <ows:Keyword>Défaut</ows:Keyword>
     58714                                </ows:Keywords>
     58715                                <ows:Identifier>normal</ows:Identifier>
     58716                                <LegendURL format="image/jpeg" height="200"
     58717                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58718                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58719                        </Style>
     58720                        <Format>image/jpeg</Format>
     58721                        <TileMatrixSetLink>
     58722                                <TileMatrixSet>PM</TileMatrixSet>
     58723                                <TileMatrixSetLimits>
     58724                                        <TileMatrixLimits>
     58725                                                <TileMatrix>0</TileMatrix>
     58726                                                <MinTileRow>0</MinTileRow>
     58727                                                <MaxTileRow>0</MaxTileRow>
     58728                                                <MinTileCol>0</MinTileCol>
     58729                                                <MaxTileCol>0</MaxTileCol>
     58730                                        </TileMatrixLimits>
     58731                                        <TileMatrixLimits>
     58732                                                <TileMatrix>1</TileMatrix>
     58733                                                <MinTileRow>1</MinTileRow>
     58734                                                <MaxTileRow>1</MaxTileRow>
     58735                                                <MinTileCol>1</MinTileCol>
     58736                                                <MaxTileCol>1</MaxTileCol>
     58737                                        </TileMatrixLimits>
     58738                                        <TileMatrixLimits>
     58739                                                <TileMatrix>10</TileMatrix>
     58740                                                <MinTileRow>573</MinTileRow>
     58741                                                <MaxTileRow>574</MaxTileRow>
     58742                                                <MinTileCol>669</MinTileCol>
     58743                                                <MaxTileCol>670</MaxTileCol>
     58744                                        </TileMatrixLimits>
     58745                                        <TileMatrixLimits>
     58746                                                <TileMatrix>11</TileMatrix>
     58747                                                <MinTileRow>1146</MinTileRow>
     58748                                                <MaxTileRow>1148</MaxTileRow>
     58749                                                <MinTileCol>1339</MinTileCol>
     58750                                                <MaxTileCol>1340</MaxTileCol>
     58751                                        </TileMatrixLimits>
     58752                                        <TileMatrixLimits>
     58753                                                <TileMatrix>12</TileMatrix>
     58754                                                <MinTileRow>2293</MinTileRow>
     58755                                                <MaxTileRow>2296</MaxTileRow>
     58756                                                <MinTileCol>2679</MinTileCol>
     58757                                                <MaxTileCol>2681</MaxTileCol>
     58758                                        </TileMatrixLimits>
     58759                                        <TileMatrixLimits>
     58760                                                <TileMatrix>13</TileMatrix>
     58761                                                <MinTileRow>4587</MinTileRow>
     58762                                                <MaxTileRow>4593</MaxTileRow>
     58763                                                <MinTileCol>5358</MinTileCol>
     58764                                                <MaxTileCol>5362</MaxTileCol>
     58765                                        </TileMatrixLimits>
     58766                                        <TileMatrixLimits>
     58767                                                <TileMatrix>14</TileMatrix>
     58768                                                <MinTileRow>9174</MinTileRow>
     58769                                                <MaxTileRow>9187</MaxTileRow>
     58770                                                <MinTileCol>10717</MinTileCol>
     58771                                                <MaxTileCol>10725</MaxTileCol>
     58772                                        </TileMatrixLimits>
     58773                                        <TileMatrixLimits>
     58774                                                <TileMatrix>15</TileMatrix>
     58775                                                <MinTileRow>18348</MinTileRow>
     58776                                                <MaxTileRow>18375</MaxTileRow>
     58777                                                <MinTileCol>21434</MinTileCol>
     58778                                                <MaxTileCol>21450</MaxTileCol>
     58779                                        </TileMatrixLimits>
     58780                                        <TileMatrixLimits>
     58781                                                <TileMatrix>16</TileMatrix>
     58782                                                <MinTileRow>36697</MinTileRow>
     58783                                                <MaxTileRow>36750</MaxTileRow>
     58784                                                <MinTileCol>42868</MinTileCol>
     58785                                                <MaxTileCol>42900</MaxTileCol>
     58786                                        </TileMatrixLimits>
     58787                                        <TileMatrixLimits>
     58788                                                <TileMatrix>17</TileMatrix>
     58789                                                <MinTileRow>73394</MinTileRow>
     58790                                                <MaxTileRow>73500</MaxTileRow>
     58791                                                <MinTileCol>85737</MinTileCol>
     58792                                                <MaxTileCol>85801</MaxTileCol>
     58793                                        </TileMatrixLimits>
     58794                                        <TileMatrixLimits>
     58795                                                <TileMatrix>18</TileMatrix>
     58796                                                <MinTileRow>146789</MinTileRow>
     58797                                                <MaxTileRow>147001</MaxTileRow>
     58798                                                <MinTileCol>171475</MinTileCol>
     58799                                                <MaxTileCol>171603</MaxTileCol>
     58800                                        </TileMatrixLimits>
     58801                                        <TileMatrixLimits>
     58802                                                <TileMatrix>2</TileMatrix>
     58803                                                <MinTileRow>2</MinTileRow>
     58804                                                <MaxTileRow>2</MaxTileRow>
     58805                                                <MinTileCol>2</MinTileCol>
     58806                                                <MaxTileCol>2</MaxTileCol>
     58807                                        </TileMatrixLimits>
     58808                                        <TileMatrixLimits>
     58809                                                <TileMatrix>3</TileMatrix>
     58810                                                <MinTileRow>4</MinTileRow>
     58811                                                <MaxTileRow>4</MaxTileRow>
     58812                                                <MinTileCol>5</MinTileCol>
     58813                                                <MaxTileCol>5</MaxTileCol>
     58814                                        </TileMatrixLimits>
     58815                                        <TileMatrixLimits>
     58816                                                <TileMatrix>4</TileMatrix>
     58817                                                <MinTileRow>8</MinTileRow>
     58818                                                <MaxTileRow>8</MaxTileRow>
     58819                                                <MinTileCol>10</MinTileCol>
     58820                                                <MaxTileCol>10</MaxTileCol>
     58821                                        </TileMatrixLimits>
     58822                                        <TileMatrixLimits>
     58823                                                <TileMatrix>5</TileMatrix>
     58824                                                <MinTileRow>17</MinTileRow>
     58825                                                <MaxTileRow>17</MaxTileRow>
     58826                                                <MinTileCol>20</MinTileCol>
     58827                                                <MaxTileCol>20</MaxTileCol>
     58828                                        </TileMatrixLimits>
     58829                                        <TileMatrixLimits>
     58830                                                <TileMatrix>6</TileMatrix>
     58831                                                <MinTileRow>35</MinTileRow>
     58832                                                <MaxTileRow>35</MaxTileRow>
     58833                                                <MinTileCol>41</MinTileCol>
     58834                                                <MaxTileCol>41</MaxTileCol>
     58835                                        </TileMatrixLimits>
     58836                                        <TileMatrixLimits>
     58837                                                <TileMatrix>7</TileMatrix>
     58838                                                <MinTileRow>71</MinTileRow>
     58839                                                <MaxTileRow>71</MaxTileRow>
     58840                                                <MinTileCol>83</MinTileCol>
     58841                                                <MaxTileCol>83</MaxTileCol>
     58842                                        </TileMatrixLimits>
     58843                                        <TileMatrixLimits>
     58844                                                <TileMatrix>8</TileMatrix>
     58845                                                <MinTileRow>143</MinTileRow>
     58846                                                <MaxTileRow>143</MaxTileRow>
     58847                                                <MinTileCol>167</MinTileCol>
     58848                                                <MaxTileCol>167</MaxTileCol>
     58849                                        </TileMatrixLimits>
     58850                                        <TileMatrixLimits>
     58851                                                <TileMatrix>9</TileMatrix>
     58852                                                <MinTileRow>286</MinTileRow>
     58853                                                <MaxTileRow>287</MaxTileRow>
     58854                                                <MinTileCol>334</MinTileCol>
     58855                                                <MaxTileCol>335</MaxTileCol>
     58856                                        </TileMatrixLimits>
     58857                                </TileMatrixSetLimits>
     58858                        </TileMatrixSetLink>
     58859                </Layer>
     58860                <Layer>
     58861                        <ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title>
     58862                        <ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract>
     58863                        <ows:Keywords>
     58864                                <ows:Keyword>Photographies</ows:Keyword>
     58865                        </ows:Keywords>
     58866                        <ows:WGS84BoundingBox>
     58867                                <ows:LowerCorner>55.4662 -21.3902</ows:LowerCorner>
     58868                                <ows:UpperCorner>55.5825 -21.335</ows:UpperCorner>
     58869                        </ows:WGS84BoundingBox>
     58870                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-20-24582576</ows:Identifier>
     58871                        <Style isDefault="true">
     58872                                <ows:Title>Données Brutes</ows:Title>
     58873                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     58874                                <ows:Keywords>
     58875                                        <ows:Keyword>Défaut</ows:Keyword>
     58876                                </ows:Keywords>
     58877                                <ows:Identifier>normal</ows:Identifier>
     58878                                <LegendURL format="image/jpeg" height="200"
     58879                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     58880                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     58881                        </Style>
     58882                        <Format>image/jpeg</Format>
     58883                        <TileMatrixSetLink>
     58884                                <TileMatrixSet>PM</TileMatrixSet>
     58885                                <TileMatrixSetLimits>
     58886                                        <TileMatrixLimits>
     58887                                                <TileMatrix>0</TileMatrix>
     58888                                                <MinTileRow>0</MinTileRow>
     58889                                                <MaxTileRow>0</MaxTileRow>
     58890                                                <MinTileCol>0</MinTileCol>
     58891                                                <MaxTileCol>0</MaxTileCol>
     58892                                        </TileMatrixLimits>
     58893                                        <TileMatrixLimits>
     58894                                                <TileMatrix>1</TileMatrix>
     58895                                                <MinTileRow>1</MinTileRow>
     58896                                                <MaxTileRow>1</MaxTileRow>
     58897                                                <MinTileCol>1</MinTileCol>
     58898                                                <MaxTileCol>1</MaxTileCol>
     58899                                        </TileMatrixLimits>
     58900                                        <TileMatrixLimits>
     58901                                                <TileMatrix>10</TileMatrix>
     58902                                                <MinTileRow>574</MinTileRow>
     58903                                                <MaxTileRow>574</MaxTileRow>
     58904                                                <MinTileCol>669</MinTileCol>
     58905                                                <MaxTileCol>670</MaxTileCol>
     58906                                        </TileMatrixLimits>
     58907                                        <TileMatrixLimits>
     58908                                                <TileMatrix>11</TileMatrix>
     58909                                                <MinTileRow>1148</MinTileRow>
     58910                                                <MaxTileRow>1148</MaxTileRow>
     58911                                                <MinTileCol>1339</MinTileCol>
     58912                                                <MaxTileCol>1340</MaxTileCol>
     58913                                        </TileMatrixLimits>
     58914                                        <TileMatrixLimits>
     58915                                                <TileMatrix>12</TileMatrix>
     58916                                                <MinTileRow>2296</MinTileRow>
     58917                                                <MaxTileRow>2297</MaxTileRow>
     58918                                                <MinTileCol>2679</MinTileCol>
     58919                                                <MaxTileCol>2680</MaxTileCol>
     58920                                        </TileMatrixLimits>
     58921                                        <TileMatrixLimits>
     58922                                                <TileMatrix>13</TileMatrix>
     58923                                                <MinTileRow>4593</MinTileRow>
     58924                                                <MaxTileRow>4594</MaxTileRow>
     58925                                                <MinTileCol>5358</MinTileCol>
     58926                                                <MaxTileCol>5360</MaxTileCol>
     58927                                        </TileMatrixLimits>
     58928                                        <TileMatrixLimits>
     58929                                                <TileMatrix>14</TileMatrix>
     58930                                                <MinTileRow>9186</MinTileRow>
     58931                                                <MaxTileRow>9188</MaxTileRow>
     58932                                                <MinTileCol>10716</MinTileCol>
     58933                                                <MaxTileCol>10721</MaxTileCol>
     58934                                        </TileMatrixLimits>
     58935                                        <TileMatrixLimits>
     58936                                                <TileMatrix>15</TileMatrix>
     58937                                                <MinTileRow>18372</MinTileRow>
     58938                                                <MaxTileRow>18377</MaxTileRow>
     58939                                                <MinTileCol>21432</MinTileCol>
     58940                                                <MaxTileCol>21443</MaxTileCol>
     58941                                        </TileMatrixLimits>
     58942                                        <TileMatrixLimits>
     58943                                                <TileMatrix>16</TileMatrix>
     58944                                                <MinTileRow>36744</MinTileRow>
     58945                                                <MaxTileRow>36755</MaxTileRow>
     58946                                                <MinTileCol>42865</MinTileCol>
     58947                                                <MaxTileCol>42886</MaxTileCol>
     58948                                        </TileMatrixLimits>
     58949                                        <TileMatrixLimits>
     58950                                                <TileMatrix>17</TileMatrix>
     58951                                                <MinTileRow>73489</MinTileRow>
     58952                                                <MaxTileRow>73511</MaxTileRow>
     58953                                                <MinTileCol>85730</MinTileCol>
     58954                                                <MaxTileCol>85773</MaxTileCol>
     58955                                        </TileMatrixLimits>
     58956                                        <TileMatrixLimits>
     58957                                                <TileMatrix>18</TileMatrix>
     58958                                                <MinTileRow>146979</MinTileRow>
     58959                                                <MaxTileRow>147022</MaxTileRow>
     58960                                                <MinTileCol>171461</MinTileCol>
     58961                                                <MaxTileCol>171546</MaxTileCol>
     58962                                        </TileMatrixLimits>
     58963                                        <TileMatrixLimits>
     58964                                                <TileMatrix>2</TileMatrix>
     58965                                                <MinTileRow>2</MinTileRow>
     58966                                                <MaxTileRow>2</MaxTileRow>
     58967                                                <MinTileCol>2</MinTileCol>
     58968                                                <MaxTileCol>2</MaxTileCol>
     58969                                        </TileMatrixLimits>
     58970                                        <TileMatrixLimits>
     58971                                                <TileMatrix>3</TileMatrix>
     58972                                                <MinTileRow>4</MinTileRow>
     58973                                                <MaxTileRow>4</MaxTileRow>
     58974                                                <MinTileCol>5</MinTileCol>
     58975                                                <MaxTileCol>5</MaxTileCol>
     58976                                        </TileMatrixLimits>
     58977                                        <TileMatrixLimits>
     58978                                                <TileMatrix>4</TileMatrix>
     58979                                                <MinTileRow>8</MinTileRow>
     58980                                                <MaxTileRow>8</MaxTileRow>
     58981                                                <MinTileCol>10</MinTileCol>
     58982                                                <MaxTileCol>10</MaxTileCol>
     58983                                        </TileMatrixLimits>
     58984                                        <TileMatrixLimits>
     58985                                                <TileMatrix>5</TileMatrix>
     58986                                                <MinTileRow>17</MinTileRow>
     58987                                                <MaxTileRow>17</MaxTileRow>
     58988                                                <MinTileCol>20</MinTileCol>
     58989                                                <MaxTileCol>20</MaxTileCol>
     58990                                        </TileMatrixLimits>
     58991                                        <TileMatrixLimits>
     58992                                                <TileMatrix>6</TileMatrix>
     58993                                                <MinTileRow>35</MinTileRow>
     58994                                                <MaxTileRow>35</MaxTileRow>
     58995                                                <MinTileCol>41</MinTileCol>
     58996                                                <MaxTileCol>41</MaxTileCol>
     58997                                        </TileMatrixLimits>
     58998                                        <TileMatrixLimits>
     58999                                                <TileMatrix>7</TileMatrix>
     59000                                                <MinTileRow>71</MinTileRow>
     59001                                                <MaxTileRow>71</MaxTileRow>
     59002                                                <MinTileCol>83</MinTileCol>
     59003                                                <MaxTileCol>83</MaxTileCol>
     59004                                        </TileMatrixLimits>
     59005                                        <TileMatrixLimits>
     59006                                                <TileMatrix>8</TileMatrix>
     59007                                                <MinTileRow>143</MinTileRow>
     59008                                                <MaxTileRow>143</MaxTileRow>
     59009                                                <MinTileCol>167</MinTileCol>
     59010                                                <MaxTileCol>167</MaxTileCol>
     59011                                        </TileMatrixLimits>
     59012                                        <TileMatrixLimits>
     59013                                                <TileMatrix>9</TileMatrix>
     59014                                                <MinTileRow>287</MinTileRow>
     59015                                                <MaxTileRow>287</MaxTileRow>
     59016                                                <MinTileCol>334</MinTileCol>
     59017                                                <MaxTileCol>335</MaxTileCol>
     59018                                        </TileMatrixLimits>
     59019                                </TileMatrixSetLimits>
     59020                        </TileMatrixSetLink>
     59021                </Layer>
     59022                <Layer>
     59023                        <ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title>
     59024                        <ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract>
     59025                        <ows:Keywords>
     59026                                <ows:Keyword>Photographies</ows:Keyword>
     59027                        </ows:Keywords>
     59028                        <ows:WGS84BoundingBox>
     59029                                <ows:LowerCorner>55.3509 -21.3536</ows:LowerCorner>
     59030                                <ows:UpperCorner>55.5263 -21.1714</ows:UpperCorner>
     59031                        </ows:WGS84BoundingBox>
     59032                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-09-28-23877983</ows:Identifier>
     59033                        <Style isDefault="true">
     59034                                <ows:Title>Données Brutes</ows:Title>
     59035                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59036                                <ows:Keywords>
     59037                                        <ows:Keyword>Défaut</ows:Keyword>
     59038                                </ows:Keywords>
     59039                                <ows:Identifier>normal</ows:Identifier>
     59040                                <LegendURL format="image/jpeg" height="200"
     59041                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59042                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59043                        </Style>
     59044                        <Format>image/jpeg</Format>
     59045                        <TileMatrixSetLink>
     59046                                <TileMatrixSet>PM</TileMatrixSet>
     59047                                <TileMatrixSetLimits>
     59048                                        <TileMatrixLimits>
     59049                                                <TileMatrix>0</TileMatrix>
     59050                                                <MinTileRow>0</MinTileRow>
     59051                                                <MaxTileRow>0</MaxTileRow>
     59052                                                <MinTileCol>0</MinTileCol>
     59053                                                <MaxTileCol>0</MaxTileCol>
     59054                                        </TileMatrixLimits>
     59055                                        <TileMatrixLimits>
     59056                                                <TileMatrix>1</TileMatrix>
     59057                                                <MinTileRow>1</MinTileRow>
     59058                                                <MaxTileRow>1</MaxTileRow>
     59059                                                <MinTileCol>1</MinTileCol>
     59060                                                <MaxTileCol>1</MaxTileCol>
     59061                                        </TileMatrixLimits>
     59062                                        <TileMatrixLimits>
     59063                                                <TileMatrix>10</TileMatrix>
     59064                                                <MinTileRow>573</MinTileRow>
     59065                                                <MaxTileRow>574</MaxTileRow>
     59066                                                <MinTileCol>669</MinTileCol>
     59067                                                <MaxTileCol>669</MaxTileCol>
     59068                                        </TileMatrixLimits>
     59069                                        <TileMatrixLimits>
     59070                                                <TileMatrix>11</TileMatrix>
     59071                                                <MinTileRow>1147</MinTileRow>
     59072                                                <MaxTileRow>1148</MaxTileRow>
     59073                                                <MinTileCol>1338</MinTileCol>
     59074                                                <MaxTileCol>1339</MaxTileCol>
     59075                                        </TileMatrixLimits>
     59076                                        <TileMatrixLimits>
     59077                                                <TileMatrix>12</TileMatrix>
     59078                                                <MinTileRow>2294</MinTileRow>
     59079                                                <MaxTileRow>2296</MaxTileRow>
     59080                                                <MinTileCol>2677</MinTileCol>
     59081                                                <MaxTileCol>2679</MaxTileCol>
     59082                                        </TileMatrixLimits>
     59083                                        <TileMatrixLimits>
     59084                                                <TileMatrix>13</TileMatrix>
     59085                                                <MinTileRow>4589</MinTileRow>
     59086                                                <MaxTileRow>4593</MaxTileRow>
     59087                                                <MinTileCol>5355</MinTileCol>
     59088                                                <MaxTileCol>5359</MaxTileCol>
     59089                                        </TileMatrixLimits>
     59090                                        <TileMatrixLimits>
     59091                                                <TileMatrix>14</TileMatrix>
     59092                                                <MinTileRow>9178</MinTileRow>
     59093                                                <MaxTileRow>9187</MaxTileRow>
     59094                                                <MinTileCol>10711</MinTileCol>
     59095                                                <MaxTileCol>10719</MaxTileCol>
     59096                                        </TileMatrixLimits>
     59097                                        <TileMatrixLimits>
     59098                                                <TileMatrix>15</TileMatrix>
     59099                                                <MinTileRow>18356</MinTileRow>
     59100                                                <MaxTileRow>18374</MaxTileRow>
     59101                                                <MinTileCol>21422</MinTileCol>
     59102                                                <MaxTileCol>21438</MaxTileCol>
     59103                                        </TileMatrixLimits>
     59104                                        <TileMatrixLimits>
     59105                                                <TileMatrix>16</TileMatrix>
     59106                                                <MinTileRow>36712</MinTileRow>
     59107                                                <MaxTileRow>36748</MaxTileRow>
     59108                                                <MinTileCol>42844</MinTileCol>
     59109                                                <MaxTileCol>42876</MaxTileCol>
     59110                                        </TileMatrixLimits>
     59111                                        <TileMatrixLimits>
     59112                                                <TileMatrix>17</TileMatrix>
     59113                                                <MinTileRow>73425</MinTileRow>
     59114                                                <MaxTileRow>73497</MaxTileRow>
     59115                                                <MinTileCol>85688</MinTileCol>
     59116                                                <MaxTileCol>85752</MaxTileCol>
     59117                                        </TileMatrixLimits>
     59118                                        <TileMatrixLimits>
     59119                                                <TileMatrix>18</TileMatrix>
     59120                                                <MinTileRow>146851</MinTileRow>
     59121                                                <MaxTileRow>146994</MaxTileRow>
     59122                                                <MinTileCol>171377</MinTileCol>
     59123                                                <MaxTileCol>171504</MaxTileCol>
     59124                                        </TileMatrixLimits>
     59125                                        <TileMatrixLimits>
     59126                                                <TileMatrix>2</TileMatrix>
     59127                                                <MinTileRow>2</MinTileRow>
     59128                                                <MaxTileRow>2</MaxTileRow>
     59129                                                <MinTileCol>2</MinTileCol>
     59130                                                <MaxTileCol>2</MaxTileCol>
     59131                                        </TileMatrixLimits>
     59132                                        <TileMatrixLimits>
     59133                                                <TileMatrix>3</TileMatrix>
     59134                                                <MinTileRow>4</MinTileRow>
     59135                                                <MaxTileRow>4</MaxTileRow>
     59136                                                <MinTileCol>5</MinTileCol>
     59137                                                <MaxTileCol>5</MaxTileCol>
     59138                                        </TileMatrixLimits>
     59139                                        <TileMatrixLimits>
     59140                                                <TileMatrix>4</TileMatrix>
     59141                                                <MinTileRow>8</MinTileRow>
     59142                                                <MaxTileRow>8</MaxTileRow>
     59143                                                <MinTileCol>10</MinTileCol>
     59144                                                <MaxTileCol>10</MaxTileCol>
     59145                                        </TileMatrixLimits>
     59146                                        <TileMatrixLimits>
     59147                                                <TileMatrix>5</TileMatrix>
     59148                                                <MinTileRow>17</MinTileRow>
     59149                                                <MaxTileRow>17</MaxTileRow>
     59150                                                <MinTileCol>20</MinTileCol>
     59151                                                <MaxTileCol>20</MaxTileCol>
     59152                                        </TileMatrixLimits>
     59153                                        <TileMatrixLimits>
     59154                                                <TileMatrix>6</TileMatrix>
     59155                                                <MinTileRow>35</MinTileRow>
     59156                                                <MaxTileRow>35</MaxTileRow>
     59157                                                <MinTileCol>41</MinTileCol>
     59158                                                <MaxTileCol>41</MaxTileCol>
     59159                                        </TileMatrixLimits>
     59160                                        <TileMatrixLimits>
     59161                                                <TileMatrix>7</TileMatrix>
     59162                                                <MinTileRow>71</MinTileRow>
     59163                                                <MaxTileRow>71</MaxTileRow>
     59164                                                <MinTileCol>83</MinTileCol>
     59165                                                <MaxTileCol>83</MaxTileCol>
     59166                                        </TileMatrixLimits>
     59167                                        <TileMatrixLimits>
     59168                                                <TileMatrix>8</TileMatrix>
     59169                                                <MinTileRow>143</MinTileRow>
     59170                                                <MaxTileRow>143</MaxTileRow>
     59171                                                <MinTileCol>167</MinTileCol>
     59172                                                <MaxTileCol>167</MaxTileCol>
     59173                                        </TileMatrixLimits>
     59174                                        <TileMatrixLimits>
     59175                                                <TileMatrix>9</TileMatrix>
     59176                                                <MinTileRow>286</MinTileRow>
     59177                                                <MaxTileRow>287</MaxTileRow>
     59178                                                <MinTileCol>334</MinTileCol>
     59179                                                <MaxTileCol>334</MaxTileCol>
     59180                                        </TileMatrixLimits>
     59181                                </TileMatrixSetLimits>
     59182                        </TileMatrixSetLink>
     59183                </Layer>
     59184                <Layer>
     59185                        <ows:Title>Orthophotographies Geosud de REUNION-2-2013 2013</ows:Title>
     59186                        <ows:Abstract>Orthophotographies satellites de REUNION-2-2013 issues du projet Geosud.</ows:Abstract>
     59187                        <ows:Keywords>
     59188                                <ows:Keyword>Photographies</ows:Keyword>
     59189                        </ows:Keywords>
     59190                        <ows:WGS84BoundingBox>
     59191                                <ows:LowerCorner>55.5355 -21.2102</ows:LowerCorner>
     59192                                <ows:UpperCorner>55.6618 -21.0917</ows:UpperCorner>
     59193                        </ows:WGS84BoundingBox>
     59194                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2-2013-2013-10-23-24350914</ows:Identifier>
     59195                        <Style isDefault="true">
     59196                                <ows:Title>Données Brutes</ows:Title>
     59197                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59198                                <ows:Keywords>
     59199                                        <ows:Keyword>Défaut</ows:Keyword>
     59200                                </ows:Keywords>
     59201                                <ows:Identifier>normal</ows:Identifier>
     59202                                <LegendURL format="image/jpeg" height="200"
     59203                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59204                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59205                        </Style>
     59206                        <Format>image/jpeg</Format>
     59207                        <TileMatrixSetLink>
     59208                                <TileMatrixSet>PM</TileMatrixSet>
     59209                                <TileMatrixSetLimits>
     59210                                        <TileMatrixLimits>
     59211                                                <TileMatrix>0</TileMatrix>
     59212                                                <MinTileRow>0</MinTileRow>
     59213                                                <MaxTileRow>0</MaxTileRow>
     59214                                                <MinTileCol>0</MinTileCol>
     59215                                                <MaxTileCol>0</MaxTileCol>
     59216                                        </TileMatrixLimits>
     59217                                        <TileMatrixLimits>
     59218                                                <TileMatrix>1</TileMatrix>
     59219                                                <MinTileRow>1</MinTileRow>
     59220                                                <MaxTileRow>1</MaxTileRow>
     59221                                                <MinTileCol>1</MinTileCol>
     59222                                                <MaxTileCol>1</MaxTileCol>
     59223                                        </TileMatrixLimits>
     59224                                        <TileMatrixLimits>
     59225                                                <TileMatrix>10</TileMatrix>
     59226                                                <MinTileRow>573</MinTileRow>
     59227                                                <MaxTileRow>573</MaxTileRow>
     59228                                                <MinTileCol>669</MinTileCol>
     59229                                                <MaxTileCol>670</MaxTileCol>
     59230                                        </TileMatrixLimits>
     59231                                        <TileMatrixLimits>
     59232                                                <TileMatrix>11</TileMatrix>
     59233                                                <MinTileRow>1146</MinTileRow>
     59234                                                <MaxTileRow>1147</MaxTileRow>
     59235                                                <MinTileCol>1339</MinTileCol>
     59236                                                <MaxTileCol>1340</MaxTileCol>
     59237                                        </TileMatrixLimits>
     59238                                        <TileMatrixLimits>
     59239                                                <TileMatrix>12</TileMatrix>
     59240                                                <MinTileRow>2293</MinTileRow>
     59241                                                <MaxTileRow>2295</MaxTileRow>
     59242                                                <MinTileCol>2679</MinTileCol>
     59243                                                <MaxTileCol>2681</MaxTileCol>
     59244                                        </TileMatrixLimits>
     59245                                        <TileMatrixLimits>
     59246                                                <TileMatrix>13</TileMatrix>
     59247                                                <MinTileRow>4587</MinTileRow>
     59248                                                <MaxTileRow>4590</MaxTileRow>
     59249                                                <MinTileCol>5359</MinTileCol>
     59250                                                <MaxTileCol>5362</MaxTileCol>
     59251                                        </TileMatrixLimits>
     59252                                        <TileMatrixLimits>
     59253                                                <TileMatrix>14</TileMatrix>
     59254                                                <MinTileRow>9174</MinTileRow>
     59255                                                <MaxTileRow>9180</MaxTileRow>
     59256                                                <MinTileCol>10719</MinTileCol>
     59257                                                <MaxTileCol>10725</MaxTileCol>
     59258                                        </TileMatrixLimits>
     59259                                        <TileMatrixLimits>
     59260                                                <TileMatrix>15</TileMatrix>
     59261                                                <MinTileRow>18348</MinTileRow>
     59262                                                <MaxTileRow>18360</MaxTileRow>
     59263                                                <MinTileCol>21438</MinTileCol>
     59264                                                <MaxTileCol>21450</MaxTileCol>
     59265                                        </TileMatrixLimits>
     59266                                        <TileMatrixLimits>
     59267                                                <TileMatrix>16</TileMatrix>
     59268                                                <MinTileRow>36697</MinTileRow>
     59269                                                <MaxTileRow>36720</MaxTileRow>
     59270                                                <MinTileCol>42877</MinTileCol>
     59271                                                <MaxTileCol>42900</MaxTileCol>
     59272                                        </TileMatrixLimits>
     59273                                        <TileMatrixLimits>
     59274                                                <TileMatrix>17</TileMatrix>
     59275                                                <MinTileRow>73394</MinTileRow>
     59276                                                <MaxTileRow>73441</MaxTileRow>
     59277                                                <MinTileCol>85755</MinTileCol>
     59278                                                <MaxTileCol>85801</MaxTileCol>
     59279                                        </TileMatrixLimits>
     59280                                        <TileMatrixLimits>
     59281                                                <TileMatrix>18</TileMatrix>
     59282                                                <MinTileRow>146789</MinTileRow>
     59283                                                <MaxTileRow>146882</MaxTileRow>
     59284                                                <MinTileCol>171511</MinTileCol>
     59285                                                <MaxTileCol>171603</MaxTileCol>
     59286                                        </TileMatrixLimits>
     59287                                        <TileMatrixLimits>
     59288                                                <TileMatrix>2</TileMatrix>
     59289                                                <MinTileRow>2</MinTileRow>
     59290                                                <MaxTileRow>2</MaxTileRow>
     59291                                                <MinTileCol>2</MinTileCol>
     59292                                                <MaxTileCol>2</MaxTileCol>
     59293                                        </TileMatrixLimits>
     59294                                        <TileMatrixLimits>
     59295                                                <TileMatrix>3</TileMatrix>
     59296                                                <MinTileRow>4</MinTileRow>
     59297                                                <MaxTileRow>4</MaxTileRow>
     59298                                                <MinTileCol>5</MinTileCol>
     59299                                                <MaxTileCol>5</MaxTileCol>
     59300                                        </TileMatrixLimits>
     59301                                        <TileMatrixLimits>
     59302                                                <TileMatrix>4</TileMatrix>
     59303                                                <MinTileRow>8</MinTileRow>
     59304                                                <MaxTileRow>8</MaxTileRow>
     59305                                                <MinTileCol>10</MinTileCol>
     59306                                                <MaxTileCol>10</MaxTileCol>
     59307                                        </TileMatrixLimits>
     59308                                        <TileMatrixLimits>
     59309                                                <TileMatrix>5</TileMatrix>
     59310                                                <MinTileRow>17</MinTileRow>
     59311                                                <MaxTileRow>17</MaxTileRow>
     59312                                                <MinTileCol>20</MinTileCol>
     59313                                                <MaxTileCol>20</MaxTileCol>
     59314                                        </TileMatrixLimits>
     59315                                        <TileMatrixLimits>
     59316                                                <TileMatrix>6</TileMatrix>
     59317                                                <MinTileRow>35</MinTileRow>
     59318                                                <MaxTileRow>35</MaxTileRow>
     59319                                                <MinTileCol>41</MinTileCol>
     59320                                                <MaxTileCol>41</MaxTileCol>
     59321                                        </TileMatrixLimits>
     59322                                        <TileMatrixLimits>
     59323                                                <TileMatrix>7</TileMatrix>
     59324                                                <MinTileRow>71</MinTileRow>
     59325                                                <MaxTileRow>71</MaxTileRow>
     59326                                                <MinTileCol>83</MinTileCol>
     59327                                                <MaxTileCol>83</MaxTileCol>
     59328                                        </TileMatrixLimits>
     59329                                        <TileMatrixLimits>
     59330                                                <TileMatrix>8</TileMatrix>
     59331                                                <MinTileRow>143</MinTileRow>
     59332                                                <MaxTileRow>143</MaxTileRow>
     59333                                                <MinTileCol>167</MinTileCol>
     59334                                                <MaxTileCol>167</MaxTileCol>
     59335                                        </TileMatrixLimits>
     59336                                        <TileMatrixLimits>
     59337                                                <TileMatrix>9</TileMatrix>
     59338                                                <MinTileRow>286</MinTileRow>
     59339                                                <MaxTileRow>286</MaxTileRow>
     59340                                                <MinTileCol>334</MinTileCol>
     59341                                                <MaxTileCol>335</MaxTileCol>
     59342                                        </TileMatrixLimits>
     59343                                </TileMatrixSetLimits>
     59344                        </TileMatrixSetLink>
     59345                </Layer>
     59346                <Layer>
     59347                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     59348                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     59349                        <ows:Keywords>
     59350                                <ows:Keyword>Photographies</ows:Keyword>
     59351                        </ows:Keywords>
     59352                        <ows:WGS84BoundingBox>
     59353                                <ows:LowerCorner>55.5432 -21.4097</ows:LowerCorner>
     59354                                <ows:UpperCorner>55.7681 -21.0376</ows:UpperCorner>
     59355                        </ows:WGS84BoundingBox>
     59356                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-06-04-23371319</ows:Identifier>
     59357                        <Style isDefault="true">
     59358                                <ows:Title>Données Brutes</ows:Title>
     59359                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59360                                <ows:Keywords>
     59361                                        <ows:Keyword>Défaut</ows:Keyword>
     59362                                </ows:Keywords>
     59363                                <ows:Identifier>normal</ows:Identifier>
     59364                                <LegendURL format="image/jpeg" height="200"
     59365                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59366                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59367                        </Style>
     59368                        <Format>image/jpeg</Format>
     59369                        <TileMatrixSetLink>
     59370                                <TileMatrixSet>PM</TileMatrixSet>
     59371                                <TileMatrixSetLimits>
     59372                                        <TileMatrixLimits>
     59373                                                <TileMatrix>0</TileMatrix>
     59374                                                <MinTileRow>0</MinTileRow>
     59375                                                <MaxTileRow>0</MaxTileRow>
     59376                                                <MinTileCol>0</MinTileCol>
     59377                                                <MaxTileCol>0</MaxTileCol>
     59378                                        </TileMatrixLimits>
     59379                                        <TileMatrixLimits>
     59380                                                <TileMatrix>1</TileMatrix>
     59381                                                <MinTileRow>1</MinTileRow>
     59382                                                <MaxTileRow>1</MaxTileRow>
     59383                                                <MinTileCol>1</MinTileCol>
     59384                                                <MaxTileCol>1</MaxTileCol>
     59385                                        </TileMatrixLimits>
     59386                                        <TileMatrixLimits>
     59387                                                <TileMatrix>10</TileMatrix>
     59388                                                <MinTileRow>573</MinTileRow>
     59389                                                <MaxTileRow>574</MaxTileRow>
     59390                                                <MinTileCol>669</MinTileCol>
     59391                                                <MaxTileCol>670</MaxTileCol>
     59392                                        </TileMatrixLimits>
     59393                                        <TileMatrixLimits>
     59394                                                <TileMatrix>11</TileMatrix>
     59395                                                <MinTileRow>1146</MinTileRow>
     59396                                                <MaxTileRow>1148</MaxTileRow>
     59397                                                <MinTileCol>1339</MinTileCol>
     59398                                                <MaxTileCol>1341</MaxTileCol>
     59399                                        </TileMatrixLimits>
     59400                                        <TileMatrixLimits>
     59401                                                <TileMatrix>12</TileMatrix>
     59402                                                <MinTileRow>2292</MinTileRow>
     59403                                                <MaxTileRow>2297</MaxTileRow>
     59404                                                <MinTileCol>2679</MinTileCol>
     59405                                                <MaxTileCol>2682</MaxTileCol>
     59406                                        </TileMatrixLimits>
     59407                                        <TileMatrixLimits>
     59408                                                <TileMatrix>13</TileMatrix>
     59409                                                <MinTileRow>4585</MinTileRow>
     59410                                                <MaxTileRow>4594</MaxTileRow>
     59411                                                <MinTileCol>5359</MinTileCol>
     59412                                                <MaxTileCol>5365</MaxTileCol>
     59413                                        </TileMatrixLimits>
     59414                                        <TileMatrixLimits>
     59415                                                <TileMatrix>14</TileMatrix>
     59416                                                <MinTileRow>9171</MinTileRow>
     59417                                                <MaxTileRow>9189</MaxTileRow>
     59418                                                <MinTileCol>10719</MinTileCol>
     59419                                                <MaxTileCol>10730</MaxTileCol>
     59420                                        </TileMatrixLimits>
     59421                                        <TileMatrixLimits>
     59422                                                <TileMatrix>15</TileMatrix>
     59423                                                <MinTileRow>18343</MinTileRow>
     59424                                                <MaxTileRow>18379</MaxTileRow>
     59425                                                <MinTileCol>21439</MinTileCol>
     59426                                                <MaxTileCol>21460</MaxTileCol>
     59427                                        </TileMatrixLimits>
     59428                                        <TileMatrixLimits>
     59429                                                <TileMatrix>16</TileMatrix>
     59430                                                <MinTileRow>36686</MinTileRow>
     59431                                                <MaxTileRow>36759</MaxTileRow>
     59432                                                <MinTileCol>42879</MinTileCol>
     59433                                                <MaxTileCol>42920</MaxTileCol>
     59434                                        </TileMatrixLimits>
     59435                                        <TileMatrixLimits>
     59436                                                <TileMatrix>17</TileMatrix>
     59437                                                <MinTileRow>73373</MinTileRow>
     59438                                                <MaxTileRow>73518</MaxTileRow>
     59439                                                <MinTileCol>85758</MinTileCol>
     59440                                                <MaxTileCol>85840</MaxTileCol>
     59441                                        </TileMatrixLimits>
     59442                                        <TileMatrixLimits>
     59443                                                <TileMatrix>18</TileMatrix>
     59444                                                <MinTileRow>146747</MinTileRow>
     59445                                                <MaxTileRow>147037</MaxTileRow>
     59446                                                <MinTileCol>171517</MinTileCol>
     59447                                                <MaxTileCol>171680</MaxTileCol>
     59448                                        </TileMatrixLimits>
     59449                                        <TileMatrixLimits>
     59450                                                <TileMatrix>2</TileMatrix>
     59451                                                <MinTileRow>2</MinTileRow>
     59452                                                <MaxTileRow>2</MaxTileRow>
     59453                                                <MinTileCol>2</MinTileCol>
     59454                                                <MaxTileCol>2</MaxTileCol>
     59455                                        </TileMatrixLimits>
     59456                                        <TileMatrixLimits>
     59457                                                <TileMatrix>3</TileMatrix>
     59458                                                <MinTileRow>4</MinTileRow>
     59459                                                <MaxTileRow>4</MaxTileRow>
     59460                                                <MinTileCol>5</MinTileCol>
     59461                                                <MaxTileCol>5</MaxTileCol>
     59462                                        </TileMatrixLimits>
     59463                                        <TileMatrixLimits>
     59464                                                <TileMatrix>4</TileMatrix>
     59465                                                <MinTileRow>8</MinTileRow>
     59466                                                <MaxTileRow>8</MaxTileRow>
     59467                                                <MinTileCol>10</MinTileCol>
     59468                                                <MaxTileCol>10</MaxTileCol>
     59469                                        </TileMatrixLimits>
     59470                                        <TileMatrixLimits>
     59471                                                <TileMatrix>5</TileMatrix>
     59472                                                <MinTileRow>17</MinTileRow>
     59473                                                <MaxTileRow>17</MaxTileRow>
     59474                                                <MinTileCol>20</MinTileCol>
     59475                                                <MaxTileCol>20</MaxTileCol>
     59476                                        </TileMatrixLimits>
     59477                                        <TileMatrixLimits>
     59478                                                <TileMatrix>6</TileMatrix>
     59479                                                <MinTileRow>35</MinTileRow>
     59480                                                <MaxTileRow>35</MaxTileRow>
     59481                                                <MinTileCol>41</MinTileCol>
     59482                                                <MaxTileCol>41</MaxTileCol>
     59483                                        </TileMatrixLimits>
     59484                                        <TileMatrixLimits>
     59485                                                <TileMatrix>7</TileMatrix>
     59486                                                <MinTileRow>71</MinTileRow>
     59487                                                <MaxTileRow>71</MaxTileRow>
     59488                                                <MinTileCol>83</MinTileCol>
     59489                                                <MaxTileCol>83</MaxTileCol>
     59490                                        </TileMatrixLimits>
     59491                                        <TileMatrixLimits>
     59492                                                <TileMatrix>8</TileMatrix>
     59493                                                <MinTileRow>143</MinTileRow>
     59494                                                <MaxTileRow>143</MaxTileRow>
     59495                                                <MinTileCol>167</MinTileCol>
     59496                                                <MaxTileCol>167</MaxTileCol>
     59497                                        </TileMatrixLimits>
     59498                                        <TileMatrixLimits>
     59499                                                <TileMatrix>9</TileMatrix>
     59500                                                <MinTileRow>286</MinTileRow>
     59501                                                <MaxTileRow>287</MaxTileRow>
     59502                                                <MinTileCol>334</MinTileCol>
     59503                                                <MaxTileCol>335</MaxTileCol>
     59504                                        </TileMatrixLimits>
     59505                                </TileMatrixSetLimits>
     59506                        </TileMatrixSetLink>
     59507                </Layer>
     59508                <Layer>
     59509                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     59510                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     59511                        <ows:Keywords>
     59512                                <ows:Keyword>Photographies</ows:Keyword>
     59513                        </ows:Keywords>
     59514                        <ows:WGS84BoundingBox>
     59515                                <ows:LowerCorner>55.6115 -21.3288</ows:LowerCorner>
     59516                                <ows:UpperCorner>55.8155 -21.1376</ows:UpperCorner>
     59517                        </ows:WGS84BoundingBox>
     59518                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-06-29-23893949</ows:Identifier>
     59519                        <Style isDefault="true">
     59520                                <ows:Title>Données Brutes</ows:Title>
     59521                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59522                                <ows:Keywords>
     59523                                        <ows:Keyword>Défaut</ows:Keyword>
     59524                                </ows:Keywords>
     59525                                <ows:Identifier>normal</ows:Identifier>
     59526                                <LegendURL format="image/jpeg" height="200"
     59527                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59528                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59529                        </Style>
     59530                        <Format>image/jpeg</Format>
     59531                        <TileMatrixSetLink>
     59532                                <TileMatrixSet>PM</TileMatrixSet>
     59533                                <TileMatrixSetLimits>
     59534                                        <TileMatrixLimits>
     59535                                                <TileMatrix>0</TileMatrix>
     59536                                                <MinTileRow>0</MinTileRow>
     59537                                                <MaxTileRow>0</MaxTileRow>
     59538                                                <MinTileCol>0</MinTileCol>
     59539                                                <MaxTileCol>0</MaxTileCol>
     59540                                        </TileMatrixLimits>
     59541                                        <TileMatrixLimits>
     59542                                                <TileMatrix>1</TileMatrix>
     59543                                                <MinTileRow>1</MinTileRow>
     59544                                                <MaxTileRow>1</MaxTileRow>
     59545                                                <MinTileCol>1</MinTileCol>
     59546                                                <MaxTileCol>1</MaxTileCol>
     59547                                        </TileMatrixLimits>
     59548                                        <TileMatrixLimits>
     59549                                                <TileMatrix>10</TileMatrix>
     59550                                                <MinTileRow>573</MinTileRow>
     59551                                                <MaxTileRow>574</MaxTileRow>
     59552                                                <MinTileCol>670</MinTileCol>
     59553                                                <MaxTileCol>670</MaxTileCol>
     59554                                        </TileMatrixLimits>
     59555                                        <TileMatrixLimits>
     59556                                                <TileMatrix>11</TileMatrix>
     59557                                                <MinTileRow>1147</MinTileRow>
     59558                                                <MaxTileRow>1148</MaxTileRow>
     59559                                                <MinTileCol>1340</MinTileCol>
     59560                                                <MaxTileCol>1341</MaxTileCol>
     59561                                        </TileMatrixLimits>
     59562                                        <TileMatrixLimits>
     59563                                                <TileMatrix>12</TileMatrix>
     59564                                                <MinTileRow>2294</MinTileRow>
     59565                                                <MaxTileRow>2296</MaxTileRow>
     59566                                                <MinTileCol>2680</MinTileCol>
     59567                                                <MaxTileCol>2683</MaxTileCol>
     59568                                        </TileMatrixLimits>
     59569                                        <TileMatrixLimits>
     59570                                                <TileMatrix>13</TileMatrix>
     59571                                                <MinTileRow>4588</MinTileRow>
     59572                                                <MaxTileRow>4592</MaxTileRow>
     59573                                                <MinTileCol>5361</MinTileCol>
     59574                                                <MaxTileCol>5366</MaxTileCol>
     59575                                        </TileMatrixLimits>
     59576                                        <TileMatrixLimits>
     59577                                                <TileMatrix>14</TileMatrix>
     59578                                                <MinTileRow>9176</MinTileRow>
     59579                                                <MaxTileRow>9185</MaxTileRow>
     59580                                                <MinTileCol>10722</MinTileCol>
     59581                                                <MaxTileCol>10732</MaxTileCol>
     59582                                        </TileMatrixLimits>
     59583                                        <TileMatrixLimits>
     59584                                                <TileMatrix>15</TileMatrix>
     59585                                                <MinTileRow>18353</MinTileRow>
     59586                                                <MaxTileRow>18371</MaxTileRow>
     59587                                                <MinTileCol>21445</MinTileCol>
     59588                                                <MaxTileCol>21464</MaxTileCol>
     59589                                        </TileMatrixLimits>
     59590                                        <TileMatrixLimits>
     59591                                                <TileMatrix>16</TileMatrix>
     59592                                                <MinTileRow>36706</MinTileRow>
     59593                                                <MaxTileRow>36743</MaxTileRow>
     59594                                                <MinTileCol>42891</MinTileCol>
     59595                                                <MaxTileCol>42928</MaxTileCol>
     59596                                        </TileMatrixLimits>
     59597                                        <TileMatrixLimits>
     59598                                                <TileMatrix>17</TileMatrix>
     59599                                                <MinTileRow>73412</MinTileRow>
     59600                                                <MaxTileRow>73487</MaxTileRow>
     59601                                                <MinTileCol>85783</MinTileCol>
     59602                                                <MaxTileCol>85857</MaxTileCol>
     59603                                        </TileMatrixLimits>
     59604                                        <TileMatrixLimits>
     59605                                                <TileMatrix>18</TileMatrix>
     59606                                                <MinTileRow>146825</MinTileRow>
     59607                                                <MaxTileRow>146974</MaxTileRow>
     59608                                                <MinTileCol>171566</MinTileCol>
     59609                                                <MaxTileCol>171715</MaxTileCol>
     59610                                        </TileMatrixLimits>
     59611                                        <TileMatrixLimits>
     59612                                                <TileMatrix>2</TileMatrix>
     59613                                                <MinTileRow>2</MinTileRow>
     59614                                                <MaxTileRow>2</MaxTileRow>
     59615                                                <MinTileCol>2</MinTileCol>
     59616                                                <MaxTileCol>2</MaxTileCol>
     59617                                        </TileMatrixLimits>
     59618                                        <TileMatrixLimits>
     59619                                                <TileMatrix>3</TileMatrix>
     59620                                                <MinTileRow>4</MinTileRow>
     59621                                                <MaxTileRow>4</MaxTileRow>
     59622                                                <MinTileCol>5</MinTileCol>
     59623                                                <MaxTileCol>5</MaxTileCol>
     59624                                        </TileMatrixLimits>
     59625                                        <TileMatrixLimits>
     59626                                                <TileMatrix>4</TileMatrix>
     59627                                                <MinTileRow>8</MinTileRow>
     59628                                                <MaxTileRow>8</MaxTileRow>
     59629                                                <MinTileCol>10</MinTileCol>
     59630                                                <MaxTileCol>10</MaxTileCol>
     59631                                        </TileMatrixLimits>
     59632                                        <TileMatrixLimits>
     59633                                                <TileMatrix>5</TileMatrix>
     59634                                                <MinTileRow>17</MinTileRow>
     59635                                                <MaxTileRow>17</MaxTileRow>
     59636                                                <MinTileCol>20</MinTileCol>
     59637                                                <MaxTileCol>20</MaxTileCol>
     59638                                        </TileMatrixLimits>
     59639                                        <TileMatrixLimits>
     59640                                                <TileMatrix>6</TileMatrix>
     59641                                                <MinTileRow>35</MinTileRow>
     59642                                                <MaxTileRow>35</MaxTileRow>
     59643                                                <MinTileCol>41</MinTileCol>
     59644                                                <MaxTileCol>41</MaxTileCol>
     59645                                        </TileMatrixLimits>
     59646                                        <TileMatrixLimits>
     59647                                                <TileMatrix>7</TileMatrix>
     59648                                                <MinTileRow>71</MinTileRow>
     59649                                                <MaxTileRow>71</MaxTileRow>
     59650                                                <MinTileCol>83</MinTileCol>
     59651                                                <MaxTileCol>83</MaxTileCol>
     59652                                        </TileMatrixLimits>
     59653                                        <TileMatrixLimits>
     59654                                                <TileMatrix>8</TileMatrix>
     59655                                                <MinTileRow>143</MinTileRow>
     59656                                                <MaxTileRow>143</MaxTileRow>
     59657                                                <MinTileCol>167</MinTileCol>
     59658                                                <MaxTileCol>167</MaxTileCol>
     59659                                        </TileMatrixLimits>
     59660                                        <TileMatrixLimits>
     59661                                                <TileMatrix>9</TileMatrix>
     59662                                                <MinTileRow>286</MinTileRow>
     59663                                                <MaxTileRow>287</MaxTileRow>
     59664                                                <MinTileCol>335</MinTileCol>
     59665                                                <MaxTileCol>335</MaxTileCol>
     59666                                        </TileMatrixLimits>
     59667                                </TileMatrixSetLimits>
     59668                        </TileMatrixSetLink>
     59669                </Layer>
     59670                <Layer>
     59671                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     59672                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     59673                        <ows:Keywords>
     59674                                <ows:Keyword>Photographies</ows:Keyword>
     59675                        </ows:Keywords>
     59676                        <ows:WGS84BoundingBox>
     59677                                <ows:LowerCorner>55.5528 -21.4097</ows:LowerCorner>
     59678                                <ows:UpperCorner>55.7572 -21.2003</ows:UpperCorner>
     59679                        </ows:WGS84BoundingBox>
     59680                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-14-23644456</ows:Identifier>
     59681                        <Style isDefault="true">
     59682                                <ows:Title>Données Brutes</ows:Title>
     59683                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59684                                <ows:Keywords>
     59685                                        <ows:Keyword>Défaut</ows:Keyword>
     59686                                </ows:Keywords>
     59687                                <ows:Identifier>normal</ows:Identifier>
     59688                                <LegendURL format="image/jpeg" height="200"
     59689                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59690                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59691                        </Style>
     59692                        <Format>image/jpeg</Format>
     59693                        <TileMatrixSetLink>
     59694                                <TileMatrixSet>PM</TileMatrixSet>
     59695                                <TileMatrixSetLimits>
     59696                                        <TileMatrixLimits>
     59697                                                <TileMatrix>0</TileMatrix>
     59698                                                <MinTileRow>0</MinTileRow>
     59699                                                <MaxTileRow>0</MaxTileRow>
     59700                                                <MinTileCol>0</MinTileCol>
     59701                                                <MaxTileCol>0</MaxTileCol>
     59702                                        </TileMatrixLimits>
     59703                                        <TileMatrixLimits>
     59704                                                <TileMatrix>1</TileMatrix>
     59705                                                <MinTileRow>1</MinTileRow>
     59706                                                <MaxTileRow>1</MaxTileRow>
     59707                                                <MinTileCol>1</MinTileCol>
     59708                                                <MaxTileCol>1</MaxTileCol>
     59709                                        </TileMatrixLimits>
     59710                                        <TileMatrixLimits>
     59711                                                <TileMatrix>10</TileMatrix>
     59712                                                <MinTileRow>573</MinTileRow>
     59713                                                <MaxTileRow>574</MaxTileRow>
     59714                                                <MinTileCol>670</MinTileCol>
     59715                                                <MaxTileCol>670</MaxTileCol>
     59716                                        </TileMatrixLimits>
     59717                                        <TileMatrixLimits>
     59718                                                <TileMatrix>11</TileMatrix>
     59719                                                <MinTileRow>1147</MinTileRow>
     59720                                                <MaxTileRow>1148</MaxTileRow>
     59721                                                <MinTileCol>1340</MinTileCol>
     59722                                                <MaxTileCol>1341</MaxTileCol>
     59723                                        </TileMatrixLimits>
     59724                                        <TileMatrixLimits>
     59725                                                <TileMatrix>12</TileMatrix>
     59726                                                <MinTileRow>2294</MinTileRow>
     59727                                                <MaxTileRow>2297</MaxTileRow>
     59728                                                <MinTileCol>2680</MinTileCol>
     59729                                                <MaxTileCol>2682</MaxTileCol>
     59730                                        </TileMatrixLimits>
     59731                                        <TileMatrixLimits>
     59732                                                <TileMatrix>13</TileMatrix>
     59733                                                <MinTileRow>4589</MinTileRow>
     59734                                                <MaxTileRow>4594</MaxTileRow>
     59735                                                <MinTileCol>5360</MinTileCol>
     59736                                                <MaxTileCol>5364</MaxTileCol>
     59737                                        </TileMatrixLimits>
     59738                                        <TileMatrixLimits>
     59739                                                <TileMatrix>14</TileMatrix>
     59740                                                <MinTileRow>9179</MinTileRow>
     59741                                                <MaxTileRow>9189</MaxTileRow>
     59742                                                <MinTileCol>10720</MinTileCol>
     59743                                                <MaxTileCol>10729</MaxTileCol>
     59744                                        </TileMatrixLimits>
     59745                                        <TileMatrixLimits>
     59746                                                <TileMatrix>15</TileMatrix>
     59747                                                <MinTileRow>18359</MinTileRow>
     59748                                                <MaxTileRow>18379</MaxTileRow>
     59749                                                <MinTileCol>21440</MinTileCol>
     59750                                                <MaxTileCol>21459</MaxTileCol>
     59751                                        </TileMatrixLimits>
     59752                                        <TileMatrixLimits>
     59753                                                <TileMatrix>16</TileMatrix>
     59754                                                <MinTileRow>36718</MinTileRow>
     59755                                                <MaxTileRow>36759</MaxTileRow>
     59756                                                <MinTileCol>42881</MinTileCol>
     59757                                                <MaxTileCol>42918</MaxTileCol>
     59758                                        </TileMatrixLimits>
     59759                                        <TileMatrixLimits>
     59760                                                <TileMatrix>17</TileMatrix>
     59761                                                <MinTileRow>73437</MinTileRow>
     59762                                                <MaxTileRow>73518</MaxTileRow>
     59763                                                <MinTileCol>85762</MinTileCol>
     59764                                                <MaxTileCol>85836</MaxTileCol>
     59765                                        </TileMatrixLimits>
     59766                                        <TileMatrixLimits>
     59767                                                <TileMatrix>18</TileMatrix>
     59768                                                <MinTileRow>146875</MinTileRow>
     59769                                                <MaxTileRow>147037</MaxTileRow>
     59770                                                <MinTileCol>171524</MinTileCol>
     59771                                                <MaxTileCol>171673</MaxTileCol>
     59772                                        </TileMatrixLimits>
     59773                                        <TileMatrixLimits>
     59774                                                <TileMatrix>2</TileMatrix>
     59775                                                <MinTileRow>2</MinTileRow>
     59776                                                <MaxTileRow>2</MaxTileRow>
     59777                                                <MinTileCol>2</MinTileCol>
     59778                                                <MaxTileCol>2</MaxTileCol>
     59779                                        </TileMatrixLimits>
     59780                                        <TileMatrixLimits>
     59781                                                <TileMatrix>3</TileMatrix>
     59782                                                <MinTileRow>4</MinTileRow>
     59783                                                <MaxTileRow>4</MaxTileRow>
     59784                                                <MinTileCol>5</MinTileCol>
     59785                                                <MaxTileCol>5</MaxTileCol>
     59786                                        </TileMatrixLimits>
     59787                                        <TileMatrixLimits>
     59788                                                <TileMatrix>4</TileMatrix>
     59789                                                <MinTileRow>8</MinTileRow>
     59790                                                <MaxTileRow>8</MaxTileRow>
     59791                                                <MinTileCol>10</MinTileCol>
     59792                                                <MaxTileCol>10</MaxTileCol>
     59793                                        </TileMatrixLimits>
     59794                                        <TileMatrixLimits>
     59795                                                <TileMatrix>5</TileMatrix>
     59796                                                <MinTileRow>17</MinTileRow>
     59797                                                <MaxTileRow>17</MaxTileRow>
     59798                                                <MinTileCol>20</MinTileCol>
     59799                                                <MaxTileCol>20</MaxTileCol>
     59800                                        </TileMatrixLimits>
     59801                                        <TileMatrixLimits>
     59802                                                <TileMatrix>6</TileMatrix>
     59803                                                <MinTileRow>35</MinTileRow>
     59804                                                <MaxTileRow>35</MaxTileRow>
     59805                                                <MinTileCol>41</MinTileCol>
     59806                                                <MaxTileCol>41</MaxTileCol>
     59807                                        </TileMatrixLimits>
     59808                                        <TileMatrixLimits>
     59809                                                <TileMatrix>7</TileMatrix>
     59810                                                <MinTileRow>71</MinTileRow>
     59811                                                <MaxTileRow>71</MaxTileRow>
     59812                                                <MinTileCol>83</MinTileCol>
     59813                                                <MaxTileCol>83</MaxTileCol>
     59814                                        </TileMatrixLimits>
     59815                                        <TileMatrixLimits>
     59816                                                <TileMatrix>8</TileMatrix>
     59817                                                <MinTileRow>143</MinTileRow>
     59818                                                <MaxTileRow>143</MaxTileRow>
     59819                                                <MinTileCol>167</MinTileCol>
     59820                                                <MaxTileCol>167</MaxTileCol>
     59821                                        </TileMatrixLimits>
     59822                                        <TileMatrixLimits>
     59823                                                <TileMatrix>9</TileMatrix>
     59824                                                <MinTileRow>286</MinTileRow>
     59825                                                <MaxTileRow>287</MaxTileRow>
     59826                                                <MinTileCol>335</MinTileCol>
     59827                                                <MaxTileCol>335</MaxTileCol>
     59828                                        </TileMatrixLimits>
     59829                                </TileMatrixSetLimits>
     59830                        </TileMatrixSetLink>
     59831                </Layer>
     59832                <Layer>
     59833                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     59834                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     59835                        <ows:Keywords>
     59836                                <ows:Keyword>Photographies</ows:Keyword>
     59837                        </ows:Keywords>
     59838                        <ows:WGS84BoundingBox>
     59839                                <ows:LowerCorner>55.1872 -21.3343</ows:LowerCorner>
     59840                                <ows:UpperCorner>55.3947 -20.8626</ows:UpperCorner>
     59841                        </ows:WGS84BoundingBox>
     59842                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-20-23894111</ows:Identifier>
     59843                        <Style isDefault="true">
     59844                                <ows:Title>Données Brutes</ows:Title>
     59845                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     59846                                <ows:Keywords>
     59847                                        <ows:Keyword>Défaut</ows:Keyword>
     59848                                </ows:Keywords>
     59849                                <ows:Identifier>normal</ows:Identifier>
     59850                                <LegendURL format="image/jpeg" height="200"
     59851                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     59852                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     59853                        </Style>
     59854                        <Format>image/jpeg</Format>
     59855                        <TileMatrixSetLink>
     59856                                <TileMatrixSet>PM</TileMatrixSet>
     59857                                <TileMatrixSetLimits>
     59858                                        <TileMatrixLimits>
     59859                                                <TileMatrix>0</TileMatrix>
     59860                                                <MinTileRow>0</MinTileRow>
     59861                                                <MaxTileRow>0</MaxTileRow>
     59862                                                <MinTileCol>0</MinTileCol>
     59863                                                <MaxTileCol>0</MaxTileCol>
     59864                                        </TileMatrixLimits>
     59865                                        <TileMatrixLimits>
     59866                                                <TileMatrix>1</TileMatrix>
     59867                                                <MinTileRow>1</MinTileRow>
     59868                                                <MaxTileRow>1</MaxTileRow>
     59869                                                <MinTileCol>1</MinTileCol>
     59870                                                <MaxTileCol>1</MaxTileCol>
     59871                                        </TileMatrixLimits>
     59872                                        <TileMatrixLimits>
     59873                                                <TileMatrix>10</TileMatrix>
     59874                                                <MinTileRow>572</MinTileRow>
     59875                                                <MaxTileRow>574</MaxTileRow>
     59876                                                <MinTileCol>668</MinTileCol>
     59877                                                <MaxTileCol>669</MaxTileCol>
     59878                                        </TileMatrixLimits>
     59879                                        <TileMatrixLimits>
     59880                                                <TileMatrix>11</TileMatrix>
     59881                                                <MinTileRow>1145</MinTileRow>
     59882                                                <MaxTileRow>1148</MaxTileRow>
     59883                                                <MinTileCol>1337</MinTileCol>
     59884                                                <MaxTileCol>1339</MaxTileCol>
     59885                                        </TileMatrixLimits>
     59886                                        <TileMatrixLimits>
     59887                                                <TileMatrix>12</TileMatrix>
     59888                                                <MinTileRow>2290</MinTileRow>
     59889                                                <MaxTileRow>2296</MaxTileRow>
     59890                                                <MinTileCol>2675</MinTileCol>
     59891                                                <MaxTileCol>2678</MaxTileCol>
     59892                                        </TileMatrixLimits>
     59893                                        <TileMatrixLimits>
     59894                                                <TileMatrix>13</TileMatrix>
     59895                                                <MinTileRow>4581</MinTileRow>
     59896                                                <MaxTileRow>4593</MaxTileRow>
     59897                                                <MinTileCol>5351</MinTileCol>
     59898                                                <MaxTileCol>5356</MaxTileCol>
     59899                                        </TileMatrixLimits>
     59900                                        <TileMatrixLimits>
     59901                                                <TileMatrix>14</TileMatrix>
     59902                                                <MinTileRow>9163</MinTileRow>
     59903                                                <MaxTileRow>9186</MaxTileRow>
     59904                                                <MinTileCol>10703</MinTileCol>
     59905                                                <MaxTileCol>10713</MaxTileCol>
     59906                                        </TileMatrixLimits>
     59907                                        <TileMatrixLimits>
     59908                                                <TileMatrix>15</TileMatrix>
     59909                                                <MinTileRow>18326</MinTileRow>
     59910                                                <MaxTileRow>18372</MaxTileRow>
     59911                                                <MinTileCol>21407</MinTileCol>
     59912                                                <MaxTileCol>21426</MaxTileCol>
     59913                                        </TileMatrixLimits>
     59914                                        <TileMatrixLimits>
     59915                                                <TileMatrix>16</TileMatrix>
     59916                                                <MinTileRow>36653</MinTileRow>
     59917                                                <MaxTileRow>36744</MaxTileRow>
     59918                                                <MinTileCol>42814</MinTileCol>
     59919                                                <MaxTileCol>42852</MaxTileCol>
     59920                                        </TileMatrixLimits>
     59921                                        <TileMatrixLimits>
     59922                                                <TileMatrix>17</TileMatrix>
     59923                                                <MinTileRow>73306</MinTileRow>
     59924                                                <MaxTileRow>73489</MaxTileRow>
     59925                                                <MinTileCol>85629</MinTileCol>
     59926                                                <MaxTileCol>85704</MaxTileCol>
     59927                                        </TileMatrixLimits>
     59928                                        <TileMatrixLimits>
     59929                                                <TileMatrix>18</TileMatrix>
     59930                                                <MinTileRow>146612</MinTileRow>
     59931                                                <MaxTileRow>146979</MaxTileRow>
     59932                                                <MinTileCol>171259</MinTileCol>
     59933                                                <MaxTileCol>171408</MaxTileCol>
     59934                                        </TileMatrixLimits>
     59935                                        <TileMatrixLimits>
     59936                                                <TileMatrix>2</TileMatrix>
     59937                                                <MinTileRow>2</MinTileRow>
     59938                                                <MaxTileRow>2</MaxTileRow>
     59939                                                <MinTileCol>2</MinTileCol>
     59940                                                <MaxTileCol>2</MaxTileCol>
     59941                                        </TileMatrixLimits>
     59942                                        <TileMatrixLimits>
     59943                                                <TileMatrix>3</TileMatrix>
     59944                                                <MinTileRow>4</MinTileRow>
     59945                                                <MaxTileRow>4</MaxTileRow>
     59946                                                <MinTileCol>5</MinTileCol>
     59947                                                <MaxTileCol>5</MaxTileCol>
     59948                                        </TileMatrixLimits>
     59949                                        <TileMatrixLimits>
     59950                                                <TileMatrix>4</TileMatrix>
     59951                                                <MinTileRow>8</MinTileRow>
     59952                                                <MaxTileRow>8</MaxTileRow>
     59953                                                <MinTileCol>10</MinTileCol>
     59954                                                <MaxTileCol>10</MaxTileCol>
     59955                                        </TileMatrixLimits>
     59956                                        <TileMatrixLimits>
     59957                                                <TileMatrix>5</TileMatrix>
     59958                                                <MinTileRow>17</MinTileRow>
     59959                                                <MaxTileRow>17</MaxTileRow>
     59960                                                <MinTileCol>20</MinTileCol>
     59961                                                <MaxTileCol>20</MaxTileCol>
     59962                                        </TileMatrixLimits>
     59963                                        <TileMatrixLimits>
     59964                                                <TileMatrix>6</TileMatrix>
     59965                                                <MinTileRow>35</MinTileRow>
     59966                                                <MaxTileRow>35</MaxTileRow>
     59967                                                <MinTileCol>41</MinTileCol>
     59968                                                <MaxTileCol>41</MaxTileCol>
     59969                                        </TileMatrixLimits>
     59970                                        <TileMatrixLimits>
     59971                                                <TileMatrix>7</TileMatrix>
     59972                                                <MinTileRow>71</MinTileRow>
     59973                                                <MaxTileRow>71</MaxTileRow>
     59974                                                <MinTileCol>83</MinTileCol>
     59975                                                <MaxTileCol>83</MaxTileCol>
     59976                                        </TileMatrixLimits>
     59977                                        <TileMatrixLimits>
     59978                                                <TileMatrix>8</TileMatrix>
     59979                                                <MinTileRow>143</MinTileRow>
     59980                                                <MaxTileRow>143</MaxTileRow>
     59981                                                <MinTileCol>167</MinTileCol>
     59982                                                <MaxTileCol>167</MaxTileCol>
     59983                                        </TileMatrixLimits>
     59984                                        <TileMatrixLimits>
     59985                                                <TileMatrix>9</TileMatrix>
     59986                                                <MinTileRow>286</MinTileRow>
     59987                                                <MaxTileRow>287</MaxTileRow>
     59988                                                <MinTileCol>334</MinTileCol>
     59989                                                <MaxTileCol>334</MaxTileCol>
     59990                                        </TileMatrixLimits>
     59991                                </TileMatrixSetLimits>
     59992                        </TileMatrixSetLink>
     59993                </Layer>
     59994                <Layer>
     59995                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     59996                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     59997                        <ows:Keywords>
     59998                                <ows:Keyword>Photographies</ows:Keyword>
     59999                        </ows:Keywords>
     60000                        <ows:WGS84BoundingBox>
     60001                                <ows:LowerCorner>55.5467 -21.0574</ows:LowerCorner>
     60002                                <ows:UpperCorner>55.7599 -20.866</ows:UpperCorner>
     60003                        </ows:WGS84BoundingBox>
     60004                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-08-27-23681500</ows:Identifier>
     60005                        <Style isDefault="true">
     60006                                <ows:Title>Données Brutes</ows:Title>
     60007                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60008                                <ows:Keywords>
     60009                                        <ows:Keyword>Défaut</ows:Keyword>
     60010                                </ows:Keywords>
     60011                                <ows:Identifier>normal</ows:Identifier>
     60012                                <LegendURL format="image/jpeg" height="200"
     60013                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60014                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60015                        </Style>
     60016                        <Format>image/jpeg</Format>
     60017                        <TileMatrixSetLink>
     60018                                <TileMatrixSet>PM</TileMatrixSet>
     60019                                <TileMatrixSetLimits>
     60020                                        <TileMatrixLimits>
     60021                                                <TileMatrix>0</TileMatrix>
     60022                                                <MinTileRow>0</MinTileRow>
     60023                                                <MaxTileRow>0</MaxTileRow>
     60024                                                <MinTileCol>0</MinTileCol>
     60025                                                <MaxTileCol>0</MaxTileCol>
     60026                                        </TileMatrixLimits>
     60027                                        <TileMatrixLimits>
     60028                                                <TileMatrix>1</TileMatrix>
     60029                                                <MinTileRow>1</MinTileRow>
     60030                                                <MaxTileRow>1</MaxTileRow>
     60031                                                <MinTileCol>1</MinTileCol>
     60032                                                <MaxTileCol>1</MaxTileCol>
     60033                                        </TileMatrixLimits>
     60034                                        <TileMatrixLimits>
     60035                                                <TileMatrix>10</TileMatrix>
     60036                                                <MinTileRow>572</MinTileRow>
     60037                                                <MaxTileRow>573</MaxTileRow>
     60038                                                <MinTileCol>669</MinTileCol>
     60039                                                <MaxTileCol>670</MaxTileCol>
     60040                                        </TileMatrixLimits>
     60041                                        <TileMatrixLimits>
     60042                                                <TileMatrix>11</TileMatrix>
     60043                                                <MinTileRow>1145</MinTileRow>
     60044                                                <MaxTileRow>1146</MaxTileRow>
     60045                                                <MinTileCol>1339</MinTileCol>
     60046                                                <MaxTileCol>1341</MaxTileCol>
     60047                                        </TileMatrixLimits>
     60048                                        <TileMatrixLimits>
     60049                                                <TileMatrix>12</TileMatrix>
     60050                                                <MinTileRow>2290</MinTileRow>
     60051                                                <MaxTileRow>2293</MaxTileRow>
     60052                                                <MinTileCol>2679</MinTileCol>
     60053                                                <MaxTileCol>2682</MaxTileCol>
     60054                                        </TileMatrixLimits>
     60055                                        <TileMatrixLimits>
     60056                                                <TileMatrix>13</TileMatrix>
     60057                                                <MinTileRow>4581</MinTileRow>
     60058                                                <MaxTileRow>4586</MaxTileRow>
     60059                                                <MinTileCol>5359</MinTileCol>
     60060                                                <MaxTileCol>5364</MaxTileCol>
     60061                                        </TileMatrixLimits>
     60062                                        <TileMatrixLimits>
     60063                                                <TileMatrix>14</TileMatrix>
     60064                                                <MinTileRow>9163</MinTileRow>
     60065                                                <MaxTileRow>9172</MaxTileRow>
     60066                                                <MinTileCol>10719</MinTileCol>
     60067                                                <MaxTileCol>10729</MaxTileCol>
     60068                                        </TileMatrixLimits>
     60069                                        <TileMatrixLimits>
     60070                                                <TileMatrix>15</TileMatrix>
     60071                                                <MinTileRow>18326</MinTileRow>
     60072                                                <MaxTileRow>18345</MaxTileRow>
     60073                                                <MinTileCol>21439</MinTileCol>
     60074                                                <MaxTileCol>21459</MaxTileCol>
     60075                                        </TileMatrixLimits>
     60076                                        <TileMatrixLimits>
     60077                                                <TileMatrix>16</TileMatrix>
     60078                                                <MinTileRow>36653</MinTileRow>
     60079                                                <MaxTileRow>36690</MaxTileRow>
     60080                                                <MinTileCol>42879</MinTileCol>
     60081                                                <MaxTileCol>42918</MaxTileCol>
     60082                                        </TileMatrixLimits>
     60083                                        <TileMatrixLimits>
     60084                                                <TileMatrix>17</TileMatrix>
     60085                                                <MinTileRow>73306</MinTileRow>
     60086                                                <MaxTileRow>73381</MaxTileRow>
     60087                                                <MinTileCol>85759</MinTileCol>
     60088                                                <MaxTileCol>85837</MaxTileCol>
     60089                                        </TileMatrixLimits>
     60090                                        <TileMatrixLimits>
     60091                                                <TileMatrix>18</TileMatrix>
     60092                                                <MinTileRow>146613</MinTileRow>
     60093                                                <MaxTileRow>146762</MaxTileRow>
     60094                                                <MinTileCol>171519</MinTileCol>
     60095                                                <MaxTileCol>171674</MaxTileCol>
     60096                                        </TileMatrixLimits>
     60097                                        <TileMatrixLimits>
     60098                                                <TileMatrix>2</TileMatrix>
     60099                                                <MinTileRow>2</MinTileRow>
     60100                                                <MaxTileRow>2</MaxTileRow>
     60101                                                <MinTileCol>2</MinTileCol>
     60102                                                <MaxTileCol>2</MaxTileCol>
     60103                                        </TileMatrixLimits>
     60104                                        <TileMatrixLimits>
     60105                                                <TileMatrix>3</TileMatrix>
     60106                                                <MinTileRow>4</MinTileRow>
     60107                                                <MaxTileRow>4</MaxTileRow>
     60108                                                <MinTileCol>5</MinTileCol>
     60109                                                <MaxTileCol>5</MaxTileCol>
     60110                                        </TileMatrixLimits>
     60111                                        <TileMatrixLimits>
     60112                                                <TileMatrix>4</TileMatrix>
     60113                                                <MinTileRow>8</MinTileRow>
     60114                                                <MaxTileRow>8</MaxTileRow>
     60115                                                <MinTileCol>10</MinTileCol>
     60116                                                <MaxTileCol>10</MaxTileCol>
     60117                                        </TileMatrixLimits>
     60118                                        <TileMatrixLimits>
     60119                                                <TileMatrix>5</TileMatrix>
     60120                                                <MinTileRow>17</MinTileRow>
     60121                                                <MaxTileRow>17</MaxTileRow>
     60122                                                <MinTileCol>20</MinTileCol>
     60123                                                <MaxTileCol>20</MaxTileCol>
     60124                                        </TileMatrixLimits>
     60125                                        <TileMatrixLimits>
     60126                                                <TileMatrix>6</TileMatrix>
     60127                                                <MinTileRow>35</MinTileRow>
     60128                                                <MaxTileRow>35</MaxTileRow>
     60129                                                <MinTileCol>41</MinTileCol>
     60130                                                <MaxTileCol>41</MaxTileCol>
     60131                                        </TileMatrixLimits>
     60132                                        <TileMatrixLimits>
     60133                                                <TileMatrix>7</TileMatrix>
     60134                                                <MinTileRow>71</MinTileRow>
     60135                                                <MaxTileRow>71</MaxTileRow>
     60136                                                <MinTileCol>83</MinTileCol>
     60137                                                <MaxTileCol>83</MaxTileCol>
     60138                                        </TileMatrixLimits>
     60139                                        <TileMatrixLimits>
     60140                                                <TileMatrix>8</TileMatrix>
     60141                                                <MinTileRow>143</MinTileRow>
     60142                                                <MaxTileRow>143</MaxTileRow>
     60143                                                <MinTileCol>167</MinTileCol>
     60144                                                <MaxTileCol>167</MaxTileCol>
     60145                                        </TileMatrixLimits>
     60146                                        <TileMatrixLimits>
     60147                                                <TileMatrix>9</TileMatrix>
     60148                                                <MinTileRow>286</MinTileRow>
     60149                                                <MaxTileRow>286</MaxTileRow>
     60150                                                <MinTileCol>334</MinTileCol>
     60151                                                <MaxTileCol>335</MaxTileCol>
     60152                                        </TileMatrixLimits>
     60153                                </TileMatrixSetLimits>
     60154                        </TileMatrixSetLink>
     60155                </Layer>
     60156                <Layer>
     60157                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     60158                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     60159                        <ows:Keywords>
     60160                                <ows:Keyword>Photographies</ows:Keyword>
     60161                        </ows:Keywords>
     60162                        <ows:WGS84BoundingBox>
     60163                                <ows:LowerCorner>55.3599 -21.4082</ows:LowerCorner>
     60164                                <ows:UpperCorner>55.5774 -20.8553</ows:UpperCorner>
     60165                        </ows:WGS84BoundingBox>
     60166                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-09-02-23865398</ows:Identifier>
     60167                        <Style isDefault="true">
     60168                                <ows:Title>Données Brutes</ows:Title>
     60169                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60170                                <ows:Keywords>
     60171                                        <ows:Keyword>Défaut</ows:Keyword>
     60172                                </ows:Keywords>
     60173                                <ows:Identifier>normal</ows:Identifier>
     60174                                <LegendURL format="image/jpeg" height="200"
     60175                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60176                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60177                        </Style>
     60178                        <Format>image/jpeg</Format>
     60179                        <TileMatrixSetLink>
     60180                                <TileMatrixSet>PM</TileMatrixSet>
     60181                                <TileMatrixSetLimits>
     60182                                        <TileMatrixLimits>
     60183                                                <TileMatrix>0</TileMatrix>
     60184                                                <MinTileRow>0</MinTileRow>
     60185                                                <MaxTileRow>0</MaxTileRow>
     60186                                                <MinTileCol>0</MinTileCol>
     60187                                                <MaxTileCol>0</MaxTileCol>
     60188                                        </TileMatrixLimits>
     60189                                        <TileMatrixLimits>
     60190                                                <TileMatrix>1</TileMatrix>
     60191                                                <MinTileRow>1</MinTileRow>
     60192                                                <MaxTileRow>1</MaxTileRow>
     60193                                                <MinTileCol>1</MinTileCol>
     60194                                                <MaxTileCol>1</MaxTileCol>
     60195                                        </TileMatrixLimits>
     60196                                        <TileMatrixLimits>
     60197                                                <TileMatrix>10</TileMatrix>
     60198                                                <MinTileRow>572</MinTileRow>
     60199                                                <MaxTileRow>574</MaxTileRow>
     60200                                                <MinTileCol>669</MinTileCol>
     60201                                                <MaxTileCol>670</MaxTileCol>
     60202                                        </TileMatrixLimits>
     60203                                        <TileMatrixLimits>
     60204                                                <TileMatrix>11</TileMatrix>
     60205                                                <MinTileRow>1145</MinTileRow>
     60206                                                <MaxTileRow>1148</MaxTileRow>
     60207                                                <MinTileCol>1338</MinTileCol>
     60208                                                <MaxTileCol>1340</MaxTileCol>
     60209                                        </TileMatrixLimits>
     60210                                        <TileMatrixLimits>
     60211                                                <TileMatrix>12</TileMatrix>
     60212                                                <MinTileRow>2290</MinTileRow>
     60213                                                <MaxTileRow>2297</MaxTileRow>
     60214                                                <MinTileCol>2677</MinTileCol>
     60215                                                <MaxTileCol>2680</MaxTileCol>
     60216                                        </TileMatrixLimits>
     60217                                        <TileMatrixLimits>
     60218                                                <TileMatrix>13</TileMatrix>
     60219                                                <MinTileRow>4581</MinTileRow>
     60220                                                <MaxTileRow>4594</MaxTileRow>
     60221                                                <MinTileCol>5355</MinTileCol>
     60222                                                <MaxTileCol>5360</MaxTileCol>
     60223                                        </TileMatrixLimits>
     60224                                        <TileMatrixLimits>
     60225                                                <TileMatrix>14</TileMatrix>
     60226                                                <MinTileRow>9162</MinTileRow>
     60227                                                <MaxTileRow>9189</MaxTileRow>
     60228                                                <MinTileCol>10711</MinTileCol>
     60229                                                <MaxTileCol>10721</MaxTileCol>
     60230                                        </TileMatrixLimits>
     60231                                        <TileMatrixLimits>
     60232                                                <TileMatrix>15</TileMatrix>
     60233                                                <MinTileRow>18325</MinTileRow>
     60234                                                <MaxTileRow>18379</MaxTileRow>
     60235                                                <MinTileCol>21423</MinTileCol>
     60236                                                <MaxTileCol>21442</MaxTileCol>
     60237                                        </TileMatrixLimits>
     60238                                        <TileMatrixLimits>
     60239                                                <TileMatrix>16</TileMatrix>
     60240                                                <MinTileRow>36651</MinTileRow>
     60241                                                <MaxTileRow>36759</MaxTileRow>
     60242                                                <MinTileCol>42846</MinTileCol>
     60243                                                <MaxTileCol>42885</MaxTileCol>
     60244                                        </TileMatrixLimits>
     60245                                        <TileMatrixLimits>
     60246                                                <TileMatrix>17</TileMatrix>
     60247                                                <MinTileRow>73302</MinTileRow>
     60248                                                <MaxTileRow>73518</MaxTileRow>
     60249                                                <MinTileCol>85693</MinTileCol>
     60250                                                <MaxTileCol>85771</MaxTileCol>
     60251                                        </TileMatrixLimits>
     60252                                        <TileMatrixLimits>
     60253                                                <TileMatrix>18</TileMatrix>
     60254                                                <MinTileRow>146605</MinTileRow>
     60255                                                <MaxTileRow>147036</MaxTileRow>
     60256                                                <MinTileCol>171386</MinTileCol>
     60257                                                <MaxTileCol>171542</MaxTileCol>
     60258                                        </TileMatrixLimits>
     60259                                        <TileMatrixLimits>
     60260                                                <TileMatrix>2</TileMatrix>
     60261                                                <MinTileRow>2</MinTileRow>
     60262                                                <MaxTileRow>2</MaxTileRow>
     60263                                                <MinTileCol>2</MinTileCol>
     60264                                                <MaxTileCol>2</MaxTileCol>
     60265                                        </TileMatrixLimits>
     60266                                        <TileMatrixLimits>
     60267                                                <TileMatrix>3</TileMatrix>
     60268                                                <MinTileRow>4</MinTileRow>
     60269                                                <MaxTileRow>4</MaxTileRow>
     60270                                                <MinTileCol>5</MinTileCol>
     60271                                                <MaxTileCol>5</MaxTileCol>
     60272                                        </TileMatrixLimits>
     60273                                        <TileMatrixLimits>
     60274                                                <TileMatrix>4</TileMatrix>
     60275                                                <MinTileRow>8</MinTileRow>
     60276                                                <MaxTileRow>8</MaxTileRow>
     60277                                                <MinTileCol>10</MinTileCol>
     60278                                                <MaxTileCol>10</MaxTileCol>
     60279                                        </TileMatrixLimits>
     60280                                        <TileMatrixLimits>
     60281                                                <TileMatrix>5</TileMatrix>
     60282                                                <MinTileRow>17</MinTileRow>
     60283                                                <MaxTileRow>17</MaxTileRow>
     60284                                                <MinTileCol>20</MinTileCol>
     60285                                                <MaxTileCol>20</MaxTileCol>
     60286                                        </TileMatrixLimits>
     60287                                        <TileMatrixLimits>
     60288                                                <TileMatrix>6</TileMatrix>
     60289                                                <MinTileRow>35</MinTileRow>
     60290                                                <MaxTileRow>35</MaxTileRow>
     60291                                                <MinTileCol>41</MinTileCol>
     60292                                                <MaxTileCol>41</MaxTileCol>
     60293                                        </TileMatrixLimits>
     60294                                        <TileMatrixLimits>
     60295                                                <TileMatrix>7</TileMatrix>
     60296                                                <MinTileRow>71</MinTileRow>
     60297                                                <MaxTileRow>71</MaxTileRow>
     60298                                                <MinTileCol>83</MinTileCol>
     60299                                                <MaxTileCol>83</MaxTileCol>
     60300                                        </TileMatrixLimits>
     60301                                        <TileMatrixLimits>
     60302                                                <TileMatrix>8</TileMatrix>
     60303                                                <MinTileRow>143</MinTileRow>
     60304                                                <MaxTileRow>143</MaxTileRow>
     60305                                                <MinTileCol>167</MinTileCol>
     60306                                                <MaxTileCol>167</MaxTileCol>
     60307                                        </TileMatrixLimits>
     60308                                        <TileMatrixLimits>
     60309                                                <TileMatrix>9</TileMatrix>
     60310                                                <MinTileRow>286</MinTileRow>
     60311                                                <MaxTileRow>287</MaxTileRow>
     60312                                                <MinTileCol>334</MinTileCol>
     60313                                                <MaxTileCol>335</MaxTileCol>
     60314                                        </TileMatrixLimits>
     60315                                </TileMatrixSetLimits>
     60316                        </TileMatrixSetLink>
     60317                </Layer>
     60318                <Layer>
     60319                        <ows:Title>Orthophotographies Geosud de REUNION 2013</ows:Title>
     60320                        <ows:Abstract>Orthophotographies satellites de REUNION issues du projet Geosud.</ows:Abstract>
     60321                        <ows:Keywords>
     60322                                <ows:Keyword>Photographies</ows:Keyword>
     60323                        </ows:Keywords>
     60324                        <ows:WGS84BoundingBox>
     60325                                <ows:LowerCorner>55.6993 -21.2118</ows:LowerCorner>
     60326                                <ows:UpperCorner>55.8741 -21.0208</ows:UpperCorner>
     60327                        </ows:WGS84BoundingBox>
     60328                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2013-10-24-23849069</ows:Identifier>
     60329                        <Style isDefault="true">
     60330                                <ows:Title>Données Brutes</ows:Title>
     60331                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60332                                <ows:Keywords>
     60333                                        <ows:Keyword>Défaut</ows:Keyword>
     60334                                </ows:Keywords>
     60335                                <ows:Identifier>normal</ows:Identifier>
     60336                                <LegendURL format="image/jpeg" height="200"
     60337                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60338                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60339                        </Style>
     60340                        <Format>image/jpeg</Format>
     60341                        <TileMatrixSetLink>
     60342                                <TileMatrixSet>PM</TileMatrixSet>
     60343                                <TileMatrixSetLimits>
     60344                                        <TileMatrixLimits>
     60345                                                <TileMatrix>0</TileMatrix>
     60346                                                <MinTileRow>0</MinTileRow>
     60347                                                <MaxTileRow>0</MaxTileRow>
     60348                                                <MinTileCol>0</MinTileCol>
     60349                                                <MaxTileCol>0</MaxTileCol>
     60350                                        </TileMatrixLimits>
     60351                                        <TileMatrixLimits>
     60352                                                <TileMatrix>1</TileMatrix>
     60353                                                <MinTileRow>1</MinTileRow>
     60354                                                <MaxTileRow>1</MaxTileRow>
     60355                                                <MinTileCol>1</MinTileCol>
     60356                                                <MaxTileCol>1</MaxTileCol>
     60357                                        </TileMatrixLimits>
     60358                                        <TileMatrixLimits>
     60359                                                <TileMatrix>10</TileMatrix>
     60360                                                <MinTileRow>573</MinTileRow>
     60361                                                <MaxTileRow>573</MaxTileRow>
     60362                                                <MinTileCol>670</MinTileCol>
     60363                                                <MaxTileCol>670</MaxTileCol>
     60364                                        </TileMatrixLimits>
     60365                                        <TileMatrixLimits>
     60366                                                <TileMatrix>11</TileMatrix>
     60367                                                <MinTileRow>1146</MinTileRow>
     60368                                                <MaxTileRow>1147</MaxTileRow>
     60369                                                <MinTileCol>1340</MinTileCol>
     60370                                                <MaxTileCol>1341</MaxTileCol>
     60371                                        </TileMatrixLimits>
     60372                                        <TileMatrixLimits>
     60373                                                <TileMatrix>12</TileMatrix>
     60374                                                <MinTileRow>2292</MinTileRow>
     60375                                                <MaxTileRow>2295</MaxTileRow>
     60376                                                <MinTileCol>2681</MinTileCol>
     60377                                                <MaxTileCol>2683</MaxTileCol>
     60378                                        </TileMatrixLimits>
     60379                                        <TileMatrixLimits>
     60380                                                <TileMatrix>13</TileMatrix>
     60381                                                <MinTileRow>4585</MinTileRow>
     60382                                                <MaxTileRow>4590</MaxTileRow>
     60383                                                <MinTileCol>5363</MinTileCol>
     60384                                                <MaxTileCol>5367</MaxTileCol>
     60385                                        </TileMatrixLimits>
     60386                                        <TileMatrixLimits>
     60387                                                <TileMatrix>14</TileMatrix>
     60388                                                <MinTileRow>9170</MinTileRow>
     60389                                                <MaxTileRow>9180</MaxTileRow>
     60390                                                <MinTileCol>10726</MinTileCol>
     60391                                                <MaxTileCol>10734</MaxTileCol>
     60392                                        </TileMatrixLimits>
     60393                                        <TileMatrixLimits>
     60394                                                <TileMatrix>15</TileMatrix>
     60395                                                <MinTileRow>18341</MinTileRow>
     60396                                                <MaxTileRow>18360</MaxTileRow>
     60397                                                <MinTileCol>21453</MinTileCol>
     60398                                                <MaxTileCol>21469</MaxTileCol>
     60399                                        </TileMatrixLimits>
     60400                                        <TileMatrixLimits>
     60401                                                <TileMatrix>16</TileMatrix>
     60402                                                <MinTileRow>36683</MinTileRow>
     60403                                                <MaxTileRow>36720</MaxTileRow>
     60404                                                <MinTileCol>42907</MinTileCol>
     60405                                                <MaxTileCol>42939</MaxTileCol>
     60406                                        </TileMatrixLimits>
     60407                                        <TileMatrixLimits>
     60408                                                <TileMatrix>17</TileMatrix>
     60409                                                <MinTileRow>73367</MinTileRow>
     60410                                                <MaxTileRow>73441</MaxTileRow>
     60411                                                <MinTileCol>85815</MinTileCol>
     60412                                                <MaxTileCol>85878</MaxTileCol>
     60413                                        </TileMatrixLimits>
     60414                                        <TileMatrixLimits>
     60415                                                <TileMatrix>18</TileMatrix>
     60416                                                <MinTileRow>146734</MinTileRow>
     60417                                                <MaxTileRow>146883</MaxTileRow>
     60418                                                <MinTileCol>171630</MinTileCol>
     60419                                                <MaxTileCol>171757</MaxTileCol>
     60420                                        </TileMatrixLimits>
     60421                                        <TileMatrixLimits>
     60422                                                <TileMatrix>2</TileMatrix>
     60423                                                <MinTileRow>2</MinTileRow>
     60424                                                <MaxTileRow>2</MaxTileRow>
     60425                                                <MinTileCol>2</MinTileCol>
     60426                                                <MaxTileCol>2</MaxTileCol>
     60427                                        </TileMatrixLimits>
     60428                                        <TileMatrixLimits>
     60429                                                <TileMatrix>3</TileMatrix>
     60430                                                <MinTileRow>4</MinTileRow>
     60431                                                <MaxTileRow>4</MaxTileRow>
     60432                                                <MinTileCol>5</MinTileCol>
     60433                                                <MaxTileCol>5</MaxTileCol>
     60434                                        </TileMatrixLimits>
     60435                                        <TileMatrixLimits>
     60436                                                <TileMatrix>4</TileMatrix>
     60437                                                <MinTileRow>8</MinTileRow>
     60438                                                <MaxTileRow>8</MaxTileRow>
     60439                                                <MinTileCol>10</MinTileCol>
     60440                                                <MaxTileCol>10</MaxTileCol>
     60441                                        </TileMatrixLimits>
     60442                                        <TileMatrixLimits>
     60443                                                <TileMatrix>5</TileMatrix>
     60444                                                <MinTileRow>17</MinTileRow>
     60445                                                <MaxTileRow>17</MaxTileRow>
     60446                                                <MinTileCol>20</MinTileCol>
     60447                                                <MaxTileCol>20</MaxTileCol>
     60448                                        </TileMatrixLimits>
     60449                                        <TileMatrixLimits>
     60450                                                <TileMatrix>6</TileMatrix>
     60451                                                <MinTileRow>35</MinTileRow>
     60452                                                <MaxTileRow>35</MaxTileRow>
     60453                                                <MinTileCol>41</MinTileCol>
     60454                                                <MaxTileCol>41</MaxTileCol>
     60455                                        </TileMatrixLimits>
     60456                                        <TileMatrixLimits>
     60457                                                <TileMatrix>7</TileMatrix>
     60458                                                <MinTileRow>71</MinTileRow>
     60459                                                <MaxTileRow>71</MaxTileRow>
     60460                                                <MinTileCol>83</MinTileCol>
     60461                                                <MaxTileCol>83</MaxTileCol>
     60462                                        </TileMatrixLimits>
     60463                                        <TileMatrixLimits>
     60464                                                <TileMatrix>8</TileMatrix>
     60465                                                <MinTileRow>143</MinTileRow>
     60466                                                <MaxTileRow>143</MaxTileRow>
     60467                                                <MinTileCol>167</MinTileCol>
     60468                                                <MaxTileCol>167</MaxTileCol>
     60469                                        </TileMatrixLimits>
     60470                                        <TileMatrixLimits>
     60471                                                <TileMatrix>9</TileMatrix>
     60472                                                <MinTileRow>286</MinTileRow>
     60473                                                <MaxTileRow>286</MaxTileRow>
     60474                                                <MinTileCol>335</MinTileCol>
     60475                                                <MaxTileCol>335</MaxTileCol>
     60476                                        </TileMatrixLimits>
     60477                                </TileMatrixSetLimits>
     60478                        </TileMatrixSetLink>
     60479                </Layer>
     60480                <Layer>
     60481                        <ows:Title>Orthophotographies Geosud de REUNION-2014</ows:Title>
     60482                        <ows:Abstract>Orthophotographies satellites de REUNION-2014 issues du projet Geosud.</ows:Abstract>
     60483                        <ows:Keywords>
     60484                                <ows:Keyword>Photographies</ows:Keyword>
     60485                        </ows:Keywords>
     60486                        <ows:WGS84BoundingBox>
     60487                                <ows:LowerCorner>55.6977 -21.3924</ows:LowerCorner>
     60488                                <ows:UpperCorner>55.8632 -21.1924</ows:UpperCorner>
     60489                        </ows:WGS84BoundingBox>
     60490                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-2014-01-11-23413574</ows:Identifier>
     60491                        <Style isDefault="true">
     60492                                <ows:Title>Données Brutes</ows:Title>
     60493                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60494                                <ows:Keywords>
     60495                                        <ows:Keyword>Défaut</ows:Keyword>
     60496                                </ows:Keywords>
     60497                                <ows:Identifier>normal</ows:Identifier>
     60498                                <LegendURL format="image/jpeg" height="200"
     60499                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60500                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60501                        </Style>
     60502                        <Format>image/jpeg</Format>
     60503                        <TileMatrixSetLink>
     60504                                <TileMatrixSet>PM</TileMatrixSet>
     60505                                <TileMatrixSetLimits>
     60506                                        <TileMatrixLimits>
     60507                                                <TileMatrix>0</TileMatrix>
     60508                                                <MinTileRow>0</MinTileRow>
     60509                                                <MaxTileRow>0</MaxTileRow>
     60510                                                <MinTileCol>0</MinTileCol>
     60511                                                <MaxTileCol>0</MaxTileCol>
     60512                                        </TileMatrixLimits>
     60513                                        <TileMatrixLimits>
     60514                                                <TileMatrix>1</TileMatrix>
     60515                                                <MinTileRow>1</MinTileRow>
     60516                                                <MaxTileRow>1</MaxTileRow>
     60517                                                <MinTileCol>1</MinTileCol>
     60518                                                <MaxTileCol>1</MaxTileCol>
     60519                                        </TileMatrixLimits>
     60520                                        <TileMatrixLimits>
     60521                                                <TileMatrix>10</TileMatrix>
     60522                                                <MinTileRow>573</MinTileRow>
     60523                                                <MaxTileRow>574</MaxTileRow>
     60524                                                <MinTileCol>670</MinTileCol>
     60525                                                <MaxTileCol>670</MaxTileCol>
     60526                                        </TileMatrixLimits>
     60527                                        <TileMatrixLimits>
     60528                                                <TileMatrix>11</TileMatrix>
     60529                                                <MinTileRow>1147</MinTileRow>
     60530                                                <MaxTileRow>1148</MaxTileRow>
     60531                                                <MinTileCol>1340</MinTileCol>
     60532                                                <MaxTileCol>1341</MaxTileCol>
     60533                                        </TileMatrixLimits>
     60534                                        <TileMatrixLimits>
     60535                                                <TileMatrix>12</TileMatrix>
     60536                                                <MinTileRow>2294</MinTileRow>
     60537                                                <MaxTileRow>2297</MaxTileRow>
     60538                                                <MinTileCol>2681</MinTileCol>
     60539                                                <MaxTileCol>2683</MaxTileCol>
     60540                                        </TileMatrixLimits>
     60541                                        <TileMatrixLimits>
     60542                                                <TileMatrix>13</TileMatrix>
     60543                                                <MinTileRow>4589</MinTileRow>
     60544                                                <MaxTileRow>4594</MaxTileRow>
     60545                                                <MinTileCol>5363</MinTileCol>
     60546                                                <MaxTileCol>5367</MaxTileCol>
     60547                                        </TileMatrixLimits>
     60548                                        <TileMatrixLimits>
     60549                                                <TileMatrix>14</TileMatrix>
     60550                                                <MinTileRow>9179</MinTileRow>
     60551                                                <MaxTileRow>9188</MaxTileRow>
     60552                                                <MinTileCol>10726</MinTileCol>
     60553                                                <MaxTileCol>10734</MaxTileCol>
     60554                                        </TileMatrixLimits>
     60555                                        <TileMatrixLimits>
     60556                                                <TileMatrix>15</TileMatrix>
     60557                                                <MinTileRow>18358</MinTileRow>
     60558                                                <MaxTileRow>18377</MaxTileRow>
     60559                                                <MinTileCol>21453</MinTileCol>
     60560                                                <MaxTileCol>21468</MaxTileCol>
     60561                                        </TileMatrixLimits>
     60562                                        <TileMatrixLimits>
     60563                                                <TileMatrix>16</TileMatrix>
     60564                                                <MinTileRow>36717</MinTileRow>
     60565                                                <MaxTileRow>36755</MaxTileRow>
     60566                                                <MinTileCol>42907</MinTileCol>
     60567                                                <MaxTileCol>42937</MaxTileCol>
     60568                                        </TileMatrixLimits>
     60569                                        <TileMatrixLimits>
     60570                                                <TileMatrix>17</TileMatrix>
     60571                                                <MinTileRow>73434</MinTileRow>
     60572                                                <MaxTileRow>73511</MaxTileRow>
     60573                                                <MinTileCol>85814</MinTileCol>
     60574                                                <MaxTileCol>85875</MaxTileCol>
     60575                                        </TileMatrixLimits>
     60576                                        <TileMatrixLimits>
     60577                                                <TileMatrix>18</TileMatrix>
     60578                                                <MinTileRow>146868</MinTileRow>
     60579                                                <MaxTileRow>147023</MaxTileRow>
     60580                                                <MinTileCol>171629</MinTileCol>
     60581                                                <MaxTileCol>171750</MaxTileCol>
     60582                                        </TileMatrixLimits>
     60583                                        <TileMatrixLimits>
     60584                                                <TileMatrix>2</TileMatrix>
     60585                                                <MinTileRow>2</MinTileRow>
     60586                                                <MaxTileRow>2</MaxTileRow>
     60587                                                <MinTileCol>2</MinTileCol>
     60588                                                <MaxTileCol>2</MaxTileCol>
     60589                                        </TileMatrixLimits>
     60590                                        <TileMatrixLimits>
     60591                                                <TileMatrix>3</TileMatrix>
     60592                                                <MinTileRow>4</MinTileRow>
     60593                                                <MaxTileRow>4</MaxTileRow>
     60594                                                <MinTileCol>5</MinTileCol>
     60595                                                <MaxTileCol>5</MaxTileCol>
     60596                                        </TileMatrixLimits>
     60597                                        <TileMatrixLimits>
     60598                                                <TileMatrix>4</TileMatrix>
     60599                                                <MinTileRow>8</MinTileRow>
     60600                                                <MaxTileRow>8</MaxTileRow>
     60601                                                <MinTileCol>10</MinTileCol>
     60602                                                <MaxTileCol>10</MaxTileCol>
     60603                                        </TileMatrixLimits>
     60604                                        <TileMatrixLimits>
     60605                                                <TileMatrix>5</TileMatrix>
     60606                                                <MinTileRow>17</MinTileRow>
     60607                                                <MaxTileRow>17</MaxTileRow>
     60608                                                <MinTileCol>20</MinTileCol>
     60609                                                <MaxTileCol>20</MaxTileCol>
     60610                                        </TileMatrixLimits>
     60611                                        <TileMatrixLimits>
     60612                                                <TileMatrix>6</TileMatrix>
     60613                                                <MinTileRow>35</MinTileRow>
     60614                                                <MaxTileRow>35</MaxTileRow>
     60615                                                <MinTileCol>41</MinTileCol>
     60616                                                <MaxTileCol>41</MaxTileCol>
     60617                                        </TileMatrixLimits>
     60618                                        <TileMatrixLimits>
     60619                                                <TileMatrix>7</TileMatrix>
     60620                                                <MinTileRow>71</MinTileRow>
     60621                                                <MaxTileRow>71</MaxTileRow>
     60622                                                <MinTileCol>83</MinTileCol>
     60623                                                <MaxTileCol>83</MaxTileCol>
     60624                                        </TileMatrixLimits>
     60625                                        <TileMatrixLimits>
     60626                                                <TileMatrix>8</TileMatrix>
     60627                                                <MinTileRow>143</MinTileRow>
     60628                                                <MaxTileRow>143</MaxTileRow>
     60629                                                <MinTileCol>167</MinTileCol>
     60630                                                <MaxTileCol>167</MaxTileCol>
     60631                                        </TileMatrixLimits>
     60632                                        <TileMatrixLimits>
     60633                                                <TileMatrix>9</TileMatrix>
     60634                                                <MinTileRow>286</MinTileRow>
     60635                                                <MaxTileRow>287</MaxTileRow>
     60636                                                <MinTileCol>335</MinTileCol>
     60637                                                <MaxTileCol>335</MaxTileCol>
     60638                                        </TileMatrixLimits>
     60639                                </TileMatrixSetLimits>
     60640                        </TileMatrixSetLink>
     60641                </Layer>
     60642                <Layer>
     60643                        <ows:Title>Orthophotographies Geosud de REUNION-SAINT-DENIS 2014</ows:Title>
     60644                        <ows:Abstract>Orthophotographies satellites de REUNION-SAINT-DENIS issues du projet Geosud.</ows:Abstract>
     60645                        <ows:Keywords>
     60646                                <ows:Keyword>Photographies</ows:Keyword>
     60647                        </ows:Keywords>
     60648                        <ows:WGS84BoundingBox>
     60649                                <ows:LowerCorner>55.3258 -21.0197</ows:LowerCorner>
     60650                                <ows:UpperCorner>55.5681 -20.8279</ows:UpperCorner>
     60651                        </ows:WGS84BoundingBox>
     60652                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-DENIS-2014-01-05-23153694</ows:Identifier>
     60653                        <Style isDefault="true">
     60654                                <ows:Title>Données Brutes</ows:Title>
     60655                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60656                                <ows:Keywords>
     60657                                        <ows:Keyword>Défaut</ows:Keyword>
     60658                                </ows:Keywords>
     60659                                <ows:Identifier>normal</ows:Identifier>
     60660                                <LegendURL format="image/jpeg" height="200"
     60661                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60662                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60663                        </Style>
     60664                        <Format>image/jpeg</Format>
     60665                        <TileMatrixSetLink>
     60666                                <TileMatrixSet>PM</TileMatrixSet>
     60667                                <TileMatrixSetLimits>
     60668                                        <TileMatrixLimits>
     60669                                                <TileMatrix>0</TileMatrix>
     60670                                                <MinTileRow>0</MinTileRow>
     60671                                                <MaxTileRow>0</MaxTileRow>
     60672                                                <MinTileCol>0</MinTileCol>
     60673                                                <MaxTileCol>0</MaxTileCol>
     60674                                        </TileMatrixLimits>
     60675                                        <TileMatrixLimits>
     60676                                                <TileMatrix>1</TileMatrix>
     60677                                                <MinTileRow>1</MinTileRow>
     60678                                                <MaxTileRow>1</MaxTileRow>
     60679                                                <MinTileCol>1</MinTileCol>
     60680                                                <MaxTileCol>1</MaxTileCol>
     60681                                        </TileMatrixLimits>
     60682                                        <TileMatrixLimits>
     60683                                                <TileMatrix>10</TileMatrix>
     60684                                                <MinTileRow>572</MinTileRow>
     60685                                                <MaxTileRow>573</MaxTileRow>
     60686                                                <MinTileCol>669</MinTileCol>
     60687                                                <MaxTileCol>670</MaxTileCol>
     60688                                        </TileMatrixLimits>
     60689                                        <TileMatrixLimits>
     60690                                                <TileMatrix>11</TileMatrix>
     60691                                                <MinTileRow>1145</MinTileRow>
     60692                                                <MaxTileRow>1146</MaxTileRow>
     60693                                                <MinTileCol>1338</MinTileCol>
     60694                                                <MaxTileCol>1340</MaxTileCol>
     60695                                        </TileMatrixLimits>
     60696                                        <TileMatrixLimits>
     60697                                                <TileMatrix>12</TileMatrix>
     60698                                                <MinTileRow>2290</MinTileRow>
     60699                                                <MaxTileRow>2292</MaxTileRow>
     60700                                                <MinTileCol>2677</MinTileCol>
     60701                                                <MaxTileCol>2680</MaxTileCol>
     60702                                        </TileMatrixLimits>
     60703                                        <TileMatrixLimits>
     60704                                                <TileMatrix>13</TileMatrix>
     60705                                                <MinTileRow>4580</MinTileRow>
     60706                                                <MaxTileRow>4585</MaxTileRow>
     60707                                                <MinTileCol>5354</MinTileCol>
     60708                                                <MaxTileCol>5360</MaxTileCol>
     60709                                        </TileMatrixLimits>
     60710                                        <TileMatrixLimits>
     60711                                                <TileMatrix>14</TileMatrix>
     60712                                                <MinTileRow>9161</MinTileRow>
     60713                                                <MaxTileRow>9170</MaxTileRow>
     60714                                                <MinTileCol>10709</MinTileCol>
     60715                                                <MaxTileCol>10720</MaxTileCol>
     60716                                        </TileMatrixLimits>
     60717                                        <TileMatrixLimits>
     60718                                                <TileMatrix>15</TileMatrix>
     60719                                                <MinTileRow>18322</MinTileRow>
     60720                                                <MaxTileRow>18341</MaxTileRow>
     60721                                                <MinTileCol>21419</MinTileCol>
     60722                                                <MaxTileCol>21441</MaxTileCol>
     60723                                        </TileMatrixLimits>
     60724                                        <TileMatrixLimits>
     60725                                                <TileMatrix>16</TileMatrix>
     60726                                                <MinTileRow>36645</MinTileRow>
     60727                                                <MaxTileRow>36683</MaxTileRow>
     60728                                                <MinTileCol>42839</MinTileCol>
     60729                                                <MaxTileCol>42883</MaxTileCol>
     60730                                        </TileMatrixLimits>
     60731                                        <TileMatrixLimits>
     60732                                                <TileMatrix>17</TileMatrix>
     60733                                                <MinTileRow>73291</MinTileRow>
     60734                                                <MaxTileRow>73366</MaxTileRow>
     60735                                                <MinTileCol>85679</MinTileCol>
     60736                                                <MaxTileCol>85767</MaxTileCol>
     60737                                        </TileMatrixLimits>
     60738                                        <TileMatrixLimits>
     60739                                                <TileMatrix>18</TileMatrix>
     60740                                                <MinTileRow>146583</MinTileRow>
     60741                                                <MaxTileRow>146733</MaxTileRow>
     60742                                                <MinTileCol>171359</MinTileCol>
     60743                                                <MaxTileCol>171535</MaxTileCol>
     60744                                        </TileMatrixLimits>
     60745                                        <TileMatrixLimits>
     60746                                                <TileMatrix>2</TileMatrix>
     60747                                                <MinTileRow>2</MinTileRow>
     60748                                                <MaxTileRow>2</MaxTileRow>
     60749                                                <MinTileCol>2</MinTileCol>
     60750                                                <MaxTileCol>2</MaxTileCol>
     60751                                        </TileMatrixLimits>
     60752                                        <TileMatrixLimits>
     60753                                                <TileMatrix>3</TileMatrix>
     60754                                                <MinTileRow>4</MinTileRow>
     60755                                                <MaxTileRow>4</MaxTileRow>
     60756                                                <MinTileCol>5</MinTileCol>
     60757                                                <MaxTileCol>5</MaxTileCol>
     60758                                        </TileMatrixLimits>
     60759                                        <TileMatrixLimits>
     60760                                                <TileMatrix>4</TileMatrix>
     60761                                                <MinTileRow>8</MinTileRow>
     60762                                                <MaxTileRow>8</MaxTileRow>
     60763                                                <MinTileCol>10</MinTileCol>
     60764                                                <MaxTileCol>10</MaxTileCol>
     60765                                        </TileMatrixLimits>
     60766                                        <TileMatrixLimits>
     60767                                                <TileMatrix>5</TileMatrix>
     60768                                                <MinTileRow>17</MinTileRow>
     60769                                                <MaxTileRow>17</MaxTileRow>
     60770                                                <MinTileCol>20</MinTileCol>
     60771                                                <MaxTileCol>20</MaxTileCol>
     60772                                        </TileMatrixLimits>
     60773                                        <TileMatrixLimits>
     60774                                                <TileMatrix>6</TileMatrix>
     60775                                                <MinTileRow>35</MinTileRow>
     60776                                                <MaxTileRow>35</MaxTileRow>
     60777                                                <MinTileCol>41</MinTileCol>
     60778                                                <MaxTileCol>41</MaxTileCol>
     60779                                        </TileMatrixLimits>
     60780                                        <TileMatrixLimits>
     60781                                                <TileMatrix>7</TileMatrix>
     60782                                                <MinTileRow>71</MinTileRow>
     60783                                                <MaxTileRow>71</MaxTileRow>
     60784                                                <MinTileCol>83</MinTileCol>
     60785                                                <MaxTileCol>83</MaxTileCol>
     60786                                        </TileMatrixLimits>
     60787                                        <TileMatrixLimits>
     60788                                                <TileMatrix>8</TileMatrix>
     60789                                                <MinTileRow>143</MinTileRow>
     60790                                                <MaxTileRow>143</MaxTileRow>
     60791                                                <MinTileCol>167</MinTileCol>
     60792                                                <MaxTileCol>167</MaxTileCol>
     60793                                        </TileMatrixLimits>
     60794                                        <TileMatrixLimits>
     60795                                                <TileMatrix>9</TileMatrix>
     60796                                                <MinTileRow>286</MinTileRow>
     60797                                                <MaxTileRow>286</MaxTileRow>
     60798                                                <MinTileCol>334</MinTileCol>
     60799                                                <MaxTileCol>335</MaxTileCol>
     60800                                        </TileMatrixLimits>
     60801                                </TileMatrixSetLimits>
     60802                        </TileMatrixSetLink>
     60803                </Layer>
     60804                <Layer>
     60805                        <ows:Title>Orthophotographies Geosud de REUNION-SAINT-PAUL 2014</ows:Title>
     60806                        <ows:Abstract>Orthophotographies satellites de REUNION-SAINT-PAUL issues du projet Geosud.</ows:Abstract>
     60807                        <ows:Keywords>
     60808                                <ows:Keyword>Photographies</ows:Keyword>
     60809                        </ows:Keywords>
     60810                        <ows:WGS84BoundingBox>
     60811                                <ows:LowerCorner>55.1706 -21.1178</ows:LowerCorner>
     60812                                <ows:UpperCorner>55.4232 -20.8985</ows:UpperCorner>
     60813                        </ows:WGS84BoundingBox>
     60814                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-PAUL-2014-01-05-23162694</ows:Identifier>
     60815                        <Style isDefault="true">
     60816                                <ows:Title>Données Brutes</ows:Title>
     60817                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60818                                <ows:Keywords>
     60819                                        <ows:Keyword>Défaut</ows:Keyword>
     60820                                </ows:Keywords>
     60821                                <ows:Identifier>normal</ows:Identifier>
     60822                                <LegendURL format="image/jpeg" height="200"
     60823                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60824                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60825                        </Style>
     60826                        <Format>image/jpeg</Format>
     60827                        <TileMatrixSetLink>
     60828                                <TileMatrixSet>PM</TileMatrixSet>
     60829                                <TileMatrixSetLimits>
     60830                                        <TileMatrixLimits>
     60831                                                <TileMatrix>0</TileMatrix>
     60832                                                <MinTileRow>0</MinTileRow>
     60833                                                <MaxTileRow>0</MaxTileRow>
     60834                                                <MinTileCol>0</MinTileCol>
     60835                                                <MaxTileCol>0</MaxTileCol>
     60836                                        </TileMatrixLimits>
     60837                                        <TileMatrixLimits>
     60838                                                <TileMatrix>1</TileMatrix>
     60839                                                <MinTileRow>1</MinTileRow>
     60840                                                <MaxTileRow>1</MaxTileRow>
     60841                                                <MinTileCol>1</MinTileCol>
     60842                                                <MaxTileCol>1</MaxTileCol>
     60843                                        </TileMatrixLimits>
     60844                                        <TileMatrixLimits>
     60845                                                <TileMatrix>10</TileMatrix>
     60846                                                <MinTileRow>572</MinTileRow>
     60847                                                <MaxTileRow>573</MaxTileRow>
     60848                                                <MinTileCol>668</MinTileCol>
     60849                                                <MaxTileCol>669</MaxTileCol>
     60850                                        </TileMatrixLimits>
     60851                                        <TileMatrixLimits>
     60852                                                <TileMatrix>11</TileMatrix>
     60853                                                <MinTileRow>1145</MinTileRow>
     60854                                                <MaxTileRow>1146</MaxTileRow>
     60855                                                <MinTileCol>1337</MinTileCol>
     60856                                                <MaxTileCol>1339</MaxTileCol>
     60857                                        </TileMatrixLimits>
     60858                                        <TileMatrixLimits>
     60859                                                <TileMatrix>12</TileMatrix>
     60860                                                <MinTileRow>2291</MinTileRow>
     60861                                                <MaxTileRow>2293</MaxTileRow>
     60862                                                <MinTileCol>2675</MinTileCol>
     60863                                                <MaxTileCol>2678</MaxTileCol>
     60864                                        </TileMatrixLimits>
     60865                                        <TileMatrixLimits>
     60866                                                <TileMatrix>13</TileMatrix>
     60867                                                <MinTileRow>4582</MinTileRow>
     60868                                                <MaxTileRow>4587</MaxTileRow>
     60869                                                <MinTileCol>5351</MinTileCol>
     60870                                                <MaxTileCol>5357</MaxTileCol>
     60871                                        </TileMatrixLimits>
     60872                                        <TileMatrixLimits>
     60873                                                <TileMatrix>14</TileMatrix>
     60874                                                <MinTileRow>9164</MinTileRow>
     60875                                                <MaxTileRow>9175</MaxTileRow>
     60876                                                <MinTileCol>10702</MinTileCol>
     60877                                                <MaxTileCol>10714</MaxTileCol>
     60878                                        </TileMatrixLimits>
     60879                                        <TileMatrixLimits>
     60880                                                <TileMatrix>15</TileMatrix>
     60881                                                <MinTileRow>18329</MinTileRow>
     60882                                                <MaxTileRow>18351</MaxTileRow>
     60883                                                <MinTileCol>21405</MinTileCol>
     60884                                                <MaxTileCol>21428</MaxTileCol>
     60885                                        </TileMatrixLimits>
     60886                                        <TileMatrixLimits>
     60887                                                <TileMatrix>16</TileMatrix>
     60888                                                <MinTileRow>36659</MinTileRow>
     60889                                                <MaxTileRow>36702</MaxTileRow>
     60890                                                <MinTileCol>42811</MinTileCol>
     60891                                                <MaxTileCol>42857</MaxTileCol>
     60892                                        </TileMatrixLimits>
     60893                                        <TileMatrixLimits>
     60894                                                <TileMatrix>17</TileMatrix>
     60895                                                <MinTileRow>73319</MinTileRow>
     60896                                                <MaxTileRow>73404</MaxTileRow>
     60897                                                <MinTileCol>85623</MinTileCol>
     60898                                                <MaxTileCol>85714</MaxTileCol>
     60899                                        </TileMatrixLimits>
     60900                                        <TileMatrixLimits>
     60901                                                <TileMatrix>18</TileMatrix>
     60902                                                <MinTileRow>146638</MinTileRow>
     60903                                                <MaxTileRow>146809</MaxTileRow>
     60904                                                <MinTileCol>171246</MinTileCol>
     60905                                                <MaxTileCol>171428</MaxTileCol>
     60906                                        </TileMatrixLimits>
     60907                                        <TileMatrixLimits>
     60908                                                <TileMatrix>2</TileMatrix>
     60909                                                <MinTileRow>2</MinTileRow>
     60910                                                <MaxTileRow>2</MaxTileRow>
     60911                                                <MinTileCol>2</MinTileCol>
     60912                                                <MaxTileCol>2</MaxTileCol>
     60913                                        </TileMatrixLimits>
     60914                                        <TileMatrixLimits>
     60915                                                <TileMatrix>3</TileMatrix>
     60916                                                <MinTileRow>4</MinTileRow>
     60917                                                <MaxTileRow>4</MaxTileRow>
     60918                                                <MinTileCol>5</MinTileCol>
     60919                                                <MaxTileCol>5</MaxTileCol>
     60920                                        </TileMatrixLimits>
     60921                                        <TileMatrixLimits>
     60922                                                <TileMatrix>4</TileMatrix>
     60923                                                <MinTileRow>8</MinTileRow>
     60924                                                <MaxTileRow>8</MaxTileRow>
     60925                                                <MinTileCol>10</MinTileCol>
     60926                                                <MaxTileCol>10</MaxTileCol>
     60927                                        </TileMatrixLimits>
     60928                                        <TileMatrixLimits>
     60929                                                <TileMatrix>5</TileMatrix>
     60930                                                <MinTileRow>17</MinTileRow>
     60931                                                <MaxTileRow>17</MaxTileRow>
     60932                                                <MinTileCol>20</MinTileCol>
     60933                                                <MaxTileCol>20</MaxTileCol>
     60934                                        </TileMatrixLimits>
     60935                                        <TileMatrixLimits>
     60936                                                <TileMatrix>6</TileMatrix>
     60937                                                <MinTileRow>35</MinTileRow>
     60938                                                <MaxTileRow>35</MaxTileRow>
     60939                                                <MinTileCol>41</MinTileCol>
     60940                                                <MaxTileCol>41</MaxTileCol>
     60941                                        </TileMatrixLimits>
     60942                                        <TileMatrixLimits>
     60943                                                <TileMatrix>7</TileMatrix>
     60944                                                <MinTileRow>71</MinTileRow>
     60945                                                <MaxTileRow>71</MaxTileRow>
     60946                                                <MinTileCol>83</MinTileCol>
     60947                                                <MaxTileCol>83</MaxTileCol>
     60948                                        </TileMatrixLimits>
     60949                                        <TileMatrixLimits>
     60950                                                <TileMatrix>8</TileMatrix>
     60951                                                <MinTileRow>143</MinTileRow>
     60952                                                <MaxTileRow>143</MaxTileRow>
     60953                                                <MinTileCol>167</MinTileCol>
     60954                                                <MaxTileCol>167</MaxTileCol>
     60955                                        </TileMatrixLimits>
     60956                                        <TileMatrixLimits>
     60957                                                <TileMatrix>9</TileMatrix>
     60958                                                <MinTileRow>286</MinTileRow>
     60959                                                <MaxTileRow>286</MaxTileRow>
     60960                                                <MinTileCol>334</MinTileCol>
     60961                                                <MaxTileCol>334</MaxTileCol>
     60962                                        </TileMatrixLimits>
     60963                                </TileMatrixSetLimits>
     60964                        </TileMatrixSetLink>
     60965                </Layer>
     60966                <Layer>
     60967                        <ows:Title>Orthophotographies Geosud de REUNION-SAINT-PIERRE 2014</ows:Title>
     60968                        <ows:Abstract>Orthophotographies satellites de REUNION-SAINT-PIERRE issues du projet Geosud.</ows:Abstract>
     60969                        <ows:Keywords>
     60970                                <ows:Keyword>Photographies</ows:Keyword>
     60971                        </ows:Keywords>
     60972                        <ows:WGS84BoundingBox>
     60973                                <ows:LowerCorner>55.3797 -21.3632</ows:LowerCorner>
     60974                                <ows:UpperCorner>55.5937 -21.1716</ows:UpperCorner>
     60975                        </ows:WGS84BoundingBox>
     60976                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_REUNION-SAINT-PIERRE-2014-01-04-23675449</ows:Identifier>
     60977                        <Style isDefault="true">
     60978                                <ows:Title>Données Brutes</ows:Title>
     60979                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     60980                                <ows:Keywords>
     60981                                        <ows:Keyword>Défaut</ows:Keyword>
     60982                                </ows:Keywords>
     60983                                <ows:Identifier>normal</ows:Identifier>
     60984                                <LegendURL format="image/jpeg" height="200"
     60985                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     60986                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     60987                        </Style>
     60988                        <Format>image/jpeg</Format>
     60989                        <TileMatrixSetLink>
     60990                                <TileMatrixSet>PM</TileMatrixSet>
     60991                                <TileMatrixSetLimits>
     60992                                        <TileMatrixLimits>
     60993                                                <TileMatrix>0</TileMatrix>
     60994                                                <MinTileRow>0</MinTileRow>
     60995                                                <MaxTileRow>0</MaxTileRow>
     60996                                                <MinTileCol>0</MinTileCol>
     60997                                                <MaxTileCol>0</MaxTileCol>
     60998                                        </TileMatrixLimits>
     60999                                        <TileMatrixLimits>
     61000                                                <TileMatrix>1</TileMatrix>
     61001                                                <MinTileRow>1</MinTileRow>
     61002                                                <MaxTileRow>1</MaxTileRow>
     61003                                                <MinTileCol>1</MinTileCol>
     61004                                                <MaxTileCol>1</MaxTileCol>
     61005                                        </TileMatrixLimits>
     61006                                        <TileMatrixLimits>
     61007                                                <TileMatrix>10</TileMatrix>
     61008                                                <MinTileRow>573</MinTileRow>
     61009                                                <MaxTileRow>574</MaxTileRow>
     61010                                                <MinTileCol>669</MinTileCol>
     61011                                                <MaxTileCol>670</MaxTileCol>
     61012                                        </TileMatrixLimits>
     61013                                        <TileMatrixLimits>
     61014                                                <TileMatrix>11</TileMatrix>
     61015                                                <MinTileRow>1147</MinTileRow>
     61016                                                <MaxTileRow>1148</MaxTileRow>
     61017                                                <MinTileCol>1339</MinTileCol>
     61018                                                <MaxTileCol>1340</MaxTileCol>
     61019                                        </TileMatrixLimits>
     61020                                        <TileMatrixLimits>
     61021                                                <TileMatrix>12</TileMatrix>
     61022                                                <MinTileRow>2294</MinTileRow>
     61023                                                <MaxTileRow>2296</MaxTileRow>
     61024                                                <MinTileCol>2678</MinTileCol>
     61025                                                <MaxTileCol>2680</MaxTileCol>
     61026                                        </TileMatrixLimits>
     61027                                        <TileMatrixLimits>
     61028                                                <TileMatrix>13</TileMatrix>
     61029                                                <MinTileRow>4589</MinTileRow>
     61030                                                <MaxTileRow>4593</MaxTileRow>
     61031                                                <MinTileCol>5356</MinTileCol>
     61032                                                <MaxTileCol>5361</MaxTileCol>
     61033                                        </TileMatrixLimits>
     61034                                        <TileMatrixLimits>
     61035                                                <TileMatrix>14</TileMatrix>
     61036                                                <MinTileRow>9178</MinTileRow>
     61037                                                <MaxTileRow>9187</MaxTileRow>
     61038                                                <MinTileCol>10712</MinTileCol>
     61039                                                <MaxTileCol>10722</MaxTileCol>
     61040                                        </TileMatrixLimits>
     61041                                        <TileMatrixLimits>
     61042                                                <TileMatrix>15</TileMatrix>
     61043                                                <MinTileRow>18356</MinTileRow>
     61044                                                <MaxTileRow>18375</MaxTileRow>
     61045                                                <MinTileCol>21424</MinTileCol>
     61046                                                <MaxTileCol>21444</MaxTileCol>
     61047                                        </TileMatrixLimits>
     61048                                        <TileMatrixLimits>
     61049                                                <TileMatrix>16</TileMatrix>
     61050                                                <MinTileRow>36713</MinTileRow>
     61051                                                <MaxTileRow>36750</MaxTileRow>
     61052                                                <MinTileCol>42849</MinTileCol>
     61053                                                <MaxTileCol>42888</MaxTileCol>
     61054                                        </TileMatrixLimits>
     61055                                        <TileMatrixLimits>
     61056                                                <TileMatrix>17</TileMatrix>
     61057                                                <MinTileRow>73426</MinTileRow>
     61058                                                <MaxTileRow>73500</MaxTileRow>
     61059                                                <MinTileCol>85699</MinTileCol>
     61060                                                <MaxTileCol>85777</MaxTileCol>
     61061                                        </TileMatrixLimits>
     61062                                        <TileMatrixLimits>
     61063                                                <TileMatrix>18</TileMatrix>
     61064                                                <MinTileRow>146852</MinTileRow>
     61065                                                <MaxTileRow>147001</MaxTileRow>
     61066                                                <MinTileCol>171398</MinTileCol>
     61067                                                <MaxTileCol>171554</MaxTileCol>
     61068                                        </TileMatrixLimits>
     61069                                        <TileMatrixLimits>
     61070                                                <TileMatrix>2</TileMatrix>
     61071                                                <MinTileRow>2</MinTileRow>
     61072                                                <MaxTileRow>2</MaxTileRow>
     61073                                                <MinTileCol>2</MinTileCol>
     61074                                                <MaxTileCol>2</MaxTileCol>
     61075                                        </TileMatrixLimits>
     61076                                        <TileMatrixLimits>
     61077                                                <TileMatrix>3</TileMatrix>
     61078                                                <MinTileRow>4</MinTileRow>
     61079                                                <MaxTileRow>4</MaxTileRow>
     61080                                                <MinTileCol>5</MinTileCol>
     61081                                                <MaxTileCol>5</MaxTileCol>
     61082                                        </TileMatrixLimits>
     61083                                        <TileMatrixLimits>
     61084                                                <TileMatrix>4</TileMatrix>
     61085                                                <MinTileRow>8</MinTileRow>
     61086                                                <MaxTileRow>8</MaxTileRow>
     61087                                                <MinTileCol>10</MinTileCol>
     61088                                                <MaxTileCol>10</MaxTileCol>
     61089                                        </TileMatrixLimits>
     61090                                        <TileMatrixLimits>
     61091                                                <TileMatrix>5</TileMatrix>
     61092                                                <MinTileRow>17</MinTileRow>
     61093                                                <MaxTileRow>17</MaxTileRow>
     61094                                                <MinTileCol>20</MinTileCol>
     61095                                                <MaxTileCol>20</MaxTileCol>
     61096                                        </TileMatrixLimits>
     61097                                        <TileMatrixLimits>
     61098                                                <TileMatrix>6</TileMatrix>
     61099                                                <MinTileRow>35</MinTileRow>
     61100                                                <MaxTileRow>35</MaxTileRow>
     61101                                                <MinTileCol>41</MinTileCol>
     61102                                                <MaxTileCol>41</MaxTileCol>
     61103                                        </TileMatrixLimits>
     61104                                        <TileMatrixLimits>
     61105                                                <TileMatrix>7</TileMatrix>
     61106                                                <MinTileRow>71</MinTileRow>
     61107                                                <MaxTileRow>71</MaxTileRow>
     61108                                                <MinTileCol>83</MinTileCol>
     61109                                                <MaxTileCol>83</MaxTileCol>
     61110                                        </TileMatrixLimits>
     61111                                        <TileMatrixLimits>
     61112                                                <TileMatrix>8</TileMatrix>
     61113                                                <MinTileRow>143</MinTileRow>
     61114                                                <MaxTileRow>143</MaxTileRow>
     61115                                                <MinTileCol>167</MinTileCol>
     61116                                                <MaxTileCol>167</MaxTileCol>
     61117                                        </TileMatrixLimits>
     61118                                        <TileMatrixLimits>
     61119                                                <TileMatrix>9</TileMatrix>
     61120                                                <MinTileRow>286</MinTileRow>
     61121                                                <MaxTileRow>287</MaxTileRow>
     61122                                                <MinTileCol>334</MinTileCol>
     61123                                                <MaxTileCol>335</MaxTileCol>
     61124                                        </TileMatrixLimits>
     61125                                </TileMatrixSetLimits>
     61126                        </TileMatrixSetLink>
     61127                </Layer>
     61128                <Layer>
     61129                        <ows:Title>Orthophotographies Geosud de RHONE-ALPES 2014</ows:Title>
     61130                        <ows:Abstract>Orthophotographies satellites de RHONE-ALPES issues du projet Geosud.</ows:Abstract>
     61131                        <ows:Keywords>
     61132                                <ows:Keyword>Photographies</ows:Keyword>
     61133                        </ows:Keywords>
     61134                        <ows:WGS84BoundingBox>
     61135                                <ows:LowerCorner>3.6619 44.019</ows:LowerCorner>
     61136                                <ows:UpperCorner>7.29217 46.5789</ows:UpperCorner>
     61137                        </ows:WGS84BoundingBox>
     61138                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_RHONE-ALPES-2014</ows:Identifier>
     61139                        <Style isDefault="true">
     61140                                <ows:Title>Données Brutes</ows:Title>
     61141                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61142                                <ows:Keywords>
     61143                                        <ows:Keyword>Défaut</ows:Keyword>
     61144                                </ows:Keywords>
     61145                                <ows:Identifier>normal</ows:Identifier>
     61146                                <LegendURL format="image/jpeg" height="200"
     61147                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61148                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61149                        </Style>
     61150                        <Format>image/jpeg</Format>
     61151                        <TileMatrixSetLink>
     61152                                <TileMatrixSet>PM</TileMatrixSet>
     61153                                <TileMatrixSetLimits>
     61154                                        <TileMatrixLimits>
     61155                                                <TileMatrix>0</TileMatrix>
     61156                                                <MinTileRow>0</MinTileRow>
     61157                                                <MaxTileRow>0</MaxTileRow>
     61158                                                <MinTileCol>0</MinTileCol>
     61159                                                <MaxTileCol>0</MaxTileCol>
     61160                                        </TileMatrixLimits>
     61161                                        <TileMatrixLimits>
     61162                                                <TileMatrix>1</TileMatrix>
     61163                                                <MinTileRow>0</MinTileRow>
     61164                                                <MaxTileRow>0</MaxTileRow>
     61165                                                <MinTileCol>1</MinTileCol>
     61166                                                <MaxTileCol>1</MaxTileCol>
     61167                                        </TileMatrixLimits>
     61168                                        <TileMatrixLimits>
     61169                                                <TileMatrix>10</TileMatrix>
     61170                                                <MinTileRow>361</MinTileRow>
     61171                                                <MaxTileRow>372</MaxTileRow>
     61172                                                <MinTileCol>522</MinTileCol>
     61173                                                <MaxTileCol>532</MaxTileCol>
     61174                                        </TileMatrixLimits>
     61175                                        <TileMatrixLimits>
     61176                                                <TileMatrix>11</TileMatrix>
     61177                                                <MinTileRow>723</MinTileRow>
     61178                                                <MaxTileRow>744</MaxTileRow>
     61179                                                <MinTileCol>1044</MinTileCol>
     61180                                                <MaxTileCol>1065</MaxTileCol>
     61181                                        </TileMatrixLimits>
     61182                                        <TileMatrixLimits>
     61183                                                <TileMatrix>12</TileMatrix>
     61184                                                <MinTileRow>1447</MinTileRow>
     61185                                                <MaxTileRow>1488</MaxTileRow>
     61186                                                <MinTileCol>2089</MinTileCol>
     61187                                                <MaxTileCol>2130</MaxTileCol>
     61188                                        </TileMatrixLimits>
     61189                                        <TileMatrixLimits>
     61190                                                <TileMatrix>13</TileMatrix>
     61191                                                <MinTileRow>2895</MinTileRow>
     61192                                                <MaxTileRow>2976</MaxTileRow>
     61193                                                <MinTileCol>4179</MinTileCol>
     61194                                                <MaxTileCol>4260</MaxTileCol>
     61195                                        </TileMatrixLimits>
     61196                                        <TileMatrixLimits>
     61197                                                <TileMatrix>14</TileMatrix>
     61198                                                <MinTileRow>5791</MinTileRow>
     61199                                                <MaxTileRow>5953</MaxTileRow>
     61200                                                <MinTileCol>8359</MinTileCol>
     61201                                                <MaxTileCol>8520</MaxTileCol>
     61202                                        </TileMatrixLimits>
     61203                                        <TileMatrixLimits>
     61204                                                <TileMatrix>15</TileMatrix>
     61205                                                <MinTileRow>11583</MinTileRow>
     61206                                                <MaxTileRow>11906</MaxTileRow>
     61207                                                <MinTileCol>16718</MinTileCol>
     61208                                                <MaxTileCol>17040</MaxTileCol>
     61209                                        </TileMatrixLimits>
     61210                                        <TileMatrixLimits>
     61211                                                <TileMatrix>16</TileMatrix>
     61212                                                <MinTileRow>23166</MinTileRow>
     61213                                                <MaxTileRow>23813</MaxTileRow>
     61214                                                <MinTileCol>33436</MinTileCol>
     61215                                                <MaxTileCol>34081</MaxTileCol>
     61216                                        </TileMatrixLimits>
     61217                                        <TileMatrixLimits>
     61218                                                <TileMatrix>17</TileMatrix>
     61219                                                <MinTileRow>46332</MinTileRow>
     61220                                                <MaxTileRow>47627</MaxTileRow>
     61221                                                <MinTileCol>66873</MinTileCol>
     61222                                                <MaxTileCol>68162</MaxTileCol>
     61223                                        </TileMatrixLimits>
     61224                                        <TileMatrixLimits>
     61225                                                <TileMatrix>2</TileMatrix>
     61226                                                <MinTileRow>1</MinTileRow>
     61227                                                <MaxTileRow>1</MaxTileRow>
     61228                                                <MinTileCol>2</MinTileCol>
     61229                                                <MaxTileCol>2</MaxTileCol>
     61230                                        </TileMatrixLimits>
     61231                                        <TileMatrixLimits>
     61232                                                <TileMatrix>3</TileMatrix>
     61233                                                <MinTileRow>2</MinTileRow>
     61234                                                <MaxTileRow>2</MaxTileRow>
     61235                                                <MinTileCol>4</MinTileCol>
     61236                                                <MaxTileCol>4</MaxTileCol>
     61237                                        </TileMatrixLimits>
     61238                                        <TileMatrixLimits>
     61239                                                <TileMatrix>4</TileMatrix>
     61240                                                <MinTileRow>5</MinTileRow>
     61241                                                <MaxTileRow>5</MaxTileRow>
     61242                                                <MinTileCol>8</MinTileCol>
     61243                                                <MaxTileCol>8</MaxTileCol>
     61244                                        </TileMatrixLimits>
     61245                                        <TileMatrixLimits>
     61246                                                <TileMatrix>5</TileMatrix>
     61247                                                <MinTileRow>11</MinTileRow>
     61248                                                <MaxTileRow>11</MaxTileRow>
     61249                                                <MinTileCol>16</MinTileCol>
     61250                                                <MaxTileCol>16</MaxTileCol>
     61251                                        </TileMatrixLimits>
     61252                                        <TileMatrixLimits>
     61253                                                <TileMatrix>6</TileMatrix>
     61254                                                <MinTileRow>22</MinTileRow>
     61255                                                <MaxTileRow>23</MaxTileRow>
     61256                                                <MinTileCol>32</MinTileCol>
     61257                                                <MaxTileCol>33</MaxTileCol>
     61258                                        </TileMatrixLimits>
     61259                                        <TileMatrixLimits>
     61260                                                <TileMatrix>7</TileMatrix>
     61261                                                <MinTileRow>45</MinTileRow>
     61262                                                <MaxTileRow>46</MaxTileRow>
     61263                                                <MinTileCol>65</MinTileCol>
     61264                                                <MaxTileCol>66</MaxTileCol>
     61265                                        </TileMatrixLimits>
     61266                                        <TileMatrixLimits>
     61267                                                <TileMatrix>8</TileMatrix>
     61268                                                <MinTileRow>90</MinTileRow>
     61269                                                <MaxTileRow>93</MaxTileRow>
     61270                                                <MinTileCol>130</MinTileCol>
     61271                                                <MaxTileCol>133</MaxTileCol>
     61272                                        </TileMatrixLimits>
     61273                                        <TileMatrixLimits>
     61274                                                <TileMatrix>9</TileMatrix>
     61275                                                <MinTileRow>180</MinTileRow>
     61276                                                <MaxTileRow>186</MaxTileRow>
     61277                                                <MinTileCol>261</MinTileCol>
     61278                                                <MaxTileCol>266</MaxTileCol>
     61279                                        </TileMatrixLimits>
     61280                                </TileMatrixSetLimits>
     61281                        </TileMatrixSetLink>
     61282                </Layer>
     61283                <Layer>
     61284                        <ows:Title>Orthophotographies Geosud de ROUEN 2014</ows:Title>
     61285                        <ows:Abstract>Orthophotographies satellites de ROUEN issues du projet Geosud.</ows:Abstract>
     61286                        <ows:Keywords>
     61287                                <ows:Keyword>Photographies</ows:Keyword>
     61288                        </ows:Keywords>
     61289                        <ows:WGS84BoundingBox>
     61290                                <ows:LowerCorner>0.928916 49.308</ows:LowerCorner>
     61291                                <ows:UpperCorner>1.23995 49.5284</ows:UpperCorner>
     61292                        </ows:WGS84BoundingBox>
     61293                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ROUEN-2014-03-10-40183194</ows:Identifier>
     61294                        <Style isDefault="true">
     61295                                <ows:Title>Données Brutes</ows:Title>
     61296                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61297                                <ows:Keywords>
     61298                                        <ows:Keyword>Défaut</ows:Keyword>
     61299                                </ows:Keywords>
     61300                                <ows:Identifier>normal</ows:Identifier>
     61301                                <LegendURL format="image/jpeg" height="200"
     61302                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61303                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61304                        </Style>
     61305                        <Format>image/jpeg</Format>
     61306                        <TileMatrixSetLink>
     61307                                <TileMatrixSet>PM</TileMatrixSet>
     61308                                <TileMatrixSetLimits>
     61309                                        <TileMatrixLimits>
     61310                                                <TileMatrix>0</TileMatrix>
     61311                                                <MinTileRow>0</MinTileRow>
     61312                                                <MaxTileRow>0</MaxTileRow>
     61313                                                <MinTileCol>0</MinTileCol>
     61314                                                <MaxTileCol>0</MaxTileCol>
     61315                                        </TileMatrixLimits>
     61316                                        <TileMatrixLimits>
     61317                                                <TileMatrix>1</TileMatrix>
     61318                                                <MinTileRow>0</MinTileRow>
     61319                                                <MaxTileRow>0</MaxTileRow>
     61320                                                <MinTileCol>1</MinTileCol>
     61321                                                <MaxTileCol>1</MaxTileCol>
     61322                                        </TileMatrixLimits>
     61323                                        <TileMatrixLimits>
     61324                                                <TileMatrix>10</TileMatrix>
     61325                                                <MinTileRow>349</MinTileRow>
     61326                                                <MaxTileRow>350</MaxTileRow>
     61327                                                <MinTileCol>514</MinTileCol>
     61328                                                <MaxTileCol>515</MaxTileCol>
     61329                                        </TileMatrixLimits>
     61330                                        <TileMatrixLimits>
     61331                                                <TileMatrix>11</TileMatrix>
     61332                                                <MinTileRow>698</MinTileRow>
     61333                                                <MaxTileRow>700</MaxTileRow>
     61334                                                <MinTileCol>1029</MinTileCol>
     61335                                                <MaxTileCol>1031</MaxTileCol>
     61336                                        </TileMatrixLimits>
     61337                                        <TileMatrixLimits>
     61338                                                <TileMatrix>12</TileMatrix>
     61339                                                <MinTileRow>1397</MinTileRow>
     61340                                                <MaxTileRow>1401</MaxTileRow>
     61341                                                <MinTileCol>2058</MinTileCol>
     61342                                                <MaxTileCol>2062</MaxTileCol>
     61343                                        </TileMatrixLimits>
     61344                                        <TileMatrixLimits>
     61345                                                <TileMatrix>13</TileMatrix>
     61346                                                <MinTileRow>2795</MinTileRow>
     61347                                                <MaxTileRow>2802</MaxTileRow>
     61348                                                <MinTileCol>4117</MinTileCol>
     61349                                                <MaxTileCol>4124</MaxTileCol>
     61350                                        </TileMatrixLimits>
     61351                                        <TileMatrixLimits>
     61352                                                <TileMatrix>14</TileMatrix>
     61353                                                <MinTileRow>5590</MinTileRow>
     61354                                                <MaxTileRow>5605</MaxTileRow>
     61355                                                <MinTileCol>8234</MinTileCol>
     61356                                                <MaxTileCol>8248</MaxTileCol>
     61357                                        </TileMatrixLimits>
     61358                                        <TileMatrixLimits>
     61359                                                <TileMatrix>15</TileMatrix>
     61360                                                <MinTileRow>11180</MinTileRow>
     61361                                                <MaxTileRow>11210</MaxTileRow>
     61362                                                <MinTileCol>16468</MinTileCol>
     61363                                                <MaxTileCol>16496</MaxTileCol>
     61364                                        </TileMatrixLimits>
     61365                                        <TileMatrixLimits>
     61366                                                <TileMatrix>16</TileMatrix>
     61367                                                <MinTileRow>22360</MinTileRow>
     61368                                                <MaxTileRow>22420</MaxTileRow>
     61369                                                <MinTileCol>32937</MinTileCol>
     61370                                                <MaxTileCol>32993</MaxTileCol>
     61371                                        </TileMatrixLimits>
     61372                                        <TileMatrixLimits>
     61373                                                <TileMatrix>17</TileMatrix>
     61374                                                <MinTileRow>44720</MinTileRow>
     61375                                                <MaxTileRow>44840</MaxTileRow>
     61376                                                <MinTileCol>65874</MinTileCol>
     61377                                                <MaxTileCol>65987</MaxTileCol>
     61378                                        </TileMatrixLimits>
     61379                                        <TileMatrixLimits>
     61380                                                <TileMatrix>18</TileMatrix>
     61381                                                <MinTileRow>89440</MinTileRow>
     61382                                                <MaxTileRow>89680</MaxTileRow>
     61383                                                <MinTileCol>131748</MinTileCol>
     61384                                                <MaxTileCol>131975</MaxTileCol>
     61385                                        </TileMatrixLimits>
     61386                                        <TileMatrixLimits>
     61387                                                <TileMatrix>2</TileMatrix>
     61388                                                <MinTileRow>1</MinTileRow>
     61389                                                <MaxTileRow>1</MaxTileRow>
     61390                                                <MinTileCol>2</MinTileCol>
     61391                                                <MaxTileCol>2</MaxTileCol>
     61392                                        </TileMatrixLimits>
     61393                                        <TileMatrixLimits>
     61394                                                <TileMatrix>3</TileMatrix>
     61395                                                <MinTileRow>2</MinTileRow>
     61396                                                <MaxTileRow>2</MaxTileRow>
     61397                                                <MinTileCol>4</MinTileCol>
     61398                                                <MaxTileCol>4</MaxTileCol>
     61399                                        </TileMatrixLimits>
     61400                                        <TileMatrixLimits>
     61401                                                <TileMatrix>4</TileMatrix>
     61402                                                <MinTileRow>5</MinTileRow>
     61403                                                <MaxTileRow>5</MaxTileRow>
     61404                                                <MinTileCol>8</MinTileCol>
     61405                                                <MaxTileCol>8</MaxTileCol>
     61406                                        </TileMatrixLimits>
     61407                                        <TileMatrixLimits>
     61408                                                <TileMatrix>5</TileMatrix>
     61409                                                <MinTileRow>10</MinTileRow>
     61410                                                <MaxTileRow>10</MaxTileRow>
     61411                                                <MinTileCol>16</MinTileCol>
     61412                                                <MaxTileCol>16</MaxTileCol>
     61413                                        </TileMatrixLimits>
     61414                                        <TileMatrixLimits>
     61415                                                <TileMatrix>6</TileMatrix>
     61416                                                <MinTileRow>21</MinTileRow>
     61417                                                <MaxTileRow>21</MaxTileRow>
     61418                                                <MinTileCol>32</MinTileCol>
     61419                                                <MaxTileCol>32</MaxTileCol>
     61420                                        </TileMatrixLimits>
     61421                                        <TileMatrixLimits>
     61422                                                <TileMatrix>7</TileMatrix>
     61423                                                <MinTileRow>43</MinTileRow>
     61424                                                <MaxTileRow>43</MaxTileRow>
     61425                                                <MinTileCol>64</MinTileCol>
     61426                                                <MaxTileCol>64</MaxTileCol>
     61427                                        </TileMatrixLimits>
     61428                                        <TileMatrixLimits>
     61429                                                <TileMatrix>8</TileMatrix>
     61430                                                <MinTileRow>87</MinTileRow>
     61431                                                <MaxTileRow>87</MaxTileRow>
     61432                                                <MinTileCol>128</MinTileCol>
     61433                                                <MaxTileCol>128</MaxTileCol>
     61434                                        </TileMatrixLimits>
     61435                                        <TileMatrixLimits>
     61436                                                <TileMatrix>9</TileMatrix>
     61437                                                <MinTileRow>174</MinTileRow>
     61438                                                <MaxTileRow>175</MaxTileRow>
     61439                                                <MinTileCol>257</MinTileCol>
     61440                                                <MaxTileCol>257</MaxTileCol>
     61441                                        </TileMatrixLimits>
     61442                                </TileMatrixSetLimits>
     61443                        </TileMatrixSetLink>
     61444                </Layer>
     61445                <Layer>
     61446                        <ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title>
     61447                        <ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract>
     61448                        <ows:Keywords>
     61449                                <ows:Keyword>Photographies</ows:Keyword>
     61450                        </ows:Keywords>
     61451                        <ows:WGS84BoundingBox>
     61452                                <ows:LowerCorner>-63.1607 18.0434</ows:LowerCorner>
     61453                                <ows:UpperCorner>-62.9622 18.1339</ows:UpperCorner>
     61454                        </ows:WGS84BoundingBox>
     61455                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013</ows:Identifier>
     61456                        <Style isDefault="true">
     61457                                <ows:Title>Données Brutes</ows:Title>
     61458                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61459                                <ows:Keywords>
     61460                                        <ows:Keyword>Défaut</ows:Keyword>
     61461                                </ows:Keywords>
     61462                                <ows:Identifier>normal</ows:Identifier>
     61463                                <LegendURL format="image/jpeg" height="200"
     61464                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61465                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61466                        </Style>
     61467                        <Format>image/jpeg</Format>
     61468                        <TileMatrixSetLink>
     61469                                <TileMatrixSet>PM</TileMatrixSet>
     61470                                <TileMatrixSetLimits>
     61471                                        <TileMatrixLimits>
     61472                                                <TileMatrix>0</TileMatrix>
     61473                                                <MinTileRow>0</MinTileRow>
     61474                                                <MaxTileRow>0</MaxTileRow>
     61475                                                <MinTileCol>0</MinTileCol>
     61476                                                <MaxTileCol>0</MaxTileCol>
     61477                                        </TileMatrixLimits>
     61478                                        <TileMatrixLimits>
     61479                                                <TileMatrix>1</TileMatrix>
     61480                                                <MinTileRow>0</MinTileRow>
     61481                                                <MaxTileRow>0</MaxTileRow>
     61482                                                <MinTileCol>0</MinTileCol>
     61483                                                <MaxTileCol>0</MaxTileCol>
     61484                                        </TileMatrixLimits>
     61485                                        <TileMatrixLimits>
     61486                                                <TileMatrix>10</TileMatrix>
     61487                                                <MinTileRow>459</MinTileRow>
     61488                                                <MaxTileRow>459</MaxTileRow>
     61489                                                <MinTileCol>332</MinTileCol>
     61490                                                <MaxTileCol>332</MaxTileCol>
     61491                                        </TileMatrixLimits>
     61492                                        <TileMatrixLimits>
     61493                                                <TileMatrix>11</TileMatrix>
     61494                                                <MinTileRow>919</MinTileRow>
     61495                                                <MaxTileRow>919</MaxTileRow>
     61496                                                <MinTileCol>664</MinTileCol>
     61497                                                <MaxTileCol>665</MaxTileCol>
     61498                                        </TileMatrixLimits>
     61499                                        <TileMatrixLimits>
     61500                                                <TileMatrix>12</TileMatrix>
     61501                                                <MinTileRow>1838</MinTileRow>
     61502                                                <MaxTileRow>1839</MaxTileRow>
     61503                                                <MinTileCol>1329</MinTileCol>
     61504                                                <MaxTileCol>1331</MaxTileCol>
     61505                                        </TileMatrixLimits>
     61506                                        <TileMatrixLimits>
     61507                                                <TileMatrix>13</TileMatrix>
     61508                                                <MinTileRow>3676</MinTileRow>
     61509                                                <MaxTileRow>3678</MaxTileRow>
     61510                                                <MinTileCol>2658</MinTileCol>
     61511                                                <MaxTileCol>2663</MaxTileCol>
     61512                                        </TileMatrixLimits>
     61513                                        <TileMatrixLimits>
     61514                                                <TileMatrix>14</TileMatrix>
     61515                                                <MinTileRow>7352</MinTileRow>
     61516                                                <MaxTileRow>7356</MaxTileRow>
     61517                                                <MinTileCol>5317</MinTileCol>
     61518                                                <MaxTileCol>5326</MaxTileCol>
     61519                                        </TileMatrixLimits>
     61520                                        <TileMatrixLimits>
     61521                                                <TileMatrix>15</TileMatrix>
     61522                                                <MinTileRow>14705</MinTileRow>
     61523                                                <MaxTileRow>14713</MaxTileRow>
     61524                                                <MinTileCol>10634</MinTileCol>
     61525                                                <MaxTileCol>10653</MaxTileCol>
     61526                                        </TileMatrixLimits>
     61527                                        <TileMatrixLimits>
     61528                                                <TileMatrix>16</TileMatrix>
     61529                                                <MinTileRow>29410</MinTileRow>
     61530                                                <MaxTileRow>29427</MaxTileRow>
     61531                                                <MinTileCol>21269</MinTileCol>
     61532                                                <MaxTileCol>21306</MaxTileCol>
     61533                                        </TileMatrixLimits>
     61534                                        <TileMatrixLimits>
     61535                                                <TileMatrix>17</TileMatrix>
     61536                                                <MinTileRow>58820</MinTileRow>
     61537                                                <MaxTileRow>58855</MaxTileRow>
     61538                                                <MinTileCol>42539</MinTileCol>
     61539                                                <MaxTileCol>42612</MaxTileCol>
     61540                                        </TileMatrixLimits>
     61541                                        <TileMatrixLimits>
     61542                                                <TileMatrix>18</TileMatrix>
     61543                                                <MinTileRow>117641</MinTileRow>
     61544                                                <MaxTileRow>117710</MaxTileRow>
     61545                                                <MinTileCol>85079</MinTileCol>
     61546                                                <MaxTileCol>85224</MaxTileCol>
     61547                                        </TileMatrixLimits>
     61548                                        <TileMatrixLimits>
     61549                                                <TileMatrix>2</TileMatrix>
     61550                                                <MinTileRow>1</MinTileRow>
     61551                                                <MaxTileRow>1</MaxTileRow>
     61552                                                <MinTileCol>1</MinTileCol>
     61553                                                <MaxTileCol>1</MaxTileCol>
     61554                                        </TileMatrixLimits>
     61555                                        <TileMatrixLimits>
     61556                                                <TileMatrix>3</TileMatrix>
     61557                                                <MinTileRow>3</MinTileRow>
     61558                                                <MaxTileRow>3</MaxTileRow>
     61559                                                <MinTileCol>2</MinTileCol>
     61560                                                <MaxTileCol>2</MaxTileCol>
     61561                                        </TileMatrixLimits>
     61562                                        <TileMatrixLimits>
     61563                                                <TileMatrix>4</TileMatrix>
     61564                                                <MinTileRow>7</MinTileRow>
     61565                                                <MaxTileRow>7</MaxTileRow>
     61566                                                <MinTileCol>5</MinTileCol>
     61567                                                <MaxTileCol>5</MaxTileCol>
     61568                                        </TileMatrixLimits>
     61569                                        <TileMatrixLimits>
     61570                                                <TileMatrix>5</TileMatrix>
     61571                                                <MinTileRow>14</MinTileRow>
     61572                                                <MaxTileRow>14</MaxTileRow>
     61573                                                <MinTileCol>10</MinTileCol>
     61574                                                <MaxTileCol>10</MaxTileCol>
     61575                                        </TileMatrixLimits>
     61576                                        <TileMatrixLimits>
     61577                                                <TileMatrix>6</TileMatrix>
     61578                                                <MinTileRow>28</MinTileRow>
     61579                                                <MaxTileRow>28</MaxTileRow>
     61580                                                <MinTileCol>20</MinTileCol>
     61581                                                <MaxTileCol>20</MaxTileCol>
     61582                                        </TileMatrixLimits>
     61583                                        <TileMatrixLimits>
     61584                                                <TileMatrix>7</TileMatrix>
     61585                                                <MinTileRow>57</MinTileRow>
     61586                                                <MaxTileRow>57</MaxTileRow>
     61587                                                <MinTileCol>41</MinTileCol>
     61588                                                <MaxTileCol>41</MaxTileCol>
     61589                                        </TileMatrixLimits>
     61590                                        <TileMatrixLimits>
     61591                                                <TileMatrix>8</TileMatrix>
     61592                                                <MinTileRow>114</MinTileRow>
     61593                                                <MaxTileRow>114</MaxTileRow>
     61594                                                <MinTileCol>83</MinTileCol>
     61595                                                <MaxTileCol>83</MaxTileCol>
     61596                                        </TileMatrixLimits>
     61597                                        <TileMatrixLimits>
     61598                                                <TileMatrix>9</TileMatrix>
     61599                                                <MinTileRow>229</MinTileRow>
     61600                                                <MaxTileRow>229</MaxTileRow>
     61601                                                <MinTileCol>166</MinTileCol>
     61602                                                <MaxTileCol>166</MaxTileCol>
     61603                                        </TileMatrixLimits>
     61604                                </TileMatrixSetLimits>
     61605                        </TileMatrixSetLink>
     61606                </Layer>
     61607                <Layer>
     61608                        <ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title>
     61609                        <ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract>
     61610                        <ows:Keywords>
     61611                                <ows:Keyword>Photographies</ows:Keyword>
     61612                        </ows:Keywords>
     61613                        <ows:WGS84BoundingBox>
     61614                                <ows:LowerCorner>-63.1702 18.0344</ows:LowerCorner>
     61615                                <ows:UpperCorner>-63 18.1339</ows:UpperCorner>
     61616                        </ows:WGS84BoundingBox>
     61617                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013-01-02-53974947</ows:Identifier>
     61618                        <Style isDefault="true">
     61619                                <ows:Title>Données Brutes</ows:Title>
     61620                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61621                                <ows:Keywords>
     61622                                        <ows:Keyword>Défaut</ows:Keyword>
     61623                                </ows:Keywords>
     61624                                <ows:Identifier>normal</ows:Identifier>
     61625                                <LegendURL format="image/jpeg" height="200"
     61626                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61627                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61628                        </Style>
     61629                        <Format>image/jpeg</Format>
     61630                        <TileMatrixSetLink>
     61631                                <TileMatrixSet>PM</TileMatrixSet>
     61632                                <TileMatrixSetLimits>
     61633                                        <TileMatrixLimits>
     61634                                                <TileMatrix>0</TileMatrix>
     61635                                                <MinTileRow>0</MinTileRow>
     61636                                                <MaxTileRow>0</MaxTileRow>
     61637                                                <MinTileCol>0</MinTileCol>
     61638                                                <MaxTileCol>0</MaxTileCol>
     61639                                        </TileMatrixLimits>
     61640                                        <TileMatrixLimits>
     61641                                                <TileMatrix>1</TileMatrix>
     61642                                                <MinTileRow>0</MinTileRow>
     61643                                                <MaxTileRow>0</MaxTileRow>
     61644                                                <MinTileCol>0</MinTileCol>
     61645                                                <MaxTileCol>0</MaxTileCol>
     61646                                        </TileMatrixLimits>
     61647                                        <TileMatrixLimits>
     61648                                                <TileMatrix>10</TileMatrix>
     61649                                                <MinTileRow>459</MinTileRow>
     61650                                                <MaxTileRow>459</MaxTileRow>
     61651                                                <MinTileCol>332</MinTileCol>
     61652                                                <MaxTileCol>332</MaxTileCol>
     61653                                        </TileMatrixLimits>
     61654                                        <TileMatrixLimits>
     61655                                                <TileMatrix>11</TileMatrix>
     61656                                                <MinTileRow>919</MinTileRow>
     61657                                                <MaxTileRow>919</MaxTileRow>
     61658                                                <MinTileCol>664</MinTileCol>
     61659                                                <MaxTileCol>665</MaxTileCol>
     61660                                        </TileMatrixLimits>
     61661                                        <TileMatrixLimits>
     61662                                                <TileMatrix>12</TileMatrix>
     61663                                                <MinTileRow>1838</MinTileRow>
     61664                                                <MaxTileRow>1839</MaxTileRow>
     61665                                                <MinTileCol>1329</MinTileCol>
     61666                                                <MaxTileCol>1331</MaxTileCol>
     61667                                        </TileMatrixLimits>
     61668                                        <TileMatrixLimits>
     61669                                                <TileMatrix>13</TileMatrix>
     61670                                                <MinTileRow>3676</MinTileRow>
     61671                                                <MaxTileRow>3678</MaxTileRow>
     61672                                                <MinTileCol>2658</MinTileCol>
     61673                                                <MaxTileCol>2662</MaxTileCol>
     61674                                        </TileMatrixLimits>
     61675                                        <TileMatrixLimits>
     61676                                                <TileMatrix>14</TileMatrix>
     61677                                                <MinTileRow>7352</MinTileRow>
     61678                                                <MaxTileRow>7357</MaxTileRow>
     61679                                                <MinTileCol>5317</MinTileCol>
     61680                                                <MaxTileCol>5324</MaxTileCol>
     61681                                        </TileMatrixLimits>
     61682                                        <TileMatrixLimits>
     61683                                                <TileMatrix>15</TileMatrix>
     61684                                                <MinTileRow>14705</MinTileRow>
     61685                                                <MaxTileRow>14714</MaxTileRow>
     61686                                                <MinTileCol>10634</MinTileCol>
     61687                                                <MaxTileCol>10649</MaxTileCol>
     61688                                        </TileMatrixLimits>
     61689                                        <TileMatrixLimits>
     61690                                                <TileMatrix>16</TileMatrix>
     61691                                                <MinTileRow>29410</MinTileRow>
     61692                                                <MaxTileRow>29429</MaxTileRow>
     61693                                                <MinTileCol>21268</MinTileCol>
     61694                                                <MaxTileCol>21299</MaxTileCol>
     61695                                        </TileMatrixLimits>
     61696                                        <TileMatrixLimits>
     61697                                                <TileMatrix>17</TileMatrix>
     61698                                                <MinTileRow>58820</MinTileRow>
     61699                                                <MaxTileRow>58858</MaxTileRow>
     61700                                                <MinTileCol>42536</MinTileCol>
     61701                                                <MaxTileCol>42598</MaxTileCol>
     61702                                        </TileMatrixLimits>
     61703                                        <TileMatrixLimits>
     61704                                                <TileMatrix>18</TileMatrix>
     61705                                                <MinTileRow>117641</MinTileRow>
     61706                                                <MaxTileRow>117717</MaxTileRow>
     61707                                                <MinTileCol>85072</MinTileCol>
     61708                                                <MaxTileCol>85196</MaxTileCol>
     61709                                        </TileMatrixLimits>
     61710                                        <TileMatrixLimits>
     61711                                                <TileMatrix>2</TileMatrix>
     61712                                                <MinTileRow>1</MinTileRow>
     61713                                                <MaxTileRow>1</MaxTileRow>
     61714                                                <MinTileCol>1</MinTileCol>
     61715                                                <MaxTileCol>1</MaxTileCol>
     61716                                        </TileMatrixLimits>
     61717                                        <TileMatrixLimits>
     61718                                                <TileMatrix>3</TileMatrix>
     61719                                                <MinTileRow>3</MinTileRow>
     61720                                                <MaxTileRow>3</MaxTileRow>
     61721                                                <MinTileCol>2</MinTileCol>
     61722                                                <MaxTileCol>2</MaxTileCol>
     61723                                        </TileMatrixLimits>
     61724                                        <TileMatrixLimits>
     61725                                                <TileMatrix>4</TileMatrix>
     61726                                                <MinTileRow>7</MinTileRow>
     61727                                                <MaxTileRow>7</MaxTileRow>
     61728                                                <MinTileCol>5</MinTileCol>
     61729                                                <MaxTileCol>5</MaxTileCol>
     61730                                        </TileMatrixLimits>
     61731                                        <TileMatrixLimits>
     61732                                                <TileMatrix>5</TileMatrix>
     61733                                                <MinTileRow>14</MinTileRow>
     61734                                                <MaxTileRow>14</MaxTileRow>
     61735                                                <MinTileCol>10</MinTileCol>
     61736                                                <MaxTileCol>10</MaxTileCol>
     61737                                        </TileMatrixLimits>
     61738                                        <TileMatrixLimits>
     61739                                                <TileMatrix>6</TileMatrix>
     61740                                                <MinTileRow>28</MinTileRow>
     61741                                                <MaxTileRow>28</MaxTileRow>
     61742                                                <MinTileCol>20</MinTileCol>
     61743                                                <MaxTileCol>20</MaxTileCol>
     61744                                        </TileMatrixLimits>
     61745                                        <TileMatrixLimits>
     61746                                                <TileMatrix>7</TileMatrix>
     61747                                                <MinTileRow>57</MinTileRow>
     61748                                                <MaxTileRow>57</MaxTileRow>
     61749                                                <MinTileCol>41</MinTileCol>
     61750                                                <MaxTileCol>41</MaxTileCol>
     61751                                        </TileMatrixLimits>
     61752                                        <TileMatrixLimits>
     61753                                                <TileMatrix>8</TileMatrix>
     61754                                                <MinTileRow>114</MinTileRow>
     61755                                                <MaxTileRow>114</MaxTileRow>
     61756                                                <MinTileCol>83</MinTileCol>
     61757                                                <MaxTileCol>83</MaxTileCol>
     61758                                        </TileMatrixLimits>
     61759                                        <TileMatrixLimits>
     61760                                                <TileMatrix>9</TileMatrix>
     61761                                                <MinTileRow>229</MinTileRow>
     61762                                                <MaxTileRow>229</MaxTileRow>
     61763                                                <MinTileCol>166</MinTileCol>
     61764                                                <MaxTileCol>166</MaxTileCol>
     61765                                        </TileMatrixLimits>
     61766                                </TileMatrixSetLimits>
     61767                        </TileMatrixSetLink>
     61768                </Layer>
     61769                <Layer>
     61770                        <ows:Title>Orthophotographies Geosud de SAINT-MARTIN 2013</ows:Title>
     61771                        <ows:Abstract>Orthophotographies satellites de SAINT-MARTIN issues du projet Geosud.</ows:Abstract>
     61772                        <ows:Keywords>
     61773                                <ows:Keyword>Photographies</ows:Keyword>
     61774                        </ows:Keywords>
     61775                        <ows:WGS84BoundingBox>
     61776                                <ows:LowerCorner>-63.1702 18.0344</ows:LowerCorner>
     61777                                <ows:UpperCorner>-63 18.1339</ows:UpperCorner>
     61778                        </ows:WGS84BoundingBox>
     61779                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-MARTIN-2013-01-02-54012189</ows:Identifier>
     61780                        <Style isDefault="true">
     61781                                <ows:Title>Données Brutes</ows:Title>
     61782                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61783                                <ows:Keywords>
     61784                                        <ows:Keyword>Défaut</ows:Keyword>
     61785                                </ows:Keywords>
     61786                                <ows:Identifier>normal</ows:Identifier>
     61787                                <LegendURL format="image/jpeg" height="200"
     61788                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61789                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61790                        </Style>
     61791                        <Format>image/jpeg</Format>
     61792                        <TileMatrixSetLink>
     61793                                <TileMatrixSet>PM</TileMatrixSet>
     61794                                <TileMatrixSetLimits>
     61795                                        <TileMatrixLimits>
     61796                                                <TileMatrix>0</TileMatrix>
     61797                                                <MinTileRow>0</MinTileRow>
     61798                                                <MaxTileRow>0</MaxTileRow>
     61799                                                <MinTileCol>0</MinTileCol>
     61800                                                <MaxTileCol>0</MaxTileCol>
     61801                                        </TileMatrixLimits>
     61802                                        <TileMatrixLimits>
     61803                                                <TileMatrix>1</TileMatrix>
     61804                                                <MinTileRow>0</MinTileRow>
     61805                                                <MaxTileRow>0</MaxTileRow>
     61806                                                <MinTileCol>0</MinTileCol>
     61807                                                <MaxTileCol>0</MaxTileCol>
     61808                                        </TileMatrixLimits>
     61809                                        <TileMatrixLimits>
     61810                                                <TileMatrix>10</TileMatrix>
     61811                                                <MinTileRow>459</MinTileRow>
     61812                                                <MaxTileRow>459</MaxTileRow>
     61813                                                <MinTileCol>332</MinTileCol>
     61814                                                <MaxTileCol>332</MaxTileCol>
     61815                                        </TileMatrixLimits>
     61816                                        <TileMatrixLimits>
     61817                                                <TileMatrix>11</TileMatrix>
     61818                                                <MinTileRow>919</MinTileRow>
     61819                                                <MaxTileRow>919</MaxTileRow>
     61820                                                <MinTileCol>664</MinTileCol>
     61821                                                <MaxTileCol>665</MaxTileCol>
     61822                                        </TileMatrixLimits>
     61823                                        <TileMatrixLimits>
     61824                                                <TileMatrix>12</TileMatrix>
     61825                                                <MinTileRow>1838</MinTileRow>
     61826                                                <MaxTileRow>1839</MaxTileRow>
     61827                                                <MinTileCol>1329</MinTileCol>
     61828                                                <MaxTileCol>1331</MaxTileCol>
     61829                                        </TileMatrixLimits>
     61830                                        <TileMatrixLimits>
     61831                                                <TileMatrix>13</TileMatrix>
     61832                                                <MinTileRow>3676</MinTileRow>
     61833                                                <MaxTileRow>3678</MaxTileRow>
     61834                                                <MinTileCol>2658</MinTileCol>
     61835                                                <MaxTileCol>2662</MaxTileCol>
     61836                                        </TileMatrixLimits>
     61837                                        <TileMatrixLimits>
     61838                                                <TileMatrix>14</TileMatrix>
     61839                                                <MinTileRow>7352</MinTileRow>
     61840                                                <MaxTileRow>7357</MaxTileRow>
     61841                                                <MinTileCol>5317</MinTileCol>
     61842                                                <MaxTileCol>5324</MaxTileCol>
     61843                                        </TileMatrixLimits>
     61844                                        <TileMatrixLimits>
     61845                                                <TileMatrix>15</TileMatrix>
     61846                                                <MinTileRow>14705</MinTileRow>
     61847                                                <MaxTileRow>14714</MaxTileRow>
     61848                                                <MinTileCol>10634</MinTileCol>
     61849                                                <MaxTileCol>10649</MaxTileCol>
     61850                                        </TileMatrixLimits>
     61851                                        <TileMatrixLimits>
     61852                                                <TileMatrix>16</TileMatrix>
     61853                                                <MinTileRow>29410</MinTileRow>
     61854                                                <MaxTileRow>29429</MaxTileRow>
     61855                                                <MinTileCol>21268</MinTileCol>
     61856                                                <MaxTileCol>21299</MaxTileCol>
     61857                                        </TileMatrixLimits>
     61858                                        <TileMatrixLimits>
     61859                                                <TileMatrix>17</TileMatrix>
     61860                                                <MinTileRow>58820</MinTileRow>
     61861                                                <MaxTileRow>58858</MaxTileRow>
     61862                                                <MinTileCol>42536</MinTileCol>
     61863                                                <MaxTileCol>42598</MaxTileCol>
     61864                                        </TileMatrixLimits>
     61865                                        <TileMatrixLimits>
     61866                                                <TileMatrix>18</TileMatrix>
     61867                                                <MinTileRow>117641</MinTileRow>
     61868                                                <MaxTileRow>117717</MaxTileRow>
     61869                                                <MinTileCol>85072</MinTileCol>
     61870                                                <MaxTileCol>85196</MaxTileCol>
     61871                                        </TileMatrixLimits>
     61872                                        <TileMatrixLimits>
     61873                                                <TileMatrix>2</TileMatrix>
     61874                                                <MinTileRow>1</MinTileRow>
     61875                                                <MaxTileRow>1</MaxTileRow>
     61876                                                <MinTileCol>1</MinTileCol>
     61877                                                <MaxTileCol>1</MaxTileCol>
     61878                                        </TileMatrixLimits>
     61879                                        <TileMatrixLimits>
     61880                                                <TileMatrix>3</TileMatrix>
     61881                                                <MinTileRow>3</MinTileRow>
     61882                                                <MaxTileRow>3</MaxTileRow>
     61883                                                <MinTileCol>2</MinTileCol>
     61884                                                <MaxTileCol>2</MaxTileCol>
     61885                                        </TileMatrixLimits>
     61886                                        <TileMatrixLimits>
     61887                                                <TileMatrix>4</TileMatrix>
     61888                                                <MinTileRow>7</MinTileRow>
     61889                                                <MaxTileRow>7</MaxTileRow>
     61890                                                <MinTileCol>5</MinTileCol>
     61891                                                <MaxTileCol>5</MaxTileCol>
     61892                                        </TileMatrixLimits>
     61893                                        <TileMatrixLimits>
     61894                                                <TileMatrix>5</TileMatrix>
     61895                                                <MinTileRow>14</MinTileRow>
     61896                                                <MaxTileRow>14</MaxTileRow>
     61897                                                <MinTileCol>10</MinTileCol>
     61898                                                <MaxTileCol>10</MaxTileCol>
     61899                                        </TileMatrixLimits>
     61900                                        <TileMatrixLimits>
     61901                                                <TileMatrix>6</TileMatrix>
     61902                                                <MinTileRow>28</MinTileRow>
     61903                                                <MaxTileRow>28</MaxTileRow>
     61904                                                <MinTileCol>20</MinTileCol>
     61905                                                <MaxTileCol>20</MaxTileCol>
     61906                                        </TileMatrixLimits>
     61907                                        <TileMatrixLimits>
     61908                                                <TileMatrix>7</TileMatrix>
     61909                                                <MinTileRow>57</MinTileRow>
     61910                                                <MaxTileRow>57</MaxTileRow>
     61911                                                <MinTileCol>41</MinTileCol>
     61912                                                <MaxTileCol>41</MaxTileCol>
     61913                                        </TileMatrixLimits>
     61914                                        <TileMatrixLimits>
     61915                                                <TileMatrix>8</TileMatrix>
     61916                                                <MinTileRow>114</MinTileRow>
     61917                                                <MaxTileRow>114</MaxTileRow>
     61918                                                <MinTileCol>83</MinTileCol>
     61919                                                <MaxTileCol>83</MaxTileCol>
     61920                                        </TileMatrixLimits>
     61921                                        <TileMatrixLimits>
     61922                                                <TileMatrix>9</TileMatrix>
     61923                                                <MinTileRow>229</MinTileRow>
     61924                                                <MaxTileRow>229</MaxTileRow>
     61925                                                <MinTileCol>166</MinTileCol>
     61926                                                <MaxTileCol>166</MaxTileCol>
     61927                                        </TileMatrixLimits>
     61928                                </TileMatrixSetLimits>
     61929                        </TileMatrixSetLink>
     61930                </Layer>
     61931                <Layer>
     61932                        <ows:Title>Orthophotographies Geosud de Saint Raphaël</ows:Title>
     61933                        <ows:Abstract>Orthophotographies satellites de Saint Raphaël issues du projet Geosud.</ows:Abstract>
     61934                        <ows:Keywords>
     61935                                <ows:Keyword>Photographies</ows:Keyword>
     61936                        </ows:Keywords>
     61937                        <ows:WGS84BoundingBox>
     61938                                <ows:LowerCorner>6.67483 43.3397</ows:LowerCorner>
     61939                                <ows:UpperCorner>6.97226 43.5564</ows:UpperCorner>
     61940                        </ows:WGS84BoundingBox>
     61941                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAINT-RAPHAEL-2013-04-24-38004569</ows:Identifier>
     61942                        <Style isDefault="true">
     61943                                <ows:Title>Données Brutes</ows:Title>
     61944                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     61945                                <ows:Keywords>
     61946                                        <ows:Keyword>Défaut</ows:Keyword>
     61947                                </ows:Keywords>
     61948                                <ows:Identifier>normal</ows:Identifier>
     61949                                <LegendURL format="image/jpeg" height="200"
     61950                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     61951                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     61952                        </Style>
     61953                        <Format>image/jpeg</Format>
     61954                        <TileMatrixSetLink>
     61955                                <TileMatrixSet>PM</TileMatrixSet>
     61956                                <TileMatrixSetLimits>
     61957                                        <TileMatrixLimits>
     61958                                                <TileMatrix>0</TileMatrix>
     61959                                                <MinTileRow>0</MinTileRow>
     61960                                                <MaxTileRow>0</MaxTileRow>
     61961                                                <MinTileCol>0</MinTileCol>
     61962                                                <MaxTileCol>0</MaxTileCol>
     61963                                        </TileMatrixLimits>
     61964                                        <TileMatrixLimits>
     61965                                                <TileMatrix>1</TileMatrix>
     61966                                                <MinTileRow>0</MinTileRow>
     61967                                                <MaxTileRow>0</MaxTileRow>
     61968                                                <MinTileCol>1</MinTileCol>
     61969                                                <MaxTileCol>1</MaxTileCol>
     61970                                        </TileMatrixLimits>
     61971                                        <TileMatrixLimits>
     61972                                                <TileMatrix>10</TileMatrix>
     61973                                                <MinTileRow>374</MinTileRow>
     61974                                                <MaxTileRow>374</MaxTileRow>
     61975                                                <MinTileCol>531</MinTileCol>
     61976                                                <MaxTileCol>531</MaxTileCol>
     61977                                        </TileMatrixLimits>
     61978                                        <TileMatrixLimits>
     61979                                                <TileMatrix>11</TileMatrix>
     61980                                                <MinTileRow>748</MinTileRow>
     61981                                                <MaxTileRow>749</MaxTileRow>
     61982                                                <MinTileCol>1062</MinTileCol>
     61983                                                <MaxTileCol>1063</MaxTileCol>
     61984                                        </TileMatrixLimits>
     61985                                        <TileMatrixLimits>
     61986                                                <TileMatrix>12</TileMatrix>
     61987                                                <MinTileRow>1496</MinTileRow>
     61988                                                <MaxTileRow>1499</MaxTileRow>
     61989                                                <MinTileCol>2124</MinTileCol>
     61990                                                <MaxTileCol>2127</MaxTileCol>
     61991                                        </TileMatrixLimits>
     61992                                        <TileMatrixLimits>
     61993                                                <TileMatrix>13</TileMatrix>
     61994                                                <MinTileRow>2992</MinTileRow>
     61995                                                <MaxTileRow>2999</MaxTileRow>
     61996                                                <MinTileCol>4248</MinTileCol>
     61997                                                <MaxTileCol>4254</MaxTileCol>
     61998                                        </TileMatrixLimits>
     61999                                        <TileMatrixLimits>
     62000                                                <TileMatrix>14</TileMatrix>
     62001                                                <MinTileRow>5985</MinTileRow>
     62002                                                <MaxTileRow>5998</MaxTileRow>
     62003                                                <MinTileCol>8496</MinTileCol>
     62004                                                <MaxTileCol>8508</MaxTileCol>
     62005                                        </TileMatrixLimits>
     62006                                        <TileMatrixLimits>
     62007                                                <TileMatrix>15</TileMatrix>
     62008                                                <MinTileRow>11971</MinTileRow>
     62009                                                <MaxTileRow>11997</MaxTileRow>
     62010                                                <MinTileCol>16992</MinTileCol>
     62011                                                <MaxTileCol>17017</MaxTileCol>
     62012                                        </TileMatrixLimits>
     62013                                        <TileMatrixLimits>
     62014                                                <TileMatrix>16</TileMatrix>
     62015                                                <MinTileRow>23943</MinTileRow>
     62016                                                <MaxTileRow>23995</MaxTileRow>
     62017                                                <MinTileCol>33985</MinTileCol>
     62018                                                <MaxTileCol>34035</MaxTileCol>
     62019                                        </TileMatrixLimits>
     62020                                        <TileMatrixLimits>
     62021                                                <TileMatrix>17</TileMatrix>
     62022                                                <MinTileRow>47887</MinTileRow>
     62023                                                <MaxTileRow>47991</MaxTileRow>
     62024                                                <MinTileCol>67970</MinTileCol>
     62025                                                <MaxTileCol>68070</MaxTileCol>
     62026                                        </TileMatrixLimits>
     62027                                        <TileMatrixLimits>
     62028                                                <TileMatrix>18</TileMatrix>
     62029                                                <MinTileRow>95774</MinTileRow>
     62030                                                <MaxTileRow>95982</MaxTileRow>
     62031                                                <MinTileCol>135941</MinTileCol>
     62032                                                <MaxTileCol>136141</MaxTileCol>
     62033                                        </TileMatrixLimits>
     62034                                        <TileMatrixLimits>
     62035                                                <TileMatrix>2</TileMatrix>
     62036                                                <MinTileRow>1</MinTileRow>
     62037                                                <MaxTileRow>1</MaxTileRow>
     62038                                                <MinTileCol>2</MinTileCol>
     62039                                                <MaxTileCol>2</MaxTileCol>
     62040                                        </TileMatrixLimits>
     62041                                        <TileMatrixLimits>
     62042                                                <TileMatrix>3</TileMatrix>
     62043                                                <MinTileRow>2</MinTileRow>
     62044                                                <MaxTileRow>2</MaxTileRow>
     62045                                                <MinTileCol>4</MinTileCol>
     62046                                                <MaxTileCol>4</MaxTileCol>
     62047                                        </TileMatrixLimits>
     62048                                        <TileMatrixLimits>
     62049                                                <TileMatrix>4</TileMatrix>
     62050                                                <MinTileRow>5</MinTileRow>
     62051                                                <MaxTileRow>5</MaxTileRow>
     62052                                                <MinTileCol>8</MinTileCol>
     62053                                                <MaxTileCol>8</MaxTileCol>
     62054                                        </TileMatrixLimits>
     62055                                        <TileMatrixLimits>
     62056                                                <TileMatrix>5</TileMatrix>
     62057                                                <MinTileRow>11</MinTileRow>
     62058                                                <MaxTileRow>11</MaxTileRow>
     62059                                                <MinTileCol>16</MinTileCol>
     62060                                                <MaxTileCol>16</MaxTileCol>
     62061                                        </TileMatrixLimits>
     62062                                        <TileMatrixLimits>
     62063                                                <TileMatrix>6</TileMatrix>
     62064                                                <MinTileRow>23</MinTileRow>
     62065                                                <MaxTileRow>23</MaxTileRow>
     62066                                                <MinTileCol>33</MinTileCol>
     62067                                                <MaxTileCol>33</MaxTileCol>
     62068                                        </TileMatrixLimits>
     62069                                        <TileMatrixLimits>
     62070                                                <TileMatrix>7</TileMatrix>
     62071                                                <MinTileRow>46</MinTileRow>
     62072                                                <MaxTileRow>46</MaxTileRow>
     62073                                                <MinTileCol>66</MinTileCol>
     62074                                                <MaxTileCol>66</MaxTileCol>
     62075                                        </TileMatrixLimits>
     62076                                        <TileMatrixLimits>
     62077                                                <TileMatrix>8</TileMatrix>
     62078                                                <MinTileRow>93</MinTileRow>
     62079                                                <MaxTileRow>93</MaxTileRow>
     62080                                                <MinTileCol>132</MinTileCol>
     62081                                                <MaxTileCol>132</MaxTileCol>
     62082                                        </TileMatrixLimits>
     62083                                        <TileMatrixLimits>
     62084                                                <TileMatrix>9</TileMatrix>
     62085                                                <MinTileRow>187</MinTileRow>
     62086                                                <MaxTileRow>187</MaxTileRow>
     62087                                                <MinTileCol>265</MinTileCol>
     62088                                                <MaxTileCol>265</MaxTileCol>
     62089                                        </TileMatrixLimits>
     62090                                </TileMatrixSetLimits>
     62091                        </TileMatrixSetLink>
     62092                </Layer>
     62093                <Layer>
     62094                        <ows:Title>Orthophotographies Geosud de SAUMUR 2014</ows:Title>
     62095                        <ows:Abstract>Orthophotographies satellites de SAUMUR issues du projet Geosud.</ows:Abstract>
     62096                        <ows:Keywords>
     62097                                <ows:Keyword>Photographies</ows:Keyword>
     62098                        </ows:Keywords>
     62099                        <ows:WGS84BoundingBox>
     62100                                <ows:LowerCorner>-0.245413 47.1571</ows:LowerCorner>
     62101                                <ows:UpperCorner>0.0292198 47.3441</ows:UpperCorner>
     62102                        </ows:WGS84BoundingBox>
     62103                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_SAUMUR-2014-05-15-39832123</ows:Identifier>
     62104                        <Style isDefault="true">
     62105                                <ows:Title>Données Brutes</ows:Title>
     62106                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62107                                <ows:Keywords>
     62108                                        <ows:Keyword>Défaut</ows:Keyword>
     62109                                </ows:Keywords>
     62110                                <ows:Identifier>normal</ows:Identifier>
     62111                                <LegendURL format="image/jpeg" height="200"
     62112                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62113                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62114                        </Style>
     62115                        <Format>image/jpeg</Format>
     62116                        <TileMatrixSetLink>
     62117                                <TileMatrixSet>PM</TileMatrixSet>
     62118                                <TileMatrixSetLimits>
     62119                                        <TileMatrixLimits>
     62120                                                <TileMatrix>0</TileMatrix>
     62121                                                <MinTileRow>0</MinTileRow>
     62122                                                <MaxTileRow>0</MaxTileRow>
     62123                                                <MinTileCol>0</MinTileCol>
     62124                                                <MaxTileCol>0</MaxTileCol>
     62125                                        </TileMatrixLimits>
     62126                                        <TileMatrixLimits>
     62127                                                <TileMatrix>1</TileMatrix>
     62128                                                <MinTileRow>0</MinTileRow>
     62129                                                <MaxTileRow>0</MaxTileRow>
     62130                                                <MinTileCol>0</MinTileCol>
     62131                                                <MaxTileCol>1</MaxTileCol>
     62132                                        </TileMatrixLimits>
     62133                                        <TileMatrixLimits>
     62134                                                <TileMatrix>10</TileMatrix>
     62135                                                <MinTileRow>358</MinTileRow>
     62136                                                <MaxTileRow>359</MaxTileRow>
     62137                                                <MinTileCol>511</MinTileCol>
     62138                                                <MaxTileCol>512</MaxTileCol>
     62139                                        </TileMatrixLimits>
     62140                                        <TileMatrixLimits>
     62141                                                <TileMatrix>11</TileMatrix>
     62142                                                <MinTileRow>717</MinTileRow>
     62143                                                <MaxTileRow>719</MaxTileRow>
     62144                                                <MinTileCol>1022</MinTileCol>
     62145                                                <MaxTileCol>1024</MaxTileCol>
     62146                                        </TileMatrixLimits>
     62147                                        <TileMatrixLimits>
     62148                                                <TileMatrix>12</TileMatrix>
     62149                                                <MinTileRow>1434</MinTileRow>
     62150                                                <MaxTileRow>1438</MaxTileRow>
     62151                                                <MinTileCol>2045</MinTileCol>
     62152                                                <MaxTileCol>2048</MaxTileCol>
     62153                                        </TileMatrixLimits>
     62154                                        <TileMatrixLimits>
     62155                                                <TileMatrix>13</TileMatrix>
     62156                                                <MinTileRow>2869</MinTileRow>
     62157                                                <MaxTileRow>2876</MaxTileRow>
     62158                                                <MinTileCol>4090</MinTileCol>
     62159                                                <MaxTileCol>4096</MaxTileCol>
     62160                                        </TileMatrixLimits>
     62161                                        <TileMatrixLimits>
     62162                                                <TileMatrix>14</TileMatrix>
     62163                                                <MinTileRow>5739</MinTileRow>
     62164                                                <MaxTileRow>5752</MaxTileRow>
     62165                                                <MinTileCol>8180</MinTileCol>
     62166                                                <MaxTileCol>8193</MaxTileCol>
     62167                                        </TileMatrixLimits>
     62168                                        <TileMatrixLimits>
     62169                                                <TileMatrix>15</TileMatrix>
     62170                                                <MinTileRow>11479</MinTileRow>
     62171                                                <MaxTileRow>11504</MaxTileRow>
     62172                                                <MinTileCol>16361</MinTileCol>
     62173                                                <MaxTileCol>16386</MaxTileCol>
     62174                                        </TileMatrixLimits>
     62175                                        <TileMatrixLimits>
     62176                                                <TileMatrix>16</TileMatrix>
     62177                                                <MinTileRow>22958</MinTileRow>
     62178                                                <MaxTileRow>23008</MaxTileRow>
     62179                                                <MinTileCol>32723</MinTileCol>
     62180                                                <MaxTileCol>32773</MaxTileCol>
     62181                                        </TileMatrixLimits>
     62182                                        <TileMatrixLimits>
     62183                                                <TileMatrix>17</TileMatrix>
     62184                                                <MinTileRow>45917</MinTileRow>
     62185                                                <MaxTileRow>46017</MaxTileRow>
     62186                                                <MinTileCol>65446</MinTileCol>
     62187                                                <MaxTileCol>65546</MaxTileCol>
     62188                                        </TileMatrixLimits>
     62189                                        <TileMatrixLimits>
     62190                                                <TileMatrix>18</TileMatrix>
     62191                                                <MinTileRow>91834</MinTileRow>
     62192                                                <MaxTileRow>92034</MaxTileRow>
     62193                                                <MinTileCol>130893</MinTileCol>
     62194                                                <MaxTileCol>131093</MaxTileCol>
     62195                                        </TileMatrixLimits>
     62196                                        <TileMatrixLimits>
     62197                                                <TileMatrix>2</TileMatrix>
     62198                                                <MinTileRow>1</MinTileRow>
     62199                                                <MaxTileRow>1</MaxTileRow>
     62200                                                <MinTileCol>1</MinTileCol>
     62201                                                <MaxTileCol>2</MaxTileCol>
     62202                                        </TileMatrixLimits>
     62203                                        <TileMatrixLimits>
     62204                                                <TileMatrix>3</TileMatrix>
     62205                                                <MinTileRow>2</MinTileRow>
     62206                                                <MaxTileRow>2</MaxTileRow>
     62207                                                <MinTileCol>3</MinTileCol>
     62208                                                <MaxTileCol>4</MaxTileCol>
     62209                                        </TileMatrixLimits>
     62210                                        <TileMatrixLimits>
     62211                                                <TileMatrix>4</TileMatrix>
     62212                                                <MinTileRow>5</MinTileRow>
     62213                                                <MaxTileRow>5</MaxTileRow>
     62214                                                <MinTileCol>7</MinTileCol>
     62215                                                <MaxTileCol>8</MaxTileCol>
     62216                                        </TileMatrixLimits>
     62217                                        <TileMatrixLimits>
     62218                                                <TileMatrix>5</TileMatrix>
     62219                                                <MinTileRow>11</MinTileRow>
     62220                                                <MaxTileRow>11</MaxTileRow>
     62221                                                <MinTileCol>15</MinTileCol>
     62222                                                <MaxTileCol>16</MaxTileCol>
     62223                                        </TileMatrixLimits>
     62224                                        <TileMatrixLimits>
     62225                                                <TileMatrix>6</TileMatrix>
     62226                                                <MinTileRow>22</MinTileRow>
     62227                                                <MaxTileRow>22</MaxTileRow>
     62228                                                <MinTileCol>31</MinTileCol>
     62229                                                <MaxTileCol>32</MaxTileCol>
     62230                                        </TileMatrixLimits>
     62231                                        <TileMatrixLimits>
     62232                                                <TileMatrix>7</TileMatrix>
     62233                                                <MinTileRow>44</MinTileRow>
     62234                                                <MaxTileRow>44</MaxTileRow>
     62235                                                <MinTileCol>63</MinTileCol>
     62236                                                <MaxTileCol>64</MaxTileCol>
     62237                                        </TileMatrixLimits>
     62238                                        <TileMatrixLimits>
     62239                                                <TileMatrix>8</TileMatrix>
     62240                                                <MinTileRow>89</MinTileRow>
     62241                                                <MaxTileRow>89</MaxTileRow>
     62242                                                <MinTileCol>127</MinTileCol>
     62243                                                <MaxTileCol>128</MaxTileCol>
     62244                                        </TileMatrixLimits>
     62245                                        <TileMatrixLimits>
     62246                                                <TileMatrix>9</TileMatrix>
     62247                                                <MinTileRow>179</MinTileRow>
     62248                                                <MaxTileRow>179</MaxTileRow>
     62249                                                <MinTileCol>255</MinTileCol>
     62250                                                <MaxTileCol>256</MaxTileCol>
     62251                                        </TileMatrixLimits>
     62252                                </TileMatrixSetLimits>
     62253                        </TileMatrixSetLink>
     62254                </Layer>
     62255                <Layer>
     62256                        <ows:Title>Orthophotographies Geosud de ST-NAZAIRE-BRIERE-2014</ows:Title>
     62257                        <ows:Abstract>Orthophotographies satellites de ST-NAZAIRE-BRIERE-2014 issues du projet Geosud.</ows:Abstract>
     62258                        <ows:Keywords>
     62259                                <ows:Keyword>Photographies</ows:Keyword>
     62260                        </ows:Keywords>
     62261                        <ows:WGS84BoundingBox>
     62262                                <ows:LowerCorner>-2.28942 47.2718</ows:LowerCorner>
     62263                                <ows:UpperCorner>-1.95135 47.5014</ows:UpperCorner>
     62264                        </ows:WGS84BoundingBox>
     62265                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ST-NAZAIRE-BRIERE-2014-02-23-41199449</ows:Identifier>
     62266                        <Style isDefault="true">
     62267                                <ows:Title>Données Brutes</ows:Title>
     62268                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62269                                <ows:Keywords>
     62270                                        <ows:Keyword>Défaut</ows:Keyword>
     62271                                </ows:Keywords>
     62272                                <ows:Identifier>normal</ows:Identifier>
     62273                                <LegendURL format="image/jpeg" height="200"
     62274                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62275                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62276                        </Style>
     62277                        <Format>image/jpeg</Format>
     62278                        <TileMatrixSetLink>
     62279                                <TileMatrixSet>PM</TileMatrixSet>
     62280                                <TileMatrixSetLimits>
     62281                                        <TileMatrixLimits>
     62282                                                <TileMatrix>0</TileMatrix>
     62283                                                <MinTileRow>0</MinTileRow>
     62284                                                <MaxTileRow>0</MaxTileRow>
     62285                                                <MinTileCol>0</MinTileCol>
     62286                                                <MaxTileCol>0</MaxTileCol>
     62287                                        </TileMatrixLimits>
     62288                                        <TileMatrixLimits>
     62289                                                <TileMatrix>1</TileMatrix>
     62290                                                <MinTileRow>0</MinTileRow>
     62291                                                <MaxTileRow>0</MaxTileRow>
     62292                                                <MinTileCol>0</MinTileCol>
     62293                                                <MaxTileCol>0</MaxTileCol>
     62294                                        </TileMatrixLimits>
     62295                                        <TileMatrixLimits>
     62296                                                <TileMatrix>10</TileMatrix>
     62297                                                <MinTileRow>358</MinTileRow>
     62298                                                <MaxTileRow>358</MaxTileRow>
     62299                                                <MinTileCol>505</MinTileCol>
     62300                                                <MaxTileCol>506</MaxTileCol>
     62301                                        </TileMatrixLimits>
     62302                                        <TileMatrixLimits>
     62303                                                <TileMatrix>11</TileMatrix>
     62304                                                <MinTileRow>716</MinTileRow>
     62305                                                <MaxTileRow>717</MaxTileRow>
     62306                                                <MinTileCol>1011</MinTileCol>
     62307                                                <MaxTileCol>1012</MaxTileCol>
     62308                                        </TileMatrixLimits>
     62309                                        <TileMatrixLimits>
     62310                                                <TileMatrix>12</TileMatrix>
     62311                                                <MinTileRow>1432</MinTileRow>
     62312                                                <MaxTileRow>1435</MaxTileRow>
     62313                                                <MinTileCol>2022</MinTileCol>
     62314                                                <MaxTileCol>2025</MaxTileCol>
     62315                                        </TileMatrixLimits>
     62316                                        <TileMatrixLimits>
     62317                                                <TileMatrix>13</TileMatrix>
     62318                                                <MinTileRow>2864</MinTileRow>
     62319                                                <MaxTileRow>2871</MaxTileRow>
     62320                                                <MinTileCol>4044</MinTileCol>
     62321                                                <MaxTileCol>4051</MaxTileCol>
     62322                                        </TileMatrixLimits>
     62323                                        <TileMatrixLimits>
     62324                                                <TileMatrix>14</TileMatrix>
     62325                                                <MinTileRow>5729</MinTileRow>
     62326                                                <MaxTileRow>5743</MaxTileRow>
     62327                                                <MinTileCol>8088</MinTileCol>
     62328                                                <MaxTileCol>8102</MaxTileCol>
     62329                                        </TileMatrixLimits>
     62330                                        <TileMatrixLimits>
     62331                                                <TileMatrix>15</TileMatrix>
     62332                                                <MinTileRow>11459</MinTileRow>
     62333                                                <MaxTileRow>11487</MaxTileRow>
     62334                                                <MinTileCol>16176</MinTileCol>
     62335                                                <MaxTileCol>16205</MaxTileCol>
     62336                                        </TileMatrixLimits>
     62337                                        <TileMatrixLimits>
     62338                                                <TileMatrix>16</TileMatrix>
     62339                                                <MinTileRow>22919</MinTileRow>
     62340                                                <MaxTileRow>22975</MaxTileRow>
     62341                                                <MinTileCol>32353</MinTileCol>
     62342                                                <MaxTileCol>32411</MaxTileCol>
     62343                                        </TileMatrixLimits>
     62344                                        <TileMatrixLimits>
     62345                                                <TileMatrix>17</TileMatrix>
     62346                                                <MinTileRow>45838</MinTileRow>
     62347                                                <MaxTileRow>45950</MaxTileRow>
     62348                                                <MinTileCol>64706</MinTileCol>
     62349                                                <MaxTileCol>64822</MaxTileCol>
     62350                                        </TileMatrixLimits>
     62351                                        <TileMatrixLimits>
     62352                                                <TileMatrix>18</TileMatrix>
     62353                                                <MinTileRow>91676</MinTileRow>
     62354                                                <MaxTileRow>91901</MaxTileRow>
     62355                                                <MinTileCol>129413</MinTileCol>
     62356                                                <MaxTileCol>129645</MaxTileCol>
     62357                                        </TileMatrixLimits>
     62358                                        <TileMatrixLimits>
     62359                                                <TileMatrix>2</TileMatrix>
     62360                                                <MinTileRow>1</MinTileRow>
     62361                                                <MaxTileRow>1</MaxTileRow>
     62362                                                <MinTileCol>1</MinTileCol>
     62363                                                <MaxTileCol>1</MaxTileCol>
     62364                                        </TileMatrixLimits>
     62365                                        <TileMatrixLimits>
     62366                                                <TileMatrix>3</TileMatrix>
     62367                                                <MinTileRow>2</MinTileRow>
     62368                                                <MaxTileRow>2</MaxTileRow>
     62369                                                <MinTileCol>3</MinTileCol>
     62370                                                <MaxTileCol>3</MaxTileCol>
     62371                                        </TileMatrixLimits>
     62372                                        <TileMatrixLimits>
     62373                                                <TileMatrix>4</TileMatrix>
     62374                                                <MinTileRow>5</MinTileRow>
     62375                                                <MaxTileRow>5</MaxTileRow>
     62376                                                <MinTileCol>7</MinTileCol>
     62377                                                <MaxTileCol>7</MaxTileCol>
     62378                                        </TileMatrixLimits>
     62379                                        <TileMatrixLimits>
     62380                                                <TileMatrix>5</TileMatrix>
     62381                                                <MinTileRow>11</MinTileRow>
     62382                                                <MaxTileRow>11</MaxTileRow>
     62383                                                <MinTileCol>15</MinTileCol>
     62384                                                <MaxTileCol>15</MaxTileCol>
     62385                                        </TileMatrixLimits>
     62386                                        <TileMatrixLimits>
     62387                                                <TileMatrix>6</TileMatrix>
     62388                                                <MinTileRow>22</MinTileRow>
     62389                                                <MaxTileRow>22</MaxTileRow>
     62390                                                <MinTileCol>31</MinTileCol>
     62391                                                <MaxTileCol>31</MaxTileCol>
     62392                                        </TileMatrixLimits>
     62393                                        <TileMatrixLimits>
     62394                                                <TileMatrix>7</TileMatrix>
     62395                                                <MinTileRow>44</MinTileRow>
     62396                                                <MaxTileRow>44</MaxTileRow>
     62397                                                <MinTileCol>63</MinTileCol>
     62398                                                <MaxTileCol>63</MaxTileCol>
     62399                                        </TileMatrixLimits>
     62400                                        <TileMatrixLimits>
     62401                                                <TileMatrix>8</TileMatrix>
     62402                                                <MinTileRow>89</MinTileRow>
     62403                                                <MaxTileRow>89</MaxTileRow>
     62404                                                <MinTileCol>126</MinTileCol>
     62405                                                <MaxTileCol>126</MaxTileCol>
     62406                                        </TileMatrixLimits>
     62407                                        <TileMatrixLimits>
     62408                                                <TileMatrix>9</TileMatrix>
     62409                                                <MinTileRow>179</MinTileRow>
     62410                                                <MaxTileRow>179</MaxTileRow>
     62411                                                <MinTileCol>252</MinTileCol>
     62412                                                <MaxTileCol>253</MaxTileCol>
     62413                                        </TileMatrixLimits>
     62414                                </TileMatrixSetLimits>
     62415                        </TileMatrixSetLink>
     62416                </Layer>
     62417                <Layer>
     62418                        <ows:Title>Orthophotographies Geosud de ST-NAZAIRE-BRIERE-2014</ows:Title>
     62419                        <ows:Abstract>Orthophotographies satellites de ST-NAZAIRE-BRIERE-2014 issues du projet Geosud.</ows:Abstract>
     62420                        <ows:Keywords>
     62421                                <ows:Keyword>Photographies</ows:Keyword>
     62422                        </ows:Keywords>
     62423                        <ows:WGS84BoundingBox>
     62424                                <ows:LowerCorner>-2.47397 47.2722</ows:LowerCorner>
     62425                                <ows:UpperCorner>-2.13704 47.4843</ows:UpperCorner>
     62426                        </ows:WGS84BoundingBox>
     62427                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_ST-NAZAIRE-BRIERE-2014-02-23-41209199</ows:Identifier>
     62428                        <Style isDefault="true">
     62429                                <ows:Title>Données Brutes</ows:Title>
     62430                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62431                                <ows:Keywords>
     62432                                        <ows:Keyword>Défaut</ows:Keyword>
     62433                                </ows:Keywords>
     62434                                <ows:Identifier>normal</ows:Identifier>
     62435                                <LegendURL format="image/jpeg" height="200"
     62436                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62437                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62438                        </Style>
     62439                        <Format>image/jpeg</Format>
     62440                        <TileMatrixSetLink>
     62441                                <TileMatrixSet>PM</TileMatrixSet>
     62442                                <TileMatrixSetLimits>
     62443                                        <TileMatrixLimits>
     62444                                                <TileMatrix>0</TileMatrix>
     62445                                                <MinTileRow>0</MinTileRow>
     62446                                                <MaxTileRow>0</MaxTileRow>
     62447                                                <MinTileCol>0</MinTileCol>
     62448                                                <MaxTileCol>0</MaxTileCol>
     62449                                        </TileMatrixLimits>
     62450                                        <TileMatrixLimits>
     62451                                                <TileMatrix>1</TileMatrix>
     62452                                                <MinTileRow>0</MinTileRow>
     62453                                                <MaxTileRow>0</MaxTileRow>
     62454                                                <MinTileCol>0</MinTileCol>
     62455                                                <MaxTileCol>0</MaxTileCol>
     62456                                        </TileMatrixLimits>
     62457                                        <TileMatrixLimits>
     62458                                                <TileMatrix>10</TileMatrix>
     62459                                                <MinTileRow>358</MinTileRow>
     62460                                                <MaxTileRow>358</MaxTileRow>
     62461                                                <MinTileCol>504</MinTileCol>
     62462                                                <MaxTileCol>505</MaxTileCol>
     62463                                        </TileMatrixLimits>
     62464                                        <TileMatrixLimits>
     62465                                                <TileMatrix>11</TileMatrix>
     62466                                                <MinTileRow>716</MinTileRow>
     62467                                                <MaxTileRow>717</MaxTileRow>
     62468                                                <MinTileCol>1009</MinTileCol>
     62469                                                <MaxTileCol>1011</MaxTileCol>
     62470                                        </TileMatrixLimits>
     62471                                        <TileMatrixLimits>
     62472                                                <TileMatrix>12</TileMatrix>
     62473                                                <MinTileRow>1432</MinTileRow>
     62474                                                <MaxTileRow>1435</MaxTileRow>
     62475                                                <MinTileCol>2019</MinTileCol>
     62476                                                <MaxTileCol>2023</MaxTileCol>
     62477                                        </TileMatrixLimits>
     62478                                        <TileMatrixLimits>
     62479                                                <TileMatrix>13</TileMatrix>
     62480                                                <MinTileRow>2865</MinTileRow>
     62481                                                <MaxTileRow>2871</MaxTileRow>
     62482                                                <MinTileCol>4039</MinTileCol>
     62483                                                <MaxTileCol>4047</MaxTileCol>
     62484                                        </TileMatrixLimits>
     62485                                        <TileMatrixLimits>
     62486                                                <TileMatrix>14</TileMatrix>
     62487                                                <MinTileRow>5730</MinTileRow>
     62488                                                <MaxTileRow>5743</MaxTileRow>
     62489                                                <MinTileCol>8079</MinTileCol>
     62490                                                <MaxTileCol>8094</MaxTileCol>
     62491                                        </TileMatrixLimits>
     62492                                        <TileMatrixLimits>
     62493                                                <TileMatrix>15</TileMatrix>
     62494                                                <MinTileRow>11461</MinTileRow>
     62495                                                <MaxTileRow>11487</MaxTileRow>
     62496                                                <MinTileCol>16159</MinTileCol>
     62497                                                <MaxTileCol>16188</MaxTileCol>
     62498                                        </TileMatrixLimits>
     62499                                        <TileMatrixLimits>
     62500                                                <TileMatrix>16</TileMatrix>
     62501                                                <MinTileRow>22922</MinTileRow>
     62502                                                <MaxTileRow>22975</MaxTileRow>
     62503                                                <MinTileCol>32319</MinTileCol>
     62504                                                <MaxTileCol>32377</MaxTileCol>
     62505                                        </TileMatrixLimits>
     62506                                        <TileMatrixLimits>
     62507                                                <TileMatrix>17</TileMatrix>
     62508                                                <MinTileRow>45844</MinTileRow>
     62509                                                <MaxTileRow>45950</MaxTileRow>
     62510                                                <MinTileCol>64639</MinTileCol>
     62511                                                <MaxTileCol>64755</MaxTileCol>
     62512                                        </TileMatrixLimits>
     62513                                        <TileMatrixLimits>
     62514                                                <TileMatrix>18</TileMatrix>
     62515                                                <MinTileRow>91689</MinTileRow>
     62516                                                <MaxTileRow>91901</MaxTileRow>
     62517                                                <MinTileCol>129278</MinTileCol>
     62518                                                <MaxTileCol>129511</MaxTileCol>
     62519                                        </TileMatrixLimits>
     62520                                        <TileMatrixLimits>
     62521                                                <TileMatrix>2</TileMatrix>
     62522                                                <MinTileRow>1</MinTileRow>
     62523                                                <MaxTileRow>1</MaxTileRow>
     62524                                                <MinTileCol>1</MinTileCol>
     62525                                                <MaxTileCol>1</MaxTileCol>
     62526                                        </TileMatrixLimits>
     62527                                        <TileMatrixLimits>
     62528                                                <TileMatrix>3</TileMatrix>
     62529                                                <MinTileRow>2</MinTileRow>
     62530                                                <MaxTileRow>2</MaxTileRow>
     62531                                                <MinTileCol>3</MinTileCol>
     62532                                                <MaxTileCol>3</MaxTileCol>
     62533                                        </TileMatrixLimits>
     62534                                        <TileMatrixLimits>
     62535                                                <TileMatrix>4</TileMatrix>
     62536                                                <MinTileRow>5</MinTileRow>
     62537                                                <MaxTileRow>5</MaxTileRow>
     62538                                                <MinTileCol>7</MinTileCol>
     62539                                                <MaxTileCol>7</MaxTileCol>
     62540                                        </TileMatrixLimits>
     62541                                        <TileMatrixLimits>
     62542                                                <TileMatrix>5</TileMatrix>
     62543                                                <MinTileRow>11</MinTileRow>
     62544                                                <MaxTileRow>11</MaxTileRow>
     62545                                                <MinTileCol>15</MinTileCol>
     62546                                                <MaxTileCol>15</MaxTileCol>
     62547                                        </TileMatrixLimits>
     62548                                        <TileMatrixLimits>
     62549                                                <TileMatrix>6</TileMatrix>
     62550                                                <MinTileRow>22</MinTileRow>
     62551                                                <MaxTileRow>22</MaxTileRow>
     62552                                                <MinTileCol>31</MinTileCol>
     62553                                                <MaxTileCol>31</MaxTileCol>
     62554                                        </TileMatrixLimits>
     62555                                        <TileMatrixLimits>
     62556                                                <TileMatrix>7</TileMatrix>
     62557                                                <MinTileRow>44</MinTileRow>
     62558                                                <MaxTileRow>44</MaxTileRow>
     62559                                                <MinTileCol>63</MinTileCol>
     62560                                                <MaxTileCol>63</MaxTileCol>
     62561                                        </TileMatrixLimits>
     62562                                        <TileMatrixLimits>
     62563                                                <TileMatrix>8</TileMatrix>
     62564                                                <MinTileRow>89</MinTileRow>
     62565                                                <MaxTileRow>89</MaxTileRow>
     62566                                                <MinTileCol>126</MinTileCol>
     62567                                                <MaxTileCol>126</MaxTileCol>
     62568                                        </TileMatrixLimits>
     62569                                        <TileMatrixLimits>
     62570                                                <TileMatrix>9</TileMatrix>
     62571                                                <MinTileRow>179</MinTileRow>
     62572                                                <MaxTileRow>179</MaxTileRow>
     62573                                                <MinTileCol>252</MinTileCol>
     62574                                                <MaxTileCol>252</MaxTileCol>
     62575                                        </TileMatrixLimits>
     62576                                </TileMatrixSetLimits>
     62577                        </TileMatrixSetLink>
     62578                </Layer>
     62579                <Layer>
     62580                        <ows:Title>Orthophotographies Geosud de STRASBOURG</ows:Title>
     62581                        <ows:Abstract>Orthophotographies satellites de STRASBOURG issues du projet Geosud.</ows:Abstract>
     62582                        <ows:Keywords>
     62583                                <ows:Keyword>Photographies</ows:Keyword>
     62584                        </ows:Keywords>
     62585                        <ows:WGS84BoundingBox>
     62586                                <ows:LowerCorner>7.64498 48.209</ows:LowerCorner>
     62587                                <ows:UpperCorner>7.92797 48.8471</ows:UpperCorner>
     62588                        </ows:WGS84BoundingBox>
     62589                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_STRASBOURG-2013-04-24-37954587</ows:Identifier>
     62590                        <Style isDefault="true">
     62591                                <ows:Title>Données Brutes</ows:Title>
     62592                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62593                                <ows:Keywords>
     62594                                        <ows:Keyword>Défaut</ows:Keyword>
     62595                                </ows:Keywords>
     62596                                <ows:Identifier>normal</ows:Identifier>
     62597                                <LegendURL format="image/jpeg" height="200"
     62598                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62599                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62600                        </Style>
     62601                        <Format>image/jpeg</Format>
     62602                        <TileMatrixSetLink>
     62603                                <TileMatrixSet>PM</TileMatrixSet>
     62604                                <TileMatrixSetLimits>
     62605                                        <TileMatrixLimits>
     62606                                                <TileMatrix>0</TileMatrix>
     62607                                                <MinTileRow>0</MinTileRow>
     62608                                                <MaxTileRow>0</MaxTileRow>
     62609                                                <MinTileCol>0</MinTileCol>
     62610                                                <MaxTileCol>0</MaxTileCol>
     62611                                        </TileMatrixLimits>
     62612                                        <TileMatrixLimits>
     62613                                                <TileMatrix>1</TileMatrix>
     62614                                                <MinTileRow>0</MinTileRow>
     62615                                                <MaxTileRow>0</MaxTileRow>
     62616                                                <MinTileCol>1</MinTileCol>
     62617                                                <MaxTileCol>1</MaxTileCol>
     62618                                        </TileMatrixLimits>
     62619                                        <TileMatrixLimits>
     62620                                                <TileMatrix>10</TileMatrix>
     62621                                                <MinTileRow>352</MinTileRow>
     62622                                                <MaxTileRow>355</MaxTileRow>
     62623                                                <MinTileCol>533</MinTileCol>
     62624                                                <MaxTileCol>534</MaxTileCol>
     62625                                        </TileMatrixLimits>
     62626                                        <TileMatrixLimits>
     62627                                                <TileMatrix>11</TileMatrix>
     62628                                                <MinTileRow>704</MinTileRow>
     62629                                                <MaxTileRow>710</MaxTileRow>
     62630                                                <MinTileCol>1067</MinTileCol>
     62631                                                <MaxTileCol>1069</MaxTileCol>
     62632                                        </TileMatrixLimits>
     62633                                        <TileMatrixLimits>
     62634                                                <TileMatrix>12</TileMatrix>
     62635                                                <MinTileRow>1409</MinTileRow>
     62636                                                <MaxTileRow>1420</MaxTileRow>
     62637                                                <MinTileCol>2134</MinTileCol>
     62638                                                <MaxTileCol>2138</MaxTileCol>
     62639                                        </TileMatrixLimits>
     62640                                        <TileMatrixLimits>
     62641                                                <TileMatrix>13</TileMatrix>
     62642                                                <MinTileRow>2818</MinTileRow>
     62643                                                <MaxTileRow>2840</MaxTileRow>
     62644                                                <MinTileCol>4269</MinTileCol>
     62645                                                <MaxTileCol>4276</MaxTileCol>
     62646                                        </TileMatrixLimits>
     62647                                        <TileMatrixLimits>
     62648                                                <TileMatrix>14</TileMatrix>
     62649                                                <MinTileRow>5637</MinTileRow>
     62650                                                <MaxTileRow>5681</MaxTileRow>
     62651                                                <MinTileCol>8538</MinTileCol>
     62652                                                <MaxTileCol>8553</MaxTileCol>
     62653                                        </TileMatrixLimits>
     62654                                        <TileMatrixLimits>
     62655                                                <TileMatrix>15</TileMatrix>
     62656                                                <MinTileRow>11274</MinTileRow>
     62657                                                <MaxTileRow>11362</MaxTileRow>
     62658                                                <MinTileCol>17077</MinTileCol>
     62659                                                <MaxTileCol>17106</MaxTileCol>
     62660                                        </TileMatrixLimits>
     62661                                        <TileMatrixLimits>
     62662                                                <TileMatrix>16</TileMatrix>
     62663                                                <MinTileRow>22548</MinTileRow>
     62664                                                <MaxTileRow>22724</MaxTileRow>
     62665                                                <MinTileCol>34155</MinTileCol>
     62666                                                <MaxTileCol>34213</MaxTileCol>
     62667                                        </TileMatrixLimits>
     62668                                        <TileMatrixLimits>
     62669                                                <TileMatrix>17</TileMatrix>
     62670                                                <MinTileRow>45096</MinTileRow>
     62671                                                <MaxTileRow>45448</MaxTileRow>
     62672                                                <MinTileCol>68310</MinTileCol>
     62673                                                <MaxTileCol>68426</MaxTileCol>
     62674                                        </TileMatrixLimits>
     62675                                        <TileMatrixLimits>
     62676                                                <TileMatrix>18</TileMatrix>
     62677                                                <MinTileRow>90193</MinTileRow>
     62678                                                <MaxTileRow>90897</MaxTileRow>
     62679                                                <MinTileCol>136621</MinTileCol>
     62680                                                <MaxTileCol>136853</MaxTileCol>
     62681                                        </TileMatrixLimits>
     62682                                        <TileMatrixLimits>
     62683                                                <TileMatrix>2</TileMatrix>
     62684                                                <MinTileRow>1</MinTileRow>
     62685                                                <MaxTileRow>1</MaxTileRow>
     62686                                                <MinTileCol>2</MinTileCol>
     62687                                                <MaxTileCol>2</MaxTileCol>
     62688                                        </TileMatrixLimits>
     62689                                        <TileMatrixLimits>
     62690                                                <TileMatrix>3</TileMatrix>
     62691                                                <MinTileRow>2</MinTileRow>
     62692                                                <MaxTileRow>2</MaxTileRow>
     62693                                                <MinTileCol>4</MinTileCol>
     62694                                                <MaxTileCol>4</MaxTileCol>
     62695                                        </TileMatrixLimits>
     62696                                        <TileMatrixLimits>
     62697                                                <TileMatrix>4</TileMatrix>
     62698                                                <MinTileRow>5</MinTileRow>
     62699                                                <MaxTileRow>5</MaxTileRow>
     62700                                                <MinTileCol>8</MinTileCol>
     62701                                                <MaxTileCol>8</MaxTileCol>
     62702                                        </TileMatrixLimits>
     62703                                        <TileMatrixLimits>
     62704                                                <TileMatrix>5</TileMatrix>
     62705                                                <MinTileRow>11</MinTileRow>
     62706                                                <MaxTileRow>11</MaxTileRow>
     62707                                                <MinTileCol>16</MinTileCol>
     62708                                                <MaxTileCol>16</MaxTileCol>
     62709                                        </TileMatrixLimits>
     62710                                        <TileMatrixLimits>
     62711                                                <TileMatrix>6</TileMatrix>
     62712                                                <MinTileRow>22</MinTileRow>
     62713                                                <MaxTileRow>22</MaxTileRow>
     62714                                                <MinTileCol>33</MinTileCol>
     62715                                                <MaxTileCol>33</MaxTileCol>
     62716                                        </TileMatrixLimits>
     62717                                        <TileMatrixLimits>
     62718                                                <TileMatrix>7</TileMatrix>
     62719                                                <MinTileRow>44</MinTileRow>
     62720                                                <MaxTileRow>44</MaxTileRow>
     62721                                                <MinTileCol>66</MinTileCol>
     62722                                                <MaxTileCol>66</MaxTileCol>
     62723                                        </TileMatrixLimits>
     62724                                        <TileMatrixLimits>
     62725                                                <TileMatrix>8</TileMatrix>
     62726                                                <MinTileRow>88</MinTileRow>
     62727                                                <MaxTileRow>88</MaxTileRow>
     62728                                                <MinTileCol>133</MinTileCol>
     62729                                                <MaxTileCol>133</MaxTileCol>
     62730                                        </TileMatrixLimits>
     62731                                        <TileMatrixLimits>
     62732                                                <TileMatrix>9</TileMatrix>
     62733                                                <MinTileRow>176</MinTileRow>
     62734                                                <MaxTileRow>177</MaxTileRow>
     62735                                                <MinTileCol>266</MinTileCol>
     62736                                                <MaxTileCol>267</MaxTileCol>
     62737                                        </TileMatrixLimits>
     62738                                </TileMatrixSetLimits>
     62739                        </TileMatrixSetLink>
     62740                </Layer>
     62741                <Layer>
     62742                        <ows:Title>Orthophotographies Geosud de STRASBOURG-2014</ows:Title>
     62743                        <ows:Abstract>Orthophotographies satellites de STRASBOURG-2014 issues du projet Geosud.</ows:Abstract>
     62744                        <ows:Keywords>
     62745                                <ows:Keyword>Photographies</ows:Keyword>
     62746                        </ows:Keywords>
     62747                        <ows:WGS84BoundingBox>
     62748                                <ows:LowerCorner>7.54767 48.4528</ows:LowerCorner>
     62749                                <ows:UpperCorner>7.87824 48.6807</ows:UpperCorner>
     62750                        </ows:WGS84BoundingBox>
     62751                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_STRASBOURG-2014-03-08-38209074</ows:Identifier>
     62752                        <Style isDefault="true">
     62753                                <ows:Title>Données Brutes</ows:Title>
     62754                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62755                                <ows:Keywords>
     62756                                        <ows:Keyword>Défaut</ows:Keyword>
     62757                                </ows:Keywords>
     62758                                <ows:Identifier>normal</ows:Identifier>
     62759                                <LegendURL format="image/jpeg" height="200"
     62760                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62761                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62762                        </Style>
     62763                        <Format>image/jpeg</Format>
     62764                        <TileMatrixSetLink>
     62765                                <TileMatrixSet>PM</TileMatrixSet>
     62766                                <TileMatrixSetLimits>
     62767                                        <TileMatrixLimits>
     62768                                                <TileMatrix>0</TileMatrix>
     62769                                                <MinTileRow>0</MinTileRow>
     62770                                                <MaxTileRow>0</MaxTileRow>
     62771                                                <MinTileCol>0</MinTileCol>
     62772                                                <MaxTileCol>0</MaxTileCol>
     62773                                        </TileMatrixLimits>
     62774                                        <TileMatrixLimits>
     62775                                                <TileMatrix>1</TileMatrix>
     62776                                                <MinTileRow>0</MinTileRow>
     62777                                                <MaxTileRow>0</MaxTileRow>
     62778                                                <MinTileCol>1</MinTileCol>
     62779                                                <MaxTileCol>1</MaxTileCol>
     62780                                        </TileMatrixLimits>
     62781                                        <TileMatrixLimits>
     62782                                                <TileMatrix>10</TileMatrix>
     62783                                                <MinTileRow>353</MinTileRow>
     62784                                                <MaxTileRow>353</MaxTileRow>
     62785                                                <MinTileCol>533</MinTileCol>
     62786                                                <MaxTileCol>534</MaxTileCol>
     62787                                        </TileMatrixLimits>
     62788                                        <TileMatrixLimits>
     62789                                                <TileMatrix>11</TileMatrix>
     62790                                                <MinTileRow>706</MinTileRow>
     62791                                                <MaxTileRow>707</MaxTileRow>
     62792                                                <MinTileCol>1067</MinTileCol>
     62793                                                <MaxTileCol>1068</MaxTileCol>
     62794                                        </TileMatrixLimits>
     62795                                        <TileMatrixLimits>
     62796                                                <TileMatrix>12</TileMatrix>
     62797                                                <MinTileRow>1412</MinTileRow>
     62798                                                <MaxTileRow>1415</MaxTileRow>
     62799                                                <MinTileCol>2134</MinTileCol>
     62800                                                <MaxTileCol>2137</MaxTileCol>
     62801                                        </TileMatrixLimits>
     62802                                        <TileMatrixLimits>
     62803                                                <TileMatrix>13</TileMatrix>
     62804                                                <MinTileRow>2824</MinTileRow>
     62805                                                <MaxTileRow>2831</MaxTileRow>
     62806                                                <MinTileCol>4268</MinTileCol>
     62807                                                <MaxTileCol>4274</MaxTileCol>
     62808                                        </TileMatrixLimits>
     62809                                        <TileMatrixLimits>
     62810                                                <TileMatrix>14</TileMatrix>
     62811                                                <MinTileRow>5649</MinTileRow>
     62812                                                <MaxTileRow>5663</MaxTileRow>
     62813                                                <MinTileCol>8536</MinTileCol>
     62814                                                <MaxTileCol>8549</MaxTileCol>
     62815                                        </TileMatrixLimits>
     62816                                        <TileMatrixLimits>
     62817                                                <TileMatrix>15</TileMatrix>
     62818                                                <MinTileRow>11298</MinTileRow>
     62819                                                <MaxTileRow>11327</MaxTileRow>
     62820                                                <MinTileCol>17072</MinTileCol>
     62821                                                <MaxTileCol>17099</MaxTileCol>
     62822                                        </TileMatrixLimits>
     62823                                        <TileMatrixLimits>
     62824                                                <TileMatrix>16</TileMatrix>
     62825                                                <MinTileRow>22597</MinTileRow>
     62826                                                <MaxTileRow>22655</MaxTileRow>
     62827                                                <MinTileCol>34144</MinTileCol>
     62828                                                <MaxTileCol>34199</MaxTileCol>
     62829                                        </TileMatrixLimits>
     62830                                        <TileMatrixLimits>
     62831                                                <TileMatrix>17</TileMatrix>
     62832                                                <MinTileRow>45194</MinTileRow>
     62833                                                <MaxTileRow>45311</MaxTileRow>
     62834                                                <MinTileCol>68289</MinTileCol>
     62835                                                <MaxTileCol>68399</MaxTileCol>
     62836                                        </TileMatrixLimits>
     62837                                        <TileMatrixLimits>
     62838                                                <TileMatrix>18</TileMatrix>
     62839                                                <MinTileRow>90388</MinTileRow>
     62840                                                <MaxTileRow>90623</MaxTileRow>
     62841                                                <MinTileCol>136578</MinTileCol>
     62842                                                <MaxTileCol>136798</MaxTileCol>
     62843                                        </TileMatrixLimits>
     62844                                        <TileMatrixLimits>
     62845                                                <TileMatrix>2</TileMatrix>
     62846                                                <MinTileRow>1</MinTileRow>
     62847                                                <MaxTileRow>1</MaxTileRow>
     62848                                                <MinTileCol>2</MinTileCol>
     62849                                                <MaxTileCol>2</MaxTileCol>
     62850                                        </TileMatrixLimits>
     62851                                        <TileMatrixLimits>
     62852                                                <TileMatrix>3</TileMatrix>
     62853                                                <MinTileRow>2</MinTileRow>
     62854                                                <MaxTileRow>2</MaxTileRow>
     62855                                                <MinTileCol>4</MinTileCol>
     62856                                                <MaxTileCol>4</MaxTileCol>
     62857                                        </TileMatrixLimits>
     62858                                        <TileMatrixLimits>
     62859                                                <TileMatrix>4</TileMatrix>
     62860                                                <MinTileRow>5</MinTileRow>
     62861                                                <MaxTileRow>5</MaxTileRow>
     62862                                                <MinTileCol>8</MinTileCol>
     62863                                                <MaxTileCol>8</MaxTileCol>
     62864                                        </TileMatrixLimits>
     62865                                        <TileMatrixLimits>
     62866                                                <TileMatrix>5</TileMatrix>
     62867                                                <MinTileRow>11</MinTileRow>
     62868                                                <MaxTileRow>11</MaxTileRow>
     62869                                                <MinTileCol>16</MinTileCol>
     62870                                                <MaxTileCol>16</MaxTileCol>
     62871                                        </TileMatrixLimits>
     62872                                        <TileMatrixLimits>
     62873                                                <TileMatrix>6</TileMatrix>
     62874                                                <MinTileRow>22</MinTileRow>
     62875                                                <MaxTileRow>22</MaxTileRow>
     62876                                                <MinTileCol>33</MinTileCol>
     62877                                                <MaxTileCol>33</MaxTileCol>
     62878                                        </TileMatrixLimits>
     62879                                        <TileMatrixLimits>
     62880                                                <TileMatrix>7</TileMatrix>
     62881                                                <MinTileRow>44</MinTileRow>
     62882                                                <MaxTileRow>44</MaxTileRow>
     62883                                                <MinTileCol>66</MinTileCol>
     62884                                                <MaxTileCol>66</MaxTileCol>
     62885                                        </TileMatrixLimits>
     62886                                        <TileMatrixLimits>
     62887                                                <TileMatrix>8</TileMatrix>
     62888                                                <MinTileRow>88</MinTileRow>
     62889                                                <MaxTileRow>88</MaxTileRow>
     62890                                                <MinTileCol>133</MinTileCol>
     62891                                                <MaxTileCol>133</MaxTileCol>
     62892                                        </TileMatrixLimits>
     62893                                        <TileMatrixLimits>
     62894                                                <TileMatrix>9</TileMatrix>
     62895                                                <MinTileRow>176</MinTileRow>
     62896                                                <MaxTileRow>176</MaxTileRow>
     62897                                                <MinTileCol>266</MinTileCol>
     62898                                                <MaxTileCol>267</MaxTileCol>
     62899                                        </TileMatrixLimits>
     62900                                </TileMatrixSetLimits>
     62901                        </TileMatrixSetLink>
     62902                </Layer>
     62903                <Layer>
     62904                        <ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title>
     62905                        <ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract>
     62906                        <ows:Keywords>
     62907                                <ows:Keyword>Photographies</ows:Keyword>
     62908                        </ows:Keywords>
     62909                        <ows:WGS84BoundingBox>
     62910                                <ows:LowerCorner>-149.641 -17.8026</ows:LowerCorner>
     62911                                <ows:UpperCorner>-149.411 -17.4747</ows:UpperCorner>
     62912                        </ows:WGS84BoundingBox>
     62913                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72553330</ows:Identifier>
     62914                        <Style isDefault="true">
     62915                                <ows:Title>Données Brutes</ows:Title>
     62916                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     62917                                <ows:Keywords>
     62918                                        <ows:Keyword>Défaut</ows:Keyword>
     62919                                </ows:Keywords>
     62920                                <ows:Identifier>normal</ows:Identifier>
     62921                                <LegendURL format="image/jpeg" height="200"
     62922                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     62923                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     62924                        </Style>
     62925                        <Format>image/jpeg</Format>
     62926                        <TileMatrixSetLink>
     62927                                <TileMatrixSet>PM</TileMatrixSet>
     62928                                <TileMatrixSetLimits>
     62929                                        <TileMatrixLimits>
     62930                                                <TileMatrix>0</TileMatrix>
     62931                                                <MinTileRow>0</MinTileRow>
     62932                                                <MaxTileRow>0</MaxTileRow>
     62933                                                <MinTileCol>0</MinTileCol>
     62934                                                <MaxTileCol>0</MaxTileCol>
     62935                                        </TileMatrixLimits>
     62936                                        <TileMatrixLimits>
     62937                                                <TileMatrix>1</TileMatrix>
     62938                                                <MinTileRow>1</MinTileRow>
     62939                                                <MaxTileRow>1</MaxTileRow>
     62940                                                <MinTileCol>0</MinTileCol>
     62941                                                <MaxTileCol>0</MaxTileCol>
     62942                                        </TileMatrixLimits>
     62943                                        <TileMatrixLimits>
     62944                                                <TileMatrix>10</TileMatrix>
     62945                                                <MinTileRow>562</MinTileRow>
     62946                                                <MaxTileRow>563</MaxTileRow>
     62947                                                <MinTileCol>86</MinTileCol>
     62948                                                <MaxTileCol>87</MaxTileCol>
     62949                                        </TileMatrixLimits>
     62950                                        <TileMatrixLimits>
     62951                                                <TileMatrix>11</TileMatrix>
     62952                                                <MinTileRow>1125</MinTileRow>
     62953                                                <MaxTileRow>1126</MaxTileRow>
     62954                                                <MinTileCol>172</MinTileCol>
     62955                                                <MaxTileCol>174</MaxTileCol>
     62956                                        </TileMatrixLimits>
     62957                                        <TileMatrixLimits>
     62958                                                <TileMatrix>12</TileMatrix>
     62959                                                <MinTileRow>2250</MinTileRow>
     62960                                                <MaxTileRow>2253</MaxTileRow>
     62961                                                <MinTileCol>345</MinTileCol>
     62962                                                <MaxTileCol>348</MaxTileCol>
     62963                                        </TileMatrixLimits>
     62964                                        <TileMatrixLimits>
     62965                                                <TileMatrix>13</TileMatrix>
     62966                                                <MinTileRow>4500</MinTileRow>
     62967                                                <MaxTileRow>4507</MaxTileRow>
     62968                                                <MinTileCol>690</MinTileCol>
     62969                                                <MaxTileCol>696</MaxTileCol>
     62970                                        </TileMatrixLimits>
     62971                                        <TileMatrixLimits>
     62972                                                <TileMatrix>14</TileMatrix>
     62973                                                <MinTileRow>9000</MinTileRow>
     62974                                                <MaxTileRow>9015</MaxTileRow>
     62975                                                <MinTileCol>1381</MinTileCol>
     62976                                                <MaxTileCol>1392</MaxTileCol>
     62977                                        </TileMatrixLimits>
     62978                                        <TileMatrixLimits>
     62979                                                <TileMatrix>15</TileMatrix>
     62980                                                <MinTileRow>18000</MinTileRow>
     62981                                                <MaxTileRow>18031</MaxTileRow>
     62982                                                <MinTileCol>2763</MinTileCol>
     62983                                                <MaxTileCol>2784</MaxTileCol>
     62984                                        </TileMatrixLimits>
     62985                                        <TileMatrixLimits>
     62986                                                <TileMatrix>16</TileMatrix>
     62987                                                <MinTileRow>36000</MinTileRow>
     62988                                                <MaxTileRow>36062</MaxTileRow>
     62989                                                <MinTileCol>5527</MinTileCol>
     62990                                                <MaxTileCol>5568</MaxTileCol>
     62991                                        </TileMatrixLimits>
     62992                                        <TileMatrixLimits>
     62993                                                <TileMatrix>17</TileMatrix>
     62994                                                <MinTileRow>72000</MinTileRow>
     62995                                                <MaxTileRow>72124</MaxTileRow>
     62996                                                <MinTileCol>11054</MinTileCol>
     62997                                                <MaxTileCol>11136</MaxTileCol>
     62998                                        </TileMatrixLimits>
     62999                                        <TileMatrixLimits>
     63000                                                <TileMatrix>18</TileMatrix>
     63001                                                <MinTileRow>144000</MinTileRow>
     63002                                                <MaxTileRow>144249</MaxTileRow>
     63003                                                <MinTileCol>22108</MinTileCol>
     63004                                                <MaxTileCol>22273</MaxTileCol>
     63005                                        </TileMatrixLimits>
     63006                                        <TileMatrixLimits>
     63007                                                <TileMatrix>2</TileMatrix>
     63008                                                <MinTileRow>2</MinTileRow>
     63009                                                <MaxTileRow>2</MaxTileRow>
     63010                                                <MinTileCol>0</MinTileCol>
     63011                                                <MaxTileCol>0</MaxTileCol>
     63012                                        </TileMatrixLimits>
     63013                                        <TileMatrixLimits>
     63014                                                <TileMatrix>3</TileMatrix>
     63015                                                <MinTileRow>4</MinTileRow>
     63016                                                <MaxTileRow>4</MaxTileRow>
     63017                                                <MinTileCol>0</MinTileCol>
     63018                                                <MaxTileCol>0</MaxTileCol>
     63019                                        </TileMatrixLimits>
     63020                                        <TileMatrixLimits>
     63021                                                <TileMatrix>4</TileMatrix>
     63022                                                <MinTileRow>8</MinTileRow>
     63023                                                <MaxTileRow>8</MaxTileRow>
     63024                                                <MinTileCol>1</MinTileCol>
     63025                                                <MaxTileCol>1</MaxTileCol>
     63026                                        </TileMatrixLimits>
     63027                                        <TileMatrixLimits>
     63028                                                <TileMatrix>5</TileMatrix>
     63029                                                <MinTileRow>17</MinTileRow>
     63030                                                <MaxTileRow>17</MaxTileRow>
     63031                                                <MinTileCol>2</MinTileCol>
     63032                                                <MaxTileCol>2</MaxTileCol>
     63033                                        </TileMatrixLimits>
     63034                                        <TileMatrixLimits>
     63035                                                <TileMatrix>6</TileMatrix>
     63036                                                <MinTileRow>35</MinTileRow>
     63037                                                <MaxTileRow>35</MaxTileRow>
     63038                                                <MinTileCol>5</MinTileCol>
     63039                                                <MaxTileCol>5</MaxTileCol>
     63040                                        </TileMatrixLimits>
     63041                                        <TileMatrixLimits>
     63042                                                <TileMatrix>7</TileMatrix>
     63043                                                <MinTileRow>70</MinTileRow>
     63044                                                <MaxTileRow>70</MaxTileRow>
     63045                                                <MinTileCol>10</MinTileCol>
     63046                                                <MaxTileCol>10</MaxTileCol>
     63047                                        </TileMatrixLimits>
     63048                                        <TileMatrixLimits>
     63049                                                <TileMatrix>8</TileMatrix>
     63050                                                <MinTileRow>140</MinTileRow>
     63051                                                <MaxTileRow>140</MaxTileRow>
     63052                                                <MinTileCol>21</MinTileCol>
     63053                                                <MaxTileCol>21</MaxTileCol>
     63054                                        </TileMatrixLimits>
     63055                                        <TileMatrixLimits>
     63056                                                <TileMatrix>9</TileMatrix>
     63057                                                <MinTileRow>281</MinTileRow>
     63058                                                <MaxTileRow>281</MaxTileRow>
     63059                                                <MinTileCol>43</MinTileCol>
     63060                                                <MaxTileCol>43</MaxTileCol>
     63061                                        </TileMatrixLimits>
     63062                                </TileMatrixSetLimits>
     63063                        </TileMatrixSetLink>
     63064                </Layer>
     63065                <Layer>
     63066                        <ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title>
     63067                        <ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract>
     63068                        <ows:Keywords>
     63069                                <ows:Keyword>Photographies</ows:Keyword>
     63070                        </ows:Keywords>
     63071                        <ows:WGS84BoundingBox>
     63072                                <ows:LowerCorner>-149.313 -17.9056</ows:LowerCorner>
     63073                                <ows:UpperCorner>-149.103 -17.7045</ows:UpperCorner>
     63074                        </ows:WGS84BoundingBox>
     63075                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72564955</ows:Identifier>
     63076                        <Style isDefault="true">
     63077                                <ows:Title>Données Brutes</ows:Title>
     63078                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63079                                <ows:Keywords>
     63080                                        <ows:Keyword>Défaut</ows:Keyword>
     63081                                </ows:Keywords>
     63082                                <ows:Identifier>normal</ows:Identifier>
     63083                                <LegendURL format="image/jpeg" height="200"
     63084                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63085                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63086                        </Style>
     63087                        <Format>image/jpeg</Format>
     63088                        <TileMatrixSetLink>
     63089                                <TileMatrixSet>PM</TileMatrixSet>
     63090                                <TileMatrixSetLimits>
     63091                                        <TileMatrixLimits>
     63092                                                <TileMatrix>0</TileMatrix>
     63093                                                <MinTileRow>0</MinTileRow>
     63094                                                <MaxTileRow>0</MaxTileRow>
     63095                                                <MinTileCol>0</MinTileCol>
     63096                                                <MaxTileCol>0</MaxTileCol>
     63097                                        </TileMatrixLimits>
     63098                                        <TileMatrixLimits>
     63099                                                <TileMatrix>1</TileMatrix>
     63100                                                <MinTileRow>1</MinTileRow>
     63101                                                <MaxTileRow>1</MaxTileRow>
     63102                                                <MinTileCol>0</MinTileCol>
     63103                                                <MaxTileCol>0</MaxTileCol>
     63104                                        </TileMatrixLimits>
     63105                                        <TileMatrixLimits>
     63106                                                <TileMatrix>10</TileMatrix>
     63107                                                <MinTileRow>563</MinTileRow>
     63108                                                <MaxTileRow>563</MaxTileRow>
     63109                                                <MinTileCol>87</MinTileCol>
     63110                                                <MaxTileCol>87</MaxTileCol>
     63111                                        </TileMatrixLimits>
     63112                                        <TileMatrixLimits>
     63113                                                <TileMatrix>11</TileMatrix>
     63114                                                <MinTileRow>1126</MinTileRow>
     63115                                                <MaxTileRow>1127</MaxTileRow>
     63116                                                <MinTileCol>174</MinTileCol>
     63117                                                <MaxTileCol>175</MaxTileCol>
     63118                                        </TileMatrixLimits>
     63119                                        <TileMatrixLimits>
     63120                                                <TileMatrix>12</TileMatrix>
     63121                                                <MinTileRow>2252</MinTileRow>
     63122                                                <MaxTileRow>2255</MaxTileRow>
     63123                                                <MinTileCol>349</MinTileCol>
     63124                                                <MaxTileCol>351</MaxTileCol>
     63125                                        </TileMatrixLimits>
     63126                                        <TileMatrixLimits>
     63127                                                <TileMatrix>13</TileMatrix>
     63128                                                <MinTileRow>4505</MinTileRow>
     63129                                                <MaxTileRow>4510</MaxTileRow>
     63130                                                <MinTileCol>698</MinTileCol>
     63131                                                <MaxTileCol>703</MaxTileCol>
     63132                                        </TileMatrixLimits>
     63133                                        <TileMatrixLimits>
     63134                                                <TileMatrix>14</TileMatrix>
     63135                                                <MinTileRow>9010</MinTileRow>
     63136                                                <MaxTileRow>9020</MaxTileRow>
     63137                                                <MinTileCol>1396</MinTileCol>
     63138                                                <MaxTileCol>1406</MaxTileCol>
     63139                                        </TileMatrixLimits>
     63140                                        <TileMatrixLimits>
     63141                                                <TileMatrix>15</TileMatrix>
     63142                                                <MinTileRow>18021</MinTileRow>
     63143                                                <MaxTileRow>18040</MaxTileRow>
     63144                                                <MinTileCol>2793</MinTileCol>
     63145                                                <MaxTileCol>2812</MaxTileCol>
     63146                                        </TileMatrixLimits>
     63147                                        <TileMatrixLimits>
     63148                                                <TileMatrix>16</TileMatrix>
     63149                                                <MinTileRow>36043</MinTileRow>
     63150                                                <MaxTileRow>36081</MaxTileRow>
     63151                                                <MinTileCol>5586</MinTileCol>
     63152                                                <MaxTileCol>5624</MaxTileCol>
     63153                                        </TileMatrixLimits>
     63154                                        <TileMatrixLimits>
     63155                                                <TileMatrix>17</TileMatrix>
     63156                                                <MinTileRow>72087</MinTileRow>
     63157                                                <MaxTileRow>72163</MaxTileRow>
     63158                                                <MinTileCol>11173</MinTileCol>
     63159                                                <MaxTileCol>11249</MaxTileCol>
     63160                                        </TileMatrixLimits>
     63161                                        <TileMatrixLimits>
     63162                                                <TileMatrix>18</TileMatrix>
     63163                                                <MinTileRow>144174</MinTileRow>
     63164                                                <MaxTileRow>144327</MaxTileRow>
     63165                                                <MinTileCol>22346</MinTileCol>
     63166                                                <MaxTileCol>22498</MaxTileCol>
     63167                                        </TileMatrixLimits>
     63168                                        <TileMatrixLimits>
     63169                                                <TileMatrix>2</TileMatrix>
     63170                                                <MinTileRow>2</MinTileRow>
     63171                                                <MaxTileRow>2</MaxTileRow>
     63172                                                <MinTileCol>0</MinTileCol>
     63173                                                <MaxTileCol>0</MaxTileCol>
     63174                                        </TileMatrixLimits>
     63175                                        <TileMatrixLimits>
     63176                                                <TileMatrix>3</TileMatrix>
     63177                                                <MinTileRow>4</MinTileRow>
     63178                                                <MaxTileRow>4</MaxTileRow>
     63179                                                <MinTileCol>0</MinTileCol>
     63180                                                <MaxTileCol>0</MaxTileCol>
     63181                                        </TileMatrixLimits>
     63182                                        <TileMatrixLimits>
     63183                                                <TileMatrix>4</TileMatrix>
     63184                                                <MinTileRow>8</MinTileRow>
     63185                                                <MaxTileRow>8</MaxTileRow>
     63186                                                <MinTileCol>1</MinTileCol>
     63187                                                <MaxTileCol>1</MaxTileCol>
     63188                                        </TileMatrixLimits>
     63189                                        <TileMatrixLimits>
     63190                                                <TileMatrix>5</TileMatrix>
     63191                                                <MinTileRow>17</MinTileRow>
     63192                                                <MaxTileRow>17</MaxTileRow>
     63193                                                <MinTileCol>2</MinTileCol>
     63194                                                <MaxTileCol>2</MaxTileCol>
     63195                                        </TileMatrixLimits>
     63196                                        <TileMatrixLimits>
     63197                                                <TileMatrix>6</TileMatrix>
     63198                                                <MinTileRow>35</MinTileRow>
     63199                                                <MaxTileRow>35</MaxTileRow>
     63200                                                <MinTileCol>5</MinTileCol>
     63201                                                <MaxTileCol>5</MaxTileCol>
     63202                                        </TileMatrixLimits>
     63203                                        <TileMatrixLimits>
     63204                                                <TileMatrix>7</TileMatrix>
     63205                                                <MinTileRow>70</MinTileRow>
     63206                                                <MaxTileRow>70</MaxTileRow>
     63207                                                <MinTileCol>10</MinTileCol>
     63208                                                <MaxTileCol>10</MaxTileCol>
     63209                                        </TileMatrixLimits>
     63210                                        <TileMatrixLimits>
     63211                                                <TileMatrix>8</TileMatrix>
     63212                                                <MinTileRow>140</MinTileRow>
     63213                                                <MaxTileRow>140</MaxTileRow>
     63214                                                <MinTileCol>21</MinTileCol>
     63215                                                <MaxTileCol>21</MaxTileCol>
     63216                                        </TileMatrixLimits>
     63217                                        <TileMatrixLimits>
     63218                                                <TileMatrix>9</TileMatrix>
     63219                                                <MinTileRow>281</MinTileRow>
     63220                                                <MaxTileRow>281</MaxTileRow>
     63221                                                <MinTileCol>43</MinTileCol>
     63222                                                <MaxTileCol>43</MaxTileCol>
     63223                                        </TileMatrixLimits>
     63224                                </TileMatrixSetLimits>
     63225                        </TileMatrixSetLink>
     63226                </Layer>
     63227                <Layer>
     63228                        <ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title>
     63229                        <ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract>
     63230                        <ows:Keywords>
     63231                                <ows:Keyword>Photographies</ows:Keyword>
     63232                        </ows:Keywords>
     63233                        <ows:WGS84BoundingBox>
     63234                                <ows:LowerCorner>-149.444 -17.8321</ows:LowerCorner>
     63235                                <ows:UpperCorner>-149.213 -17.4772</ows:UpperCorner>
     63236                        </ows:WGS84BoundingBox>
     63237                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-04-21-72576790</ows:Identifier>
     63238                        <Style isDefault="true">
     63239                                <ows:Title>Données Brutes</ows:Title>
     63240                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63241                                <ows:Keywords>
     63242                                        <ows:Keyword>Défaut</ows:Keyword>
     63243                                </ows:Keywords>
     63244                                <ows:Identifier>normal</ows:Identifier>
     63245                                <LegendURL format="image/jpeg" height="200"
     63246                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63247                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63248                        </Style>
     63249                        <Format>image/jpeg</Format>
     63250                        <TileMatrixSetLink>
     63251                                <TileMatrixSet>PM</TileMatrixSet>
     63252                                <TileMatrixSetLimits>
     63253                                        <TileMatrixLimits>
     63254                                                <TileMatrix>0</TileMatrix>
     63255                                                <MinTileRow>0</MinTileRow>
     63256                                                <MaxTileRow>0</MaxTileRow>
     63257                                                <MinTileCol>0</MinTileCol>
     63258                                                <MaxTileCol>0</MaxTileCol>
     63259                                        </TileMatrixLimits>
     63260                                        <TileMatrixLimits>
     63261                                                <TileMatrix>1</TileMatrix>
     63262                                                <MinTileRow>1</MinTileRow>
     63263                                                <MaxTileRow>1</MaxTileRow>
     63264                                                <MinTileCol>0</MinTileCol>
     63265                                                <MaxTileCol>0</MaxTileCol>
     63266                                        </TileMatrixLimits>
     63267                                        <TileMatrixLimits>
     63268                                                <TileMatrix>10</TileMatrix>
     63269                                                <MinTileRow>562</MinTileRow>
     63270                                                <MaxTileRow>563</MaxTileRow>
     63271                                                <MinTileCol>86</MinTileCol>
     63272                                                <MaxTileCol>87</MaxTileCol>
     63273                                        </TileMatrixLimits>
     63274                                        <TileMatrixLimits>
     63275                                                <TileMatrix>11</TileMatrix>
     63276                                                <MinTileRow>1125</MinTileRow>
     63277                                                <MaxTileRow>1127</MaxTileRow>
     63278                                                <MinTileCol>173</MinTileCol>
     63279                                                <MaxTileCol>175</MaxTileCol>
     63280                                        </TileMatrixLimits>
     63281                                        <TileMatrixLimits>
     63282                                                <TileMatrix>12</TileMatrix>
     63283                                                <MinTileRow>2250</MinTileRow>
     63284                                                <MaxTileRow>2254</MaxTileRow>
     63285                                                <MinTileCol>347</MinTileCol>
     63286                                                <MaxTileCol>350</MaxTileCol>
     63287                                        </TileMatrixLimits>
     63288                                        <TileMatrixLimits>
     63289                                                <TileMatrix>13</TileMatrix>
     63290                                                <MinTileRow>4500</MinTileRow>
     63291                                                <MaxTileRow>4508</MaxTileRow>
     63292                                                <MinTileCol>695</MinTileCol>
     63293                                                <MaxTileCol>700</MaxTileCol>
     63294                                        </TileMatrixLimits>
     63295                                        <TileMatrixLimits>
     63296                                                <TileMatrix>14</TileMatrix>
     63297                                                <MinTileRow>9000</MinTileRow>
     63298                                                <MaxTileRow>9016</MaxTileRow>
     63299                                                <MinTileCol>1390</MinTileCol>
     63300                                                <MaxTileCol>1401</MaxTileCol>
     63301                                        </TileMatrixLimits>
     63302                                        <TileMatrixLimits>
     63303                                                <TileMatrix>15</TileMatrix>
     63304                                                <MinTileRow>18000</MinTileRow>
     63305                                                <MaxTileRow>18033</MaxTileRow>
     63306                                                <MinTileCol>2781</MinTileCol>
     63307                                                <MaxTileCol>2802</MaxTileCol>
     63308                                        </TileMatrixLimits>
     63309                                        <TileMatrixLimits>
     63310                                                <TileMatrix>16</TileMatrix>
     63311                                                <MinTileRow>36000</MinTileRow>
     63312                                                <MaxTileRow>36067</MaxTileRow>
     63313                                                <MinTileCol>5562</MinTileCol>
     63314                                                <MaxTileCol>5604</MaxTileCol>
     63315                                        </TileMatrixLimits>
     63316                                        <TileMatrixLimits>
     63317                                                <TileMatrix>17</TileMatrix>
     63318                                                <MinTileRow>72000</MinTileRow>
     63319                                                <MaxTileRow>72135</MaxTileRow>
     63320                                                <MinTileCol>11125</MinTileCol>
     63321                                                <MaxTileCol>11208</MaxTileCol>
     63322                                        </TileMatrixLimits>
     63323                                        <TileMatrixLimits>
     63324                                                <TileMatrix>18</TileMatrix>
     63325                                                <MinTileRow>144000</MinTileRow>
     63326                                                <MaxTileRow>144271</MaxTileRow>
     63327                                                <MinTileCol>22250</MinTileCol>
     63328                                                <MaxTileCol>22416</MaxTileCol>
     63329                                        </TileMatrixLimits>
     63330                                        <TileMatrixLimits>
     63331                                                <TileMatrix>2</TileMatrix>
     63332                                                <MinTileRow>2</MinTileRow>
     63333                                                <MaxTileRow>2</MaxTileRow>
     63334                                                <MinTileCol>0</MinTileCol>
     63335                                                <MaxTileCol>0</MaxTileCol>
     63336                                        </TileMatrixLimits>
     63337                                        <TileMatrixLimits>
     63338                                                <TileMatrix>3</TileMatrix>
     63339                                                <MinTileRow>4</MinTileRow>
     63340                                                <MaxTileRow>4</MaxTileRow>
     63341                                                <MinTileCol>0</MinTileCol>
     63342                                                <MaxTileCol>0</MaxTileCol>
     63343                                        </TileMatrixLimits>
     63344                                        <TileMatrixLimits>
     63345                                                <TileMatrix>4</TileMatrix>
     63346                                                <MinTileRow>8</MinTileRow>
     63347                                                <MaxTileRow>8</MaxTileRow>
     63348                                                <MinTileCol>1</MinTileCol>
     63349                                                <MaxTileCol>1</MaxTileCol>
     63350                                        </TileMatrixLimits>
     63351                                        <TileMatrixLimits>
     63352                                                <TileMatrix>5</TileMatrix>
     63353                                                <MinTileRow>17</MinTileRow>
     63354                                                <MaxTileRow>17</MaxTileRow>
     63355                                                <MinTileCol>2</MinTileCol>
     63356                                                <MaxTileCol>2</MaxTileCol>
     63357                                        </TileMatrixLimits>
     63358                                        <TileMatrixLimits>
     63359                                                <TileMatrix>6</TileMatrix>
     63360                                                <MinTileRow>35</MinTileRow>
     63361                                                <MaxTileRow>35</MaxTileRow>
     63362                                                <MinTileCol>5</MinTileCol>
     63363                                                <MaxTileCol>5</MaxTileCol>
     63364                                        </TileMatrixLimits>
     63365                                        <TileMatrixLimits>
     63366                                                <TileMatrix>7</TileMatrix>
     63367                                                <MinTileRow>70</MinTileRow>
     63368                                                <MaxTileRow>70</MaxTileRow>
     63369                                                <MinTileCol>10</MinTileCol>
     63370                                                <MaxTileCol>10</MaxTileCol>
     63371                                        </TileMatrixLimits>
     63372                                        <TileMatrixLimits>
     63373                                                <TileMatrix>8</TileMatrix>
     63374                                                <MinTileRow>140</MinTileRow>
     63375                                                <MaxTileRow>140</MaxTileRow>
     63376                                                <MinTileCol>21</MinTileCol>
     63377                                                <MaxTileCol>21</MaxTileCol>
     63378                                        </TileMatrixLimits>
     63379                                        <TileMatrixLimits>
     63380                                                <TileMatrix>9</TileMatrix>
     63381                                                <MinTileRow>281</MinTileRow>
     63382                                                <MaxTileRow>281</MaxTileRow>
     63383                                                <MinTileCol>43</MinTileCol>
     63384                                                <MaxTileCol>43</MaxTileCol>
     63385                                        </TileMatrixLimits>
     63386                                </TileMatrixSetLimits>
     63387                        </TileMatrixSetLink>
     63388                </Layer>
     63389                <Layer>
     63390                        <ows:Title>Orthophotographies Geosud de TAHITI-MOOREA 2014</ows:Title>
     63391                        <ows:Abstract>Orthophotographies satellites de TAHITI-MOOREA issues du projet Geosud.</ows:Abstract>
     63392                        <ows:Keywords>
     63393                                <ows:Keyword>Photographies</ows:Keyword>
     63394                        </ows:Keywords>
     63395                        <ows:WGS84BoundingBox>
     63396                                <ows:LowerCorner>-149.94 -17.6177</ows:LowerCorner>
     63397                                <ows:UpperCorner>-149.74 -17.4614</ows:UpperCorner>
     63398                        </ows:WGS84BoundingBox>
     63399                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TAHITI-MOOREA-2014-06-23-73484627</ows:Identifier>
     63400                        <Style isDefault="true">
     63401                                <ows:Title>Données Brutes</ows:Title>
     63402                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63403                                <ows:Keywords>
     63404                                        <ows:Keyword>Défaut</ows:Keyword>
     63405                                </ows:Keywords>
     63406                                <ows:Identifier>normal</ows:Identifier>
     63407                                <LegendURL format="image/jpeg" height="200"
     63408                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63409                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63410                        </Style>
     63411                        <Format>image/jpeg</Format>
     63412                        <TileMatrixSetLink>
     63413                                <TileMatrixSet>PM</TileMatrixSet>
     63414                                <TileMatrixSetLimits>
     63415                                        <TileMatrixLimits>
     63416                                                <TileMatrix>0</TileMatrix>
     63417                                                <MinTileRow>0</MinTileRow>
     63418                                                <MaxTileRow>0</MaxTileRow>
     63419                                                <MinTileCol>0</MinTileCol>
     63420                                                <MaxTileCol>0</MaxTileCol>
     63421                                        </TileMatrixLimits>
     63422                                        <TileMatrixLimits>
     63423                                                <TileMatrix>1</TileMatrix>
     63424                                                <MinTileRow>1</MinTileRow>
     63425                                                <MaxTileRow>1</MaxTileRow>
     63426                                                <MinTileCol>0</MinTileCol>
     63427                                                <MaxTileCol>0</MaxTileCol>
     63428                                        </TileMatrixLimits>
     63429                                        <TileMatrixLimits>
     63430                                                <TileMatrix>10</TileMatrix>
     63431                                                <MinTileRow>562</MinTileRow>
     63432                                                <MaxTileRow>562</MaxTileRow>
     63433                                                <MinTileCol>85</MinTileCol>
     63434                                                <MaxTileCol>86</MaxTileCol>
     63435                                        </TileMatrixLimits>
     63436                                        <TileMatrixLimits>
     63437                                                <TileMatrix>11</TileMatrix>
     63438                                                <MinTileRow>1124</MinTileRow>
     63439                                                <MaxTileRow>1125</MaxTileRow>
     63440                                                <MinTileCol>171</MinTileCol>
     63441                                                <MaxTileCol>172</MaxTileCol>
     63442                                        </TileMatrixLimits>
     63443                                        <TileMatrixLimits>
     63444                                                <TileMatrix>12</TileMatrix>
     63445                                                <MinTileRow>2249</MinTileRow>
     63446                                                <MaxTileRow>2251</MaxTileRow>
     63447                                                <MinTileCol>342</MinTileCol>
     63448                                                <MaxTileCol>344</MaxTileCol>
     63449                                        </TileMatrixLimits>
     63450                                        <TileMatrixLimits>
     63451                                                <TileMatrix>13</TileMatrix>
     63452                                                <MinTileRow>4499</MinTileRow>
     63453                                                <MaxTileRow>4503</MaxTileRow>
     63454                                                <MinTileCol>684</MinTileCol>
     63455                                                <MaxTileCol>688</MaxTileCol>
     63456                                        </TileMatrixLimits>
     63457                                        <TileMatrixLimits>
     63458                                                <TileMatrix>14</TileMatrix>
     63459                                                <MinTileRow>8999</MinTileRow>
     63460                                                <MaxTileRow>9006</MaxTileRow>
     63461                                                <MinTileCol>1368</MinTileCol>
     63462                                                <MaxTileCol>1377</MaxTileCol>
     63463                                        </TileMatrixLimits>
     63464                                        <TileMatrixLimits>
     63465                                                <TileMatrix>15</TileMatrix>
     63466                                                <MinTileRow>17998</MinTileRow>
     63467                                                <MaxTileRow>18013</MaxTileRow>
     63468                                                <MinTileCol>2736</MinTileCol>
     63469                                                <MaxTileCol>2754</MaxTileCol>
     63470                                        </TileMatrixLimits>
     63471                                        <TileMatrixLimits>
     63472                                                <TileMatrix>16</TileMatrix>
     63473                                                <MinTileRow>35997</MinTileRow>
     63474                                                <MaxTileRow>36026</MaxTileRow>
     63475                                                <MinTileCol>5472</MinTileCol>
     63476                                                <MaxTileCol>5508</MaxTileCol>
     63477                                        </TileMatrixLimits>
     63478                                        <TileMatrixLimits>
     63479                                                <TileMatrix>17</TileMatrix>
     63480                                                <MinTileRow>71994</MinTileRow>
     63481                                                <MaxTileRow>72053</MaxTileRow>
     63482                                                <MinTileCol>10945</MinTileCol>
     63483                                                <MaxTileCol>11017</MaxTileCol>
     63484                                        </TileMatrixLimits>
     63485                                        <TileMatrixLimits>
     63486                                                <TileMatrix>18</TileMatrix>
     63487                                                <MinTileRow>143989</MinTileRow>
     63488                                                <MaxTileRow>144107</MaxTileRow>
     63489                                                <MinTileCol>21890</MinTileCol>
     63490                                                <MaxTileCol>22034</MaxTileCol>
     63491                                        </TileMatrixLimits>
     63492                                        <TileMatrixLimits>
     63493                                                <TileMatrix>2</TileMatrix>
     63494                                                <MinTileRow>2</MinTileRow>
     63495                                                <MaxTileRow>2</MaxTileRow>
     63496                                                <MinTileCol>0</MinTileCol>
     63497                                                <MaxTileCol>0</MaxTileCol>
     63498                                        </TileMatrixLimits>
     63499                                        <TileMatrixLimits>
     63500                                                <TileMatrix>3</TileMatrix>
     63501                                                <MinTileRow>4</MinTileRow>
     63502                                                <MaxTileRow>4</MaxTileRow>
     63503                                                <MinTileCol>0</MinTileCol>
     63504                                                <MaxTileCol>0</MaxTileCol>
     63505                                        </TileMatrixLimits>
     63506                                        <TileMatrixLimits>
     63507                                                <TileMatrix>4</TileMatrix>
     63508                                                <MinTileRow>8</MinTileRow>
     63509                                                <MaxTileRow>8</MaxTileRow>
     63510                                                <MinTileCol>1</MinTileCol>
     63511                                                <MaxTileCol>1</MaxTileCol>
     63512                                        </TileMatrixLimits>
     63513                                        <TileMatrixLimits>
     63514                                                <TileMatrix>5</TileMatrix>
     63515                                                <MinTileRow>17</MinTileRow>
     63516                                                <MaxTileRow>17</MaxTileRow>
     63517                                                <MinTileCol>2</MinTileCol>
     63518                                                <MaxTileCol>2</MaxTileCol>
     63519                                        </TileMatrixLimits>
     63520                                        <TileMatrixLimits>
     63521                                                <TileMatrix>6</TileMatrix>
     63522                                                <MinTileRow>35</MinTileRow>
     63523                                                <MaxTileRow>35</MaxTileRow>
     63524                                                <MinTileCol>5</MinTileCol>
     63525                                                <MaxTileCol>5</MaxTileCol>
     63526                                        </TileMatrixLimits>
     63527                                        <TileMatrixLimits>
     63528                                                <TileMatrix>7</TileMatrix>
     63529                                                <MinTileRow>70</MinTileRow>
     63530                                                <MaxTileRow>70</MaxTileRow>
     63531                                                <MinTileCol>10</MinTileCol>
     63532                                                <MaxTileCol>10</MaxTileCol>
     63533                                        </TileMatrixLimits>
     63534                                        <TileMatrixLimits>
     63535                                                <TileMatrix>8</TileMatrix>
     63536                                                <MinTileRow>140</MinTileRow>
     63537                                                <MaxTileRow>140</MaxTileRow>
     63538                                                <MinTileCol>21</MinTileCol>
     63539                                                <MaxTileCol>21</MaxTileCol>
     63540                                        </TileMatrixLimits>
     63541                                        <TileMatrixLimits>
     63542                                                <TileMatrix>9</TileMatrix>
     63543                                                <MinTileRow>281</MinTileRow>
     63544                                                <MaxTileRow>281</MaxTileRow>
     63545                                                <MinTileCol>42</MinTileCol>
     63546                                                <MaxTileCol>43</MaxTileCol>
     63547                                        </TileMatrixLimits>
     63548                                </TileMatrixSetLimits>
     63549                        </TileMatrixSetLink>
     63550                </Layer>
     63551                <Layer>
     63552                        <ows:Title>Orthophotographies Geosud de THONON 2014</ows:Title>
     63553                        <ows:Abstract>Orthophotographies satellites de THONON issues du projet Geosud.</ows:Abstract>
     63554                        <ows:Keywords>
     63555                                <ows:Keyword>Photographies</ows:Keyword>
     63556                        </ows:Keywords>
     63557                        <ows:WGS84BoundingBox>
     63558                                <ows:LowerCorner>6.37484 46.225</ows:LowerCorner>
     63559                                <ows:UpperCorner>6.6751 46.4588</ows:UpperCorner>
     63560                        </ows:WGS84BoundingBox>
     63561                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_THONON-2014-03-14-38423194</ows:Identifier>
     63562                        <Style isDefault="true">
     63563                                <ows:Title>Données Brutes</ows:Title>
     63564                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63565                                <ows:Keywords>
     63566                                        <ows:Keyword>Défaut</ows:Keyword>
     63567                                </ows:Keywords>
     63568                                <ows:Identifier>normal</ows:Identifier>
     63569                                <LegendURL format="image/jpeg" height="200"
     63570                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63571                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63572                        </Style>
     63573                        <Format>image/jpeg</Format>
     63574                        <TileMatrixSetLink>
     63575                                <TileMatrixSet>PM</TileMatrixSet>
     63576                                <TileMatrixSetLimits>
     63577                                        <TileMatrixLimits>
     63578                                                <TileMatrix>0</TileMatrix>
     63579                                                <MinTileRow>0</MinTileRow>
     63580                                                <MaxTileRow>0</MaxTileRow>
     63581                                                <MinTileCol>0</MinTileCol>
     63582                                                <MaxTileCol>0</MaxTileCol>
     63583                                        </TileMatrixLimits>
     63584                                        <TileMatrixLimits>
     63585                                                <TileMatrix>1</TileMatrix>
     63586                                                <MinTileRow>0</MinTileRow>
     63587                                                <MaxTileRow>0</MaxTileRow>
     63588                                                <MinTileCol>1</MinTileCol>
     63589                                                <MaxTileCol>1</MaxTileCol>
     63590                                        </TileMatrixLimits>
     63591                                        <TileMatrixLimits>
     63592                                                <TileMatrix>10</TileMatrix>
     63593                                                <MinTileRow>362</MinTileRow>
     63594                                                <MaxTileRow>363</MaxTileRow>
     63595                                                <MinTileCol>530</MinTileCol>
     63596                                                <MaxTileCol>530</MaxTileCol>
     63597                                        </TileMatrixLimits>
     63598                                        <TileMatrixLimits>
     63599                                                <TileMatrix>11</TileMatrix>
     63600                                                <MinTileRow>724</MinTileRow>
     63601                                                <MaxTileRow>726</MaxTileRow>
     63602                                                <MinTileCol>1060</MinTileCol>
     63603                                                <MaxTileCol>1061</MaxTileCol>
     63604                                        </TileMatrixLimits>
     63605                                        <TileMatrixLimits>
     63606                                                <TileMatrix>12</TileMatrix>
     63607                                                <MinTileRow>1449</MinTileRow>
     63608                                                <MaxTileRow>1453</MaxTileRow>
     63609                                                <MinTileCol>2120</MinTileCol>
     63610                                                <MaxTileCol>2123</MaxTileCol>
     63611                                        </TileMatrixLimits>
     63612                                        <TileMatrixLimits>
     63613                                                <TileMatrix>13</TileMatrix>
     63614                                                <MinTileRow>2899</MinTileRow>
     63615                                                <MaxTileRow>2906</MaxTileRow>
     63616                                                <MinTileCol>4241</MinTileCol>
     63617                                                <MaxTileCol>4247</MaxTileCol>
     63618                                        </TileMatrixLimits>
     63619                                        <TileMatrixLimits>
     63620                                                <TileMatrix>14</TileMatrix>
     63621                                                <MinTileRow>5799</MinTileRow>
     63622                                                <MaxTileRow>5813</MaxTileRow>
     63623                                                <MinTileCol>8482</MinTileCol>
     63624                                                <MaxTileCol>8495</MaxTileCol>
     63625                                        </TileMatrixLimits>
     63626                                        <TileMatrixLimits>
     63627                                                <TileMatrix>15</TileMatrix>
     63628                                                <MinTileRow>11598</MinTileRow>
     63629                                                <MaxTileRow>11627</MaxTileRow>
     63630                                                <MinTileCol>16964</MinTileCol>
     63631                                                <MaxTileCol>16990</MaxTileCol>
     63632                                        </TileMatrixLimits>
     63633                                        <TileMatrixLimits>
     63634                                                <TileMatrix>16</TileMatrix>
     63635                                                <MinTileRow>23196</MinTileRow>
     63636                                                <MaxTileRow>23255</MaxTileRow>
     63637                                                <MinTileCol>33928</MinTileCol>
     63638                                                <MaxTileCol>33981</MaxTileCol>
     63639                                        </TileMatrixLimits>
     63640                                        <TileMatrixLimits>
     63641                                                <TileMatrix>17</TileMatrix>
     63642                                                <MinTileRow>46392</MinTileRow>
     63643                                                <MaxTileRow>46510</MaxTileRow>
     63644                                                <MinTileCol>67857</MinTileCol>
     63645                                                <MaxTileCol>67962</MaxTileCol>
     63646                                        </TileMatrixLimits>
     63647                                        <TileMatrixLimits>
     63648                                                <TileMatrix>18</TileMatrix>
     63649                                                <MinTileRow>92785</MinTileRow>
     63650                                                <MaxTileRow>93020</MaxTileRow>
     63651                                                <MinTileCol>135714</MinTileCol>
     63652                                                <MaxTileCol>135924</MaxTileCol>
     63653                                        </TileMatrixLimits>
     63654                                        <TileMatrixLimits>
     63655                                                <TileMatrix>2</TileMatrix>
     63656                                                <MinTileRow>1</MinTileRow>
     63657                                                <MaxTileRow>1</MaxTileRow>
     63658                                                <MinTileCol>2</MinTileCol>
     63659                                                <MaxTileCol>2</MaxTileCol>
     63660                                        </TileMatrixLimits>
     63661                                        <TileMatrixLimits>
     63662                                                <TileMatrix>3</TileMatrix>
     63663                                                <MinTileRow>2</MinTileRow>
     63664                                                <MaxTileRow>2</MaxTileRow>
     63665                                                <MinTileCol>4</MinTileCol>
     63666                                                <MaxTileCol>4</MaxTileCol>
     63667                                        </TileMatrixLimits>
     63668                                        <TileMatrixLimits>
     63669                                                <TileMatrix>4</TileMatrix>
     63670                                                <MinTileRow>5</MinTileRow>
     63671                                                <MaxTileRow>5</MaxTileRow>
     63672                                                <MinTileCol>8</MinTileCol>
     63673                                                <MaxTileCol>8</MaxTileCol>
     63674                                        </TileMatrixLimits>
     63675                                        <TileMatrixLimits>
     63676                                                <TileMatrix>5</TileMatrix>
     63677                                                <MinTileRow>11</MinTileRow>
     63678                                                <MaxTileRow>11</MaxTileRow>
     63679                                                <MinTileCol>16</MinTileCol>
     63680                                                <MaxTileCol>16</MaxTileCol>
     63681                                        </TileMatrixLimits>
     63682                                        <TileMatrixLimits>
     63683                                                <TileMatrix>6</TileMatrix>
     63684                                                <MinTileRow>22</MinTileRow>
     63685                                                <MaxTileRow>22</MaxTileRow>
     63686                                                <MinTileCol>33</MinTileCol>
     63687                                                <MaxTileCol>33</MaxTileCol>
     63688                                        </TileMatrixLimits>
     63689                                        <TileMatrixLimits>
     63690                                                <TileMatrix>7</TileMatrix>
     63691                                                <MinTileRow>45</MinTileRow>
     63692                                                <MaxTileRow>45</MaxTileRow>
     63693                                                <MinTileCol>66</MinTileCol>
     63694                                                <MaxTileCol>66</MaxTileCol>
     63695                                        </TileMatrixLimits>
     63696                                        <TileMatrixLimits>
     63697                                                <TileMatrix>8</TileMatrix>
     63698                                                <MinTileRow>90</MinTileRow>
     63699                                                <MaxTileRow>90</MaxTileRow>
     63700                                                <MinTileCol>132</MinTileCol>
     63701                                                <MaxTileCol>132</MaxTileCol>
     63702                                        </TileMatrixLimits>
     63703                                        <TileMatrixLimits>
     63704                                                <TileMatrix>9</TileMatrix>
     63705                                                <MinTileRow>181</MinTileRow>
     63706                                                <MaxTileRow>181</MaxTileRow>
     63707                                                <MinTileCol>265</MinTileCol>
     63708                                                <MaxTileCol>265</MaxTileCol>
     63709                                        </TileMatrixLimits>
     63710                                </TileMatrixSetLimits>
     63711                        </TileMatrixSetLink>
     63712                </Layer>
     63713                <Layer>
     63714                        <ows:Title>Orthophotographies Geosud de TOULOUSE</ows:Title>
     63715                        <ows:Abstract>Orthophotographies satellites de TOULOUSE issues du projet Geosud.</ows:Abstract>
     63716                        <ows:Keywords>
     63717                                <ows:Keyword>Photographies</ows:Keyword>
     63718                        </ows:Keywords>
     63719                        <ows:WGS84BoundingBox>
     63720                                <ows:LowerCorner>1.2931 43.5162</ows:LowerCorner>
     63721                                <ows:UpperCorner>1.5357 43.7075</ows:UpperCorner>
     63722                        </ows:WGS84BoundingBox>
     63723                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOULOUSE-2013-09-24-39443785</ows:Identifier>
     63724                        <Style isDefault="true">
     63725                                <ows:Title>Données Brutes</ows:Title>
     63726                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63727                                <ows:Keywords>
     63728                                        <ows:Keyword>Défaut</ows:Keyword>
     63729                                </ows:Keywords>
     63730                                <ows:Identifier>normal</ows:Identifier>
     63731                                <LegendURL format="image/jpeg" height="200"
     63732                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63733                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63734                        </Style>
     63735                        <Format>image/jpeg</Format>
     63736                        <TileMatrixSetLink>
     63737                                <TileMatrixSet>PM</TileMatrixSet>
     63738                                <TileMatrixSetLimits>
     63739                                        <TileMatrixLimits>
     63740                                                <TileMatrix>0</TileMatrix>
     63741                                                <MinTileRow>0</MinTileRow>
     63742                                                <MaxTileRow>0</MaxTileRow>
     63743                                                <MinTileCol>0</MinTileCol>
     63744                                                <MaxTileCol>0</MaxTileCol>
     63745                                        </TileMatrixLimits>
     63746                                        <TileMatrixLimits>
     63747                                                <TileMatrix>1</TileMatrix>
     63748                                                <MinTileRow>0</MinTileRow>
     63749                                                <MaxTileRow>0</MaxTileRow>
     63750                                                <MinTileCol>1</MinTileCol>
     63751                                                <MaxTileCol>1</MaxTileCol>
     63752                                        </TileMatrixLimits>
     63753                                        <TileMatrixLimits>
     63754                                                <TileMatrix>10</TileMatrix>
     63755                                                <MinTileRow>373</MinTileRow>
     63756                                                <MaxTileRow>374</MaxTileRow>
     63757                                                <MinTileCol>515</MinTileCol>
     63758                                                <MaxTileCol>516</MaxTileCol>
     63759                                        </TileMatrixLimits>
     63760                                        <TileMatrixLimits>
     63761                                                <TileMatrix>11</TileMatrix>
     63762                                                <MinTileRow>746</MinTileRow>
     63763                                                <MaxTileRow>748</MaxTileRow>
     63764                                                <MinTileCol>1031</MinTileCol>
     63765                                                <MaxTileCol>1032</MaxTileCol>
     63766                                        </TileMatrixLimits>
     63767                                        <TileMatrixLimits>
     63768                                                <TileMatrix>12</TileMatrix>
     63769                                                <MinTileRow>1493</MinTileRow>
     63770                                                <MaxTileRow>1497</MaxTileRow>
     63771                                                <MinTileCol>2062</MinTileCol>
     63772                                                <MaxTileCol>2065</MaxTileCol>
     63773                                        </TileMatrixLimits>
     63774                                        <TileMatrixLimits>
     63775                                                <TileMatrix>13</TileMatrix>
     63776                                                <MinTileRow>2987</MinTileRow>
     63777                                                <MaxTileRow>2994</MaxTileRow>
     63778                                                <MinTileCol>4125</MinTileCol>
     63779                                                <MaxTileCol>4131</MaxTileCol>
     63780                                        </TileMatrixLimits>
     63781                                        <TileMatrixLimits>
     63782                                                <TileMatrix>14</TileMatrix>
     63783                                                <MinTileRow>5975</MinTileRow>
     63784                                                <MaxTileRow>5988</MaxTileRow>
     63785                                                <MinTileCol>8250</MinTileCol>
     63786                                                <MaxTileCol>8262</MaxTileCol>
     63787                                        </TileMatrixLimits>
     63788                                        <TileMatrixLimits>
     63789                                                <TileMatrix>15</TileMatrix>
     63790                                                <MinTileRow>11950</MinTileRow>
     63791                                                <MaxTileRow>11977</MaxTileRow>
     63792                                                <MinTileCol>16501</MinTileCol>
     63793                                                <MaxTileCol>16524</MaxTileCol>
     63794                                        </TileMatrixLimits>
     63795                                        <TileMatrixLimits>
     63796                                                <TileMatrix>16</TileMatrix>
     63797                                                <MinTileRow>23901</MinTileRow>
     63798                                                <MaxTileRow>23954</MaxTileRow>
     63799                                                <MinTileCol>33002</MinTileCol>
     63800                                                <MaxTileCol>33048</MaxTileCol>
     63801                                        </TileMatrixLimits>
     63802                                        <TileMatrixLimits>
     63803                                                <TileMatrix>17</TileMatrix>
     63804                                                <MinTileRow>47803</MinTileRow>
     63805                                                <MaxTileRow>47908</MaxTileRow>
     63806                                                <MinTileCol>66005</MinTileCol>
     63807                                                <MaxTileCol>66096</MaxTileCol>
     63808                                        </TileMatrixLimits>
     63809                                        <TileMatrixLimits>
     63810                                                <TileMatrix>18</TileMatrix>
     63811                                                <MinTileRow>95607</MinTileRow>
     63812                                                <MaxTileRow>95816</MaxTileRow>
     63813                                                <MinTileCol>132010</MinTileCol>
     63814                                                <MaxTileCol>132193</MaxTileCol>
     63815                                        </TileMatrixLimits>
     63816                                        <TileMatrixLimits>
     63817                                                <TileMatrix>2</TileMatrix>
     63818                                                <MinTileRow>1</MinTileRow>
     63819                                                <MaxTileRow>1</MaxTileRow>
     63820                                                <MinTileCol>2</MinTileCol>
     63821                                                <MaxTileCol>2</MaxTileCol>
     63822                                        </TileMatrixLimits>
     63823                                        <TileMatrixLimits>
     63824                                                <TileMatrix>3</TileMatrix>
     63825                                                <MinTileRow>2</MinTileRow>
     63826                                                <MaxTileRow>2</MaxTileRow>
     63827                                                <MinTileCol>4</MinTileCol>
     63828                                                <MaxTileCol>4</MaxTileCol>
     63829                                        </TileMatrixLimits>
     63830                                        <TileMatrixLimits>
     63831                                                <TileMatrix>4</TileMatrix>
     63832                                                <MinTileRow>5</MinTileRow>
     63833                                                <MaxTileRow>5</MaxTileRow>
     63834                                                <MinTileCol>8</MinTileCol>
     63835                                                <MaxTileCol>8</MaxTileCol>
     63836                                        </TileMatrixLimits>
     63837                                        <TileMatrixLimits>
     63838                                                <TileMatrix>5</TileMatrix>
     63839                                                <MinTileRow>11</MinTileRow>
     63840                                                <MaxTileRow>11</MaxTileRow>
     63841                                                <MinTileCol>16</MinTileCol>
     63842                                                <MaxTileCol>16</MaxTileCol>
     63843                                        </TileMatrixLimits>
     63844                                        <TileMatrixLimits>
     63845                                                <TileMatrix>6</TileMatrix>
     63846                                                <MinTileRow>23</MinTileRow>
     63847                                                <MaxTileRow>23</MaxTileRow>
     63848                                                <MinTileCol>32</MinTileCol>
     63849                                                <MaxTileCol>32</MaxTileCol>
     63850                                        </TileMatrixLimits>
     63851                                        <TileMatrixLimits>
     63852                                                <TileMatrix>7</TileMatrix>
     63853                                                <MinTileRow>46</MinTileRow>
     63854                                                <MaxTileRow>46</MaxTileRow>
     63855                                                <MinTileCol>64</MinTileCol>
     63856                                                <MaxTileCol>64</MaxTileCol>
     63857                                        </TileMatrixLimits>
     63858                                        <TileMatrixLimits>
     63859                                                <TileMatrix>8</TileMatrix>
     63860                                                <MinTileRow>93</MinTileRow>
     63861                                                <MaxTileRow>93</MaxTileRow>
     63862                                                <MinTileCol>128</MinTileCol>
     63863                                                <MaxTileCol>129</MaxTileCol>
     63864                                        </TileMatrixLimits>
     63865                                        <TileMatrixLimits>
     63866                                                <TileMatrix>9</TileMatrix>
     63867                                                <MinTileRow>186</MinTileRow>
     63868                                                <MaxTileRow>187</MaxTileRow>
     63869                                                <MinTileCol>257</MinTileCol>
     63870                                                <MaxTileCol>258</MaxTileCol>
     63871                                        </TileMatrixLimits>
     63872                                </TileMatrixSetLimits>
     63873                        </TileMatrixSetLink>
     63874                </Layer>
     63875                <Layer>
     63876                        <ows:Title>Orthophotographies Geosud de TOURS</ows:Title>
     63877                        <ows:Abstract>Orthophotographies satellites de TOURS issues du projet Geosud.</ows:Abstract>
     63878                        <ows:Keywords>
     63879                                <ows:Keyword>Photographies</ows:Keyword>
     63880                        </ows:Keywords>
     63881                        <ows:WGS84BoundingBox>
     63882                                <ows:LowerCorner>0.556018 47.2512</ows:LowerCorner>
     63883                                <ows:UpperCorner>0.802185 47.4828</ows:UpperCorner>
     63884                        </ows:WGS84BoundingBox>
     63885                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOURS-2013-08-02-39798149</ows:Identifier>
     63886                        <Style isDefault="true">
     63887                                <ows:Title>Données Brutes</ows:Title>
     63888                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     63889                                <ows:Keywords>
     63890                                        <ows:Keyword>Défaut</ows:Keyword>
     63891                                </ows:Keywords>
     63892                                <ows:Identifier>normal</ows:Identifier>
     63893                                <LegendURL format="image/jpeg" height="200"
     63894                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     63895                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     63896                        </Style>
     63897                        <Format>image/jpeg</Format>
     63898                        <TileMatrixSetLink>
     63899                                <TileMatrixSet>PM</TileMatrixSet>
     63900                                <TileMatrixSetLimits>
     63901                                        <TileMatrixLimits>
     63902                                                <TileMatrix>0</TileMatrix>
     63903                                                <MinTileRow>0</MinTileRow>
     63904                                                <MaxTileRow>0</MaxTileRow>
     63905                                                <MinTileCol>0</MinTileCol>
     63906                                                <MaxTileCol>0</MaxTileCol>
     63907                                        </TileMatrixLimits>
     63908                                        <TileMatrixLimits>
     63909                                                <TileMatrix>1</TileMatrix>
     63910                                                <MinTileRow>0</MinTileRow>
     63911                                                <MaxTileRow>0</MaxTileRow>
     63912                                                <MinTileCol>1</MinTileCol>
     63913                                                <MaxTileCol>1</MaxTileCol>
     63914                                        </TileMatrixLimits>
     63915                                        <TileMatrixLimits>
     63916                                                <TileMatrix>10</TileMatrix>
     63917                                                <MinTileRow>358</MinTileRow>
     63918                                                <MaxTileRow>359</MaxTileRow>
     63919                                                <MinTileCol>513</MinTileCol>
     63920                                                <MaxTileCol>514</MaxTileCol>
     63921                                        </TileMatrixLimits>
     63922                                        <TileMatrixLimits>
     63923                                                <TileMatrix>11</TileMatrix>
     63924                                                <MinTileRow>716</MinTileRow>
     63925                                                <MaxTileRow>718</MaxTileRow>
     63926                                                <MinTileCol>1027</MinTileCol>
     63927                                                <MaxTileCol>1028</MaxTileCol>
     63928                                        </TileMatrixLimits>
     63929                                        <TileMatrixLimits>
     63930                                                <TileMatrix>12</TileMatrix>
     63931                                                <MinTileRow>1432</MinTileRow>
     63932                                                <MaxTileRow>1436</MaxTileRow>
     63933                                                <MinTileCol>2054</MinTileCol>
     63934                                                <MaxTileCol>2057</MaxTileCol>
     63935                                        </TileMatrixLimits>
     63936                                        <TileMatrixLimits>
     63937                                                <TileMatrix>13</TileMatrix>
     63938                                                <MinTileRow>2865</MinTileRow>
     63939                                                <MaxTileRow>2873</MaxTileRow>
     63940                                                <MinTileCol>4108</MinTileCol>
     63941                                                <MaxTileCol>4114</MaxTileCol>
     63942                                        </TileMatrixLimits>
     63943                                        <TileMatrixLimits>
     63944                                                <TileMatrix>14</TileMatrix>
     63945                                                <MinTileRow>5730</MinTileRow>
     63946                                                <MaxTileRow>5746</MaxTileRow>
     63947                                                <MinTileCol>8217</MinTileCol>
     63948                                                <MaxTileCol>8229</MaxTileCol>
     63949                                        </TileMatrixLimits>
     63950                                        <TileMatrixLimits>
     63951                                                <TileMatrix>15</TileMatrix>
     63952                                                <MinTileRow>11460</MinTileRow>
     63953                                                <MaxTileRow>11492</MaxTileRow>
     63954                                                <MinTileCol>16435</MinTileCol>
     63955                                                <MaxTileCol>16458</MaxTileCol>
     63956                                        </TileMatrixLimits>
     63957                                        <TileMatrixLimits>
     63958                                                <TileMatrix>16</TileMatrix>
     63959                                                <MinTileRow>22920</MinTileRow>
     63960                                                <MaxTileRow>22985</MaxTileRow>
     63961                                                <MinTileCol>32871</MinTileCol>
     63962                                                <MaxTileCol>32916</MaxTileCol>
     63963                                        </TileMatrixLimits>
     63964                                        <TileMatrixLimits>
     63965                                                <TileMatrix>17</TileMatrix>
     63966                                                <MinTileRow>45840</MinTileRow>
     63967                                                <MaxTileRow>45971</MaxTileRow>
     63968                                                <MinTileCol>65743</MinTileCol>
     63969                                                <MaxTileCol>65832</MaxTileCol>
     63970                                        </TileMatrixLimits>
     63971                                        <TileMatrixLimits>
     63972                                                <TileMatrix>18</TileMatrix>
     63973                                                <MinTileRow>91680</MinTileRow>
     63974                                                <MaxTileRow>91942</MaxTileRow>
     63975                                                <MinTileCol>131487</MinTileCol>
     63976                                                <MaxTileCol>131664</MaxTileCol>
     63977                                        </TileMatrixLimits>
     63978                                        <TileMatrixLimits>
     63979                                                <TileMatrix>2</TileMatrix>
     63980                                                <MinTileRow>1</MinTileRow>
     63981                                                <MaxTileRow>1</MaxTileRow>
     63982                                                <MinTileCol>2</MinTileCol>
     63983                                                <MaxTileCol>2</MaxTileCol>
     63984                                        </TileMatrixLimits>
     63985                                        <TileMatrixLimits>
     63986                                                <TileMatrix>3</TileMatrix>
     63987                                                <MinTileRow>2</MinTileRow>
     63988                                                <MaxTileRow>2</MaxTileRow>
     63989                                                <MinTileCol>4</MinTileCol>
     63990                                                <MaxTileCol>4</MaxTileCol>
     63991                                        </TileMatrixLimits>
     63992                                        <TileMatrixLimits>
     63993                                                <TileMatrix>4</TileMatrix>
     63994                                                <MinTileRow>5</MinTileRow>
     63995                                                <MaxTileRow>5</MaxTileRow>
     63996                                                <MinTileCol>8</MinTileCol>
     63997                                                <MaxTileCol>8</MaxTileCol>
     63998                                        </TileMatrixLimits>
     63999                                        <TileMatrixLimits>
     64000                                                <TileMatrix>5</TileMatrix>
     64001                                                <MinTileRow>11</MinTileRow>
     64002                                                <MaxTileRow>11</MaxTileRow>
     64003                                                <MinTileCol>16</MinTileCol>
     64004                                                <MaxTileCol>16</MaxTileCol>
     64005                                        </TileMatrixLimits>
     64006                                        <TileMatrixLimits>
     64007                                                <TileMatrix>6</TileMatrix>
     64008                                                <MinTileRow>22</MinTileRow>
     64009                                                <MaxTileRow>22</MaxTileRow>
     64010                                                <MinTileCol>32</MinTileCol>
     64011                                                <MaxTileCol>32</MaxTileCol>
     64012                                        </TileMatrixLimits>
     64013                                        <TileMatrixLimits>
     64014                                                <TileMatrix>7</TileMatrix>
     64015                                                <MinTileRow>44</MinTileRow>
     64016                                                <MaxTileRow>44</MaxTileRow>
     64017                                                <MinTileCol>64</MinTileCol>
     64018                                                <MaxTileCol>64</MaxTileCol>
     64019                                        </TileMatrixLimits>
     64020                                        <TileMatrixLimits>
     64021                                                <TileMatrix>8</TileMatrix>
     64022                                                <MinTileRow>89</MinTileRow>
     64023                                                <MaxTileRow>89</MaxTileRow>
     64024                                                <MinTileCol>128</MinTileCol>
     64025                                                <MaxTileCol>128</MaxTileCol>
     64026                                        </TileMatrixLimits>
     64027                                        <TileMatrixLimits>
     64028                                                <TileMatrix>9</TileMatrix>
     64029                                                <MinTileRow>179</MinTileRow>
     64030                                                <MaxTileRow>179</MaxTileRow>
     64031                                                <MinTileCol>256</MinTileCol>
     64032                                                <MaxTileCol>257</MaxTileCol>
     64033                                        </TileMatrixLimits>
     64034                                </TileMatrixSetLimits>
     64035                        </TileMatrixSetLink>
     64036                </Layer>
     64037                <Layer>
     64038                        <ows:Title>Orthophotographies Geosud de TOURS</ows:Title>
     64039                        <ows:Abstract>Orthophotographies satellites de TOURS issues du projet Geosud.</ows:Abstract>
     64040                        <ows:Keywords>
     64041                                <ows:Keyword>Photographies</ows:Keyword>
     64042                        </ows:Keywords>
     64043                        <ows:WGS84BoundingBox>
     64044                                <ows:LowerCorner>0.543019 47.2395</ows:LowerCorner>
     64045                                <ows:UpperCorner>0.818399 47.4878</ows:UpperCorner>
     64046                        </ows:WGS84BoundingBox>
     64047                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TOURS-2013-08-02-39820877</ows:Identifier>
     64048                        <Style isDefault="true">
     64049                                <ows:Title>Données Brutes</ows:Title>
     64050                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64051                                <ows:Keywords>
     64052                                        <ows:Keyword>Défaut</ows:Keyword>
     64053                                </ows:Keywords>
     64054                                <ows:Identifier>normal</ows:Identifier>
     64055                                <LegendURL format="image/jpeg" height="200"
     64056                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64057                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64058                        </Style>
     64059                        <Format>image/jpeg</Format>
     64060                        <TileMatrixSetLink>
     64061                                <TileMatrixSet>PM</TileMatrixSet>
     64062                                <TileMatrixSetLimits>
     64063                                        <TileMatrixLimits>
     64064                                                <TileMatrix>0</TileMatrix>
     64065                                                <MinTileRow>0</MinTileRow>
     64066                                                <MaxTileRow>0</MaxTileRow>
     64067                                                <MinTileCol>0</MinTileCol>
     64068                                                <MaxTileCol>0</MaxTileCol>
     64069                                        </TileMatrixLimits>
     64070                                        <TileMatrixLimits>
     64071                                                <TileMatrix>1</TileMatrix>
     64072                                                <MinTileRow>0</MinTileRow>
     64073                                                <MaxTileRow>0</MaxTileRow>
     64074                                                <MinTileCol>1</MinTileCol>
     64075                                                <MaxTileCol>1</MaxTileCol>
     64076                                        </TileMatrixLimits>
     64077                                        <TileMatrixLimits>
     64078                                                <TileMatrix>10</TileMatrix>
     64079                                                <MinTileRow>358</MinTileRow>
     64080                                                <MaxTileRow>359</MaxTileRow>
     64081                                                <MinTileCol>513</MinTileCol>
     64082                                                <MaxTileCol>514</MaxTileCol>
     64083                                        </TileMatrixLimits>
     64084                                        <TileMatrixLimits>
     64085                                                <TileMatrix>11</TileMatrix>
     64086                                                <MinTileRow>716</MinTileRow>
     64087                                                <MaxTileRow>718</MaxTileRow>
     64088                                                <MinTileCol>1027</MinTileCol>
     64089                                                <MaxTileCol>1028</MaxTileCol>
     64090                                        </TileMatrixLimits>
     64091                                        <TileMatrixLimits>
     64092                                                <TileMatrix>12</TileMatrix>
     64093                                                <MinTileRow>1432</MinTileRow>
     64094                                                <MaxTileRow>1436</MaxTileRow>
     64095                                                <MinTileCol>2054</MinTileCol>
     64096                                                <MaxTileCol>2057</MaxTileCol>
     64097                                        </TileMatrixLimits>
     64098                                        <TileMatrixLimits>
     64099                                                <TileMatrix>13</TileMatrix>
     64100                                                <MinTileRow>2865</MinTileRow>
     64101                                                <MaxTileRow>2873</MaxTileRow>
     64102                                                <MinTileCol>4108</MinTileCol>
     64103                                                <MaxTileCol>4114</MaxTileCol>
     64104                                        </TileMatrixLimits>
     64105                                        <TileMatrixLimits>
     64106                                                <TileMatrix>14</TileMatrix>
     64107                                                <MinTileRow>5730</MinTileRow>
     64108                                                <MaxTileRow>5746</MaxTileRow>
     64109                                                <MinTileCol>8216</MinTileCol>
     64110                                                <MaxTileCol>8229</MaxTileCol>
     64111                                        </TileMatrixLimits>
     64112                                        <TileMatrixLimits>
     64113                                                <TileMatrix>15</TileMatrix>
     64114                                                <MinTileRow>11460</MinTileRow>
     64115                                                <MaxTileRow>11492</MaxTileRow>
     64116                                                <MinTileCol>16433</MinTileCol>
     64117                                                <MaxTileCol>16458</MaxTileCol>
     64118                                        </TileMatrixLimits>
     64119                                        <TileMatrixLimits>
     64120                                                <TileMatrix>16</TileMatrix>
     64121                                                <MinTileRow>22920</MinTileRow>
     64122                                                <MaxTileRow>22985</MaxTileRow>
     64123                                                <MinTileCol>32867</MinTileCol>
     64124                                                <MaxTileCol>32916</MaxTileCol>
     64125                                        </TileMatrixLimits>
     64126                                        <TileMatrixLimits>
     64127                                                <TileMatrix>17</TileMatrix>
     64128                                                <MinTileRow>45840</MinTileRow>
     64129                                                <MaxTileRow>45971</MaxTileRow>
     64130                                                <MinTileCol>65734</MinTileCol>
     64131                                                <MaxTileCol>65832</MaxTileCol>
     64132                                        </TileMatrixLimits>
     64133                                        <TileMatrixLimits>
     64134                                                <TileMatrix>18</TileMatrix>
     64135                                                <MinTileRow>91680</MinTileRow>
     64136                                                <MaxTileRow>91942</MaxTileRow>
     64137                                                <MinTileCol>131468</MinTileCol>
     64138                                                <MaxTileCol>131664</MaxTileCol>
     64139                                        </TileMatrixLimits>
     64140                                        <TileMatrixLimits>
     64141                                                <TileMatrix>2</TileMatrix>
     64142                                                <MinTileRow>1</MinTileRow>
     64143                                                <MaxTileRow>1</MaxTileRow>
     64144                                                <MinTileCol>2</MinTileCol>
     64145                                                <MaxTileCol>2</MaxTileCol>
     64146                                        </TileMatrixLimits>
     64147                                        <TileMatrixLimits>
     64148                                                <TileMatrix>3</TileMatrix>
     64149                                                <MinTileRow>2</MinTileRow>
     64150                                                <MaxTileRow>2</MaxTileRow>
     64151                                                <MinTileCol>4</MinTileCol>
     64152                                                <MaxTileCol>4</MaxTileCol>
     64153                                        </TileMatrixLimits>
     64154                                        <TileMatrixLimits>
     64155                                                <TileMatrix>4</TileMatrix>
     64156                                                <MinTileRow>5</MinTileRow>
     64157                                                <MaxTileRow>5</MaxTileRow>
     64158                                                <MinTileCol>8</MinTileCol>
     64159                                                <MaxTileCol>8</MaxTileCol>
     64160                                        </TileMatrixLimits>
     64161                                        <TileMatrixLimits>
     64162                                                <TileMatrix>5</TileMatrix>
     64163                                                <MinTileRow>11</MinTileRow>
     64164                                                <MaxTileRow>11</MaxTileRow>
     64165                                                <MinTileCol>16</MinTileCol>
     64166                                                <MaxTileCol>16</MaxTileCol>
     64167                                        </TileMatrixLimits>
     64168                                        <TileMatrixLimits>
     64169                                                <TileMatrix>6</TileMatrix>
     64170                                                <MinTileRow>22</MinTileRow>
     64171                                                <MaxTileRow>22</MaxTileRow>
     64172                                                <MinTileCol>32</MinTileCol>
     64173                                                <MaxTileCol>32</MaxTileCol>
     64174                                        </TileMatrixLimits>
     64175                                        <TileMatrixLimits>
     64176                                                <TileMatrix>7</TileMatrix>
     64177                                                <MinTileRow>44</MinTileRow>
     64178                                                <MaxTileRow>44</MaxTileRow>
     64179                                                <MinTileCol>64</MinTileCol>
     64180                                                <MaxTileCol>64</MaxTileCol>
     64181                                        </TileMatrixLimits>
     64182                                        <TileMatrixLimits>
     64183                                                <TileMatrix>8</TileMatrix>
     64184                                                <MinTileRow>89</MinTileRow>
     64185                                                <MaxTileRow>89</MaxTileRow>
     64186                                                <MinTileCol>128</MinTileCol>
     64187                                                <MaxTileCol>128</MaxTileCol>
     64188                                        </TileMatrixLimits>
     64189                                        <TileMatrixLimits>
     64190                                                <TileMatrix>9</TileMatrix>
     64191                                                <MinTileRow>179</MinTileRow>
     64192                                                <MaxTileRow>179</MaxTileRow>
     64193                                                <MinTileCol>256</MinTileCol>
     64194                                                <MaxTileCol>257</MaxTileCol>
     64195                                        </TileMatrixLimits>
     64196                                </TileMatrixSetLimits>
     64197                        </TileMatrixSetLink>
     64198                </Layer>
     64199                <Layer>
     64200                        <ows:Title>Orthophotographies Geosud de TROYES 2014</ows:Title>
     64201                        <ows:Abstract>Orthophotographies satellites de TROYES issues du projet Geosud.</ows:Abstract>
     64202                        <ows:Keywords>
     64203                                <ows:Keyword>Photographies</ows:Keyword>
     64204                        </ows:Keywords>
     64205                        <ows:WGS84BoundingBox>
     64206                                <ows:LowerCorner>3.92867 48.195</ows:LowerCorner>
     64207                                <ows:UpperCorner>4.22934 48.3956</ows:UpperCorner>
     64208                        </ows:WGS84BoundingBox>
     64209                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_TROYES-2014-03-13-38890074</ows:Identifier>
     64210                        <Style isDefault="true">
     64211                                <ows:Title>Données Brutes</ows:Title>
     64212                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64213                                <ows:Keywords>
     64214                                        <ows:Keyword>Défaut</ows:Keyword>
     64215                                </ows:Keywords>
     64216                                <ows:Identifier>normal</ows:Identifier>
     64217                                <LegendURL format="image/jpeg" height="200"
     64218                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64219                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64220                        </Style>
     64221                        <Format>image/jpeg</Format>
     64222                        <TileMatrixSetLink>
     64223                                <TileMatrixSet>PM</TileMatrixSet>
     64224                                <TileMatrixSetLimits>
     64225                                        <TileMatrixLimits>
     64226                                                <TileMatrix>0</TileMatrix>
     64227                                                <MinTileRow>0</MinTileRow>
     64228                                                <MaxTileRow>0</MaxTileRow>
     64229                                                <MinTileCol>0</MinTileCol>
     64230                                                <MaxTileCol>0</MaxTileCol>
     64231                                        </TileMatrixLimits>
     64232                                        <TileMatrixLimits>
     64233                                                <TileMatrix>1</TileMatrix>
     64234                                                <MinTileRow>0</MinTileRow>
     64235                                                <MaxTileRow>0</MaxTileRow>
     64236                                                <MinTileCol>1</MinTileCol>
     64237                                                <MaxTileCol>1</MaxTileCol>
     64238                                        </TileMatrixLimits>
     64239                                        <TileMatrixLimits>
     64240                                                <TileMatrix>10</TileMatrix>
     64241                                                <MinTileRow>354</MinTileRow>
     64242                                                <MaxTileRow>355</MaxTileRow>
     64243                                                <MinTileCol>523</MinTileCol>
     64244                                                <MaxTileCol>524</MaxTileCol>
     64245                                        </TileMatrixLimits>
     64246                                        <TileMatrixLimits>
     64247                                                <TileMatrix>11</TileMatrix>
     64248                                                <MinTileRow>708</MinTileRow>
     64249                                                <MaxTileRow>710</MaxTileRow>
     64250                                                <MinTileCol>1046</MinTileCol>
     64251                                                <MaxTileCol>1048</MaxTileCol>
     64252                                        </TileMatrixLimits>
     64253                                        <TileMatrixLimits>
     64254                                                <TileMatrix>12</TileMatrix>
     64255                                                <MinTileRow>1417</MinTileRow>
     64256                                                <MaxTileRow>1420</MaxTileRow>
     64257                                                <MinTileCol>2092</MinTileCol>
     64258                                                <MaxTileCol>2096</MaxTileCol>
     64259                                        </TileMatrixLimits>
     64260                                        <TileMatrixLimits>
     64261                                                <TileMatrix>13</TileMatrix>
     64262                                                <MinTileRow>2834</MinTileRow>
     64263                                                <MaxTileRow>2841</MaxTileRow>
     64264                                                <MinTileCol>4185</MinTileCol>
     64265                                                <MaxTileCol>4192</MaxTileCol>
     64266                                        </TileMatrixLimits>
     64267                                        <TileMatrixLimits>
     64268                                                <TileMatrix>14</TileMatrix>
     64269                                                <MinTileRow>5668</MinTileRow>
     64270                                                <MaxTileRow>5682</MaxTileRow>
     64271                                                <MinTileCol>8370</MinTileCol>
     64272                                                <MaxTileCol>8384</MaxTileCol>
     64273                                        </TileMatrixLimits>
     64274                                        <TileMatrixLimits>
     64275                                                <TileMatrix>15</TileMatrix>
     64276                                                <MinTileRow>11336</MinTileRow>
     64277                                                <MaxTileRow>11364</MaxTileRow>
     64278                                                <MinTileCol>16741</MinTileCol>
     64279                                                <MaxTileCol>16768</MaxTileCol>
     64280                                        </TileMatrixLimits>
     64281                                        <TileMatrixLimits>
     64282                                                <TileMatrix>16</TileMatrix>
     64283                                                <MinTileRow>22673</MinTileRow>
     64284                                                <MaxTileRow>22728</MaxTileRow>
     64285                                                <MinTileCol>33483</MinTileCol>
     64286                                                <MaxTileCol>33537</MaxTileCol>
     64287                                        </TileMatrixLimits>
     64288                                        <TileMatrixLimits>
     64289                                                <TileMatrix>17</TileMatrix>
     64290                                                <MinTileRow>45346</MinTileRow>
     64291                                                <MaxTileRow>45456</MaxTileRow>
     64292                                                <MinTileCol>66966</MinTileCol>
     64293                                                <MaxTileCol>67074</MaxTileCol>
     64294                                        </TileMatrixLimits>
     64295                                        <TileMatrixLimits>
     64296                                                <TileMatrix>18</TileMatrix>
     64297                                                <MinTileRow>90692</MinTileRow>
     64298                                                <MaxTileRow>90912</MaxTileRow>
     64299                                                <MinTileCol>133932</MinTileCol>
     64300                                                <MaxTileCol>134149</MaxTileCol>
     64301                                        </TileMatrixLimits>
     64302                                        <TileMatrixLimits>
     64303                                                <TileMatrix>2</TileMatrix>
     64304                                                <MinTileRow>1</MinTileRow>
     64305                                                <MaxTileRow>1</MaxTileRow>
     64306                                                <MinTileCol>2</MinTileCol>
     64307                                                <MaxTileCol>2</MaxTileCol>
     64308                                        </TileMatrixLimits>
     64309                                        <TileMatrixLimits>
     64310                                                <TileMatrix>3</TileMatrix>
     64311                                                <MinTileRow>2</MinTileRow>
     64312                                                <MaxTileRow>2</MaxTileRow>
     64313                                                <MinTileCol>4</MinTileCol>
     64314                                                <MaxTileCol>4</MaxTileCol>
     64315                                        </TileMatrixLimits>
     64316                                        <TileMatrixLimits>
     64317                                                <TileMatrix>4</TileMatrix>
     64318                                                <MinTileRow>5</MinTileRow>
     64319                                                <MaxTileRow>5</MaxTileRow>
     64320                                                <MinTileCol>8</MinTileCol>
     64321                                                <MaxTileCol>8</MaxTileCol>
     64322                                        </TileMatrixLimits>
     64323                                        <TileMatrixLimits>
     64324                                                <TileMatrix>5</TileMatrix>
     64325                                                <MinTileRow>11</MinTileRow>
     64326                                                <MaxTileRow>11</MaxTileRow>
     64327                                                <MinTileCol>16</MinTileCol>
     64328                                                <MaxTileCol>16</MaxTileCol>
     64329                                        </TileMatrixLimits>
     64330                                        <TileMatrixLimits>
     64331                                                <TileMatrix>6</TileMatrix>
     64332                                                <MinTileRow>22</MinTileRow>
     64333                                                <MaxTileRow>22</MaxTileRow>
     64334                                                <MinTileCol>32</MinTileCol>
     64335                                                <MaxTileCol>32</MaxTileCol>
     64336                                        </TileMatrixLimits>
     64337                                        <TileMatrixLimits>
     64338                                                <TileMatrix>7</TileMatrix>
     64339                                                <MinTileRow>44</MinTileRow>
     64340                                                <MaxTileRow>44</MaxTileRow>
     64341                                                <MinTileCol>65</MinTileCol>
     64342                                                <MaxTileCol>65</MaxTileCol>
     64343                                        </TileMatrixLimits>
     64344                                        <TileMatrixLimits>
     64345                                                <TileMatrix>8</TileMatrix>
     64346                                                <MinTileRow>88</MinTileRow>
     64347                                                <MaxTileRow>88</MaxTileRow>
     64348                                                <MinTileCol>130</MinTileCol>
     64349                                                <MaxTileCol>131</MaxTileCol>
     64350                                        </TileMatrixLimits>
     64351                                        <TileMatrixLimits>
     64352                                                <TileMatrix>9</TileMatrix>
     64353                                                <MinTileRow>177</MinTileRow>
     64354                                                <MaxTileRow>177</MaxTileRow>
     64355                                                <MinTileCol>261</MinTileCol>
     64356                                                <MaxTileCol>262</MaxTileCol>
     64357                                        </TileMatrixLimits>
     64358                                </TileMatrixSetLimits>
     64359                        </TileMatrixSetLink>
     64360                </Layer>
     64361                <Layer>
     64362                        <ows:Title>Orthophotographies Geosud de URGENCE-SERTIT1-MONTPELLIER 2014</ows:Title>
     64363                        <ows:Abstract>Orthophotographies satellites de URGENCE-SERTIT1-MONTPELLIER issues du projet Geosud.</ows:Abstract>
     64364                        <ows:Keywords>
     64365                                <ows:Keyword>Photographies</ows:Keyword>
     64366                        </ows:Keywords>
     64367                        <ows:WGS84BoundingBox>
     64368                                <ows:LowerCorner>3.8452 43.8201</ows:LowerCorner>
     64369                                <ows:UpperCorner>4.13498 44.0207</ows:UpperCorner>
     64370                        </ows:WGS84BoundingBox>
     64371                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_URGENCE-SERTIT1-2014-09-06-38295824</ows:Identifier>
     64372                        <Style isDefault="true">
     64373                                <ows:Title>Données Brutes</ows:Title>
     64374                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64375                                <ows:Keywords>
     64376                                        <ows:Keyword>Défaut</ows:Keyword>
     64377                                </ows:Keywords>
     64378                                <ows:Identifier>normal</ows:Identifier>
     64379                                <LegendURL format="image/jpeg" height="200"
     64380                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64381                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64382                        </Style>
     64383                        <Format>image/jpeg</Format>
     64384                        <TileMatrixSetLink>
     64385                                <TileMatrixSet>PM</TileMatrixSet>
     64386                                <TileMatrixSetLimits>
     64387                                        <TileMatrixLimits>
     64388                                                <TileMatrix>0</TileMatrix>
     64389                                                <MinTileRow>0</MinTileRow>
     64390                                                <MaxTileRow>0</MaxTileRow>
     64391                                                <MinTileCol>0</MinTileCol>
     64392                                                <MaxTileCol>0</MaxTileCol>
     64393                                        </TileMatrixLimits>
     64394                                        <TileMatrixLimits>
     64395                                                <TileMatrix>1</TileMatrix>
     64396                                                <MinTileRow>0</MinTileRow>
     64397                                                <MaxTileRow>0</MaxTileRow>
     64398                                                <MinTileCol>1</MinTileCol>
     64399                                                <MaxTileCol>1</MaxTileCol>
     64400                                        </TileMatrixLimits>
     64401                                        <TileMatrixLimits>
     64402                                                <TileMatrix>10</TileMatrix>
     64403                                                <MinTileRow>372</MinTileRow>
     64404                                                <MaxTileRow>373</MaxTileRow>
     64405                                                <MinTileCol>522</MinTileCol>
     64406                                                <MaxTileCol>523</MaxTileCol>
     64407                                        </TileMatrixLimits>
     64408                                        <TileMatrixLimits>
     64409                                                <TileMatrix>11</TileMatrix>
     64410                                                <MinTileRow>744</MinTileRow>
     64411                                                <MaxTileRow>746</MaxTileRow>
     64412                                                <MinTileCol>1045</MinTileCol>
     64413                                                <MaxTileCol>1047</MaxTileCol>
     64414                                        </TileMatrixLimits>
     64415                                        <TileMatrixLimits>
     64416                                                <TileMatrix>12</TileMatrix>
     64417                                                <MinTileRow>1489</MinTileRow>
     64418                                                <MaxTileRow>1492</MaxTileRow>
     64419                                                <MinTileCol>2091</MinTileCol>
     64420                                                <MaxTileCol>2095</MaxTileCol>
     64421                                        </TileMatrixLimits>
     64422                                        <TileMatrixLimits>
     64423                                                <TileMatrix>13</TileMatrix>
     64424                                                <MinTileRow>2978</MinTileRow>
     64425                                                <MaxTileRow>2984</MaxTileRow>
     64426                                                <MinTileCol>4183</MinTileCol>
     64427                                                <MaxTileCol>4190</MaxTileCol>
     64428                                        </TileMatrixLimits>
     64429                                        <TileMatrixLimits>
     64430                                                <TileMatrix>14</TileMatrix>
     64431                                                <MinTileRow>5956</MinTileRow>
     64432                                                <MaxTileRow>5968</MaxTileRow>
     64433                                                <MinTileCol>8366</MinTileCol>
     64434                                                <MaxTileCol>8380</MaxTileCol>
     64435                                        </TileMatrixLimits>
     64436                                        <TileMatrixLimits>
     64437                                                <TileMatrix>15</TileMatrix>
     64438                                                <MinTileRow>11912</MinTileRow>
     64439                                                <MaxTileRow>11937</MaxTileRow>
     64440                                                <MinTileCol>16733</MinTileCol>
     64441                                                <MaxTileCol>16760</MaxTileCol>
     64442                                        </TileMatrixLimits>
     64443                                        <TileMatrixLimits>
     64444                                                <TileMatrix>16</TileMatrix>
     64445                                                <MinTileRow>23824</MinTileRow>
     64446                                                <MaxTileRow>23875</MaxTileRow>
     64447                                                <MinTileCol>33467</MinTileCol>
     64448                                                <MaxTileCol>33520</MaxTileCol>
     64449                                        </TileMatrixLimits>
     64450                                        <TileMatrixLimits>
     64451                                                <TileMatrix>17</TileMatrix>
     64452                                                <MinTileRow>47649</MinTileRow>
     64453                                                <MaxTileRow>47751</MaxTileRow>
     64454                                                <MinTileCol>66935</MinTileCol>
     64455                                                <MaxTileCol>67041</MaxTileCol>
     64456                                        </TileMatrixLimits>
     64457                                        <TileMatrixLimits>
     64458                                                <TileMatrix>18</TileMatrix>
     64459                                                <MinTileRow>95299</MinTileRow>
     64460                                                <MaxTileRow>95502</MaxTileRow>
     64461                                                <MinTileCol>133871</MinTileCol>
     64462                                                <MaxTileCol>134082</MaxTileCol>
     64463                                        </TileMatrixLimits>
     64464                                        <TileMatrixLimits>
     64465                                                <TileMatrix>2</TileMatrix>
     64466                                                <MinTileRow>1</MinTileRow>
     64467                                                <MaxTileRow>1</MaxTileRow>
     64468                                                <MinTileCol>2</MinTileCol>
     64469                                                <MaxTileCol>2</MaxTileCol>
     64470                                        </TileMatrixLimits>
     64471                                        <TileMatrixLimits>
     64472                                                <TileMatrix>3</TileMatrix>
     64473                                                <MinTileRow>2</MinTileRow>
     64474                                                <MaxTileRow>2</MaxTileRow>
     64475                                                <MinTileCol>4</MinTileCol>
     64476                                                <MaxTileCol>4</MaxTileCol>
     64477                                        </TileMatrixLimits>
     64478                                        <TileMatrixLimits>
     64479                                                <TileMatrix>4</TileMatrix>
     64480                                                <MinTileRow>5</MinTileRow>
     64481                                                <MaxTileRow>5</MaxTileRow>
     64482                                                <MinTileCol>8</MinTileCol>
     64483                                                <MaxTileCol>8</MaxTileCol>
     64484                                        </TileMatrixLimits>
     64485                                        <TileMatrixLimits>
     64486                                                <TileMatrix>5</TileMatrix>
     64487                                                <MinTileRow>11</MinTileRow>
     64488                                                <MaxTileRow>11</MaxTileRow>
     64489                                                <MinTileCol>16</MinTileCol>
     64490                                                <MaxTileCol>16</MaxTileCol>
     64491                                        </TileMatrixLimits>
     64492                                        <TileMatrixLimits>
     64493                                                <TileMatrix>6</TileMatrix>
     64494                                                <MinTileRow>23</MinTileRow>
     64495                                                <MaxTileRow>23</MaxTileRow>
     64496                                                <MinTileCol>32</MinTileCol>
     64497                                                <MaxTileCol>32</MaxTileCol>
     64498                                        </TileMatrixLimits>
     64499                                        <TileMatrixLimits>
     64500                                                <TileMatrix>7</TileMatrix>
     64501                                                <MinTileRow>46</MinTileRow>
     64502                                                <MaxTileRow>46</MaxTileRow>
     64503                                                <MinTileCol>65</MinTileCol>
     64504                                                <MaxTileCol>65</MaxTileCol>
     64505                                        </TileMatrixLimits>
     64506                                        <TileMatrixLimits>
     64507                                                <TileMatrix>8</TileMatrix>
     64508                                                <MinTileRow>93</MinTileRow>
     64509                                                <MaxTileRow>93</MaxTileRow>
     64510                                                <MinTileCol>130</MinTileCol>
     64511                                                <MaxTileCol>130</MaxTileCol>
     64512                                        </TileMatrixLimits>
     64513                                        <TileMatrixLimits>
     64514                                                <TileMatrix>9</TileMatrix>
     64515                                                <MinTileRow>186</MinTileRow>
     64516                                                <MaxTileRow>186</MaxTileRow>
     64517                                                <MinTileCol>261</MinTileCol>
     64518                                                <MaxTileCol>261</MaxTileCol>
     64519                                        </TileMatrixLimits>
     64520                                </TileMatrixSetLimits>
     64521                        </TileMatrixSetLink>
     64522                </Layer>
     64523                <Layer>
     64524                        <ows:Title>Orthophotographies Geosud de URGENCE-SERTIT2-MONTPELLIER 2014</ows:Title>
     64525                        <ows:Abstract>Orthophotographies satellites de URGENCE-SERTIT2-MONTPELLIER issues du projet Geosud.</ows:Abstract>
     64526                        <ows:Keywords>
     64527                                <ows:Keyword>Photographies</ows:Keyword>
     64528                        </ows:Keywords>
     64529                        <ows:WGS84BoundingBox>
     64530                                <ows:LowerCorner>3.79113 43.5059</ows:LowerCorner>
     64531                                <ows:UpperCorner>4.06673 43.7061</ows:UpperCorner>
     64532                        </ows:WGS84BoundingBox>
     64533                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_URGENCE-SERTIT2-MONTPELLIER-2014-10-01-38767194</ows:Identifier>
     64534                        <Style isDefault="true">
     64535                                <ows:Title>Données Brutes</ows:Title>
     64536                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64537                                <ows:Keywords>
     64538                                        <ows:Keyword>Défaut</ows:Keyword>
     64539                                </ows:Keywords>
     64540                                <ows:Identifier>normal</ows:Identifier>
     64541                                <LegendURL format="image/jpeg" height="200"
     64542                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64543                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64544                        </Style>
     64545                        <Format>image/jpeg</Format>
     64546                        <TileMatrixSetLink>
     64547                                <TileMatrixSet>PM</TileMatrixSet>
     64548                                <TileMatrixSetLimits>
     64549                                        <TileMatrixLimits>
     64550                                                <TileMatrix>0</TileMatrix>
     64551                                                <MinTileRow>0</MinTileRow>
     64552                                                <MaxTileRow>0</MaxTileRow>
     64553                                                <MinTileCol>0</MinTileCol>
     64554                                                <MaxTileCol>0</MaxTileCol>
     64555                                        </TileMatrixLimits>
     64556                                        <TileMatrixLimits>
     64557                                                <TileMatrix>1</TileMatrix>
     64558                                                <MinTileRow>0</MinTileRow>
     64559                                                <MaxTileRow>0</MaxTileRow>
     64560                                                <MinTileCol>1</MinTileCol>
     64561                                                <MaxTileCol>1</MaxTileCol>
     64562                                        </TileMatrixLimits>
     64563                                        <TileMatrixLimits>
     64564                                                <TileMatrix>10</TileMatrix>
     64565                                                <MinTileRow>373</MinTileRow>
     64566                                                <MaxTileRow>374</MaxTileRow>
     64567                                                <MinTileCol>522</MinTileCol>
     64568                                                <MaxTileCol>523</MaxTileCol>
     64569                                        </TileMatrixLimits>
     64570                                        <TileMatrixLimits>
     64571                                                <TileMatrix>11</TileMatrix>
     64572                                                <MinTileRow>747</MinTileRow>
     64573                                                <MaxTileRow>748</MaxTileRow>
     64574                                                <MinTileCol>1045</MinTileCol>
     64575                                                <MaxTileCol>1047</MaxTileCol>
     64576                                        </TileMatrixLimits>
     64577                                        <TileMatrixLimits>
     64578                                                <TileMatrix>12</TileMatrix>
     64579                                                <MinTileRow>1494</MinTileRow>
     64580                                                <MaxTileRow>1497</MaxTileRow>
     64581                                                <MinTileCol>2091</MinTileCol>
     64582                                                <MaxTileCol>2094</MaxTileCol>
     64583                                        </TileMatrixLimits>
     64584                                        <TileMatrixLimits>
     64585                                                <TileMatrix>13</TileMatrix>
     64586                                                <MinTileRow>2988</MinTileRow>
     64587                                                <MaxTileRow>2994</MaxTileRow>
     64588                                                <MinTileCol>4182</MinTileCol>
     64589                                                <MaxTileCol>4188</MaxTileCol>
     64590                                        </TileMatrixLimits>
     64591                                        <TileMatrixLimits>
     64592                                                <TileMatrix>14</TileMatrix>
     64593                                                <MinTileRow>5976</MinTileRow>
     64594                                                <MaxTileRow>5988</MaxTileRow>
     64595                                                <MinTileCol>8364</MinTileCol>
     64596                                                <MaxTileCol>8377</MaxTileCol>
     64597                                        </TileMatrixLimits>
     64598                                        <TileMatrixLimits>
     64599                                                <TileMatrix>15</TileMatrix>
     64600                                                <MinTileRow>11952</MinTileRow>
     64601                                                <MaxTileRow>11977</MaxTileRow>
     64602                                                <MinTileCol>16729</MinTileCol>
     64603                                                <MaxTileCol>16754</MaxTileCol>
     64604                                        </TileMatrixLimits>
     64605                                        <TileMatrixLimits>
     64606                                                <TileMatrix>16</TileMatrix>
     64607                                                <MinTileRow>23904</MinTileRow>
     64608                                                <MaxTileRow>23954</MaxTileRow>
     64609                                                <MinTileCol>33458</MinTileCol>
     64610                                                <MaxTileCol>33508</MaxTileCol>
     64611                                        </TileMatrixLimits>
     64612                                        <TileMatrixLimits>
     64613                                                <TileMatrix>17</TileMatrix>
     64614                                                <MinTileRow>47809</MinTileRow>
     64615                                                <MaxTileRow>47908</MaxTileRow>
     64616                                                <MinTileCol>66916</MinTileCol>
     64617                                                <MaxTileCol>67016</MaxTileCol>
     64618                                        </TileMatrixLimits>
     64619                                        <TileMatrixLimits>
     64620                                                <TileMatrix>18</TileMatrix>
     64621                                                <MinTileRow>95619</MinTileRow>
     64622                                                <MaxTileRow>95817</MaxTileRow>
     64623                                                <MinTileCol>133832</MinTileCol>
     64624                                                <MaxTileCol>134033</MaxTileCol>
     64625                                        </TileMatrixLimits>
     64626                                        <TileMatrixLimits>
     64627                                                <TileMatrix>2</TileMatrix>
     64628                                                <MinTileRow>1</MinTileRow>
     64629                                                <MaxTileRow>1</MaxTileRow>
     64630                                                <MinTileCol>2</MinTileCol>
     64631                                                <MaxTileCol>2</MaxTileCol>
     64632                                        </TileMatrixLimits>
     64633                                        <TileMatrixLimits>
     64634                                                <TileMatrix>3</TileMatrix>
     64635                                                <MinTileRow>2</MinTileRow>
     64636                                                <MaxTileRow>2</MaxTileRow>
     64637                                                <MinTileCol>4</MinTileCol>
     64638                                                <MaxTileCol>4</MaxTileCol>
     64639                                        </TileMatrixLimits>
     64640                                        <TileMatrixLimits>
     64641                                                <TileMatrix>4</TileMatrix>
     64642                                                <MinTileRow>5</MinTileRow>
     64643                                                <MaxTileRow>5</MaxTileRow>
     64644                                                <MinTileCol>8</MinTileCol>
     64645                                                <MaxTileCol>8</MaxTileCol>
     64646                                        </TileMatrixLimits>
     64647                                        <TileMatrixLimits>
     64648                                                <TileMatrix>5</TileMatrix>
     64649                                                <MinTileRow>11</MinTileRow>
     64650                                                <MaxTileRow>11</MaxTileRow>
     64651                                                <MinTileCol>16</MinTileCol>
     64652                                                <MaxTileCol>16</MaxTileCol>
     64653                                        </TileMatrixLimits>
     64654                                        <TileMatrixLimits>
     64655                                                <TileMatrix>6</TileMatrix>
     64656                                                <MinTileRow>23</MinTileRow>
     64657                                                <MaxTileRow>23</MaxTileRow>
     64658                                                <MinTileCol>32</MinTileCol>
     64659                                                <MaxTileCol>32</MaxTileCol>
     64660                                        </TileMatrixLimits>
     64661                                        <TileMatrixLimits>
     64662                                                <TileMatrix>7</TileMatrix>
     64663                                                <MinTileRow>46</MinTileRow>
     64664                                                <MaxTileRow>46</MaxTileRow>
     64665                                                <MinTileCol>65</MinTileCol>
     64666                                                <MaxTileCol>65</MaxTileCol>
     64667                                        </TileMatrixLimits>
     64668                                        <TileMatrixLimits>
     64669                                                <TileMatrix>8</TileMatrix>
     64670                                                <MinTileRow>93</MinTileRow>
     64671                                                <MaxTileRow>93</MaxTileRow>
     64672                                                <MinTileCol>130</MinTileCol>
     64673                                                <MaxTileCol>130</MaxTileCol>
     64674                                        </TileMatrixLimits>
     64675                                        <TileMatrixLimits>
     64676                                                <TileMatrix>9</TileMatrix>
     64677                                                <MinTileRow>186</MinTileRow>
     64678                                                <MaxTileRow>187</MaxTileRow>
     64679                                                <MinTileCol>261</MinTileCol>
     64680                                                <MaxTileCol>261</MaxTileCol>
     64681                                        </TileMatrixLimits>
     64682                                </TileMatrixSetLimits>
     64683                        </TileMatrixSetLink>
     64684                </Layer>
     64685                <Layer>
     64686                        <ows:Title>Orthophotographies Geosud de VALENCE-VILLE</ows:Title>
     64687                        <ows:Abstract>Orthophotographies satellites de VALENCE-VILLE issues du projet Geosud.</ows:Abstract>
     64688                        <ows:Keywords>
     64689                                <ows:Keyword>Photographies</ows:Keyword>
     64690                        </ows:Keywords>
     64691                        <ows:WGS84BoundingBox>
     64692                                <ows:LowerCorner>4.84523 44.7605</ows:LowerCorner>
     64693                                <ows:UpperCorner>5.09397 44.9988</ows:UpperCorner>
     64694                        </ows:WGS84BoundingBox>
     64695                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VALENCE-VILLE-2013-07-22-39000453</ows:Identifier>
     64696                        <Style isDefault="true">
     64697                                <ows:Title>Données Brutes</ows:Title>
     64698                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64699                                <ows:Keywords>
     64700                                        <ows:Keyword>Défaut</ows:Keyword>
     64701                                </ows:Keywords>
     64702                                <ows:Identifier>normal</ows:Identifier>
     64703                                <LegendURL format="image/jpeg" height="200"
     64704                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64705                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64706                        </Style>
     64707                        <Format>image/jpeg</Format>
     64708                        <TileMatrixSetLink>
     64709                                <TileMatrixSet>PM</TileMatrixSet>
     64710                                <TileMatrixSetLimits>
     64711                                        <TileMatrixLimits>
     64712                                                <TileMatrix>0</TileMatrix>
     64713                                                <MinTileRow>0</MinTileRow>
     64714                                                <MaxTileRow>0</MaxTileRow>
     64715                                                <MinTileCol>0</MinTileCol>
     64716                                                <MaxTileCol>0</MaxTileCol>
     64717                                        </TileMatrixLimits>
     64718                                        <TileMatrixLimits>
     64719                                                <TileMatrix>1</TileMatrix>
     64720                                                <MinTileRow>0</MinTileRow>
     64721                                                <MaxTileRow>0</MaxTileRow>
     64722                                                <MinTileCol>1</MinTileCol>
     64723                                                <MaxTileCol>1</MaxTileCol>
     64724                                        </TileMatrixLimits>
     64725                                        <TileMatrixLimits>
     64726                                                <TileMatrix>10</TileMatrix>
     64727                                                <MinTileRow>368</MinTileRow>
     64728                                                <MaxTileRow>369</MaxTileRow>
     64729                                                <MinTileCol>525</MinTileCol>
     64730                                                <MaxTileCol>526</MaxTileCol>
     64731                                        </TileMatrixLimits>
     64732                                        <TileMatrixLimits>
     64733                                                <TileMatrix>11</TileMatrix>
     64734                                                <MinTileRow>736</MinTileRow>
     64735                                                <MaxTileRow>738</MaxTileRow>
     64736                                                <MinTileCol>1051</MinTileCol>
     64737                                                <MaxTileCol>1052</MaxTileCol>
     64738                                        </TileMatrixLimits>
     64739                                        <TileMatrixLimits>
     64740                                                <TileMatrix>12</TileMatrix>
     64741                                                <MinTileRow>1473</MinTileRow>
     64742                                                <MaxTileRow>1477</MaxTileRow>
     64743                                                <MinTileCol>2103</MinTileCol>
     64744                                                <MaxTileCol>2105</MaxTileCol>
     64745                                        </TileMatrixLimits>
     64746                                        <TileMatrixLimits>
     64747                                                <TileMatrix>13</TileMatrix>
     64748                                                <MinTileRow>2946</MinTileRow>
     64749                                                <MaxTileRow>2954</MaxTileRow>
     64750                                                <MinTileCol>4206</MinTileCol>
     64751                                                <MaxTileCol>4211</MaxTileCol>
     64752                                        </TileMatrixLimits>
     64753                                        <TileMatrixLimits>
     64754                                                <TileMatrix>14</TileMatrix>
     64755                                                <MinTileRow>5893</MinTileRow>
     64756                                                <MaxTileRow>5908</MaxTileRow>
     64757                                                <MinTileCol>8412</MinTileCol>
     64758                                                <MaxTileCol>8423</MaxTileCol>
     64759                                        </TileMatrixLimits>
     64760                                        <TileMatrixLimits>
     64761                                                <TileMatrix>15</TileMatrix>
     64762                                                <MinTileRow>11787</MinTileRow>
     64763                                                <MaxTileRow>11817</MaxTileRow>
     64764                                                <MinTileCol>16825</MinTileCol>
     64765                                                <MaxTileCol>16847</MaxTileCol>
     64766                                        </TileMatrixLimits>
     64767                                        <TileMatrixLimits>
     64768                                                <TileMatrix>16</TileMatrix>
     64769                                                <MinTileRow>23575</MinTileRow>
     64770                                                <MaxTileRow>23635</MaxTileRow>
     64771                                                <MinTileCol>33650</MinTileCol>
     64772                                                <MaxTileCol>33694</MaxTileCol>
     64773                                        </TileMatrixLimits>
     64774                                        <TileMatrixLimits>
     64775                                                <TileMatrix>17</TileMatrix>
     64776                                                <MinTileRow>47150</MinTileRow>
     64777                                                <MaxTileRow>47271</MaxTileRow>
     64778                                                <MinTileCol>67301</MinTileCol>
     64779                                                <MaxTileCol>67388</MaxTileCol>
     64780                                        </TileMatrixLimits>
     64781                                        <TileMatrixLimits>
     64782                                                <TileMatrix>18</TileMatrix>
     64783                                                <MinTileRow>94301</MinTileRow>
     64784                                                <MaxTileRow>94543</MaxTileRow>
     64785                                                <MinTileCol>134602</MinTileCol>
     64786                                                <MaxTileCol>134777</MaxTileCol>
     64787                                        </TileMatrixLimits>
     64788                                        <TileMatrixLimits>
     64789                                                <TileMatrix>2</TileMatrix>
     64790                                                <MinTileRow>1</MinTileRow>
     64791                                                <MaxTileRow>1</MaxTileRow>
     64792                                                <MinTileCol>2</MinTileCol>
     64793                                                <MaxTileCol>2</MaxTileCol>
     64794                                        </TileMatrixLimits>
     64795                                        <TileMatrixLimits>
     64796                                                <TileMatrix>3</TileMatrix>
     64797                                                <MinTileRow>2</MinTileRow>
     64798                                                <MaxTileRow>2</MaxTileRow>
     64799                                                <MinTileCol>4</MinTileCol>
     64800                                                <MaxTileCol>4</MaxTileCol>
     64801                                        </TileMatrixLimits>
     64802                                        <TileMatrixLimits>
     64803                                                <TileMatrix>4</TileMatrix>
     64804                                                <MinTileRow>5</MinTileRow>
     64805                                                <MaxTileRow>5</MaxTileRow>
     64806                                                <MinTileCol>8</MinTileCol>
     64807                                                <MaxTileCol>8</MaxTileCol>
     64808                                        </TileMatrixLimits>
     64809                                        <TileMatrixLimits>
     64810                                                <TileMatrix>5</TileMatrix>
     64811                                                <MinTileRow>11</MinTileRow>
     64812                                                <MaxTileRow>11</MaxTileRow>
     64813                                                <MinTileCol>16</MinTileCol>
     64814                                                <MaxTileCol>16</MaxTileCol>
     64815                                        </TileMatrixLimits>
     64816                                        <TileMatrixLimits>
     64817                                                <TileMatrix>6</TileMatrix>
     64818                                                <MinTileRow>23</MinTileRow>
     64819                                                <MaxTileRow>23</MaxTileRow>
     64820                                                <MinTileCol>32</MinTileCol>
     64821                                                <MaxTileCol>32</MaxTileCol>
     64822                                        </TileMatrixLimits>
     64823                                        <TileMatrixLimits>
     64824                                                <TileMatrix>7</TileMatrix>
     64825                                                <MinTileRow>46</MinTileRow>
     64826                                                <MaxTileRow>46</MaxTileRow>
     64827                                                <MinTileCol>65</MinTileCol>
     64828                                                <MaxTileCol>65</MaxTileCol>
     64829                                        </TileMatrixLimits>
     64830                                        <TileMatrixLimits>
     64831                                                <TileMatrix>8</TileMatrix>
     64832                                                <MinTileRow>92</MinTileRow>
     64833                                                <MaxTileRow>92</MaxTileRow>
     64834                                                <MinTileCol>131</MinTileCol>
     64835                                                <MaxTileCol>131</MaxTileCol>
     64836                                        </TileMatrixLimits>
     64837                                        <TileMatrixLimits>
     64838                                                <TileMatrix>9</TileMatrix>
     64839                                                <MinTileRow>184</MinTileRow>
     64840                                                <MaxTileRow>184</MaxTileRow>
     64841                                                <MinTileCol>262</MinTileCol>
     64842                                                <MaxTileCol>263</MaxTileCol>
     64843                                        </TileMatrixLimits>
     64844                                </TileMatrixSetLimits>
     64845                        </TileMatrixSetLink>
     64846                </Layer>
     64847                <Layer>
     64848                        <ows:Title>Orthophotographies Geosud de VALENCIENNES 2014</ows:Title>
     64849                        <ows:Abstract>Orthophotographies satellites de VALENCIENNES issues du projet Geosud.</ows:Abstract>
     64850                        <ows:Keywords>
     64851                                <ows:Keyword>Photographies</ows:Keyword>
     64852                        </ows:Keywords>
     64853                        <ows:WGS84BoundingBox>
     64854                                <ows:LowerCorner>3.35016 50.2583</ows:LowerCorner>
     64855                                <ows:UpperCorner>3.6468 50.457</ows:UpperCorner>
     64856                        </ows:WGS84BoundingBox>
     64857                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VALENCIENNES-2014-03-12-39290819</ows:Identifier>
     64858                        <Style isDefault="true">
     64859                                <ows:Title>Données Brutes</ows:Title>
     64860                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     64861                                <ows:Keywords>
     64862                                        <ows:Keyword>Défaut</ows:Keyword>
     64863                                </ows:Keywords>
     64864                                <ows:Identifier>normal</ows:Identifier>
     64865                                <LegendURL format="image/jpeg" height="200"
     64866                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     64867                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     64868                        </Style>
     64869                        <Format>image/jpeg</Format>
     64870                        <TileMatrixSetLink>
     64871                                <TileMatrixSet>PM</TileMatrixSet>
     64872                                <TileMatrixSetLimits>
     64873                                        <TileMatrixLimits>
     64874                                                <TileMatrix>0</TileMatrix>
     64875                                                <MinTileRow>0</MinTileRow>
     64876                                                <MaxTileRow>0</MaxTileRow>
     64877                                                <MinTileCol>0</MinTileCol>
     64878                                                <MaxTileCol>0</MaxTileCol>
     64879                                        </TileMatrixLimits>
     64880                                        <TileMatrixLimits>
     64881                                                <TileMatrix>1</TileMatrix>
     64882                                                <MinTileRow>0</MinTileRow>
     64883                                                <MaxTileRow>0</MaxTileRow>
     64884                                                <MinTileCol>1</MinTileCol>
     64885                                                <MaxTileCol>1</MaxTileCol>
     64886                                        </TileMatrixLimits>
     64887                                        <TileMatrixLimits>
     64888                                                <TileMatrix>10</TileMatrix>
     64889                                                <MinTileRow>345</MinTileRow>
     64890                                                <MaxTileRow>346</MaxTileRow>
     64891                                                <MinTileCol>521</MinTileCol>
     64892                                                <MaxTileCol>522</MaxTileCol>
     64893                                        </TileMatrixLimits>
     64894                                        <TileMatrixLimits>
     64895                                                <TileMatrix>11</TileMatrix>
     64896                                                <MinTileRow>690</MinTileRow>
     64897                                                <MaxTileRow>692</MaxTileRow>
     64898                                                <MinTileCol>1043</MinTileCol>
     64899                                                <MaxTileCol>1044</MaxTileCol>
     64900                                        </TileMatrixLimits>
     64901                                        <TileMatrixLimits>
     64902                                                <TileMatrix>12</TileMatrix>
     64903                                                <MinTileRow>1381</MinTileRow>
     64904                                                <MaxTileRow>1384</MaxTileRow>
     64905                                                <MinTileCol>2086</MinTileCol>
     64906                                                <MaxTileCol>2089</MaxTileCol>
     64907                                        </TileMatrixLimits>
     64908                                        <TileMatrixLimits>
     64909                                                <TileMatrix>13</TileMatrix>
     64910                                                <MinTileRow>2762</MinTileRow>
     64911                                                <MaxTileRow>2769</MaxTileRow>
     64912                                                <MinTileCol>4172</MinTileCol>
     64913                                                <MaxTileCol>4178</MaxTileCol>
     64914                                        </TileMatrixLimits>
     64915                                        <TileMatrixLimits>
     64916                                                <TileMatrix>14</TileMatrix>
     64917                                                <MinTileRow>5524</MinTileRow>
     64918                                                <MaxTileRow>5538</MaxTileRow>
     64919                                                <MinTileCol>8344</MinTileCol>
     64920                                                <MaxTileCol>8357</MaxTileCol>
     64921                                        </TileMatrixLimits>
     64922                                        <TileMatrixLimits>
     64923                                                <TileMatrix>15</TileMatrix>
     64924                                                <MinTileRow>11048</MinTileRow>
     64925                                                <MaxTileRow>11076</MaxTileRow>
     64926                                                <MinTileCol>16688</MinTileCol>
     64927                                                <MaxTileCol>16715</MaxTileCol>
     64928                                        </TileMatrixLimits>
     64929                                        <TileMatrixLimits>
     64930                                                <TileMatrix>16</TileMatrix>
     64931                                                <MinTileRow>22096</MinTileRow>
     64932                                                <MaxTileRow>22152</MaxTileRow>
     64933                                                <MinTileCol>33377</MinTileCol>
     64934                                                <MaxTileCol>33431</MaxTileCol>
     64935                                        </TileMatrixLimits>
     64936                                        <TileMatrixLimits>
     64937                                                <TileMatrix>17</TileMatrix>
     64938                                                <MinTileRow>44192</MinTileRow>
     64939                                                <MaxTileRow>44305</MaxTileRow>
     64940                                                <MinTileCol>66755</MinTileCol>
     64941                                                <MaxTileCol>66863</MaxTileCol>
     64942                                        </TileMatrixLimits>
     64943                                        <TileMatrixLimits>
     64944                                                <TileMatrix>18</TileMatrix>
     64945                                                <MinTileRow>88384</MinTileRow>
     64946                                                <MaxTileRow>88611</MaxTileRow>
     64947                                                <MinTileCol>133511</MinTileCol>
     64948                                                <MaxTileCol>133727</MaxTileCol>
     64949                                        </TileMatrixLimits>
     64950                                        <TileMatrixLimits>
     64951                                                <TileMatrix>2</TileMatrix>
     64952                                                <MinTileRow>1</MinTileRow>
     64953                                                <MaxTileRow>1</MaxTileRow>
     64954                                                <MinTileCol>2</MinTileCol>
     64955                                                <MaxTileCol>2</MaxTileCol>
     64956                                        </TileMatrixLimits>
     64957                                        <TileMatrixLimits>
     64958                                                <TileMatrix>3</TileMatrix>
     64959                                                <MinTileRow>2</MinTileRow>
     64960                                                <MaxTileRow>2</MaxTileRow>
     64961                                                <MinTileCol>4</MinTileCol>
     64962                                                <MaxTileCol>4</MaxTileCol>
     64963                                        </TileMatrixLimits>
     64964                                        <TileMatrixLimits>
     64965                                                <TileMatrix>4</TileMatrix>
     64966                                                <MinTileRow>5</MinTileRow>
     64967                                                <MaxTileRow>5</MaxTileRow>
     64968                                                <MinTileCol>8</MinTileCol>
     64969                                                <MaxTileCol>8</MaxTileCol>
     64970                                        </TileMatrixLimits>
     64971                                        <TileMatrixLimits>
     64972                                                <TileMatrix>5</TileMatrix>
     64973                                                <MinTileRow>10</MinTileRow>
     64974                                                <MaxTileRow>10</MaxTileRow>
     64975                                                <MinTileCol>16</MinTileCol>
     64976                                                <MaxTileCol>16</MaxTileCol>
     64977                                        </TileMatrixLimits>
     64978                                        <TileMatrixLimits>
     64979                                                <TileMatrix>6</TileMatrix>
     64980                                                <MinTileRow>21</MinTileRow>
     64981                                                <MaxTileRow>21</MaxTileRow>
     64982                                                <MinTileCol>32</MinTileCol>
     64983                                                <MaxTileCol>32</MaxTileCol>
     64984                                        </TileMatrixLimits>
     64985                                        <TileMatrixLimits>
     64986                                                <TileMatrix>7</TileMatrix>
     64987                                                <MinTileRow>43</MinTileRow>
     64988                                                <MaxTileRow>43</MaxTileRow>
     64989                                                <MinTileCol>65</MinTileCol>
     64990                                                <MaxTileCol>65</MaxTileCol>
     64991                                        </TileMatrixLimits>
     64992                                        <TileMatrixLimits>
     64993                                                <TileMatrix>8</TileMatrix>
     64994                                                <MinTileRow>86</MinTileRow>
     64995                                                <MaxTileRow>86</MaxTileRow>
     64996                                                <MinTileCol>130</MinTileCol>
     64997                                                <MaxTileCol>130</MaxTileCol>
     64998                                        </TileMatrixLimits>
     64999                                        <TileMatrixLimits>
     65000                                                <TileMatrix>9</TileMatrix>
     65001                                                <MinTileRow>172</MinTileRow>
     65002                                                <MaxTileRow>173</MaxTileRow>
     65003                                                <MinTileCol>260</MinTileCol>
     65004                                                <MaxTileCol>261</MaxTileCol>
     65005                                        </TileMatrixLimits>
     65006                                </TileMatrixSetLimits>
     65007                        </TileMatrixSetLink>
     65008                </Layer>
     65009                <Layer>
     65010                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title>
     65011                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract>
     65012                        <ows:Keywords>
     65013                                <ows:Keyword>Photographies</ows:Keyword>
     65014                        </ows:Keywords>
     65015                        <ows:WGS84BoundingBox>
     65016                                <ows:LowerCorner>5.35835 48.2528</ows:LowerCorner>
     65017                                <ows:UpperCorner>5.65201 48.4746</ows:UpperCorner>
     65018                        </ows:WGS84BoundingBox>
     65019                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-07-09-38822078</ows:Identifier>
     65020                        <Style isDefault="true">
     65021                                <ows:Title>Données Brutes</ows:Title>
     65022                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65023                                <ows:Keywords>
     65024                                        <ows:Keyword>Défaut</ows:Keyword>
     65025                                </ows:Keywords>
     65026                                <ows:Identifier>normal</ows:Identifier>
     65027                                <LegendURL format="image/jpeg" height="200"
     65028                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65029                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65030                        </Style>
     65031                        <Format>image/jpeg</Format>
     65032                        <TileMatrixSetLink>
     65033                                <TileMatrixSet>PM</TileMatrixSet>
     65034                                <TileMatrixSetLimits>
     65035                                        <TileMatrixLimits>
     65036                                                <TileMatrix>0</TileMatrix>
     65037                                                <MinTileRow>0</MinTileRow>
     65038                                                <MaxTileRow>0</MaxTileRow>
     65039                                                <MinTileCol>0</MinTileCol>
     65040                                                <MaxTileCol>0</MaxTileCol>
     65041                                        </TileMatrixLimits>
     65042                                        <TileMatrixLimits>
     65043                                                <TileMatrix>1</TileMatrix>
     65044                                                <MinTileRow>0</MinTileRow>
     65045                                                <MaxTileRow>0</MaxTileRow>
     65046                                                <MinTileCol>1</MinTileCol>
     65047                                                <MaxTileCol>1</MaxTileCol>
     65048                                        </TileMatrixLimits>
     65049                                        <TileMatrixLimits>
     65050                                                <TileMatrix>10</TileMatrix>
     65051                                                <MinTileRow>353</MinTileRow>
     65052                                                <MaxTileRow>354</MaxTileRow>
     65053                                                <MinTileCol>527</MinTileCol>
     65054                                                <MaxTileCol>528</MaxTileCol>
     65055                                        </TileMatrixLimits>
     65056                                        <TileMatrixLimits>
     65057                                                <TileMatrix>11</TileMatrix>
     65058                                                <MinTileRow>707</MinTileRow>
     65059                                                <MaxTileRow>709</MaxTileRow>
     65060                                                <MinTileCol>1054</MinTileCol>
     65061                                                <MaxTileCol>1056</MaxTileCol>
     65062                                        </TileMatrixLimits>
     65063                                        <TileMatrixLimits>
     65064                                                <TileMatrix>12</TileMatrix>
     65065                                                <MinTileRow>1415</MinTileRow>
     65066                                                <MaxTileRow>1419</MaxTileRow>
     65067                                                <MinTileCol>2109</MinTileCol>
     65068                                                <MaxTileCol>2112</MaxTileCol>
     65069                                        </TileMatrixLimits>
     65070                                        <TileMatrixLimits>
     65071                                                <TileMatrix>13</TileMatrix>
     65072                                                <MinTileRow>2831</MinTileRow>
     65073                                                <MaxTileRow>2839</MaxTileRow>
     65074                                                <MinTileCol>4218</MinTileCol>
     65075                                                <MaxTileCol>4224</MaxTileCol>
     65076                                        </TileMatrixLimits>
     65077                                        <TileMatrixLimits>
     65078                                                <TileMatrix>14</TileMatrix>
     65079                                                <MinTileRow>5663</MinTileRow>
     65080                                                <MaxTileRow>5678</MaxTileRow>
     65081                                                <MinTileCol>8436</MinTileCol>
     65082                                                <MaxTileCol>8448</MaxTileCol>
     65083                                        </TileMatrixLimits>
     65084                                        <TileMatrixLimits>
     65085                                                <TileMatrix>15</TileMatrix>
     65086                                                <MinTileRow>11326</MinTileRow>
     65087                                                <MaxTileRow>11356</MaxTileRow>
     65088                                                <MinTileCol>16872</MinTileCol>
     65089                                                <MaxTileCol>16897</MaxTileCol>
     65090                                        </TileMatrixLimits>
     65091                                        <TileMatrixLimits>
     65092                                                <TileMatrix>16</TileMatrix>
     65093                                                <MinTileRow>22652</MinTileRow>
     65094                                                <MaxTileRow>22712</MaxTileRow>
     65095                                                <MinTileCol>33744</MinTileCol>
     65096                                                <MaxTileCol>33795</MaxTileCol>
     65097                                        </TileMatrixLimits>
     65098                                        <TileMatrixLimits>
     65099                                                <TileMatrix>17</TileMatrix>
     65100                                                <MinTileRow>45305</MinTileRow>
     65101                                                <MaxTileRow>45424</MaxTileRow>
     65102                                                <MinTileCol>67488</MinTileCol>
     65103                                                <MaxTileCol>67591</MaxTileCol>
     65104                                        </TileMatrixLimits>
     65105                                        <TileMatrixLimits>
     65106                                                <TileMatrix>18</TileMatrix>
     65107                                                <MinTileRow>90611</MinTileRow>
     65108                                                <MaxTileRow>90848</MaxTileRow>
     65109                                                <MinTileCol>134977</MinTileCol>
     65110                                                <MaxTileCol>135183</MaxTileCol>
     65111                                        </TileMatrixLimits>
     65112                                        <TileMatrixLimits>
     65113                                                <TileMatrix>2</TileMatrix>
     65114                                                <MinTileRow>1</MinTileRow>
     65115                                                <MaxTileRow>1</MaxTileRow>
     65116                                                <MinTileCol>2</MinTileCol>
     65117                                                <MaxTileCol>2</MaxTileCol>
     65118                                        </TileMatrixLimits>
     65119                                        <TileMatrixLimits>
     65120                                                <TileMatrix>3</TileMatrix>
     65121                                                <MinTileRow>2</MinTileRow>
     65122                                                <MaxTileRow>2</MaxTileRow>
     65123                                                <MinTileCol>4</MinTileCol>
     65124                                                <MaxTileCol>4</MaxTileCol>
     65125                                        </TileMatrixLimits>
     65126                                        <TileMatrixLimits>
     65127                                                <TileMatrix>4</TileMatrix>
     65128                                                <MinTileRow>5</MinTileRow>
     65129                                                <MaxTileRow>5</MaxTileRow>
     65130                                                <MinTileCol>8</MinTileCol>
     65131                                                <MaxTileCol>8</MaxTileCol>
     65132                                        </TileMatrixLimits>
     65133                                        <TileMatrixLimits>
     65134                                                <TileMatrix>5</TileMatrix>
     65135                                                <MinTileRow>11</MinTileRow>
     65136                                                <MaxTileRow>11</MaxTileRow>
     65137                                                <MinTileCol>16</MinTileCol>
     65138                                                <MaxTileCol>16</MaxTileCol>
     65139                                        </TileMatrixLimits>
     65140                                        <TileMatrixLimits>
     65141                                                <TileMatrix>6</TileMatrix>
     65142                                                <MinTileRow>22</MinTileRow>
     65143                                                <MaxTileRow>22</MaxTileRow>
     65144                                                <MinTileCol>32</MinTileCol>
     65145                                                <MaxTileCol>33</MaxTileCol>
     65146                                        </TileMatrixLimits>
     65147                                        <TileMatrixLimits>
     65148                                                <TileMatrix>7</TileMatrix>
     65149                                                <MinTileRow>44</MinTileRow>
     65150                                                <MaxTileRow>44</MaxTileRow>
     65151                                                <MinTileCol>65</MinTileCol>
     65152                                                <MaxTileCol>66</MaxTileCol>
     65153                                        </TileMatrixLimits>
     65154                                        <TileMatrixLimits>
     65155                                                <TileMatrix>8</TileMatrix>
     65156                                                <MinTileRow>88</MinTileRow>
     65157                                                <MaxTileRow>88</MaxTileRow>
     65158                                                <MinTileCol>131</MinTileCol>
     65159                                                <MaxTileCol>132</MaxTileCol>
     65160                                        </TileMatrixLimits>
     65161                                        <TileMatrixLimits>
     65162                                                <TileMatrix>9</TileMatrix>
     65163                                                <MinTileRow>176</MinTileRow>
     65164                                                <MaxTileRow>177</MaxTileRow>
     65165                                                <MinTileCol>263</MinTileCol>
     65166                                                <MaxTileCol>264</MaxTileCol>
     65167                                        </TileMatrixLimits>
     65168                                </TileMatrixSetLimits>
     65169                        </TileMatrixSetLink>
     65170                </Layer>
     65171                <Layer>
     65172                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title>
     65173                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract>
     65174                        <ows:Keywords>
     65175                                <ows:Keyword>Photographies</ows:Keyword>
     65176                        </ows:Keywords>
     65177                        <ows:WGS84BoundingBox>
     65178                                <ows:LowerCorner>5.59827 47.9231</ows:LowerCorner>
     65179                                <ows:UpperCorner>5.89499 48.2175</ows:UpperCorner>
     65180                        </ows:WGS84BoundingBox>
     65181                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-07-16-38677570</ows:Identifier>
     65182                        <Style isDefault="true">
     65183                                <ows:Title>Données Brutes</ows:Title>
     65184                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65185                                <ows:Keywords>
     65186                                        <ows:Keyword>Défaut</ows:Keyword>
     65187                                </ows:Keywords>
     65188                                <ows:Identifier>normal</ows:Identifier>
     65189                                <LegendURL format="image/jpeg" height="200"
     65190                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65191                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65192                        </Style>
     65193                        <Format>image/jpeg</Format>
     65194                        <TileMatrixSetLink>
     65195                                <TileMatrixSet>PM</TileMatrixSet>
     65196                                <TileMatrixSetLimits>
     65197                                        <TileMatrixLimits>
     65198                                                <TileMatrix>0</TileMatrix>
     65199                                                <MinTileRow>0</MinTileRow>
     65200                                                <MaxTileRow>0</MaxTileRow>
     65201                                                <MinTileCol>0</MinTileCol>
     65202                                                <MaxTileCol>0</MaxTileCol>
     65203                                        </TileMatrixLimits>
     65204                                        <TileMatrixLimits>
     65205                                                <TileMatrix>1</TileMatrix>
     65206                                                <MinTileRow>0</MinTileRow>
     65207                                                <MaxTileRow>0</MaxTileRow>
     65208                                                <MinTileCol>1</MinTileCol>
     65209                                                <MaxTileCol>1</MaxTileCol>
     65210                                        </TileMatrixLimits>
     65211                                        <TileMatrixLimits>
     65212                                                <TileMatrix>10</TileMatrix>
     65213                                                <MinTileRow>355</MinTileRow>
     65214                                                <MaxTileRow>356</MaxTileRow>
     65215                                                <MinTileCol>527</MinTileCol>
     65216                                                <MaxTileCol>528</MaxTileCol>
     65217                                        </TileMatrixLimits>
     65218                                        <TileMatrixLimits>
     65219                                                <TileMatrix>11</TileMatrix>
     65220                                                <MinTileRow>710</MinTileRow>
     65221                                                <MaxTileRow>712</MaxTileRow>
     65222                                                <MinTileCol>1055</MinTileCol>
     65223                                                <MaxTileCol>1057</MaxTileCol>
     65224                                        </TileMatrixLimits>
     65225                                        <TileMatrixLimits>
     65226                                                <TileMatrix>12</TileMatrix>
     65227                                                <MinTileRow>1420</MinTileRow>
     65228                                                <MaxTileRow>1425</MaxTileRow>
     65229                                                <MinTileCol>2111</MinTileCol>
     65230                                                <MaxTileCol>2114</MaxTileCol>
     65231                                        </TileMatrixLimits>
     65232                                        <TileMatrixLimits>
     65233                                                <TileMatrix>13</TileMatrix>
     65234                                                <MinTileRow>2840</MinTileRow>
     65235                                                <MaxTileRow>2850</MaxTileRow>
     65236                                                <MinTileCol>4223</MinTileCol>
     65237                                                <MaxTileCol>4229</MaxTileCol>
     65238                                        </TileMatrixLimits>
     65239                                        <TileMatrixLimits>
     65240                                                <TileMatrix>14</TileMatrix>
     65241                                                <MinTileRow>5680</MinTileRow>
     65242                                                <MaxTileRow>5700</MaxTileRow>
     65243                                                <MinTileCol>8447</MinTileCol>
     65244                                                <MaxTileCol>8459</MaxTileCol>
     65245                                        </TileMatrixLimits>
     65246                                        <TileMatrixLimits>
     65247                                                <TileMatrix>15</TileMatrix>
     65248                                                <MinTileRow>11361</MinTileRow>
     65249                                                <MaxTileRow>11401</MaxTileRow>
     65250                                                <MinTileCol>16894</MinTileCol>
     65251                                                <MaxTileCol>16919</MaxTileCol>
     65252                                        </TileMatrixLimits>
     65253                                        <TileMatrixLimits>
     65254                                                <TileMatrix>16</TileMatrix>
     65255                                                <MinTileRow>22723</MinTileRow>
     65256                                                <MaxTileRow>22802</MaxTileRow>
     65257                                                <MinTileCol>33788</MinTileCol>
     65258                                                <MaxTileCol>33839</MaxTileCol>
     65259                                        </TileMatrixLimits>
     65260                                        <TileMatrixLimits>
     65261                                                <TileMatrix>17</TileMatrix>
     65262                                                <MinTileRow>45447</MinTileRow>
     65263                                                <MaxTileRow>45604</MaxTileRow>
     65264                                                <MinTileCol>67576</MinTileCol>
     65265                                                <MaxTileCol>67679</MaxTileCol>
     65266                                        </TileMatrixLimits>
     65267                                        <TileMatrixLimits>
     65268                                                <TileMatrix>18</TileMatrix>
     65269                                                <MinTileRow>90894</MinTileRow>
     65270                                                <MaxTileRow>91208</MaxTileRow>
     65271                                                <MinTileCol>135153</MinTileCol>
     65272                                                <MaxTileCol>135358</MaxTileCol>
     65273                                        </TileMatrixLimits>
     65274                                        <TileMatrixLimits>
     65275                                                <TileMatrix>2</TileMatrix>
     65276                                                <MinTileRow>1</MinTileRow>
     65277                                                <MaxTileRow>1</MaxTileRow>
     65278                                                <MinTileCol>2</MinTileCol>
     65279                                                <MaxTileCol>2</MaxTileCol>
     65280                                        </TileMatrixLimits>
     65281                                        <TileMatrixLimits>
     65282                                                <TileMatrix>3</TileMatrix>
     65283                                                <MinTileRow>2</MinTileRow>
     65284                                                <MaxTileRow>2</MaxTileRow>
     65285                                                <MinTileCol>4</MinTileCol>
     65286                                                <MaxTileCol>4</MaxTileCol>
     65287                                        </TileMatrixLimits>
     65288                                        <TileMatrixLimits>
     65289                                                <TileMatrix>4</TileMatrix>
     65290                                                <MinTileRow>5</MinTileRow>
     65291                                                <MaxTileRow>5</MaxTileRow>
     65292                                                <MinTileCol>8</MinTileCol>
     65293                                                <MaxTileCol>8</MaxTileCol>
     65294                                        </TileMatrixLimits>
     65295                                        <TileMatrixLimits>
     65296                                                <TileMatrix>5</TileMatrix>
     65297                                                <MinTileRow>11</MinTileRow>
     65298                                                <MaxTileRow>11</MaxTileRow>
     65299                                                <MinTileCol>16</MinTileCol>
     65300                                                <MaxTileCol>16</MaxTileCol>
     65301                                        </TileMatrixLimits>
     65302                                        <TileMatrixLimits>
     65303                                                <TileMatrix>6</TileMatrix>
     65304                                                <MinTileRow>22</MinTileRow>
     65305                                                <MaxTileRow>22</MaxTileRow>
     65306                                                <MinTileCol>32</MinTileCol>
     65307                                                <MaxTileCol>33</MaxTileCol>
     65308                                        </TileMatrixLimits>
     65309                                        <TileMatrixLimits>
     65310                                                <TileMatrix>7</TileMatrix>
     65311                                                <MinTileRow>44</MinTileRow>
     65312                                                <MaxTileRow>44</MaxTileRow>
     65313                                                <MinTileCol>65</MinTileCol>
     65314                                                <MaxTileCol>66</MaxTileCol>
     65315                                        </TileMatrixLimits>
     65316                                        <TileMatrixLimits>
     65317                                                <TileMatrix>8</TileMatrix>
     65318                                                <MinTileRow>88</MinTileRow>
     65319                                                <MaxTileRow>89</MaxTileRow>
     65320                                                <MinTileCol>131</MinTileCol>
     65321                                                <MaxTileCol>132</MaxTileCol>
     65322                                        </TileMatrixLimits>
     65323                                        <TileMatrixLimits>
     65324                                                <TileMatrix>9</TileMatrix>
     65325                                                <MinTileRow>177</MinTileRow>
     65326                                                <MaxTileRow>178</MaxTileRow>
     65327                                                <MinTileCol>263</MinTileCol>
     65328                                                <MaxTileCol>264</MaxTileCol>
     65329                                        </TileMatrixLimits>
     65330                                </TileMatrixSetLimits>
     65331                        </TileMatrixSetLink>
     65332                </Layer>
     65333                <Layer>
     65334                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title>
     65335                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract>
     65336                        <ows:Keywords>
     65337                                <ows:Keyword>Photographies</ows:Keyword>
     65338                        </ows:Keywords>
     65339                        <ows:WGS84BoundingBox>
     65340                                <ows:LowerCorner>5.94969 47.9763</ows:LowerCorner>
     65341                                <ows:UpperCorner>6.28673 48.452</ows:UpperCorner>
     65342                        </ows:WGS84BoundingBox>
     65343                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-12-12-38860453</ows:Identifier>
     65344                        <Style isDefault="true">
     65345                                <ows:Title>Données Brutes</ows:Title>
     65346                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65347                                <ows:Keywords>
     65348                                        <ows:Keyword>Défaut</ows:Keyword>
     65349                                </ows:Keywords>
     65350                                <ows:Identifier>normal</ows:Identifier>
     65351                                <LegendURL format="image/jpeg" height="200"
     65352                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65353                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65354                        </Style>
     65355                        <Format>image/jpeg</Format>
     65356                        <TileMatrixSetLink>
     65357                                <TileMatrixSet>PM</TileMatrixSet>
     65358                                <TileMatrixSetLimits>
     65359                                        <TileMatrixLimits>
     65360                                                <TileMatrix>0</TileMatrix>
     65361                                                <MinTileRow>0</MinTileRow>
     65362                                                <MaxTileRow>0</MaxTileRow>
     65363                                                <MinTileCol>0</MinTileCol>
     65364                                                <MaxTileCol>0</MaxTileCol>
     65365                                        </TileMatrixLimits>
     65366                                        <TileMatrixLimits>
     65367                                                <TileMatrix>1</TileMatrix>
     65368                                                <MinTileRow>0</MinTileRow>
     65369                                                <MaxTileRow>0</MaxTileRow>
     65370                                                <MinTileCol>1</MinTileCol>
     65371                                                <MaxTileCol>1</MaxTileCol>
     65372                                        </TileMatrixLimits>
     65373                                        <TileMatrixLimits>
     65374                                                <TileMatrix>10</TileMatrix>
     65375                                                <MinTileRow>354</MinTileRow>
     65376                                                <MaxTileRow>356</MaxTileRow>
     65377                                                <MinTileCol>528</MinTileCol>
     65378                                                <MaxTileCol>529</MaxTileCol>
     65379                                        </TileMatrixLimits>
     65380                                        <TileMatrixLimits>
     65381                                                <TileMatrix>11</TileMatrix>
     65382                                                <MinTileRow>708</MinTileRow>
     65383                                                <MaxTileRow>712</MaxTileRow>
     65384                                                <MinTileCol>1057</MinTileCol>
     65385                                                <MaxTileCol>1059</MaxTileCol>
     65386                                        </TileMatrixLimits>
     65387                                        <TileMatrixLimits>
     65388                                                <TileMatrix>12</TileMatrix>
     65389                                                <MinTileRow>1416</MinTileRow>
     65390                                                <MaxTileRow>1424</MaxTileRow>
     65391                                                <MinTileCol>2115</MinTileCol>
     65392                                                <MaxTileCol>2119</MaxTileCol>
     65393                                        </TileMatrixLimits>
     65394                                        <TileMatrixLimits>
     65395                                                <TileMatrix>13</TileMatrix>
     65396                                                <MinTileRow>2832</MinTileRow>
     65397                                                <MaxTileRow>2848</MaxTileRow>
     65398                                                <MinTileCol>4231</MinTileCol>
     65399                                                <MaxTileCol>4238</MaxTileCol>
     65400                                        </TileMatrixLimits>
     65401                                        <TileMatrixLimits>
     65402                                                <TileMatrix>14</TileMatrix>
     65403                                                <MinTileRow>5664</MinTileRow>
     65404                                                <MaxTileRow>5696</MaxTileRow>
     65405                                                <MinTileCol>8463</MinTileCol>
     65406                                                <MaxTileCol>8477</MaxTileCol>
     65407                                        </TileMatrixLimits>
     65408                                        <TileMatrixLimits>
     65409                                                <TileMatrix>15</TileMatrix>
     65410                                                <MinTileRow>11329</MinTileRow>
     65411                                                <MaxTileRow>11393</MaxTileRow>
     65412                                                <MinTileCol>16927</MinTileCol>
     65413                                                <MaxTileCol>16954</MaxTileCol>
     65414                                        </TileMatrixLimits>
     65415                                        <TileMatrixLimits>
     65416                                                <TileMatrix>16</TileMatrix>
     65417                                                <MinTileRow>22659</MinTileRow>
     65418                                                <MaxTileRow>22787</MaxTileRow>
     65419                                                <MinTileCol>33854</MinTileCol>
     65420                                                <MaxTileCol>33909</MaxTileCol>
     65421                                        </TileMatrixLimits>
     65422                                        <TileMatrixLimits>
     65423                                                <TileMatrix>17</TileMatrix>
     65424                                                <MinTileRow>45319</MinTileRow>
     65425                                                <MaxTileRow>45575</MaxTileRow>
     65426                                                <MinTileCol>67709</MinTileCol>
     65427                                                <MaxTileCol>67819</MaxTileCol>
     65428                                        </TileMatrixLimits>
     65429                                        <TileMatrixLimits>
     65430                                                <TileMatrix>18</TileMatrix>
     65431                                                <MinTileRow>90638</MinTileRow>
     65432                                                <MaxTileRow>91150</MaxTileRow>
     65433                                                <MinTileCol>135418</MinTileCol>
     65434                                                <MaxTileCol>135639</MaxTileCol>
     65435                                        </TileMatrixLimits>
     65436                                        <TileMatrixLimits>
     65437                                                <TileMatrix>2</TileMatrix>
     65438                                                <MinTileRow>1</MinTileRow>
     65439                                                <MaxTileRow>1</MaxTileRow>
     65440                                                <MinTileCol>2</MinTileCol>
     65441                                                <MaxTileCol>2</MaxTileCol>
     65442                                        </TileMatrixLimits>
     65443                                        <TileMatrixLimits>
     65444                                                <TileMatrix>3</TileMatrix>
     65445                                                <MinTileRow>2</MinTileRow>
     65446                                                <MaxTileRow>2</MaxTileRow>
     65447                                                <MinTileCol>4</MinTileCol>
     65448                                                <MaxTileCol>4</MaxTileCol>
     65449                                        </TileMatrixLimits>
     65450                                        <TileMatrixLimits>
     65451                                                <TileMatrix>4</TileMatrix>
     65452                                                <MinTileRow>5</MinTileRow>
     65453                                                <MaxTileRow>5</MaxTileRow>
     65454                                                <MinTileCol>8</MinTileCol>
     65455                                                <MaxTileCol>8</MaxTileCol>
     65456                                        </TileMatrixLimits>
     65457                                        <TileMatrixLimits>
     65458                                                <TileMatrix>5</TileMatrix>
     65459                                                <MinTileRow>11</MinTileRow>
     65460                                                <MaxTileRow>11</MaxTileRow>
     65461                                                <MinTileCol>16</MinTileCol>
     65462                                                <MaxTileCol>16</MaxTileCol>
     65463                                        </TileMatrixLimits>
     65464                                        <TileMatrixLimits>
     65465                                                <TileMatrix>6</TileMatrix>
     65466                                                <MinTileRow>22</MinTileRow>
     65467                                                <MaxTileRow>22</MaxTileRow>
     65468                                                <MinTileCol>33</MinTileCol>
     65469                                                <MaxTileCol>33</MaxTileCol>
     65470                                        </TileMatrixLimits>
     65471                                        <TileMatrixLimits>
     65472                                                <TileMatrix>7</TileMatrix>
     65473                                                <MinTileRow>44</MinTileRow>
     65474                                                <MaxTileRow>44</MaxTileRow>
     65475                                                <MinTileCol>66</MinTileCol>
     65476                                                <MaxTileCol>66</MaxTileCol>
     65477                                        </TileMatrixLimits>
     65478                                        <TileMatrixLimits>
     65479                                                <TileMatrix>8</TileMatrix>
     65480                                                <MinTileRow>88</MinTileRow>
     65481                                                <MaxTileRow>89</MaxTileRow>
     65482                                                <MinTileCol>132</MinTileCol>
     65483                                                <MaxTileCol>132</MaxTileCol>
     65484                                        </TileMatrixLimits>
     65485                                        <TileMatrixLimits>
     65486                                                <TileMatrix>9</TileMatrix>
     65487                                                <MinTileRow>177</MinTileRow>
     65488                                                <MaxTileRow>178</MaxTileRow>
     65489                                                <MinTileCol>264</MinTileCol>
     65490                                                <MaxTileCol>264</MaxTileCol>
     65491                                        </TileMatrixLimits>
     65492                                </TileMatrixSetLimits>
     65493                        </TileMatrixSetLink>
     65494                </Layer>
     65495                <Layer>
     65496                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Title>
     65497                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2013</ows:Abstract>
     65498                        <ows:Keywords>
     65499                                <ows:Keyword>Photographies</ows:Keyword>
     65500                        </ows:Keywords>
     65501                        <ows:WGS84BoundingBox>
     65502                                <ows:LowerCorner>6.19131 47.9783</ows:LowerCorner>
     65503                                <ows:UpperCorner>6.52445 48.3647</ows:UpperCorner>
     65504                        </ows:WGS84BoundingBox>
     65505                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2013-12-12-38886444</ows:Identifier>
     65506                        <Style isDefault="true">
     65507                                <ows:Title>Données Brutes</ows:Title>
     65508                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65509                                <ows:Keywords>
     65510                                        <ows:Keyword>Défaut</ows:Keyword>
     65511                                </ows:Keywords>
     65512                                <ows:Identifier>normal</ows:Identifier>
     65513                                <LegendURL format="image/jpeg" height="200"
     65514                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65515                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65516                        </Style>
     65517                        <Format>image/jpeg</Format>
     65518                        <TileMatrixSetLink>
     65519                                <TileMatrixSet>PM</TileMatrixSet>
     65520                                <TileMatrixSetLimits>
     65521                                        <TileMatrixLimits>
     65522                                                <TileMatrix>0</TileMatrix>
     65523                                                <MinTileRow>0</MinTileRow>
     65524                                                <MaxTileRow>0</MaxTileRow>
     65525                                                <MinTileCol>0</MinTileCol>
     65526                                                <MaxTileCol>0</MaxTileCol>
     65527                                        </TileMatrixLimits>
     65528                                        <TileMatrixLimits>
     65529                                                <TileMatrix>1</TileMatrix>
     65530                                                <MinTileRow>0</MinTileRow>
     65531                                                <MaxTileRow>0</MaxTileRow>
     65532                                                <MinTileCol>1</MinTileCol>
     65533                                                <MaxTileCol>1</MaxTileCol>
     65534                                        </TileMatrixLimits>
     65535                                        <TileMatrixLimits>
     65536                                                <TileMatrix>10</TileMatrix>
     65537                                                <MinTileRow>354</MinTileRow>
     65538                                                <MaxTileRow>356</MaxTileRow>
     65539                                                <MinTileCol>529</MinTileCol>
     65540                                                <MaxTileCol>530</MaxTileCol>
     65541                                        </TileMatrixLimits>
     65542                                        <TileMatrixLimits>
     65543                                                <TileMatrix>11</TileMatrix>
     65544                                                <MinTileRow>708</MinTileRow>
     65545                                                <MaxTileRow>712</MaxTileRow>
     65546                                                <MinTileCol>1059</MinTileCol>
     65547                                                <MaxTileCol>1061</MaxTileCol>
     65548                                        </TileMatrixLimits>
     65549                                        <TileMatrixLimits>
     65550                                                <TileMatrix>12</TileMatrix>
     65551                                                <MinTileRow>1417</MinTileRow>
     65552                                                <MaxTileRow>1424</MaxTileRow>
     65553                                                <MinTileCol>2118</MinTileCol>
     65554                                                <MaxTileCol>2122</MaxTileCol>
     65555                                        </TileMatrixLimits>
     65556                                        <TileMatrixLimits>
     65557                                                <TileMatrix>13</TileMatrix>
     65558                                                <MinTileRow>2835</MinTileRow>
     65559                                                <MaxTileRow>2848</MaxTileRow>
     65560                                                <MinTileCol>4237</MinTileCol>
     65561                                                <MaxTileCol>4244</MaxTileCol>
     65562                                        </TileMatrixLimits>
     65563                                        <TileMatrixLimits>
     65564                                                <TileMatrix>14</TileMatrix>
     65565                                                <MinTileRow>5670</MinTileRow>
     65566                                                <MaxTileRow>5696</MaxTileRow>
     65567                                                <MinTileCol>8474</MinTileCol>
     65568                                                <MaxTileCol>8488</MaxTileCol>
     65569                                        </TileMatrixLimits>
     65570                                        <TileMatrixLimits>
     65571                                                <TileMatrix>15</TileMatrix>
     65572                                                <MinTileRow>11341</MinTileRow>
     65573                                                <MaxTileRow>11393</MaxTileRow>
     65574                                                <MinTileCol>16948</MinTileCol>
     65575                                                <MaxTileCol>16976</MaxTileCol>
     65576                                        </TileMatrixLimits>
     65577                                        <TileMatrixLimits>
     65578                                                <TileMatrix>16</TileMatrix>
     65579                                                <MinTileRow>22683</MinTileRow>
     65580                                                <MaxTileRow>22786</MaxTileRow>
     65581                                                <MinTileCol>33897</MinTileCol>
     65582                                                <MaxTileCol>33952</MaxTileCol>
     65583                                        </TileMatrixLimits>
     65584                                        <TileMatrixLimits>
     65585                                                <TileMatrix>17</TileMatrix>
     65586                                                <MinTileRow>45367</MinTileRow>
     65587                                                <MaxTileRow>45573</MaxTileRow>
     65588                                                <MinTileCol>67794</MinTileCol>
     65589                                                <MaxTileCol>67905</MaxTileCol>
     65590                                        </TileMatrixLimits>
     65591                                        <TileMatrixLimits>
     65592                                                <TileMatrix>18</TileMatrix>
     65593                                                <MinTileRow>90734</MinTileRow>
     65594                                                <MaxTileRow>91147</MaxTileRow>
     65595                                                <MinTileCol>135589</MinTileCol>
     65596                                                <MaxTileCol>135811</MaxTileCol>
     65597                                        </TileMatrixLimits>
     65598                                        <TileMatrixLimits>
     65599                                                <TileMatrix>2</TileMatrix>
     65600                                                <MinTileRow>1</MinTileRow>
     65601                                                <MaxTileRow>1</MaxTileRow>
     65602                                                <MinTileCol>2</MinTileCol>
     65603                                                <MaxTileCol>2</MaxTileCol>
     65604                                        </TileMatrixLimits>
     65605                                        <TileMatrixLimits>
     65606                                                <TileMatrix>3</TileMatrix>
     65607                                                <MinTileRow>2</MinTileRow>
     65608                                                <MaxTileRow>2</MaxTileRow>
     65609                                                <MinTileCol>4</MinTileCol>
     65610                                                <MaxTileCol>4</MaxTileCol>
     65611                                        </TileMatrixLimits>
     65612                                        <TileMatrixLimits>
     65613                                                <TileMatrix>4</TileMatrix>
     65614                                                <MinTileRow>5</MinTileRow>
     65615                                                <MaxTileRow>5</MaxTileRow>
     65616                                                <MinTileCol>8</MinTileCol>
     65617                                                <MaxTileCol>8</MaxTileCol>
     65618                                        </TileMatrixLimits>
     65619                                        <TileMatrixLimits>
     65620                                                <TileMatrix>5</TileMatrix>
     65621                                                <MinTileRow>11</MinTileRow>
     65622                                                <MaxTileRow>11</MaxTileRow>
     65623                                                <MinTileCol>16</MinTileCol>
     65624                                                <MaxTileCol>16</MaxTileCol>
     65625                                        </TileMatrixLimits>
     65626                                        <TileMatrixLimits>
     65627                                                <TileMatrix>6</TileMatrix>
     65628                                                <MinTileRow>22</MinTileRow>
     65629                                                <MaxTileRow>22</MaxTileRow>
     65630                                                <MinTileCol>33</MinTileCol>
     65631                                                <MaxTileCol>33</MaxTileCol>
     65632                                        </TileMatrixLimits>
     65633                                        <TileMatrixLimits>
     65634                                                <TileMatrix>7</TileMatrix>
     65635                                                <MinTileRow>44</MinTileRow>
     65636                                                <MaxTileRow>44</MaxTileRow>
     65637                                                <MinTileCol>66</MinTileCol>
     65638                                                <MaxTileCol>66</MaxTileCol>
     65639                                        </TileMatrixLimits>
     65640                                        <TileMatrixLimits>
     65641                                                <TileMatrix>8</TileMatrix>
     65642                                                <MinTileRow>88</MinTileRow>
     65643                                                <MaxTileRow>89</MaxTileRow>
     65644                                                <MinTileCol>132</MinTileCol>
     65645                                                <MaxTileCol>132</MaxTileCol>
     65646                                        </TileMatrixLimits>
     65647                                        <TileMatrixLimits>
     65648                                                <TileMatrix>9</TileMatrix>
     65649                                                <MinTileRow>177</MinTileRow>
     65650                                                <MaxTileRow>178</MaxTileRow>
     65651                                                <MinTileCol>264</MinTileCol>
     65652                                                <MaxTileCol>265</MaxTileCol>
     65653                                        </TileMatrixLimits>
     65654                                </TileMatrixSetLimits>
     65655                        </TileMatrixSetLink>
     65656                </Layer>
     65657                <Layer>
     65658                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     65659                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Abstract>
     65660                        <ows:Keywords>
     65661                                <ows:Keyword>Photographies</ows:Keyword>
     65662                        </ows:Keywords>
     65663                        <ows:WGS84BoundingBox>
     65664                                <ows:LowerCorner>6.41545 48.1233</ows:LowerCorner>
     65665                                <ows:UpperCorner>6.79035 48.4935</ows:UpperCorner>
     65666                        </ows:WGS84BoundingBox>
     65667                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37723693</ows:Identifier>
     65668                        <Style isDefault="true">
     65669                                <ows:Title>Données Brutes</ows:Title>
     65670                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65671                                <ows:Keywords>
     65672                                        <ows:Keyword>Défaut</ows:Keyword>
     65673                                </ows:Keywords>
     65674                                <ows:Identifier>normal</ows:Identifier>
     65675                                <LegendURL format="image/jpeg" height="200"
     65676                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65677                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65678                        </Style>
     65679                        <Format>image/jpeg</Format>
     65680                        <TileMatrixSetLink>
     65681                                <TileMatrixSet>PM</TileMatrixSet>
     65682                                <TileMatrixSetLimits>
     65683                                        <TileMatrixLimits>
     65684                                                <TileMatrix>0</TileMatrix>
     65685                                                <MinTileRow>0</MinTileRow>
     65686                                                <MaxTileRow>0</MaxTileRow>
     65687                                                <MinTileCol>0</MinTileCol>
     65688                                                <MaxTileCol>0</MaxTileCol>
     65689                                        </TileMatrixLimits>
     65690                                        <TileMatrixLimits>
     65691                                                <TileMatrix>1</TileMatrix>
     65692                                                <MinTileRow>0</MinTileRow>
     65693                                                <MaxTileRow>0</MaxTileRow>
     65694                                                <MinTileCol>1</MinTileCol>
     65695                                                <MaxTileCol>1</MaxTileCol>
     65696                                        </TileMatrixLimits>
     65697                                        <TileMatrixLimits>
     65698                                                <TileMatrix>10</TileMatrix>
     65699                                                <MinTileRow>353</MinTileRow>
     65700                                                <MaxTileRow>355</MaxTileRow>
     65701                                                <MinTileCol>530</MinTileCol>
     65702                                                <MaxTileCol>531</MaxTileCol>
     65703                                        </TileMatrixLimits>
     65704                                        <TileMatrixLimits>
     65705                                                <TileMatrix>11</TileMatrix>
     65706                                                <MinTileRow>707</MinTileRow>
     65707                                                <MaxTileRow>710</MaxTileRow>
     65708                                                <MinTileCol>1060</MinTileCol>
     65709                                                <MaxTileCol>1062</MaxTileCol>
     65710                                        </TileMatrixLimits>
     65711                                        <TileMatrixLimits>
     65712                                                <TileMatrix>12</TileMatrix>
     65713                                                <MinTileRow>1415</MinTileRow>
     65714                                                <MaxTileRow>1421</MaxTileRow>
     65715                                                <MinTileCol>2121</MinTileCol>
     65716                                                <MaxTileCol>2125</MaxTileCol>
     65717                                        </TileMatrixLimits>
     65718                                        <TileMatrixLimits>
     65719                                                <TileMatrix>13</TileMatrix>
     65720                                                <MinTileRow>2830</MinTileRow>
     65721                                                <MaxTileRow>2843</MaxTileRow>
     65722                                                <MinTileCol>4242</MinTileCol>
     65723                                                <MaxTileCol>4250</MaxTileCol>
     65724                                        </TileMatrixLimits>
     65725                                        <TileMatrixLimits>
     65726                                                <TileMatrix>14</TileMatrix>
     65727                                                <MinTileRow>5661</MinTileRow>
     65728                                                <MaxTileRow>5686</MaxTileRow>
     65729                                                <MinTileCol>8484</MinTileCol>
     65730                                                <MaxTileCol>8500</MaxTileCol>
     65731                                        </TileMatrixLimits>
     65732                                        <TileMatrixLimits>
     65733                                                <TileMatrix>15</TileMatrix>
     65734                                                <MinTileRow>11323</MinTileRow>
     65735                                                <MaxTileRow>11372</MaxTileRow>
     65736                                                <MinTileCol>16969</MinTileCol>
     65737                                                <MaxTileCol>17000</MaxTileCol>
     65738                                        </TileMatrixLimits>
     65739                                        <TileMatrixLimits>
     65740                                                <TileMatrix>16</TileMatrix>
     65741                                                <MinTileRow>22647</MinTileRow>
     65742                                                <MaxTileRow>22745</MaxTileRow>
     65743                                                <MinTileCol>33938</MinTileCol>
     65744                                                <MaxTileCol>34001</MaxTileCol>
     65745                                        </TileMatrixLimits>
     65746                                        <TileMatrixLimits>
     65747                                                <TileMatrix>17</TileMatrix>
     65748                                                <MinTileRow>45295</MinTileRow>
     65749                                                <MaxTileRow>45490</MaxTileRow>
     65750                                                <MinTileCol>67877</MinTileCol>
     65751                                                <MaxTileCol>68002</MaxTileCol>
     65752                                        </TileMatrixLimits>
     65753                                        <TileMatrixLimits>
     65754                                                <TileMatrix>18</TileMatrix>
     65755                                                <MinTileRow>90590</MinTileRow>
     65756                                                <MaxTileRow>90981</MaxTileRow>
     65757                                                <MinTileCol>135754</MinTileCol>
     65758                                                <MaxTileCol>136004</MaxTileCol>
     65759                                        </TileMatrixLimits>
     65760                                        <TileMatrixLimits>
     65761                                                <TileMatrix>2</TileMatrix>
     65762                                                <MinTileRow>1</MinTileRow>
     65763                                                <MaxTileRow>1</MaxTileRow>
     65764                                                <MinTileCol>2</MinTileCol>
     65765                                                <MaxTileCol>2</MaxTileCol>
     65766                                        </TileMatrixLimits>
     65767                                        <TileMatrixLimits>
     65768                                                <TileMatrix>3</TileMatrix>
     65769                                                <MinTileRow>2</MinTileRow>
     65770                                                <MaxTileRow>2</MaxTileRow>
     65771                                                <MinTileCol>4</MinTileCol>
     65772                                                <MaxTileCol>4</MaxTileCol>
     65773                                        </TileMatrixLimits>
     65774                                        <TileMatrixLimits>
     65775                                                <TileMatrix>4</TileMatrix>
     65776                                                <MinTileRow>5</MinTileRow>
     65777                                                <MaxTileRow>5</MaxTileRow>
     65778                                                <MinTileCol>8</MinTileCol>
     65779                                                <MaxTileCol>8</MaxTileCol>
     65780                                        </TileMatrixLimits>
     65781                                        <TileMatrixLimits>
     65782                                                <TileMatrix>5</TileMatrix>
     65783                                                <MinTileRow>11</MinTileRow>
     65784                                                <MaxTileRow>11</MaxTileRow>
     65785                                                <MinTileCol>16</MinTileCol>
     65786                                                <MaxTileCol>16</MaxTileCol>
     65787                                        </TileMatrixLimits>
     65788                                        <TileMatrixLimits>
     65789                                                <TileMatrix>6</TileMatrix>
     65790                                                <MinTileRow>22</MinTileRow>
     65791                                                <MaxTileRow>22</MaxTileRow>
     65792                                                <MinTileCol>33</MinTileCol>
     65793                                                <MaxTileCol>33</MaxTileCol>
     65794                                        </TileMatrixLimits>
     65795                                        <TileMatrixLimits>
     65796                                                <TileMatrix>7</TileMatrix>
     65797                                                <MinTileRow>44</MinTileRow>
     65798                                                <MaxTileRow>44</MaxTileRow>
     65799                                                <MinTileCol>66</MinTileCol>
     65800                                                <MaxTileCol>66</MaxTileCol>
     65801                                        </TileMatrixLimits>
     65802                                        <TileMatrixLimits>
     65803                                                <TileMatrix>8</TileMatrix>
     65804                                                <MinTileRow>88</MinTileRow>
     65805                                                <MaxTileRow>88</MaxTileRow>
     65806                                                <MinTileCol>132</MinTileCol>
     65807                                                <MaxTileCol>132</MaxTileCol>
     65808                                        </TileMatrixLimits>
     65809                                        <TileMatrixLimits>
     65810                                                <TileMatrix>9</TileMatrix>
     65811                                                <MinTileRow>176</MinTileRow>
     65812                                                <MaxTileRow>177</MaxTileRow>
     65813                                                <MinTileCol>265</MinTileCol>
     65814                                                <MaxTileCol>265</MaxTileCol>
     65815                                        </TileMatrixLimits>
     65816                                </TileMatrixSetLimits>
     65817                        </TileMatrixSetLink>
     65818                </Layer>
     65819                <Layer>
     65820                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     65821                        <ows:Abstract>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Abstract>
     65822                        <ows:Keywords>
     65823                                <ows:Keyword>Photographies</ows:Keyword>
     65824                        </ows:Keywords>
     65825                        <ows:WGS84BoundingBox>
     65826                                <ows:LowerCorner>6.18126 48.257</ows:LowerCorner>
     65827                                <ows:UpperCorner>6.53048 48.4553</ows:UpperCorner>
     65828                        </ows:WGS84BoundingBox>
     65829                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37743428</ows:Identifier>
     65830                        <Style isDefault="true">
     65831                                <ows:Title>Données Brutes</ows:Title>
     65832                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65833                                <ows:Keywords>
     65834                                        <ows:Keyword>Défaut</ows:Keyword>
     65835                                </ows:Keywords>
     65836                                <ows:Identifier>normal</ows:Identifier>
     65837                                <LegendURL format="image/jpeg" height="200"
     65838                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     65839                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     65840                        </Style>
     65841                        <Format>image/jpeg</Format>
     65842                        <TileMatrixSetLink>
     65843                                <TileMatrixSet>PM</TileMatrixSet>
     65844                                <TileMatrixSetLimits>
     65845                                        <TileMatrixLimits>
     65846                                                <TileMatrix>0</TileMatrix>
     65847                                                <MinTileRow>0</MinTileRow>
     65848                                                <MaxTileRow>0</MaxTileRow>
     65849                                                <MinTileCol>0</MinTileCol>
     65850                                                <MaxTileCol>0</MaxTileCol>
     65851                                        </TileMatrixLimits>
     65852                                        <TileMatrixLimits>
     65853                                                <TileMatrix>1</TileMatrix>
     65854                                                <MinTileRow>0</MinTileRow>
     65855                                                <MaxTileRow>0</MaxTileRow>
     65856                                                <MinTileCol>1</MinTileCol>
     65857                                                <MaxTileCol>1</MaxTileCol>
     65858                                        </TileMatrixLimits>
     65859                                        <TileMatrixLimits>
     65860                                                <TileMatrix>10</TileMatrix>
     65861                                                <MinTileRow>354</MinTileRow>
     65862                                                <MaxTileRow>354</MaxTileRow>
     65863                                                <MinTileCol>529</MinTileCol>
     65864                                                <MaxTileCol>530</MaxTileCol>
     65865                                        </TileMatrixLimits>
     65866                                        <TileMatrixLimits>
     65867                                                <TileMatrix>11</TileMatrix>
     65868                                                <MinTileRow>708</MinTileRow>
     65869                                                <MaxTileRow>709</MaxTileRow>
     65870                                                <MinTileCol>1059</MinTileCol>
     65871                                                <MaxTileCol>1061</MaxTileCol>
     65872                                        </TileMatrixLimits>
     65873                                        <TileMatrixLimits>
     65874                                                <TileMatrix>12</TileMatrix>
     65875                                                <MinTileRow>1416</MinTileRow>
     65876                                                <MaxTileRow>1419</MaxTileRow>
     65877                                                <MinTileCol>2118</MinTileCol>
     65878                                                <MaxTileCol>2122</MaxTileCol>
     65879                                        </TileMatrixLimits>
     65880                                        <TileMatrixLimits>
     65881                                                <TileMatrix>13</TileMatrix>
     65882                                                <MinTileRow>2832</MinTileRow>
     65883                                                <MaxTileRow>2838</MaxTileRow>
     65884                                                <MinTileCol>4236</MinTileCol>
     65885                                                <MaxTileCol>4244</MaxTileCol>
     65886                                        </TileMatrixLimits>
     65887                                        <TileMatrixLimits>
     65888                                                <TileMatrix>14</TileMatrix>
     65889                                                <MinTileRow>5664</MinTileRow>
     65890                                                <MaxTileRow>5677</MaxTileRow>
     65891                                                <MinTileCol>8473</MinTileCol>
     65892                                                <MaxTileCol>8488</MaxTileCol>
     65893                                        </TileMatrixLimits>
     65894                                        <TileMatrixLimits>
     65895                                                <TileMatrix>15</TileMatrix>
     65896                                                <MinTileRow>11328</MinTileRow>
     65897                                                <MaxTileRow>11354</MaxTileRow>
     65898                                                <MinTileCol>16947</MinTileCol>
     65899                                                <MaxTileCol>16977</MaxTileCol>
     65900                                        </TileMatrixLimits>
     65901                                        <TileMatrixLimits>
     65902                                                <TileMatrix>16</TileMatrix>
     65903                                                <MinTileRow>22657</MinTileRow>
     65904                                                <MaxTileRow>22709</MaxTileRow>
     65905                                                <MinTileCol>33894</MinTileCol>
     65906                                                <MaxTileCol>33955</MaxTileCol>
     65907                                        </TileMatrixLimits>
     65908                                        <TileMatrixLimits>
     65909                                                <TileMatrix>17</TileMatrix>
     65910                                                <MinTileRow>45314</MinTileRow>
     65911                                                <MaxTileRow>45419</MaxTileRow>
     65912                                                <MinTileCol>67788</MinTileCol>
     65913                                                <MaxTileCol>67911</MaxTileCol>
     65914                                        </TileMatrixLimits>
     65915                                        <TileMatrixLimits>
     65916                                                <TileMatrix>18</TileMatrix>
     65917                                                <MinTileRow>90629</MinTileRow>
     65918                                                <MaxTileRow>90839</MaxTileRow>
     65919                                                <MinTileCol>135576</MinTileCol>
     65920                                                <MaxTileCol>135822</MaxTileCol>
     65921                                        </TileMatrixLimits>
     65922                                        <TileMatrixLimits>
     65923                                                <TileMatrix>2</TileMatrix>
     65924                                                <MinTileRow>1</MinTileRow>
     65925                                                <MaxTileRow>1</MaxTileRow>
     65926                                                <MinTileCol>2</MinTileCol>
     65927                                                <MaxTileCol>2</MaxTileCol>
     65928                                        </TileMatrixLimits>
     65929                                        <TileMatrixLimits>
     65930                                                <TileMatrix>3</TileMatrix>
     65931                                                <MinTileRow>2</MinTileRow>
     65932                                                <MaxTileRow>2</MaxTileRow>
     65933                                                <MinTileCol>4</MinTileCol>
     65934                                                <MaxTileCol>4</MaxTileCol>
     65935                                        </TileMatrixLimits>
     65936                                        <TileMatrixLimits>
     65937                                                <TileMatrix>4</TileMatrix>
     65938                                                <MinTileRow>5</MinTileRow>
     65939                                                <MaxTileRow>5</MaxTileRow>
     65940                                                <MinTileCol>8</MinTileCol>
     65941                                                <MaxTileCol>8</MaxTileCol>
     65942                                        </TileMatrixLimits>
     65943                                        <TileMatrixLimits>
     65944                                                <TileMatrix>5</TileMatrix>
     65945                                                <MinTileRow>11</MinTileRow>
     65946                                                <MaxTileRow>11</MaxTileRow>
     65947                                                <MinTileCol>16</MinTileCol>
     65948                                                <MaxTileCol>16</MaxTileCol>
     65949                                        </TileMatrixLimits>
     65950                                        <TileMatrixLimits>
     65951                                                <TileMatrix>6</TileMatrix>
     65952                                                <MinTileRow>22</MinTileRow>
     65953                                                <MaxTileRow>22</MaxTileRow>
     65954                                                <MinTileCol>33</MinTileCol>
     65955                                                <MaxTileCol>33</MaxTileCol>
     65956                                        </TileMatrixLimits>
     65957                                        <TileMatrixLimits>
     65958                                                <TileMatrix>7</TileMatrix>
     65959                                                <MinTileRow>44</MinTileRow>
     65960                                                <MaxTileRow>44</MaxTileRow>
     65961                                                <MinTileCol>66</MinTileCol>
     65962                                                <MaxTileCol>66</MaxTileCol>
     65963                                        </TileMatrixLimits>
     65964                                        <TileMatrixLimits>
     65965                                                <TileMatrix>8</TileMatrix>
     65966                                                <MinTileRow>88</MinTileRow>
     65967                                                <MaxTileRow>88</MaxTileRow>
     65968                                                <MinTileCol>132</MinTileCol>
     65969                                                <MaxTileCol>132</MaxTileCol>
     65970                                        </TileMatrixLimits>
     65971                                        <TileMatrixLimits>
     65972                                                <TileMatrix>9</TileMatrix>
     65973                                                <MinTileRow>177</MinTileRow>
     65974                                                <MaxTileRow>177</MaxTileRow>
     65975                                                <MinTileCol>264</MinTileCol>
     65976                                                <MaxTileCol>265</MaxTileCol>
     65977                                        </TileMatrixLimits>
     65978                                </TileMatrixSetLimits>
     65979                        </TileMatrixSetLink>
     65980                </Layer>
     65981                <Layer>
     65982                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     65983                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     65984                        <ows:Keywords>
     65985                                <ows:Keyword>Photographies</ows:Keyword>
     65986                        </ows:Keywords>
     65987                        <ows:WGS84BoundingBox>
     65988                                <ows:LowerCorner>6.18483 47.8696</ows:LowerCorner>
     65989                                <ows:UpperCorner>6.53631 48.14</ows:UpperCorner>
     65990                        </ows:WGS84BoundingBox>
     65991                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37759948</ows:Identifier>
     65992                        <Style isDefault="true">
     65993                                <ows:Title>Données Brutes</ows:Title>
     65994                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     65995                                <ows:Keywords>
     65996                                        <ows:Keyword>Défaut</ows:Keyword>
     65997                                </ows:Keywords>
     65998                                <ows:Identifier>normal</ows:Identifier>
     65999                                <LegendURL format="image/jpeg" height="200"
     66000                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66001                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66002                        </Style>
     66003                        <Format>image/jpeg</Format>
     66004                        <TileMatrixSetLink>
     66005                                <TileMatrixSet>PM</TileMatrixSet>
     66006                                <TileMatrixSetLimits>
     66007                                        <TileMatrixLimits>
     66008                                                <TileMatrix>0</TileMatrix>
     66009                                                <MinTileRow>0</MinTileRow>
     66010                                                <MaxTileRow>0</MaxTileRow>
     66011                                                <MinTileCol>0</MinTileCol>
     66012                                                <MaxTileCol>0</MaxTileCol>
     66013                                        </TileMatrixLimits>
     66014                                        <TileMatrixLimits>
     66015                                                <TileMatrix>1</TileMatrix>
     66016                                                <MinTileRow>0</MinTileRow>
     66017                                                <MaxTileRow>0</MaxTileRow>
     66018                                                <MinTileCol>1</MinTileCol>
     66019                                                <MaxTileCol>1</MaxTileCol>
     66020                                        </TileMatrixLimits>
     66021                                        <TileMatrixLimits>
     66022                                                <TileMatrix>10</TileMatrix>
     66023                                                <MinTileRow>355</MinTileRow>
     66024                                                <MaxTileRow>356</MaxTileRow>
     66025                                                <MinTileCol>529</MinTileCol>
     66026                                                <MaxTileCol>530</MaxTileCol>
     66027                                        </TileMatrixLimits>
     66028                                        <TileMatrixLimits>
     66029                                                <TileMatrix>11</TileMatrix>
     66030                                                <MinTileRow>710</MinTileRow>
     66031                                                <MaxTileRow>713</MaxTileRow>
     66032                                                <MinTileCol>1059</MinTileCol>
     66033                                                <MaxTileCol>1061</MaxTileCol>
     66034                                        </TileMatrixLimits>
     66035                                        <TileMatrixLimits>
     66036                                                <TileMatrix>12</TileMatrix>
     66037                                                <MinTileRow>1421</MinTileRow>
     66038                                                <MaxTileRow>1426</MaxTileRow>
     66039                                                <MinTileCol>2118</MinTileCol>
     66040                                                <MaxTileCol>2122</MaxTileCol>
     66041                                        </TileMatrixLimits>
     66042                                        <TileMatrixLimits>
     66043                                                <TileMatrix>13</TileMatrix>
     66044                                                <MinTileRow>2842</MinTileRow>
     66045                                                <MaxTileRow>2852</MaxTileRow>
     66046                                                <MinTileCol>4236</MinTileCol>
     66047                                                <MaxTileCol>4244</MaxTileCol>
     66048                                        </TileMatrixLimits>
     66049                                        <TileMatrixLimits>
     66050                                                <TileMatrix>14</TileMatrix>
     66051                                                <MinTileRow>5685</MinTileRow>
     66052                                                <MaxTileRow>5704</MaxTileRow>
     66053                                                <MinTileCol>8473</MinTileCol>
     66054                                                <MaxTileCol>8488</MaxTileCol>
     66055                                        </TileMatrixLimits>
     66056                                        <TileMatrixLimits>
     66057                                                <TileMatrix>15</TileMatrix>
     66058                                                <MinTileRow>11371</MinTileRow>
     66059                                                <MaxTileRow>11408</MaxTileRow>
     66060                                                <MinTileCol>16947</MinTileCol>
     66061                                                <MaxTileCol>16977</MaxTileCol>
     66062                                        </TileMatrixLimits>
     66063                                        <TileMatrixLimits>
     66064                                                <TileMatrix>16</TileMatrix>
     66065                                                <MinTileRow>22743</MinTileRow>
     66066                                                <MaxTileRow>22816</MaxTileRow>
     66067                                                <MinTileCol>33894</MinTileCol>
     66068                                                <MaxTileCol>33955</MaxTileCol>
     66069                                        </TileMatrixLimits>
     66070                                        <TileMatrixLimits>
     66071                                                <TileMatrix>17</TileMatrix>
     66072                                                <MinTileRow>45486</MinTileRow>
     66073                                                <MaxTileRow>45633</MaxTileRow>
     66074                                                <MinTileCol>67789</MinTileCol>
     66075                                                <MaxTileCol>67910</MaxTileCol>
     66076                                        </TileMatrixLimits>
     66077                                        <TileMatrixLimits>
     66078                                                <TileMatrix>18</TileMatrix>
     66079                                                <MinTileRow>90972</MinTileRow>
     66080                                                <MaxTileRow>91266</MaxTileRow>
     66081                                                <MinTileCol>135579</MinTileCol>
     66082                                                <MaxTileCol>135820</MaxTileCol>
     66083                                        </TileMatrixLimits>
     66084                                        <TileMatrixLimits>
     66085                                                <TileMatrix>2</TileMatrix>
     66086                                                <MinTileRow>1</MinTileRow>
     66087                                                <MaxTileRow>1</MaxTileRow>
     66088                                                <MinTileCol>2</MinTileCol>
     66089                                                <MaxTileCol>2</MaxTileCol>
     66090                                        </TileMatrixLimits>
     66091                                        <TileMatrixLimits>
     66092                                                <TileMatrix>3</TileMatrix>
     66093                                                <MinTileRow>2</MinTileRow>
     66094                                                <MaxTileRow>2</MaxTileRow>
     66095                                                <MinTileCol>4</MinTileCol>
     66096                                                <MaxTileCol>4</MaxTileCol>
     66097                                        </TileMatrixLimits>
     66098                                        <TileMatrixLimits>
     66099                                                <TileMatrix>4</TileMatrix>
     66100                                                <MinTileRow>5</MinTileRow>
     66101                                                <MaxTileRow>5</MaxTileRow>
     66102                                                <MinTileCol>8</MinTileCol>
     66103                                                <MaxTileCol>8</MaxTileCol>
     66104                                        </TileMatrixLimits>
     66105                                        <TileMatrixLimits>
     66106                                                <TileMatrix>5</TileMatrix>
     66107                                                <MinTileRow>11</MinTileRow>
     66108                                                <MaxTileRow>11</MaxTileRow>
     66109                                                <MinTileCol>16</MinTileCol>
     66110                                                <MaxTileCol>16</MaxTileCol>
     66111                                        </TileMatrixLimits>
     66112                                        <TileMatrixLimits>
     66113                                                <TileMatrix>6</TileMatrix>
     66114                                                <MinTileRow>22</MinTileRow>
     66115                                                <MaxTileRow>22</MaxTileRow>
     66116                                                <MinTileCol>33</MinTileCol>
     66117                                                <MaxTileCol>33</MaxTileCol>
     66118                                        </TileMatrixLimits>
     66119                                        <TileMatrixLimits>
     66120                                                <TileMatrix>7</TileMatrix>
     66121                                                <MinTileRow>44</MinTileRow>
     66122                                                <MaxTileRow>44</MaxTileRow>
     66123                                                <MinTileCol>66</MinTileCol>
     66124                                                <MaxTileCol>66</MaxTileCol>
     66125                                        </TileMatrixLimits>
     66126                                        <TileMatrixLimits>
     66127                                                <TileMatrix>8</TileMatrix>
     66128                                                <MinTileRow>88</MinTileRow>
     66129                                                <MaxTileRow>89</MaxTileRow>
     66130                                                <MinTileCol>132</MinTileCol>
     66131                                                <MaxTileCol>132</MaxTileCol>
     66132                                        </TileMatrixLimits>
     66133                                        <TileMatrixLimits>
     66134                                                <TileMatrix>9</TileMatrix>
     66135                                                <MinTileRow>177</MinTileRow>
     66136                                                <MaxTileRow>178</MaxTileRow>
     66137                                                <MinTileCol>264</MinTileCol>
     66138                                                <MaxTileCol>265</MaxTileCol>
     66139                                        </TileMatrixLimits>
     66140                                </TileMatrixSetLimits>
     66141                        </TileMatrixSetLink>
     66142                </Layer>
     66143                <Layer>
     66144                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66145                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66146                        <ows:Keywords>
     66147                                <ows:Keyword>Photographies</ows:Keyword>
     66148                        </ows:Keywords>
     66149                        <ows:WGS84BoundingBox>
     66150                                <ows:LowerCorner>5.94619 47.9126</ows:LowerCorner>
     66151                                <ows:UpperCorner>6.29345 48.1283</ows:UpperCorner>
     66152                        </ows:WGS84BoundingBox>
     66153                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-21-37771194</ows:Identifier>
     66154                        <Style isDefault="true">
     66155                                <ows:Title>Données Brutes</ows:Title>
     66156                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66157                                <ows:Keywords>
     66158                                        <ows:Keyword>Défaut</ows:Keyword>
     66159                                </ows:Keywords>
     66160                                <ows:Identifier>normal</ows:Identifier>
     66161                                <LegendURL format="image/jpeg" height="200"
     66162                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66163                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66164                        </Style>
     66165                        <Format>image/jpeg</Format>
     66166                        <TileMatrixSetLink>
     66167                                <TileMatrixSet>PM</TileMatrixSet>
     66168                                <TileMatrixSetLimits>
     66169                                        <TileMatrixLimits>
     66170                                                <TileMatrix>0</TileMatrix>
     66171                                                <MinTileRow>0</MinTileRow>
     66172                                                <MaxTileRow>0</MaxTileRow>
     66173                                                <MinTileCol>0</MinTileCol>
     66174                                                <MaxTileCol>0</MaxTileCol>
     66175                                        </TileMatrixLimits>
     66176                                        <TileMatrixLimits>
     66177                                                <TileMatrix>1</TileMatrix>
     66178                                                <MinTileRow>0</MinTileRow>
     66179                                                <MaxTileRow>0</MaxTileRow>
     66180                                                <MinTileCol>1</MinTileCol>
     66181                                                <MaxTileCol>1</MaxTileCol>
     66182                                        </TileMatrixLimits>
     66183                                        <TileMatrixLimits>
     66184                                                <TileMatrix>10</TileMatrix>
     66185                                                <MinTileRow>355</MinTileRow>
     66186                                                <MaxTileRow>356</MaxTileRow>
     66187                                                <MinTileCol>528</MinTileCol>
     66188                                                <MaxTileCol>529</MaxTileCol>
     66189                                        </TileMatrixLimits>
     66190                                        <TileMatrixLimits>
     66191                                                <TileMatrix>11</TileMatrix>
     66192                                                <MinTileRow>710</MinTileRow>
     66193                                                <MaxTileRow>712</MaxTileRow>
     66194                                                <MinTileCol>1057</MinTileCol>
     66195                                                <MaxTileCol>1059</MaxTileCol>
     66196                                        </TileMatrixLimits>
     66197                                        <TileMatrixLimits>
     66198                                                <TileMatrix>12</TileMatrix>
     66199                                                <MinTileRow>1421</MinTileRow>
     66200                                                <MaxTileRow>1425</MaxTileRow>
     66201                                                <MinTileCol>2115</MinTileCol>
     66202                                                <MaxTileCol>2119</MaxTileCol>
     66203                                        </TileMatrixLimits>
     66204                                        <TileMatrixLimits>
     66205                                                <TileMatrix>13</TileMatrix>
     66206                                                <MinTileRow>2843</MinTileRow>
     66207                                                <MaxTileRow>2850</MaxTileRow>
     66208                                                <MinTileCol>4231</MinTileCol>
     66209                                                <MaxTileCol>4239</MaxTileCol>
     66210                                        </TileMatrixLimits>
     66211                                        <TileMatrixLimits>
     66212                                                <TileMatrix>14</TileMatrix>
     66213                                                <MinTileRow>5686</MinTileRow>
     66214                                                <MaxTileRow>5701</MaxTileRow>
     66215                                                <MinTileCol>8462</MinTileCol>
     66216                                                <MaxTileCol>8478</MaxTileCol>
     66217                                        </TileMatrixLimits>
     66218                                        <TileMatrixLimits>
     66219                                                <TileMatrix>15</TileMatrix>
     66220                                                <MinTileRow>11373</MinTileRow>
     66221                                                <MaxTileRow>11402</MaxTileRow>
     66222                                                <MinTileCol>16925</MinTileCol>
     66223                                                <MaxTileCol>16956</MaxTileCol>
     66224                                        </TileMatrixLimits>
     66225                                        <TileMatrixLimits>
     66226                                                <TileMatrix>16</TileMatrix>
     66227                                                <MinTileRow>22746</MinTileRow>
     66228                                                <MaxTileRow>22804</MaxTileRow>
     66229                                                <MinTileCol>33851</MinTileCol>
     66230                                                <MaxTileCol>33912</MaxTileCol>
     66231                                        </TileMatrixLimits>
     66232                                        <TileMatrixLimits>
     66233                                                <TileMatrix>17</TileMatrix>
     66234                                                <MinTileRow>45492</MinTileRow>
     66235                                                <MaxTileRow>45609</MaxTileRow>
     66236                                                <MinTileCol>67702</MinTileCol>
     66237                                                <MaxTileCol>67825</MaxTileCol>
     66238                                        </TileMatrixLimits>
     66239                                        <TileMatrixLimits>
     66240                                                <TileMatrix>18</TileMatrix>
     66241                                                <MinTileRow>90985</MinTileRow>
     66242                                                <MaxTileRow>91219</MaxTileRow>
     66243                                                <MinTileCol>135405</MinTileCol>
     66244                                                <MaxTileCol>135650</MaxTileCol>
     66245                                        </TileMatrixLimits>
     66246                                        <TileMatrixLimits>
     66247                                                <TileMatrix>2</TileMatrix>
     66248                                                <MinTileRow>1</MinTileRow>
     66249                                                <MaxTileRow>1</MaxTileRow>
     66250                                                <MinTileCol>2</MinTileCol>
     66251                                                <MaxTileCol>2</MaxTileCol>
     66252                                        </TileMatrixLimits>
     66253                                        <TileMatrixLimits>
     66254                                                <TileMatrix>3</TileMatrix>
     66255                                                <MinTileRow>2</MinTileRow>
     66256                                                <MaxTileRow>2</MaxTileRow>
     66257                                                <MinTileCol>4</MinTileCol>
     66258                                                <MaxTileCol>4</MaxTileCol>
     66259                                        </TileMatrixLimits>
     66260                                        <TileMatrixLimits>
     66261                                                <TileMatrix>4</TileMatrix>
     66262                                                <MinTileRow>5</MinTileRow>
     66263                                                <MaxTileRow>5</MaxTileRow>
     66264                                                <MinTileCol>8</MinTileCol>
     66265                                                <MaxTileCol>8</MaxTileCol>
     66266                                        </TileMatrixLimits>
     66267                                        <TileMatrixLimits>
     66268                                                <TileMatrix>5</TileMatrix>
     66269                                                <MinTileRow>11</MinTileRow>
     66270                                                <MaxTileRow>11</MaxTileRow>
     66271                                                <MinTileCol>16</MinTileCol>
     66272                                                <MaxTileCol>16</MaxTileCol>
     66273                                        </TileMatrixLimits>
     66274                                        <TileMatrixLimits>
     66275                                                <TileMatrix>6</TileMatrix>
     66276                                                <MinTileRow>22</MinTileRow>
     66277                                                <MaxTileRow>22</MaxTileRow>
     66278                                                <MinTileCol>33</MinTileCol>
     66279                                                <MaxTileCol>33</MaxTileCol>
     66280                                        </TileMatrixLimits>
     66281                                        <TileMatrixLimits>
     66282                                                <TileMatrix>7</TileMatrix>
     66283                                                <MinTileRow>44</MinTileRow>
     66284                                                <MaxTileRow>44</MaxTileRow>
     66285                                                <MinTileCol>66</MinTileCol>
     66286                                                <MaxTileCol>66</MaxTileCol>
     66287                                        </TileMatrixLimits>
     66288                                        <TileMatrixLimits>
     66289                                                <TileMatrix>8</TileMatrix>
     66290                                                <MinTileRow>88</MinTileRow>
     66291                                                <MaxTileRow>89</MaxTileRow>
     66292                                                <MinTileCol>132</MinTileCol>
     66293                                                <MaxTileCol>132</MaxTileCol>
     66294                                        </TileMatrixLimits>
     66295                                        <TileMatrixLimits>
     66296                                                <TileMatrix>9</TileMatrix>
     66297                                                <MinTileRow>177</MinTileRow>
     66298                                                <MaxTileRow>178</MaxTileRow>
     66299                                                <MinTileCol>264</MinTileCol>
     66300                                                <MaxTileCol>264</MaxTileCol>
     66301                                        </TileMatrixLimits>
     66302                                </TileMatrixSetLimits>
     66303                        </TileMatrixSetLink>
     66304                </Layer>
     66305                <Layer>
     66306                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66307                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66308                        <ows:Keywords>
     66309                                <ows:Keyword>Photographies</ows:Keyword>
     66310                        </ows:Keywords>
     66311                        <ows:WGS84BoundingBox>
     66312                                <ows:LowerCorner>5.70947 48</ows:LowerCorner>
     66313                                <ows:UpperCorner>6.07476 48.5297</ows:UpperCorner>
     66314                        </ows:WGS84BoundingBox>
     66315                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39301090</ows:Identifier>
     66316                        <Style isDefault="true">
     66317                                <ows:Title>Données Brutes</ows:Title>
     66318                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66319                                <ows:Keywords>
     66320                                        <ows:Keyword>Défaut</ows:Keyword>
     66321                                </ows:Keywords>
     66322                                <ows:Identifier>normal</ows:Identifier>
     66323                                <LegendURL format="image/jpeg" height="200"
     66324                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66325                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66326                        </Style>
     66327                        <Format>image/jpeg</Format>
     66328                        <TileMatrixSetLink>
     66329                                <TileMatrixSet>PM</TileMatrixSet>
     66330                                <TileMatrixSetLimits>
     66331                                        <TileMatrixLimits>
     66332                                                <TileMatrix>0</TileMatrix>
     66333                                                <MinTileRow>0</MinTileRow>
     66334                                                <MaxTileRow>0</MaxTileRow>
     66335                                                <MinTileCol>0</MinTileCol>
     66336                                                <MaxTileCol>0</MaxTileCol>
     66337                                        </TileMatrixLimits>
     66338                                        <TileMatrixLimits>
     66339                                                <TileMatrix>1</TileMatrix>
     66340                                                <MinTileRow>0</MinTileRow>
     66341                                                <MaxTileRow>0</MaxTileRow>
     66342                                                <MinTileCol>1</MinTileCol>
     66343                                                <MaxTileCol>1</MaxTileCol>
     66344                                        </TileMatrixLimits>
     66345                                        <TileMatrixLimits>
     66346                                                <TileMatrix>10</TileMatrix>
     66347                                                <MinTileRow>353</MinTileRow>
     66348                                                <MaxTileRow>355</MaxTileRow>
     66349                                                <MinTileCol>528</MinTileCol>
     66350                                                <MaxTileCol>529</MaxTileCol>
     66351                                        </TileMatrixLimits>
     66352                                        <TileMatrixLimits>
     66353                                                <TileMatrix>11</TileMatrix>
     66354                                                <MinTileRow>707</MinTileRow>
     66355                                                <MaxTileRow>711</MaxTileRow>
     66356                                                <MinTileCol>1056</MinTileCol>
     66357                                                <MaxTileCol>1058</MaxTileCol>
     66358                                        </TileMatrixLimits>
     66359                                        <TileMatrixLimits>
     66360                                                <TileMatrix>12</TileMatrix>
     66361                                                <MinTileRow>1414</MinTileRow>
     66362                                                <MaxTileRow>1423</MaxTileRow>
     66363                                                <MinTileCol>2113</MinTileCol>
     66364                                                <MaxTileCol>2116</MaxTileCol>
     66365                                        </TileMatrixLimits>
     66366                                        <TileMatrixLimits>
     66367                                                <TileMatrix>13</TileMatrix>
     66368                                                <MinTileRow>2829</MinTileRow>
     66369                                                <MaxTileRow>2847</MaxTileRow>
     66370                                                <MinTileCol>4226</MinTileCol>
     66371                                                <MaxTileCol>4233</MaxTileCol>
     66372                                        </TileMatrixLimits>
     66373                                        <TileMatrixLimits>
     66374                                                <TileMatrix>14</TileMatrix>
     66375                                                <MinTileRow>5659</MinTileRow>
     66376                                                <MaxTileRow>5695</MaxTileRow>
     66377                                                <MinTileCol>8452</MinTileCol>
     66378                                                <MaxTileCol>8467</MaxTileCol>
     66379                                        </TileMatrixLimits>
     66380                                        <TileMatrixLimits>
     66381                                                <TileMatrix>15</TileMatrix>
     66382                                                <MinTileRow>11318</MinTileRow>
     66383                                                <MaxTileRow>11390</MaxTileRow>
     66384                                                <MinTileCol>16904</MinTileCol>
     66385                                                <MaxTileCol>16934</MaxTileCol>
     66386                                        </TileMatrixLimits>
     66387                                        <TileMatrixLimits>
     66388                                                <TileMatrix>16</TileMatrix>
     66389                                                <MinTileRow>22637</MinTileRow>
     66390                                                <MaxTileRow>22781</MaxTileRow>
     66391                                                <MinTileCol>33809</MinTileCol>
     66392                                                <MaxTileCol>33868</MaxTileCol>
     66393                                        </TileMatrixLimits>
     66394                                        <TileMatrixLimits>
     66395                                                <TileMatrix>17</TileMatrix>
     66396                                                <MinTileRow>45274</MinTileRow>
     66397                                                <MaxTileRow>45562</MaxTileRow>
     66398                                                <MinTileCol>67618</MinTileCol>
     66399                                                <MaxTileCol>67737</MaxTileCol>
     66400                                        </TileMatrixLimits>
     66401                                        <TileMatrixLimits>
     66402                                                <TileMatrix>18</TileMatrix>
     66403                                                <MinTileRow>90548</MinTileRow>
     66404                                                <MaxTileRow>91125</MaxTileRow>
     66405                                                <MinTileCol>135237</MinTileCol>
     66406                                                <MaxTileCol>135475</MaxTileCol>
     66407                                        </TileMatrixLimits>
     66408                                        <TileMatrixLimits>
     66409                                                <TileMatrix>2</TileMatrix>
     66410                                                <MinTileRow>1</MinTileRow>
     66411                                                <MaxTileRow>1</MaxTileRow>
     66412                                                <MinTileCol>2</MinTileCol>
     66413                                                <MaxTileCol>2</MaxTileCol>
     66414                                        </TileMatrixLimits>
     66415                                        <TileMatrixLimits>
     66416                                                <TileMatrix>3</TileMatrix>
     66417                                                <MinTileRow>2</MinTileRow>
     66418                                                <MaxTileRow>2</MaxTileRow>
     66419                                                <MinTileCol>4</MinTileCol>
     66420                                                <MaxTileCol>4</MaxTileCol>
     66421                                        </TileMatrixLimits>
     66422                                        <TileMatrixLimits>
     66423                                                <TileMatrix>4</TileMatrix>
     66424                                                <MinTileRow>5</MinTileRow>
     66425                                                <MaxTileRow>5</MaxTileRow>
     66426                                                <MinTileCol>8</MinTileCol>
     66427                                                <MaxTileCol>8</MaxTileCol>
     66428                                        </TileMatrixLimits>
     66429                                        <TileMatrixLimits>
     66430                                                <TileMatrix>5</TileMatrix>
     66431                                                <MinTileRow>11</MinTileRow>
     66432                                                <MaxTileRow>11</MaxTileRow>
     66433                                                <MinTileCol>16</MinTileCol>
     66434                                                <MaxTileCol>16</MaxTileCol>
     66435                                        </TileMatrixLimits>
     66436                                        <TileMatrixLimits>
     66437                                                <TileMatrix>6</TileMatrix>
     66438                                                <MinTileRow>22</MinTileRow>
     66439                                                <MaxTileRow>22</MaxTileRow>
     66440                                                <MinTileCol>33</MinTileCol>
     66441                                                <MaxTileCol>33</MaxTileCol>
     66442                                        </TileMatrixLimits>
     66443                                        <TileMatrixLimits>
     66444                                                <TileMatrix>7</TileMatrix>
     66445                                                <MinTileRow>44</MinTileRow>
     66446                                                <MaxTileRow>44</MaxTileRow>
     66447                                                <MinTileCol>66</MinTileCol>
     66448                                                <MaxTileCol>66</MaxTileCol>
     66449                                        </TileMatrixLimits>
     66450                                        <TileMatrixLimits>
     66451                                                <TileMatrix>8</TileMatrix>
     66452                                                <MinTileRow>88</MinTileRow>
     66453                                                <MaxTileRow>88</MaxTileRow>
     66454                                                <MinTileCol>132</MinTileCol>
     66455                                                <MaxTileCol>132</MaxTileCol>
     66456                                        </TileMatrixLimits>
     66457                                        <TileMatrixLimits>
     66458                                                <TileMatrix>9</TileMatrix>
     66459                                                <MinTileRow>176</MinTileRow>
     66460                                                <MaxTileRow>177</MaxTileRow>
     66461                                                <MinTileCol>264</MinTileCol>
     66462                                                <MaxTileCol>264</MaxTileCol>
     66463                                        </TileMatrixLimits>
     66464                                </TileMatrixSetLimits>
     66465                        </TileMatrixSetLink>
     66466                </Layer>
     66467                <Layer>
     66468                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66469                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66470                        <ows:Keywords>
     66471                                <ows:Keyword>Photographies</ows:Keyword>
     66472                        </ows:Keywords>
     66473                        <ows:WGS84BoundingBox>
     66474                                <ows:LowerCorner>5.48878 48.1592</ows:LowerCorner>
     66475                                <ows:UpperCorner>5.81666 48.5168</ows:UpperCorner>
     66476                        </ows:WGS84BoundingBox>
     66477                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39317136</ows:Identifier>
     66478                        <Style isDefault="true">
     66479                                <ows:Title>Données Brutes</ows:Title>
     66480                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66481                                <ows:Keywords>
     66482                                        <ows:Keyword>Défaut</ows:Keyword>
     66483                                </ows:Keywords>
     66484                                <ows:Identifier>normal</ows:Identifier>
     66485                                <LegendURL format="image/jpeg" height="200"
     66486                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66487                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66488                        </Style>
     66489                        <Format>image/jpeg</Format>
     66490                        <TileMatrixSetLink>
     66491                                <TileMatrixSet>PM</TileMatrixSet>
     66492                                <TileMatrixSetLimits>
     66493                                        <TileMatrixLimits>
     66494                                                <TileMatrix>0</TileMatrix>
     66495                                                <MinTileRow>0</MinTileRow>
     66496                                                <MaxTileRow>0</MaxTileRow>
     66497                                                <MinTileCol>0</MinTileCol>
     66498                                                <MaxTileCol>0</MaxTileCol>
     66499                                        </TileMatrixLimits>
     66500                                        <TileMatrixLimits>
     66501                                                <TileMatrix>1</TileMatrix>
     66502                                                <MinTileRow>0</MinTileRow>
     66503                                                <MaxTileRow>0</MaxTileRow>
     66504                                                <MinTileCol>1</MinTileCol>
     66505                                                <MaxTileCol>1</MaxTileCol>
     66506                                        </TileMatrixLimits>
     66507                                        <TileMatrixLimits>
     66508                                                <TileMatrix>10</TileMatrix>
     66509                                                <MinTileRow>353</MinTileRow>
     66510                                                <MaxTileRow>355</MaxTileRow>
     66511                                                <MinTileCol>527</MinTileCol>
     66512                                                <MaxTileCol>528</MaxTileCol>
     66513                                        </TileMatrixLimits>
     66514                                        <TileMatrixLimits>
     66515                                                <TileMatrix>11</TileMatrix>
     66516                                                <MinTileRow>707</MinTileRow>
     66517                                                <MaxTileRow>710</MaxTileRow>
     66518                                                <MinTileCol>1055</MinTileCol>
     66519                                                <MaxTileCol>1057</MaxTileCol>
     66520                                        </TileMatrixLimits>
     66521                                        <TileMatrixLimits>
     66522                                                <TileMatrix>12</TileMatrix>
     66523                                                <MinTileRow>1415</MinTileRow>
     66524                                                <MaxTileRow>1421</MaxTileRow>
     66525                                                <MinTileCol>2110</MinTileCol>
     66526                                                <MaxTileCol>2114</MaxTileCol>
     66527                                        </TileMatrixLimits>
     66528                                        <TileMatrixLimits>
     66529                                                <TileMatrix>13</TileMatrix>
     66530                                                <MinTileRow>2830</MinTileRow>
     66531                                                <MaxTileRow>2842</MaxTileRow>
     66532                                                <MinTileCol>4221</MinTileCol>
     66533                                                <MaxTileCol>4228</MaxTileCol>
     66534                                        </TileMatrixLimits>
     66535                                        <TileMatrixLimits>
     66536                                                <TileMatrix>14</TileMatrix>
     66537                                                <MinTileRow>5660</MinTileRow>
     66538                                                <MaxTileRow>5684</MaxTileRow>
     66539                                                <MinTileCol>8442</MinTileCol>
     66540                                                <MaxTileCol>8456</MaxTileCol>
     66541                                        </TileMatrixLimits>
     66542                                        <TileMatrixLimits>
     66543                                                <TileMatrix>15</TileMatrix>
     66544                                                <MinTileRow>11320</MinTileRow>
     66545                                                <MaxTileRow>11368</MaxTileRow>
     66546                                                <MinTileCol>16884</MinTileCol>
     66547                                                <MaxTileCol>16912</MaxTileCol>
     66548                                        </TileMatrixLimits>
     66549                                        <TileMatrixLimits>
     66550                                                <TileMatrix>16</TileMatrix>
     66551                                                <MinTileRow>22641</MinTileRow>
     66552                                                <MaxTileRow>22737</MaxTileRow>
     66553                                                <MinTileCol>33768</MinTileCol>
     66554                                                <MaxTileCol>33825</MaxTileCol>
     66555                                        </TileMatrixLimits>
     66556                                        <TileMatrixLimits>
     66557                                                <TileMatrix>17</TileMatrix>
     66558                                                <MinTileRow>45282</MinTileRow>
     66559                                                <MaxTileRow>45475</MaxTileRow>
     66560                                                <MinTileCol>67537</MinTileCol>
     66561                                                <MaxTileCol>67650</MaxTileCol>
     66562                                        </TileMatrixLimits>
     66563                                        <TileMatrixLimits>
     66564                                                <TileMatrix>18</TileMatrix>
     66565                                                <MinTileRow>90565</MinTileRow>
     66566                                                <MaxTileRow>90951</MaxTileRow>
     66567                                                <MinTileCol>135074</MinTileCol>
     66568                                                <MaxTileCol>135300</MaxTileCol>
     66569                                        </TileMatrixLimits>
     66570                                        <TileMatrixLimits>
     66571                                                <TileMatrix>2</TileMatrix>
     66572                                                <MinTileRow>1</MinTileRow>
     66573                                                <MaxTileRow>1</MaxTileRow>
     66574                                                <MinTileCol>2</MinTileCol>
     66575                                                <MaxTileCol>2</MaxTileCol>
     66576                                        </TileMatrixLimits>
     66577                                        <TileMatrixLimits>
     66578                                                <TileMatrix>3</TileMatrix>
     66579                                                <MinTileRow>2</MinTileRow>
     66580                                                <MaxTileRow>2</MaxTileRow>
     66581                                                <MinTileCol>4</MinTileCol>
     66582                                                <MaxTileCol>4</MaxTileCol>
     66583                                        </TileMatrixLimits>
     66584                                        <TileMatrixLimits>
     66585                                                <TileMatrix>4</TileMatrix>
     66586                                                <MinTileRow>5</MinTileRow>
     66587                                                <MaxTileRow>5</MaxTileRow>
     66588                                                <MinTileCol>8</MinTileCol>
     66589                                                <MaxTileCol>8</MaxTileCol>
     66590                                        </TileMatrixLimits>
     66591                                        <TileMatrixLimits>
     66592                                                <TileMatrix>5</TileMatrix>
     66593                                                <MinTileRow>11</MinTileRow>
     66594                                                <MaxTileRow>11</MaxTileRow>
     66595                                                <MinTileCol>16</MinTileCol>
     66596                                                <MaxTileCol>16</MaxTileCol>
     66597                                        </TileMatrixLimits>
     66598                                        <TileMatrixLimits>
     66599                                                <TileMatrix>6</TileMatrix>
     66600                                                <MinTileRow>22</MinTileRow>
     66601                                                <MaxTileRow>22</MaxTileRow>
     66602                                                <MinTileCol>32</MinTileCol>
     66603                                                <MaxTileCol>33</MaxTileCol>
     66604                                        </TileMatrixLimits>
     66605                                        <TileMatrixLimits>
     66606                                                <TileMatrix>7</TileMatrix>
     66607                                                <MinTileRow>44</MinTileRow>
     66608                                                <MaxTileRow>44</MaxTileRow>
     66609                                                <MinTileCol>65</MinTileCol>
     66610                                                <MaxTileCol>66</MaxTileCol>
     66611                                        </TileMatrixLimits>
     66612                                        <TileMatrixLimits>
     66613                                                <TileMatrix>8</TileMatrix>
     66614                                                <MinTileRow>88</MinTileRow>
     66615                                                <MaxTileRow>88</MaxTileRow>
     66616                                                <MinTileCol>131</MinTileCol>
     66617                                                <MaxTileCol>132</MaxTileCol>
     66618                                        </TileMatrixLimits>
     66619                                        <TileMatrixLimits>
     66620                                                <TileMatrix>9</TileMatrix>
     66621                                                <MinTileRow>176</MinTileRow>
     66622                                                <MaxTileRow>177</MaxTileRow>
     66623                                                <MinTileCol>263</MinTileCol>
     66624                                                <MaxTileCol>264</MaxTileCol>
     66625                                        </TileMatrixLimits>
     66626                                </TileMatrixSetLimits>
     66627                        </TileMatrixSetLink>
     66628                </Layer>
     66629                <Layer>
     66630                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66631                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66632                        <ows:Keywords>
     66633                                <ows:Keyword>Photographies</ows:Keyword>
     66634                        </ows:Keywords>
     66635                        <ows:WGS84BoundingBox>
     66636                                <ows:LowerCorner>5.35916 48.2717</ows:LowerCorner>
     66637                                <ows:UpperCorner>5.61101 48.4657</ows:UpperCorner>
     66638                        </ows:WGS84BoundingBox>
     66639                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-06-24-39329697</ows:Identifier>
     66640                        <Style isDefault="true">
     66641                                <ows:Title>Données Brutes</ows:Title>
     66642                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66643                                <ows:Keywords>
     66644                                        <ows:Keyword>Défaut</ows:Keyword>
     66645                                </ows:Keywords>
     66646                                <ows:Identifier>normal</ows:Identifier>
     66647                                <LegendURL format="image/jpeg" height="200"
     66648                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66649                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66650                        </Style>
     66651                        <Format>image/jpeg</Format>
     66652                        <TileMatrixSetLink>
     66653                                <TileMatrixSet>PM</TileMatrixSet>
     66654                                <TileMatrixSetLimits>
     66655                                        <TileMatrixLimits>
     66656                                                <TileMatrix>0</TileMatrix>
     66657                                                <MinTileRow>0</MinTileRow>
     66658                                                <MaxTileRow>0</MaxTileRow>
     66659                                                <MinTileCol>0</MinTileCol>
     66660                                                <MaxTileCol>0</MaxTileCol>
     66661                                        </TileMatrixLimits>
     66662                                        <TileMatrixLimits>
     66663                                                <TileMatrix>1</TileMatrix>
     66664                                                <MinTileRow>0</MinTileRow>
     66665                                                <MaxTileRow>0</MaxTileRow>
     66666                                                <MinTileCol>1</MinTileCol>
     66667                                                <MaxTileCol>1</MaxTileCol>
     66668                                        </TileMatrixLimits>
     66669                                        <TileMatrixLimits>
     66670                                                <TileMatrix>10</TileMatrix>
     66671                                                <MinTileRow>353</MinTileRow>
     66672                                                <MaxTileRow>354</MaxTileRow>
     66673                                                <MinTileCol>527</MinTileCol>
     66674                                                <MaxTileCol>527</MaxTileCol>
     66675                                        </TileMatrixLimits>
     66676                                        <TileMatrixLimits>
     66677                                                <TileMatrix>11</TileMatrix>
     66678                                                <MinTileRow>707</MinTileRow>
     66679                                                <MaxTileRow>709</MaxTileRow>
     66680                                                <MinTileCol>1054</MinTileCol>
     66681                                                <MaxTileCol>1055</MaxTileCol>
     66682                                        </TileMatrixLimits>
     66683                                        <TileMatrixLimits>
     66684                                                <TileMatrix>12</TileMatrix>
     66685                                                <MinTileRow>1415</MinTileRow>
     66686                                                <MaxTileRow>1419</MaxTileRow>
     66687                                                <MinTileCol>2109</MinTileCol>
     66688                                                <MaxTileCol>2111</MaxTileCol>
     66689                                        </TileMatrixLimits>
     66690                                        <TileMatrixLimits>
     66691                                                <TileMatrix>13</TileMatrix>
     66692                                                <MinTileRow>2831</MinTileRow>
     66693                                                <MaxTileRow>2838</MaxTileRow>
     66694                                                <MinTileCol>4218</MinTileCol>
     66695                                                <MaxTileCol>4223</MaxTileCol>
     66696                                        </TileMatrixLimits>
     66697                                        <TileMatrixLimits>
     66698                                                <TileMatrix>14</TileMatrix>
     66699                                                <MinTileRow>5663</MinTileRow>
     66700                                                <MaxTileRow>5676</MaxTileRow>
     66701                                                <MinTileCol>8436</MinTileCol>
     66702                                                <MaxTileCol>8447</MaxTileCol>
     66703                                        </TileMatrixLimits>
     66704                                        <TileMatrixLimits>
     66705                                                <TileMatrix>15</TileMatrix>
     66706                                                <MinTileRow>11327</MinTileRow>
     66707                                                <MaxTileRow>11353</MaxTileRow>
     66708                                                <MinTileCol>16872</MinTileCol>
     66709                                                <MaxTileCol>16894</MaxTileCol>
     66710                                        </TileMatrixLimits>
     66711                                        <TileMatrixLimits>
     66712                                                <TileMatrix>16</TileMatrix>
     66713                                                <MinTileRow>22654</MinTileRow>
     66714                                                <MaxTileRow>22707</MaxTileRow>
     66715                                                <MinTileCol>33744</MinTileCol>
     66716                                                <MaxTileCol>33789</MaxTileCol>
     66717                                        </TileMatrixLimits>
     66718                                        <TileMatrixLimits>
     66719                                                <TileMatrix>17</TileMatrix>
     66720                                                <MinTileRow>45309</MinTileRow>
     66721                                                <MaxTileRow>45414</MaxTileRow>
     66722                                                <MinTileCol>67488</MinTileCol>
     66723                                                <MaxTileCol>67579</MaxTileCol>
     66724                                        </TileMatrixLimits>
     66725                                        <TileMatrixLimits>
     66726                                                <TileMatrix>18</TileMatrix>
     66727                                                <MinTileRow>90619</MinTileRow>
     66728                                                <MaxTileRow>90828</MaxTileRow>
     66729                                                <MinTileCol>134977</MinTileCol>
     66730                                                <MaxTileCol>135158</MaxTileCol>
     66731                                        </TileMatrixLimits>
     66732                                        <TileMatrixLimits>
     66733                                                <TileMatrix>2</TileMatrix>
     66734                                                <MinTileRow>1</MinTileRow>
     66735                                                <MaxTileRow>1</MaxTileRow>
     66736                                                <MinTileCol>2</MinTileCol>
     66737                                                <MaxTileCol>2</MaxTileCol>
     66738                                        </TileMatrixLimits>
     66739                                        <TileMatrixLimits>
     66740                                                <TileMatrix>3</TileMatrix>
     66741                                                <MinTileRow>2</MinTileRow>
     66742                                                <MaxTileRow>2</MaxTileRow>
     66743                                                <MinTileCol>4</MinTileCol>
     66744                                                <MaxTileCol>4</MaxTileCol>
     66745                                        </TileMatrixLimits>
     66746                                        <TileMatrixLimits>
     66747                                                <TileMatrix>4</TileMatrix>
     66748                                                <MinTileRow>5</MinTileRow>
     66749                                                <MaxTileRow>5</MaxTileRow>
     66750                                                <MinTileCol>8</MinTileCol>
     66751                                                <MaxTileCol>8</MaxTileCol>
     66752                                        </TileMatrixLimits>
     66753                                        <TileMatrixLimits>
     66754                                                <TileMatrix>5</TileMatrix>
     66755                                                <MinTileRow>11</MinTileRow>
     66756                                                <MaxTileRow>11</MaxTileRow>
     66757                                                <MinTileCol>16</MinTileCol>
     66758                                                <MaxTileCol>16</MaxTileCol>
     66759                                        </TileMatrixLimits>
     66760                                        <TileMatrixLimits>
     66761                                                <TileMatrix>6</TileMatrix>
     66762                                                <MinTileRow>22</MinTileRow>
     66763                                                <MaxTileRow>22</MaxTileRow>
     66764                                                <MinTileCol>32</MinTileCol>
     66765                                                <MaxTileCol>32</MaxTileCol>
     66766                                        </TileMatrixLimits>
     66767                                        <TileMatrixLimits>
     66768                                                <TileMatrix>7</TileMatrix>
     66769                                                <MinTileRow>44</MinTileRow>
     66770                                                <MaxTileRow>44</MaxTileRow>
     66771                                                <MinTileCol>65</MinTileCol>
     66772                                                <MaxTileCol>65</MaxTileCol>
     66773                                        </TileMatrixLimits>
     66774                                        <TileMatrixLimits>
     66775                                                <TileMatrix>8</TileMatrix>
     66776                                                <MinTileRow>88</MinTileRow>
     66777                                                <MaxTileRow>88</MaxTileRow>
     66778                                                <MinTileCol>131</MinTileCol>
     66779                                                <MaxTileCol>131</MaxTileCol>
     66780                                        </TileMatrixLimits>
     66781                                        <TileMatrixLimits>
     66782                                                <TileMatrix>9</TileMatrix>
     66783                                                <MinTileRow>176</MinTileRow>
     66784                                                <MaxTileRow>177</MaxTileRow>
     66785                                                <MinTileCol>263</MinTileCol>
     66786                                                <MaxTileCol>263</MaxTileCol>
     66787                                        </TileMatrixLimits>
     66788                                </TileMatrixSetLimits>
     66789                        </TileMatrixSetLink>
     66790                </Layer>
     66791                <Layer>
     66792                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66793                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66794                        <ows:Keywords>
     66795                                <ows:Keyword>Photographies</ows:Keyword>
     66796                        </ows:Keywords>
     66797                        <ows:WGS84BoundingBox>
     66798                                <ows:LowerCorner>6.68827 47.7918</ows:LowerCorner>
     66799                                <ows:UpperCorner>7.01162 48.1969</ows:UpperCorner>
     66800                        </ows:WGS84BoundingBox>
     66801                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38207694</ows:Identifier>
     66802                        <Style isDefault="true">
     66803                                <ows:Title>Données Brutes</ows:Title>
     66804                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66805                                <ows:Keywords>
     66806                                        <ows:Keyword>Défaut</ows:Keyword>
     66807                                </ows:Keywords>
     66808                                <ows:Identifier>normal</ows:Identifier>
     66809                                <LegendURL format="image/jpeg" height="200"
     66810                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66811                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66812                        </Style>
     66813                        <Format>image/jpeg</Format>
     66814                        <TileMatrixSetLink>
     66815                                <TileMatrixSet>PM</TileMatrixSet>
     66816                                <TileMatrixSetLimits>
     66817                                        <TileMatrixLimits>
     66818                                                <TileMatrix>0</TileMatrix>
     66819                                                <MinTileRow>0</MinTileRow>
     66820                                                <MaxTileRow>0</MaxTileRow>
     66821                                                <MinTileCol>0</MinTileCol>
     66822                                                <MaxTileCol>0</MaxTileCol>
     66823                                        </TileMatrixLimits>
     66824                                        <TileMatrixLimits>
     66825                                                <TileMatrix>1</TileMatrix>
     66826                                                <MinTileRow>0</MinTileRow>
     66827                                                <MaxTileRow>0</MaxTileRow>
     66828                                                <MinTileCol>1</MinTileCol>
     66829                                                <MaxTileCol>1</MaxTileCol>
     66830                                        </TileMatrixLimits>
     66831                                        <TileMatrixLimits>
     66832                                                <TileMatrix>10</TileMatrix>
     66833                                                <MinTileRow>355</MinTileRow>
     66834                                                <MaxTileRow>356</MaxTileRow>
     66835                                                <MinTileCol>531</MinTileCol>
     66836                                                <MaxTileCol>531</MaxTileCol>
     66837                                        </TileMatrixLimits>
     66838                                        <TileMatrixLimits>
     66839                                                <TileMatrix>11</TileMatrix>
     66840                                                <MinTileRow>710</MinTileRow>
     66841                                                <MaxTileRow>713</MaxTileRow>
     66842                                                <MinTileCol>1062</MinTileCol>
     66843                                                <MaxTileCol>1063</MaxTileCol>
     66844                                        </TileMatrixLimits>
     66845                                        <TileMatrixLimits>
     66846                                                <TileMatrix>12</TileMatrix>
     66847                                                <MinTileRow>1420</MinTileRow>
     66848                                                <MaxTileRow>1427</MaxTileRow>
     66849                                                <MinTileCol>2124</MinTileCol>
     66850                                                <MaxTileCol>2127</MaxTileCol>
     66851                                        </TileMatrixLimits>
     66852                                        <TileMatrixLimits>
     66853                                                <TileMatrix>13</TileMatrix>
     66854                                                <MinTileRow>2841</MinTileRow>
     66855                                                <MaxTileRow>2854</MaxTileRow>
     66856                                                <MinTileCol>4248</MinTileCol>
     66857                                                <MaxTileCol>4255</MaxTileCol>
     66858                                        </TileMatrixLimits>
     66859                                        <TileMatrixLimits>
     66860                                                <TileMatrix>14</TileMatrix>
     66861                                                <MinTileRow>5682</MinTileRow>
     66862                                                <MaxTileRow>5709</MaxTileRow>
     66863                                                <MinTileCol>8497</MinTileCol>
     66864                                                <MaxTileCol>8510</MaxTileCol>
     66865                                        </TileMatrixLimits>
     66866                                        <TileMatrixLimits>
     66867                                                <TileMatrix>15</TileMatrix>
     66868                                                <MinTileRow>11364</MinTileRow>
     66869                                                <MaxTileRow>11418</MaxTileRow>
     66870                                                <MinTileCol>16994</MinTileCol>
     66871                                                <MaxTileCol>17021</MaxTileCol>
     66872                                        </TileMatrixLimits>
     66873                                        <TileMatrixLimits>
     66874                                                <TileMatrix>16</TileMatrix>
     66875                                                <MinTileRow>22728</MinTileRow>
     66876                                                <MaxTileRow>22836</MaxTileRow>
     66877                                                <MinTileCol>33988</MinTileCol>
     66878                                                <MaxTileCol>34043</MaxTileCol>
     66879                                        </TileMatrixLimits>
     66880                                        <TileMatrixLimits>
     66881                                                <TileMatrix>17</TileMatrix>
     66882                                                <MinTileRow>45457</MinTileRow>
     66883                                                <MaxTileRow>45673</MaxTileRow>
     66884                                                <MinTileCol>67977</MinTileCol>
     66885                                                <MaxTileCol>68086</MaxTileCol>
     66886                                        </TileMatrixLimits>
     66887                                        <TileMatrixLimits>
     66888                                                <TileMatrix>18</TileMatrix>
     66889                                                <MinTileRow>90914</MinTileRow>
     66890                                                <MaxTileRow>91346</MaxTileRow>
     66891                                                <MinTileCol>135954</MinTileCol>
     66892                                                <MaxTileCol>136173</MaxTileCol>
     66893                                        </TileMatrixLimits>
     66894                                        <TileMatrixLimits>
     66895                                                <TileMatrix>2</TileMatrix>
     66896                                                <MinTileRow>1</MinTileRow>
     66897                                                <MaxTileRow>1</MaxTileRow>
     66898                                                <MinTileCol>2</MinTileCol>
     66899                                                <MaxTileCol>2</MaxTileCol>
     66900                                        </TileMatrixLimits>
     66901                                        <TileMatrixLimits>
     66902                                                <TileMatrix>3</TileMatrix>
     66903                                                <MinTileRow>2</MinTileRow>
     66904                                                <MaxTileRow>2</MaxTileRow>
     66905                                                <MinTileCol>4</MinTileCol>
     66906                                                <MaxTileCol>4</MaxTileCol>
     66907                                        </TileMatrixLimits>
     66908                                        <TileMatrixLimits>
     66909                                                <TileMatrix>4</TileMatrix>
     66910                                                <MinTileRow>5</MinTileRow>
     66911                                                <MaxTileRow>5</MaxTileRow>
     66912                                                <MinTileCol>8</MinTileCol>
     66913                                                <MaxTileCol>8</MaxTileCol>
     66914                                        </TileMatrixLimits>
     66915                                        <TileMatrixLimits>
     66916                                                <TileMatrix>5</TileMatrix>
     66917                                                <MinTileRow>11</MinTileRow>
     66918                                                <MaxTileRow>11</MaxTileRow>
     66919                                                <MinTileCol>16</MinTileCol>
     66920                                                <MaxTileCol>16</MaxTileCol>
     66921                                        </TileMatrixLimits>
     66922                                        <TileMatrixLimits>
     66923                                                <TileMatrix>6</TileMatrix>
     66924                                                <MinTileRow>22</MinTileRow>
     66925                                                <MaxTileRow>22</MaxTileRow>
     66926                                                <MinTileCol>33</MinTileCol>
     66927                                                <MaxTileCol>33</MaxTileCol>
     66928                                        </TileMatrixLimits>
     66929                                        <TileMatrixLimits>
     66930                                                <TileMatrix>7</TileMatrix>
     66931                                                <MinTileRow>44</MinTileRow>
     66932                                                <MaxTileRow>44</MaxTileRow>
     66933                                                <MinTileCol>66</MinTileCol>
     66934                                                <MaxTileCol>66</MaxTileCol>
     66935                                        </TileMatrixLimits>
     66936                                        <TileMatrixLimits>
     66937                                                <TileMatrix>8</TileMatrix>
     66938                                                <MinTileRow>88</MinTileRow>
     66939                                                <MaxTileRow>89</MaxTileRow>
     66940                                                <MinTileCol>132</MinTileCol>
     66941                                                <MaxTileCol>132</MaxTileCol>
     66942                                        </TileMatrixLimits>
     66943                                        <TileMatrixLimits>
     66944                                                <TileMatrix>9</TileMatrix>
     66945                                                <MinTileRow>177</MinTileRow>
     66946                                                <MaxTileRow>178</MaxTileRow>
     66947                                                <MinTileCol>265</MinTileCol>
     66948                                                <MaxTileCol>265</MaxTileCol>
     66949                                        </TileMatrixLimits>
     66950                                </TileMatrixSetLimits>
     66951                        </TileMatrixSetLink>
     66952                </Layer>
     66953                <Layer>
     66954                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     66955                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     66956                        <ows:Keywords>
     66957                                <ows:Keyword>Photographies</ows:Keyword>
     66958                        </ows:Keywords>
     66959                        <ows:WGS84BoundingBox>
     66960                                <ows:LowerCorner>6.66406 47.8286</ows:LowerCorner>
     66961                                <ows:UpperCorner>6.98542 48.2067</ows:UpperCorner>
     66962                        </ows:WGS84BoundingBox>
     66963                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38228685</ows:Identifier>
     66964                        <Style isDefault="true">
     66965                                <ows:Title>Données Brutes</ows:Title>
     66966                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     66967                                <ows:Keywords>
     66968                                        <ows:Keyword>Défaut</ows:Keyword>
     66969                                </ows:Keywords>
     66970                                <ows:Identifier>normal</ows:Identifier>
     66971                                <LegendURL format="image/jpeg" height="200"
     66972                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     66973                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     66974                        </Style>
     66975                        <Format>image/jpeg</Format>
     66976                        <TileMatrixSetLink>
     66977                                <TileMatrixSet>PM</TileMatrixSet>
     66978                                <TileMatrixSetLimits>
     66979                                        <TileMatrixLimits>
     66980                                                <TileMatrix>0</TileMatrix>
     66981                                                <MinTileRow>0</MinTileRow>
     66982                                                <MaxTileRow>0</MaxTileRow>
     66983                                                <MinTileCol>0</MinTileCol>
     66984                                                <MaxTileCol>0</MaxTileCol>
     66985                                        </TileMatrixLimits>
     66986                                        <TileMatrixLimits>
     66987                                                <TileMatrix>1</TileMatrix>
     66988                                                <MinTileRow>0</MinTileRow>
     66989                                                <MaxTileRow>0</MaxTileRow>
     66990                                                <MinTileCol>1</MinTileCol>
     66991                                                <MaxTileCol>1</MaxTileCol>
     66992                                        </TileMatrixLimits>
     66993                                        <TileMatrixLimits>
     66994                                                <TileMatrix>10</TileMatrix>
     66995                                                <MinTileRow>355</MinTileRow>
     66996                                                <MaxTileRow>356</MaxTileRow>
     66997                                                <MinTileCol>530</MinTileCol>
     66998                                                <MaxTileCol>531</MaxTileCol>
     66999                                        </TileMatrixLimits>
     67000                                        <TileMatrixLimits>
     67001                                                <TileMatrix>11</TileMatrix>
     67002                                                <MinTileRow>710</MinTileRow>
     67003                                                <MaxTileRow>713</MaxTileRow>
     67004                                                <MinTileCol>1061</MinTileCol>
     67005                                                <MaxTileCol>1063</MaxTileCol>
     67006                                        </TileMatrixLimits>
     67007                                        <TileMatrixLimits>
     67008                                                <TileMatrix>12</TileMatrix>
     67009                                                <MinTileRow>1420</MinTileRow>
     67010                                                <MaxTileRow>1426</MaxTileRow>
     67011                                                <MinTileCol>2123</MinTileCol>
     67012                                                <MaxTileCol>2127</MaxTileCol>
     67013                                        </TileMatrixLimits>
     67014                                        <TileMatrixLimits>
     67015                                                <TileMatrix>13</TileMatrix>
     67016                                                <MinTileRow>2840</MinTileRow>
     67017                                                <MaxTileRow>2853</MaxTileRow>
     67018                                                <MinTileCol>4247</MinTileCol>
     67019                                                <MaxTileCol>4254</MaxTileCol>
     67020                                        </TileMatrixLimits>
     67021                                        <TileMatrixLimits>
     67022                                                <TileMatrix>14</TileMatrix>
     67023                                                <MinTileRow>5681</MinTileRow>
     67024                                                <MaxTileRow>5706</MaxTileRow>
     67025                                                <MinTileCol>8495</MinTileCol>
     67026                                                <MaxTileCol>8509</MaxTileCol>
     67027                                        </TileMatrixLimits>
     67028                                        <TileMatrixLimits>
     67029                                                <TileMatrix>15</TileMatrix>
     67030                                                <MinTileRow>11363</MinTileRow>
     67031                                                <MaxTileRow>11413</MaxTileRow>
     67032                                                <MinTileCol>16991</MinTileCol>
     67033                                                <MaxTileCol>17018</MaxTileCol>
     67034                                        </TileMatrixLimits>
     67035                                        <TileMatrixLimits>
     67036                                                <TileMatrix>16</TileMatrix>
     67037                                                <MinTileRow>22726</MinTileRow>
     67038                                                <MaxTileRow>22827</MaxTileRow>
     67039                                                <MinTileCol>33983</MinTileCol>
     67040                                                <MaxTileCol>34037</MaxTileCol>
     67041                                        </TileMatrixLimits>
     67042                                        <TileMatrixLimits>
     67043                                                <TileMatrix>17</TileMatrix>
     67044                                                <MinTileRow>45453</MinTileRow>
     67045                                                <MaxTileRow>45654</MaxTileRow>
     67046                                                <MinTileCol>67966</MinTileCol>
     67047                                                <MaxTileCol>68075</MaxTileCol>
     67048                                        </TileMatrixLimits>
     67049                                        <TileMatrixLimits>
     67050                                                <TileMatrix>18</TileMatrix>
     67051                                                <MinTileRow>90906</MinTileRow>
     67052                                                <MaxTileRow>91308</MaxTileRow>
     67053                                                <MinTileCol>135933</MinTileCol>
     67054                                                <MaxTileCol>136150</MaxTileCol>
     67055                                        </TileMatrixLimits>
     67056                                        <TileMatrixLimits>
     67057                                                <TileMatrix>2</TileMatrix>
     67058                                                <MinTileRow>1</MinTileRow>
     67059                                                <MaxTileRow>1</MaxTileRow>
     67060                                                <MinTileCol>2</MinTileCol>
     67061                                                <MaxTileCol>2</MaxTileCol>
     67062                                        </TileMatrixLimits>
     67063                                        <TileMatrixLimits>
     67064                                                <TileMatrix>3</TileMatrix>
     67065                                                <MinTileRow>2</MinTileRow>
     67066                                                <MaxTileRow>2</MaxTileRow>
     67067                                                <MinTileCol>4</MinTileCol>
     67068                                                <MaxTileCol>4</MaxTileCol>
     67069                                        </TileMatrixLimits>
     67070                                        <TileMatrixLimits>
     67071                                                <TileMatrix>4</TileMatrix>
     67072                                                <MinTileRow>5</MinTileRow>
     67073                                                <MaxTileRow>5</MaxTileRow>
     67074                                                <MinTileCol>8</MinTileCol>
     67075                                                <MaxTileCol>8</MaxTileCol>
     67076                                        </TileMatrixLimits>
     67077                                        <TileMatrixLimits>
     67078                                                <TileMatrix>5</TileMatrix>
     67079                                                <MinTileRow>11</MinTileRow>
     67080                                                <MaxTileRow>11</MaxTileRow>
     67081                                                <MinTileCol>16</MinTileCol>
     67082                                                <MaxTileCol>16</MaxTileCol>
     67083                                        </TileMatrixLimits>
     67084                                        <TileMatrixLimits>
     67085                                                <TileMatrix>6</TileMatrix>
     67086                                                <MinTileRow>22</MinTileRow>
     67087                                                <MaxTileRow>22</MaxTileRow>
     67088                                                <MinTileCol>33</MinTileCol>
     67089                                                <MaxTileCol>33</MaxTileCol>
     67090                                        </TileMatrixLimits>
     67091                                        <TileMatrixLimits>
     67092                                                <TileMatrix>7</TileMatrix>
     67093                                                <MinTileRow>44</MinTileRow>
     67094                                                <MaxTileRow>44</MaxTileRow>
     67095                                                <MinTileCol>66</MinTileCol>
     67096                                                <MaxTileCol>66</MaxTileCol>
     67097                                        </TileMatrixLimits>
     67098                                        <TileMatrixLimits>
     67099                                                <TileMatrix>8</TileMatrix>
     67100                                                <MinTileRow>88</MinTileRow>
     67101                                                <MaxTileRow>89</MaxTileRow>
     67102                                                <MinTileCol>132</MinTileCol>
     67103                                                <MaxTileCol>132</MaxTileCol>
     67104                                        </TileMatrixLimits>
     67105                                        <TileMatrixLimits>
     67106                                                <TileMatrix>9</TileMatrix>
     67107                                                <MinTileRow>177</MinTileRow>
     67108                                                <MaxTileRow>178</MaxTileRow>
     67109                                                <MinTileCol>265</MinTileCol>
     67110                                                <MaxTileCol>265</MaxTileCol>
     67111                                        </TileMatrixLimits>
     67112                                </TileMatrixSetLimits>
     67113                        </TileMatrixSetLink>
     67114                </Layer>
     67115                <Layer>
     67116                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67117                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67118                        <ows:Keywords>
     67119                                <ows:Keyword>Photographies</ows:Keyword>
     67120                        </ows:Keywords>
     67121                        <ows:WGS84BoundingBox>
     67122                                <ows:LowerCorner>6.42425 47.8451</ows:LowerCorner>
     67123                                <ows:UpperCorner>6.75433 48.1781</ows:UpperCorner>
     67124                        </ows:WGS84BoundingBox>
     67125                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38242319</ows:Identifier>
     67126                        <Style isDefault="true">
     67127                                <ows:Title>Données Brutes</ows:Title>
     67128                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67129                                <ows:Keywords>
     67130                                        <ows:Keyword>Défaut</ows:Keyword>
     67131                                </ows:Keywords>
     67132                                <ows:Identifier>normal</ows:Identifier>
     67133                                <LegendURL format="image/jpeg" height="200"
     67134                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67135                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67136                        </Style>
     67137                        <Format>image/jpeg</Format>
     67138                        <TileMatrixSetLink>
     67139                                <TileMatrixSet>PM</TileMatrixSet>
     67140                                <TileMatrixSetLimits>
     67141                                        <TileMatrixLimits>
     67142                                                <TileMatrix>0</TileMatrix>
     67143                                                <MinTileRow>0</MinTileRow>
     67144                                                <MaxTileRow>0</MaxTileRow>
     67145                                                <MinTileCol>0</MinTileCol>
     67146                                                <MaxTileCol>0</MaxTileCol>
     67147                                        </TileMatrixLimits>
     67148                                        <TileMatrixLimits>
     67149                                                <TileMatrix>1</TileMatrix>
     67150                                                <MinTileRow>0</MinTileRow>
     67151                                                <MaxTileRow>0</MaxTileRow>
     67152                                                <MinTileCol>1</MinTileCol>
     67153                                                <MaxTileCol>1</MaxTileCol>
     67154                                        </TileMatrixLimits>
     67155                                        <TileMatrixLimits>
     67156                                                <TileMatrix>10</TileMatrix>
     67157                                                <MinTileRow>355</MinTileRow>
     67158                                                <MaxTileRow>356</MaxTileRow>
     67159                                                <MinTileCol>530</MinTileCol>
     67160                                                <MaxTileCol>531</MaxTileCol>
     67161                                        </TileMatrixLimits>
     67162                                        <TileMatrixLimits>
     67163                                                <TileMatrix>11</TileMatrix>
     67164                                                <MinTileRow>710</MinTileRow>
     67165                                                <MaxTileRow>713</MaxTileRow>
     67166                                                <MinTileCol>1060</MinTileCol>
     67167                                                <MaxTileCol>1062</MaxTileCol>
     67168                                        </TileMatrixLimits>
     67169                                        <TileMatrixLimits>
     67170                                                <TileMatrix>12</TileMatrix>
     67171                                                <MinTileRow>1420</MinTileRow>
     67172                                                <MaxTileRow>1426</MaxTileRow>
     67173                                                <MinTileCol>2121</MinTileCol>
     67174                                                <MaxTileCol>2124</MaxTileCol>
     67175                                        </TileMatrixLimits>
     67176                                        <TileMatrixLimits>
     67177                                                <TileMatrix>13</TileMatrix>
     67178                                                <MinTileRow>2841</MinTileRow>
     67179                                                <MaxTileRow>2852</MaxTileRow>
     67180                                                <MinTileCol>4242</MinTileCol>
     67181                                                <MaxTileCol>4249</MaxTileCol>
     67182                                        </TileMatrixLimits>
     67183                                        <TileMatrixLimits>
     67184                                                <TileMatrix>14</TileMatrix>
     67185                                                <MinTileRow>5683</MinTileRow>
     67186                                                <MaxTileRow>5705</MaxTileRow>
     67187                                                <MinTileCol>8484</MinTileCol>
     67188                                                <MaxTileCol>8498</MaxTileCol>
     67189                                        </TileMatrixLimits>
     67190                                        <TileMatrixLimits>
     67191                                                <TileMatrix>15</TileMatrix>
     67192                                                <MinTileRow>11366</MinTileRow>
     67193                                                <MaxTileRow>11411</MaxTileRow>
     67194                                                <MinTileCol>16969</MinTileCol>
     67195                                                <MaxTileCol>16997</MaxTileCol>
     67196                                        </TileMatrixLimits>
     67197                                        <TileMatrixLimits>
     67198                                                <TileMatrix>16</TileMatrix>
     67199                                                <MinTileRow>22732</MinTileRow>
     67200                                                <MaxTileRow>22823</MaxTileRow>
     67201                                                <MinTileCol>33939</MinTileCol>
     67202                                                <MaxTileCol>33995</MaxTileCol>
     67203                                        </TileMatrixLimits>
     67204                                        <TileMatrixLimits>
     67205                                                <TileMatrix>17</TileMatrix>
     67206                                                <MinTileRow>45465</MinTileRow>
     67207                                                <MaxTileRow>45646</MaxTileRow>
     67208                                                <MinTileCol>67879</MinTileCol>
     67209                                                <MaxTileCol>67990</MaxTileCol>
     67210                                        </TileMatrixLimits>
     67211                                        <TileMatrixLimits>
     67212                                                <TileMatrix>18</TileMatrix>
     67213                                                <MinTileRow>90930</MinTileRow>
     67214                                                <MaxTileRow>91293</MaxTileRow>
     67215                                                <MinTileCol>135759</MinTileCol>
     67216                                                <MaxTileCol>135981</MaxTileCol>
     67217                                        </TileMatrixLimits>
     67218                                        <TileMatrixLimits>
     67219                                                <TileMatrix>2</TileMatrix>
     67220                                                <MinTileRow>1</MinTileRow>
     67221                                                <MaxTileRow>1</MaxTileRow>
     67222                                                <MinTileCol>2</MinTileCol>
     67223                                                <MaxTileCol>2</MaxTileCol>
     67224                                        </TileMatrixLimits>
     67225                                        <TileMatrixLimits>
     67226                                                <TileMatrix>3</TileMatrix>
     67227                                                <MinTileRow>2</MinTileRow>
     67228                                                <MaxTileRow>2</MaxTileRow>
     67229                                                <MinTileCol>4</MinTileCol>
     67230                                                <MaxTileCol>4</MaxTileCol>
     67231                                        </TileMatrixLimits>
     67232                                        <TileMatrixLimits>
     67233                                                <TileMatrix>4</TileMatrix>
     67234                                                <MinTileRow>5</MinTileRow>
     67235                                                <MaxTileRow>5</MaxTileRow>
     67236                                                <MinTileCol>8</MinTileCol>
     67237                                                <MaxTileCol>8</MaxTileCol>
     67238                                        </TileMatrixLimits>
     67239                                        <TileMatrixLimits>
     67240                                                <TileMatrix>5</TileMatrix>
     67241                                                <MinTileRow>11</MinTileRow>
     67242                                                <MaxTileRow>11</MaxTileRow>
     67243                                                <MinTileCol>16</MinTileCol>
     67244                                                <MaxTileCol>16</MaxTileCol>
     67245                                        </TileMatrixLimits>
     67246                                        <TileMatrixLimits>
     67247                                                <TileMatrix>6</TileMatrix>
     67248                                                <MinTileRow>22</MinTileRow>
     67249                                                <MaxTileRow>22</MaxTileRow>
     67250                                                <MinTileCol>33</MinTileCol>
     67251                                                <MaxTileCol>33</MaxTileCol>
     67252                                        </TileMatrixLimits>
     67253                                        <TileMatrixLimits>
     67254                                                <TileMatrix>7</TileMatrix>
     67255                                                <MinTileRow>44</MinTileRow>
     67256                                                <MaxTileRow>44</MaxTileRow>
     67257                                                <MinTileCol>66</MinTileCol>
     67258                                                <MaxTileCol>66</MaxTileCol>
     67259                                        </TileMatrixLimits>
     67260                                        <TileMatrixLimits>
     67261                                                <TileMatrix>8</TileMatrix>
     67262                                                <MinTileRow>88</MinTileRow>
     67263                                                <MaxTileRow>89</MaxTileRow>
     67264                                                <MinTileCol>132</MinTileCol>
     67265                                                <MaxTileCol>132</MaxTileCol>
     67266                                        </TileMatrixLimits>
     67267                                        <TileMatrixLimits>
     67268                                                <TileMatrix>9</TileMatrix>
     67269                                                <MinTileRow>177</MinTileRow>
     67270                                                <MaxTileRow>178</MaxTileRow>
     67271                                                <MinTileCol>265</MinTileCol>
     67272                                                <MaxTileCol>265</MaxTileCol>
     67273                                        </TileMatrixLimits>
     67274                                </TileMatrixSetLimits>
     67275                        </TileMatrixSetLink>
     67276                </Layer>
     67277                <Layer>
     67278                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67279                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67280                        <ows:Keywords>
     67281                                <ows:Keyword>Photographies</ows:Keyword>
     67282                        </ows:Keywords>
     67283                        <ows:WGS84BoundingBox>
     67284                                <ows:LowerCorner>5.73117 47.9014</ows:LowerCorner>
     67285                                <ows:UpperCorner>6.03366 48.0525</ows:UpperCorner>
     67286                        </ows:WGS84BoundingBox>
     67287                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-07-03-38254819</ows:Identifier>
     67288                        <Style isDefault="true">
     67289                                <ows:Title>Données Brutes</ows:Title>
     67290                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67291                                <ows:Keywords>
     67292                                        <ows:Keyword>Défaut</ows:Keyword>
     67293                                </ows:Keywords>
     67294                                <ows:Identifier>normal</ows:Identifier>
     67295                                <LegendURL format="image/jpeg" height="200"
     67296                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67297                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67298                        </Style>
     67299                        <Format>image/jpeg</Format>
     67300                        <TileMatrixSetLink>
     67301                                <TileMatrixSet>PM</TileMatrixSet>
     67302                                <TileMatrixSetLimits>
     67303                                        <TileMatrixLimits>
     67304                                                <TileMatrix>0</TileMatrix>
     67305                                                <MinTileRow>0</MinTileRow>
     67306                                                <MaxTileRow>0</MaxTileRow>
     67307                                                <MinTileCol>0</MinTileCol>
     67308                                                <MaxTileCol>0</MaxTileCol>
     67309                                        </TileMatrixLimits>
     67310                                        <TileMatrixLimits>
     67311                                                <TileMatrix>1</TileMatrix>
     67312                                                <MinTileRow>0</MinTileRow>
     67313                                                <MaxTileRow>0</MaxTileRow>
     67314                                                <MinTileCol>1</MinTileCol>
     67315                                                <MaxTileCol>1</MaxTileCol>
     67316                                        </TileMatrixLimits>
     67317                                        <TileMatrixLimits>
     67318                                                <TileMatrix>10</TileMatrix>
     67319                                                <MinTileRow>355</MinTileRow>
     67320                                                <MaxTileRow>356</MaxTileRow>
     67321                                                <MinTileCol>528</MinTileCol>
     67322                                                <MaxTileCol>529</MaxTileCol>
     67323                                        </TileMatrixLimits>
     67324                                        <TileMatrixLimits>
     67325                                                <TileMatrix>11</TileMatrix>
     67326                                                <MinTileRow>711</MinTileRow>
     67327                                                <MaxTileRow>712</MaxTileRow>
     67328                                                <MinTileCol>1056</MinTileCol>
     67329                                                <MaxTileCol>1058</MaxTileCol>
     67330                                        </TileMatrixLimits>
     67331                                        <TileMatrixLimits>
     67332                                                <TileMatrix>12</TileMatrix>
     67333                                                <MinTileRow>1422</MinTileRow>
     67334                                                <MaxTileRow>1425</MaxTileRow>
     67335                                                <MinTileCol>2113</MinTileCol>
     67336                                                <MaxTileCol>2116</MaxTileCol>
     67337                                        </TileMatrixLimits>
     67338                                        <TileMatrixLimits>
     67339                                                <TileMatrix>13</TileMatrix>
     67340                                                <MinTileRow>2845</MinTileRow>
     67341                                                <MaxTileRow>2850</MaxTileRow>
     67342                                                <MinTileCol>4226</MinTileCol>
     67343                                                <MaxTileCol>4233</MaxTileCol>
     67344                                        </TileMatrixLimits>
     67345                                        <TileMatrixLimits>
     67346                                                <TileMatrix>14</TileMatrix>
     67347                                                <MinTileRow>5691</MinTileRow>
     67348                                                <MaxTileRow>5701</MaxTileRow>
     67349                                                <MinTileCol>8453</MinTileCol>
     67350                                                <MaxTileCol>8466</MaxTileCol>
     67351                                        </TileMatrixLimits>
     67352                                        <TileMatrixLimits>
     67353                                                <TileMatrix>15</TileMatrix>
     67354                                                <MinTileRow>11383</MinTileRow>
     67355                                                <MaxTileRow>11403</MaxTileRow>
     67356                                                <MinTileCol>16906</MinTileCol>
     67357                                                <MaxTileCol>16933</MaxTileCol>
     67358                                        </TileMatrixLimits>
     67359                                        <TileMatrixLimits>
     67360                                                <TileMatrix>16</TileMatrix>
     67361                                                <MinTileRow>22766</MinTileRow>
     67362                                                <MaxTileRow>22807</MaxTileRow>
     67363                                                <MinTileCol>33812</MinTileCol>
     67364                                                <MaxTileCol>33866</MaxTileCol>
     67365                                        </TileMatrixLimits>
     67366                                        <TileMatrixLimits>
     67367                                                <TileMatrix>17</TileMatrix>
     67368                                                <MinTileRow>45533</MinTileRow>
     67369                                                <MaxTileRow>45614</MaxTileRow>
     67370                                                <MinTileCol>67624</MinTileCol>
     67371                                                <MaxTileCol>67732</MaxTileCol>
     67372                                        </TileMatrixLimits>
     67373                                        <TileMatrixLimits>
     67374                                                <TileMatrix>18</TileMatrix>
     67375                                                <MinTileRow>91067</MinTileRow>
     67376                                                <MaxTileRow>91228</MaxTileRow>
     67377                                                <MinTileCol>135249</MinTileCol>
     67378                                                <MaxTileCol>135465</MaxTileCol>
     67379                                        </TileMatrixLimits>
     67380                                        <TileMatrixLimits>
     67381                                                <TileMatrix>2</TileMatrix>
     67382                                                <MinTileRow>1</MinTileRow>
     67383                                                <MaxTileRow>1</MaxTileRow>
     67384                                                <MinTileCol>2</MinTileCol>
     67385                                                <MaxTileCol>2</MaxTileCol>
     67386                                        </TileMatrixLimits>
     67387                                        <TileMatrixLimits>
     67388                                                <TileMatrix>3</TileMatrix>
     67389                                                <MinTileRow>2</MinTileRow>
     67390                                                <MaxTileRow>2</MaxTileRow>
     67391                                                <MinTileCol>4</MinTileCol>
     67392                                                <MaxTileCol>4</MaxTileCol>
     67393                                        </TileMatrixLimits>
     67394                                        <TileMatrixLimits>
     67395                                                <TileMatrix>4</TileMatrix>
     67396                                                <MinTileRow>5</MinTileRow>
     67397                                                <MaxTileRow>5</MaxTileRow>
     67398                                                <MinTileCol>8</MinTileCol>
     67399                                                <MaxTileCol>8</MaxTileCol>
     67400                                        </TileMatrixLimits>
     67401                                        <TileMatrixLimits>
     67402                                                <TileMatrix>5</TileMatrix>
     67403                                                <MinTileRow>11</MinTileRow>
     67404                                                <MaxTileRow>11</MaxTileRow>
     67405                                                <MinTileCol>16</MinTileCol>
     67406                                                <MaxTileCol>16</MaxTileCol>
     67407                                        </TileMatrixLimits>
     67408                                        <TileMatrixLimits>
     67409                                                <TileMatrix>6</TileMatrix>
     67410                                                <MinTileRow>22</MinTileRow>
     67411                                                <MaxTileRow>22</MaxTileRow>
     67412                                                <MinTileCol>33</MinTileCol>
     67413                                                <MaxTileCol>33</MaxTileCol>
     67414                                        </TileMatrixLimits>
     67415                                        <TileMatrixLimits>
     67416                                                <TileMatrix>7</TileMatrix>
     67417                                                <MinTileRow>44</MinTileRow>
     67418                                                <MaxTileRow>44</MaxTileRow>
     67419                                                <MinTileCol>66</MinTileCol>
     67420                                                <MaxTileCol>66</MaxTileCol>
     67421                                        </TileMatrixLimits>
     67422                                        <TileMatrixLimits>
     67423                                                <TileMatrix>8</TileMatrix>
     67424                                                <MinTileRow>88</MinTileRow>
     67425                                                <MaxTileRow>89</MaxTileRow>
     67426                                                <MinTileCol>132</MinTileCol>
     67427                                                <MaxTileCol>132</MaxTileCol>
     67428                                        </TileMatrixLimits>
     67429                                        <TileMatrixLimits>
     67430                                                <TileMatrix>9</TileMatrix>
     67431                                                <MinTileRow>177</MinTileRow>
     67432                                                <MaxTileRow>178</MaxTileRow>
     67433                                                <MinTileCol>264</MinTileCol>
     67434                                                <MaxTileCol>264</MaxTileCol>
     67435                                        </TileMatrixLimits>
     67436                                </TileMatrixSetLimits>
     67437                        </TileMatrixSetLink>
     67438                </Layer>
     67439                <Layer>
     67440                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67441                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67442                        <ows:Keywords>
     67443                                <ows:Keyword>Photographies</ows:Keyword>
     67444                        </ows:Keywords>
     67445                        <ows:WGS84BoundingBox>
     67446                                <ows:LowerCorner>6.65555 48.287</ows:LowerCorner>
     67447                                <ows:UpperCorner>7.00727 48.4956</ows:UpperCorner>
     67448                        </ows:WGS84BoundingBox>
     67449                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-09-23-39365201</ows:Identifier>
     67450                        <Style isDefault="true">
     67451                                <ows:Title>Données Brutes</ows:Title>
     67452                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67453                                <ows:Keywords>
     67454                                        <ows:Keyword>Défaut</ows:Keyword>
     67455                                </ows:Keywords>
     67456                                <ows:Identifier>normal</ows:Identifier>
     67457                                <LegendURL format="image/jpeg" height="200"
     67458                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67459                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67460                        </Style>
     67461                        <Format>image/jpeg</Format>
     67462                        <TileMatrixSetLink>
     67463                                <TileMatrixSet>PM</TileMatrixSet>
     67464                                <TileMatrixSetLimits>
     67465                                        <TileMatrixLimits>
     67466                                                <TileMatrix>0</TileMatrix>
     67467                                                <MinTileRow>0</MinTileRow>
     67468                                                <MaxTileRow>0</MaxTileRow>
     67469                                                <MinTileCol>0</MinTileCol>
     67470                                                <MaxTileCol>0</MaxTileCol>
     67471                                        </TileMatrixLimits>
     67472                                        <TileMatrixLimits>
     67473                                                <TileMatrix>1</TileMatrix>
     67474                                                <MinTileRow>0</MinTileRow>
     67475                                                <MaxTileRow>0</MaxTileRow>
     67476                                                <MinTileCol>1</MinTileCol>
     67477                                                <MaxTileCol>1</MaxTileCol>
     67478                                        </TileMatrixLimits>
     67479                                        <TileMatrixLimits>
     67480                                                <TileMatrix>10</TileMatrix>
     67481                                                <MinTileRow>353</MinTileRow>
     67482                                                <MaxTileRow>354</MaxTileRow>
     67483                                                <MinTileCol>530</MinTileCol>
     67484                                                <MaxTileCol>531</MaxTileCol>
     67485                                        </TileMatrixLimits>
     67486                                        <TileMatrixLimits>
     67487                                                <TileMatrix>11</TileMatrix>
     67488                                                <MinTileRow>707</MinTileRow>
     67489                                                <MaxTileRow>709</MaxTileRow>
     67490                                                <MinTileCol>1061</MinTileCol>
     67491                                                <MaxTileCol>1063</MaxTileCol>
     67492                                        </TileMatrixLimits>
     67493                                        <TileMatrixLimits>
     67494                                                <TileMatrix>12</TileMatrix>
     67495                                                <MinTileRow>1415</MinTileRow>
     67496                                                <MaxTileRow>1418</MaxTileRow>
     67497                                                <MinTileCol>2123</MinTileCol>
     67498                                                <MaxTileCol>2127</MaxTileCol>
     67499                                        </TileMatrixLimits>
     67500                                        <TileMatrixLimits>
     67501                                                <TileMatrix>13</TileMatrix>
     67502                                                <MinTileRow>2831</MinTileRow>
     67503                                                <MaxTileRow>2837</MaxTileRow>
     67504                                                <MinTileCol>4247</MinTileCol>
     67505                                                <MaxTileCol>4255</MaxTileCol>
     67506                                        </TileMatrixLimits>
     67507                                        <TileMatrixLimits>
     67508                                                <TileMatrix>14</TileMatrix>
     67509                                                <MinTileRow>5662</MinTileRow>
     67510                                                <MaxTileRow>5675</MaxTileRow>
     67511                                                <MinTileCol>8494</MinTileCol>
     67512                                                <MaxTileCol>8510</MaxTileCol>
     67513                                        </TileMatrixLimits>
     67514                                        <TileMatrixLimits>
     67515                                                <TileMatrix>15</TileMatrix>
     67516                                                <MinTileRow>11324</MinTileRow>
     67517                                                <MaxTileRow>11351</MaxTileRow>
     67518                                                <MinTileCol>16989</MinTileCol>
     67519                                                <MaxTileCol>17020</MaxTileCol>
     67520                                        </TileMatrixLimits>
     67521                                        <TileMatrixLimits>
     67522                                                <TileMatrix>16</TileMatrix>
     67523                                                <MinTileRow>22648</MinTileRow>
     67524                                                <MaxTileRow>22702</MaxTileRow>
     67525                                                <MinTileCol>33979</MinTileCol>
     67526                                                <MaxTileCol>34041</MaxTileCol>
     67527                                        </TileMatrixLimits>
     67528                                        <TileMatrixLimits>
     67529                                                <TileMatrix>17</TileMatrix>
     67530                                                <MinTileRow>45296</MinTileRow>
     67531                                                <MaxTileRow>45405</MaxTileRow>
     67532                                                <MinTileCol>67959</MinTileCol>
     67533                                                <MaxTileCol>68083</MaxTileCol>
     67534                                        </TileMatrixLimits>
     67535                                        <TileMatrixLimits>
     67536                                                <TileMatrix>18</TileMatrix>
     67537                                                <MinTileRow>90593</MinTileRow>
     67538                                                <MaxTileRow>90811</MaxTileRow>
     67539                                                <MinTileCol>135918</MinTileCol>
     67540                                                <MaxTileCol>136166</MaxTileCol>
     67541                                        </TileMatrixLimits>
     67542                                        <TileMatrixLimits>
     67543                                                <TileMatrix>2</TileMatrix>
     67544                                                <MinTileRow>1</MinTileRow>
     67545                                                <MaxTileRow>1</MaxTileRow>
     67546                                                <MinTileCol>2</MinTileCol>
     67547                                                <MaxTileCol>2</MaxTileCol>
     67548                                        </TileMatrixLimits>
     67549                                        <TileMatrixLimits>
     67550                                                <TileMatrix>3</TileMatrix>
     67551                                                <MinTileRow>2</MinTileRow>
     67552                                                <MaxTileRow>2</MaxTileRow>
     67553                                                <MinTileCol>4</MinTileCol>
     67554                                                <MaxTileCol>4</MaxTileCol>
     67555                                        </TileMatrixLimits>
     67556                                        <TileMatrixLimits>
     67557                                                <TileMatrix>4</TileMatrix>
     67558                                                <MinTileRow>5</MinTileRow>
     67559                                                <MaxTileRow>5</MaxTileRow>
     67560                                                <MinTileCol>8</MinTileCol>
     67561                                                <MaxTileCol>8</MaxTileCol>
     67562                                        </TileMatrixLimits>
     67563                                        <TileMatrixLimits>
     67564                                                <TileMatrix>5</TileMatrix>
     67565                                                <MinTileRow>11</MinTileRow>
     67566                                                <MaxTileRow>11</MaxTileRow>
     67567                                                <MinTileCol>16</MinTileCol>
     67568                                                <MaxTileCol>16</MaxTileCol>
     67569                                        </TileMatrixLimits>
     67570                                        <TileMatrixLimits>
     67571                                                <TileMatrix>6</TileMatrix>
     67572                                                <MinTileRow>22</MinTileRow>
     67573                                                <MaxTileRow>22</MaxTileRow>
     67574                                                <MinTileCol>33</MinTileCol>
     67575                                                <MaxTileCol>33</MaxTileCol>
     67576                                        </TileMatrixLimits>
     67577                                        <TileMatrixLimits>
     67578                                                <TileMatrix>7</TileMatrix>
     67579                                                <MinTileRow>44</MinTileRow>
     67580                                                <MaxTileRow>44</MaxTileRow>
     67581                                                <MinTileCol>66</MinTileCol>
     67582                                                <MaxTileCol>66</MaxTileCol>
     67583                                        </TileMatrixLimits>
     67584                                        <TileMatrixLimits>
     67585                                                <TileMatrix>8</TileMatrix>
     67586                                                <MinTileRow>88</MinTileRow>
     67587                                                <MaxTileRow>88</MaxTileRow>
     67588                                                <MinTileCol>132</MinTileCol>
     67589                                                <MaxTileCol>132</MaxTileCol>
     67590                                        </TileMatrixLimits>
     67591                                        <TileMatrixLimits>
     67592                                                <TileMatrix>9</TileMatrix>
     67593                                                <MinTileRow>176</MinTileRow>
     67594                                                <MaxTileRow>177</MaxTileRow>
     67595                                                <MinTileCol>265</MinTileCol>
     67596                                                <MaxTileCol>265</MaxTileCol>
     67597                                        </TileMatrixLimits>
     67598                                </TileMatrixSetLimits>
     67599                        </TileMatrixSetLink>
     67600                </Layer>
     67601                <Layer>
     67602                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67603                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67604                        <ows:Keywords>
     67605                                <ows:Keyword>Photographies</ows:Keyword>
     67606                        </ows:Keywords>
     67607                        <ows:WGS84BoundingBox>
     67608                                <ows:LowerCorner>6.87393 48.1353</ows:LowerCorner>
     67609                                <ows:UpperCorner>7.24062 48.5332</ows:UpperCorner>
     67610                        </ows:WGS84BoundingBox>
     67611                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-09-27-37544300</ows:Identifier>
     67612                        <Style isDefault="true">
     67613                                <ows:Title>Données Brutes</ows:Title>
     67614                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67615                                <ows:Keywords>
     67616                                        <ows:Keyword>Défaut</ows:Keyword>
     67617                                </ows:Keywords>
     67618                                <ows:Identifier>normal</ows:Identifier>
     67619                                <LegendURL format="image/jpeg" height="200"
     67620                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67621                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67622                        </Style>
     67623                        <Format>image/jpeg</Format>
     67624                        <TileMatrixSetLink>
     67625                                <TileMatrixSet>PM</TileMatrixSet>
     67626                                <TileMatrixSetLimits>
     67627                                        <TileMatrixLimits>
     67628                                                <TileMatrix>0</TileMatrix>
     67629                                                <MinTileRow>0</MinTileRow>
     67630                                                <MaxTileRow>0</MaxTileRow>
     67631                                                <MinTileCol>0</MinTileCol>
     67632                                                <MaxTileCol>0</MaxTileCol>
     67633                                        </TileMatrixLimits>
     67634                                        <TileMatrixLimits>
     67635                                                <TileMatrix>1</TileMatrix>
     67636                                                <MinTileRow>0</MinTileRow>
     67637                                                <MaxTileRow>0</MaxTileRow>
     67638                                                <MinTileCol>1</MinTileCol>
     67639                                                <MaxTileCol>1</MaxTileCol>
     67640                                        </TileMatrixLimits>
     67641                                        <TileMatrixLimits>
     67642                                                <TileMatrix>10</TileMatrix>
     67643                                                <MinTileRow>353</MinTileRow>
     67644                                                <MaxTileRow>355</MaxTileRow>
     67645                                                <MinTileCol>531</MinTileCol>
     67646                                                <MaxTileCol>532</MaxTileCol>
     67647                                        </TileMatrixLimits>
     67648                                        <TileMatrixLimits>
     67649                                                <TileMatrix>11</TileMatrix>
     67650                                                <MinTileRow>707</MinTileRow>
     67651                                                <MaxTileRow>710</MaxTileRow>
     67652                                                <MinTileCol>1063</MinTileCol>
     67653                                                <MaxTileCol>1065</MaxTileCol>
     67654                                        </TileMatrixLimits>
     67655                                        <TileMatrixLimits>
     67656                                                <TileMatrix>12</TileMatrix>
     67657                                                <MinTileRow>1414</MinTileRow>
     67658                                                <MaxTileRow>1421</MaxTileRow>
     67659                                                <MinTileCol>2126</MinTileCol>
     67660                                                <MaxTileCol>2130</MaxTileCol>
     67661                                        </TileMatrixLimits>
     67662                                        <TileMatrixLimits>
     67663                                                <TileMatrix>13</TileMatrix>
     67664                                                <MinTileRow>2829</MinTileRow>
     67665                                                <MaxTileRow>2842</MaxTileRow>
     67666                                                <MinTileCol>4252</MinTileCol>
     67667                                                <MaxTileCol>4260</MaxTileCol>
     67668                                        </TileMatrixLimits>
     67669                                        <TileMatrixLimits>
     67670                                                <TileMatrix>14</TileMatrix>
     67671                                                <MinTileRow>5659</MinTileRow>
     67672                                                <MaxTileRow>5685</MaxTileRow>
     67673                                                <MinTileCol>8505</MinTileCol>
     67674                                                <MaxTileCol>8520</MaxTileCol>
     67675                                        </TileMatrixLimits>
     67676                                        <TileMatrixLimits>
     67677                                                <TileMatrix>15</TileMatrix>
     67678                                                <MinTileRow>11318</MinTileRow>
     67679                                                <MaxTileRow>11371</MaxTileRow>
     67680                                                <MinTileCol>17010</MinTileCol>
     67681                                                <MaxTileCol>17041</MaxTileCol>
     67682                                        </TileMatrixLimits>
     67683                                        <TileMatrixLimits>
     67684                                                <TileMatrix>16</TileMatrix>
     67685                                                <MinTileRow>22636</MinTileRow>
     67686                                                <MaxTileRow>22742</MaxTileRow>
     67687                                                <MinTileCol>34021</MinTileCol>
     67688                                                <MaxTileCol>34083</MaxTileCol>
     67689                                        </TileMatrixLimits>
     67690                                        <TileMatrixLimits>
     67691                                                <TileMatrix>17</TileMatrix>
     67692                                                <MinTileRow>45273</MinTileRow>
     67693                                                <MaxTileRow>45485</MaxTileRow>
     67694                                                <MinTileCol>68042</MinTileCol>
     67695                                                <MaxTileCol>68166</MaxTileCol>
     67696                                        </TileMatrixLimits>
     67697                                        <TileMatrixLimits>
     67698                                                <TileMatrix>18</TileMatrix>
     67699                                                <MinTileRow>90547</MinTileRow>
     67700                                                <MaxTileRow>90971</MaxTileRow>
     67701                                                <MinTileCol>136085</MinTileCol>
     67702                                                <MaxTileCol>136333</MaxTileCol>
     67703                                        </TileMatrixLimits>
     67704                                        <TileMatrixLimits>
     67705                                                <TileMatrix>2</TileMatrix>
     67706                                                <MinTileRow>1</MinTileRow>
     67707                                                <MaxTileRow>1</MaxTileRow>
     67708                                                <MinTileCol>2</MinTileCol>
     67709                                                <MaxTileCol>2</MaxTileCol>
     67710                                        </TileMatrixLimits>
     67711                                        <TileMatrixLimits>
     67712                                                <TileMatrix>3</TileMatrix>
     67713                                                <MinTileRow>2</MinTileRow>
     67714                                                <MaxTileRow>2</MaxTileRow>
     67715                                                <MinTileCol>4</MinTileCol>
     67716                                                <MaxTileCol>4</MaxTileCol>
     67717                                        </TileMatrixLimits>
     67718                                        <TileMatrixLimits>
     67719                                                <TileMatrix>4</TileMatrix>
     67720                                                <MinTileRow>5</MinTileRow>
     67721                                                <MaxTileRow>5</MaxTileRow>
     67722                                                <MinTileCol>8</MinTileCol>
     67723                                                <MaxTileCol>8</MaxTileCol>
     67724                                        </TileMatrixLimits>
     67725                                        <TileMatrixLimits>
     67726                                                <TileMatrix>5</TileMatrix>
     67727                                                <MinTileRow>11</MinTileRow>
     67728                                                <MaxTileRow>11</MaxTileRow>
     67729                                                <MinTileCol>16</MinTileCol>
     67730                                                <MaxTileCol>16</MaxTileCol>
     67731                                        </TileMatrixLimits>
     67732                                        <TileMatrixLimits>
     67733                                                <TileMatrix>6</TileMatrix>
     67734                                                <MinTileRow>22</MinTileRow>
     67735                                                <MaxTileRow>22</MaxTileRow>
     67736                                                <MinTileCol>33</MinTileCol>
     67737                                                <MaxTileCol>33</MaxTileCol>
     67738                                        </TileMatrixLimits>
     67739                                        <TileMatrixLimits>
     67740                                                <TileMatrix>7</TileMatrix>
     67741                                                <MinTileRow>44</MinTileRow>
     67742                                                <MaxTileRow>44</MaxTileRow>
     67743                                                <MinTileCol>66</MinTileCol>
     67744                                                <MaxTileCol>66</MaxTileCol>
     67745                                        </TileMatrixLimits>
     67746                                        <TileMatrixLimits>
     67747                                                <TileMatrix>8</TileMatrix>
     67748                                                <MinTileRow>88</MinTileRow>
     67749                                                <MaxTileRow>88</MaxTileRow>
     67750                                                <MinTileCol>132</MinTileCol>
     67751                                                <MaxTileCol>133</MaxTileCol>
     67752                                        </TileMatrixLimits>
     67753                                        <TileMatrixLimits>
     67754                                                <TileMatrix>9</TileMatrix>
     67755                                                <MinTileRow>176</MinTileRow>
     67756                                                <MaxTileRow>177</MaxTileRow>
     67757                                                <MinTileCol>265</MinTileCol>
     67758                                                <MaxTileCol>266</MaxTileCol>
     67759                                        </TileMatrixLimits>
     67760                                </TileMatrixSetLimits>
     67761                        </TileMatrixSetLink>
     67762                </Layer>
     67763                <Layer>
     67764                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67765                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67766                        <ows:Keywords>
     67767                                <ows:Keyword>Photographies</ows:Keyword>
     67768                        </ows:Keywords>
     67769                        <ows:WGS84BoundingBox>
     67770                                <ows:LowerCorner>6.65778 48.1252</ows:LowerCorner>
     67771                                <ows:UpperCorner>6.99564 48.3424</ows:UpperCorner>
     67772                        </ows:WGS84BoundingBox>
     67773                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-10-03-37792694</ows:Identifier>
     67774                        <Style isDefault="true">
     67775                                <ows:Title>Données Brutes</ows:Title>
     67776                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67777                                <ows:Keywords>
     67778                                        <ows:Keyword>Défaut</ows:Keyword>
     67779                                </ows:Keywords>
     67780                                <ows:Identifier>normal</ows:Identifier>
     67781                                <LegendURL format="image/jpeg" height="200"
     67782                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67783                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67784                        </Style>
     67785                        <Format>image/jpeg</Format>
     67786                        <TileMatrixSetLink>
     67787                                <TileMatrixSet>PM</TileMatrixSet>
     67788                                <TileMatrixSetLimits>
     67789                                        <TileMatrixLimits>
     67790                                                <TileMatrix>0</TileMatrix>
     67791                                                <MinTileRow>0</MinTileRow>
     67792                                                <MaxTileRow>0</MaxTileRow>
     67793                                                <MinTileCol>0</MinTileCol>
     67794                                                <MaxTileCol>0</MaxTileCol>
     67795                                        </TileMatrixLimits>
     67796                                        <TileMatrixLimits>
     67797                                                <TileMatrix>1</TileMatrix>
     67798                                                <MinTileRow>0</MinTileRow>
     67799                                                <MaxTileRow>0</MaxTileRow>
     67800                                                <MinTileCol>1</MinTileCol>
     67801                                                <MaxTileCol>1</MaxTileCol>
     67802                                        </TileMatrixLimits>
     67803                                        <TileMatrixLimits>
     67804                                                <TileMatrix>10</TileMatrix>
     67805                                                <MinTileRow>354</MinTileRow>
     67806                                                <MaxTileRow>355</MaxTileRow>
     67807                                                <MinTileCol>530</MinTileCol>
     67808                                                <MaxTileCol>531</MaxTileCol>
     67809                                        </TileMatrixLimits>
     67810                                        <TileMatrixLimits>
     67811                                                <TileMatrix>11</TileMatrix>
     67812                                                <MinTileRow>708</MinTileRow>
     67813                                                <MaxTileRow>710</MaxTileRow>
     67814                                                <MinTileCol>1061</MinTileCol>
     67815                                                <MaxTileCol>1063</MaxTileCol>
     67816                                        </TileMatrixLimits>
     67817                                        <TileMatrixLimits>
     67818                                                <TileMatrix>12</TileMatrix>
     67819                                                <MinTileRow>1417</MinTileRow>
     67820                                                <MaxTileRow>1421</MaxTileRow>
     67821                                                <MinTileCol>2123</MinTileCol>
     67822                                                <MaxTileCol>2127</MaxTileCol>
     67823                                        </TileMatrixLimits>
     67824                                        <TileMatrixLimits>
     67825                                                <TileMatrix>13</TileMatrix>
     67826                                                <MinTileRow>2835</MinTileRow>
     67827                                                <MaxTileRow>2843</MaxTileRow>
     67828                                                <MinTileCol>4247</MinTileCol>
     67829                                                <MaxTileCol>4255</MaxTileCol>
     67830                                        </TileMatrixLimits>
     67831                                        <TileMatrixLimits>
     67832                                                <TileMatrix>14</TileMatrix>
     67833                                                <MinTileRow>5671</MinTileRow>
     67834                                                <MaxTileRow>5686</MaxTileRow>
     67835                                                <MinTileCol>8495</MinTileCol>
     67836                                                <MaxTileCol>8510</MaxTileCol>
     67837                                        </TileMatrixLimits>
     67838                                        <TileMatrixLimits>
     67839                                                <TileMatrix>15</TileMatrix>
     67840                                                <MinTileRow>11343</MinTileRow>
     67841                                                <MaxTileRow>11373</MaxTileRow>
     67842                                                <MinTileCol>16990</MinTileCol>
     67843                                                <MaxTileCol>17020</MaxTileCol>
     67844                                        </TileMatrixLimits>
     67845                                        <TileMatrixLimits>
     67846                                                <TileMatrix>16</TileMatrix>
     67847                                                <MinTileRow>22687</MinTileRow>
     67848                                                <MaxTileRow>22747</MaxTileRow>
     67849                                                <MinTileCol>33980</MinTileCol>
     67850                                                <MaxTileCol>34040</MaxTileCol>
     67851                                        </TileMatrixLimits>
     67852                                        <TileMatrixLimits>
     67853                                                <TileMatrix>17</TileMatrix>
     67854                                                <MinTileRow>45375</MinTileRow>
     67855                                                <MaxTileRow>45494</MaxTileRow>
     67856                                                <MinTileCol>67961</MinTileCol>
     67857                                                <MaxTileCol>68080</MaxTileCol>
     67858                                        </TileMatrixLimits>
     67859                                        <TileMatrixLimits>
     67860                                                <TileMatrix>18</TileMatrix>
     67861                                                <MinTileRow>90751</MinTileRow>
     67862                                                <MaxTileRow>90988</MaxTileRow>
     67863                                                <MinTileCol>135922</MinTileCol>
     67864                                                <MaxTileCol>136161</MaxTileCol>
     67865                                        </TileMatrixLimits>
     67866                                        <TileMatrixLimits>
     67867                                                <TileMatrix>2</TileMatrix>
     67868                                                <MinTileRow>1</MinTileRow>
     67869                                                <MaxTileRow>1</MaxTileRow>
     67870                                                <MinTileCol>2</MinTileCol>
     67871                                                <MaxTileCol>2</MaxTileCol>
     67872                                        </TileMatrixLimits>
     67873                                        <TileMatrixLimits>
     67874                                                <TileMatrix>3</TileMatrix>
     67875                                                <MinTileRow>2</MinTileRow>
     67876                                                <MaxTileRow>2</MaxTileRow>
     67877                                                <MinTileCol>4</MinTileCol>
     67878                                                <MaxTileCol>4</MaxTileCol>
     67879                                        </TileMatrixLimits>
     67880                                        <TileMatrixLimits>
     67881                                                <TileMatrix>4</TileMatrix>
     67882                                                <MinTileRow>5</MinTileRow>
     67883                                                <MaxTileRow>5</MaxTileRow>
     67884                                                <MinTileCol>8</MinTileCol>
     67885                                                <MaxTileCol>8</MaxTileCol>
     67886                                        </TileMatrixLimits>
     67887                                        <TileMatrixLimits>
     67888                                                <TileMatrix>5</TileMatrix>
     67889                                                <MinTileRow>11</MinTileRow>
     67890                                                <MaxTileRow>11</MaxTileRow>
     67891                                                <MinTileCol>16</MinTileCol>
     67892                                                <MaxTileCol>16</MaxTileCol>
     67893                                        </TileMatrixLimits>
     67894                                        <TileMatrixLimits>
     67895                                                <TileMatrix>6</TileMatrix>
     67896                                                <MinTileRow>22</MinTileRow>
     67897                                                <MaxTileRow>22</MaxTileRow>
     67898                                                <MinTileCol>33</MinTileCol>
     67899                                                <MaxTileCol>33</MaxTileCol>
     67900                                        </TileMatrixLimits>
     67901                                        <TileMatrixLimits>
     67902                                                <TileMatrix>7</TileMatrix>
     67903                                                <MinTileRow>44</MinTileRow>
     67904                                                <MaxTileRow>44</MaxTileRow>
     67905                                                <MinTileCol>66</MinTileCol>
     67906                                                <MaxTileCol>66</MaxTileCol>
     67907                                        </TileMatrixLimits>
     67908                                        <TileMatrixLimits>
     67909                                                <TileMatrix>8</TileMatrix>
     67910                                                <MinTileRow>88</MinTileRow>
     67911                                                <MaxTileRow>88</MaxTileRow>
     67912                                                <MinTileCol>132</MinTileCol>
     67913                                                <MaxTileCol>132</MaxTileCol>
     67914                                        </TileMatrixLimits>
     67915                                        <TileMatrixLimits>
     67916                                                <TileMatrix>9</TileMatrix>
     67917                                                <MinTileRow>177</MinTileRow>
     67918                                                <MaxTileRow>177</MaxTileRow>
     67919                                                <MinTileCol>265</MinTileCol>
     67920                                                <MaxTileCol>265</MaxTileCol>
     67921                                        </TileMatrixLimits>
     67922                                </TileMatrixSetLimits>
     67923                        </TileMatrixSetLink>
     67924                </Layer>
     67925                <Layer>
     67926                        <ows:Title>Orthophotographies Geosud de VOSGES-2013-2014 2014</ows:Title>
     67927                        <ows:Abstract>Orthophotographies satellites de VOSGES-2013-2014 issues du projet Geosud.</ows:Abstract>
     67928                        <ows:Keywords>
     67929                                <ows:Keyword>Photographies</ows:Keyword>
     67930                        </ows:Keywords>
     67931                        <ows:WGS84BoundingBox>
     67932                                <ows:LowerCorner>6.87417 47.9588</ows:LowerCorner>
     67933                                <ows:UpperCorner>7.11913 48.1913</ows:UpperCorner>
     67934                        </ows:WGS84BoundingBox>
     67935                        <ows:Identifier>ORTHO-SAT_PYR-JPEG_WLD_WM_VOSGES-2013-2014-2014-10-28-38201950</ows:Identifier>
     67936                        <Style isDefault="true">
     67937                                <ows:Title>Données Brutes</ows:Title>
     67938                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     67939                                <ows:Keywords>
     67940                                        <ows:Keyword>Défaut</ows:Keyword>
     67941                                </ows:Keywords>
     67942                                <ows:Identifier>normal</ows:Identifier>
     67943                                <LegendURL format="image/jpeg" height="200"
     67944                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     67945                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     67946                        </Style>
     67947                        <Format>image/jpeg</Format>
     67948                        <TileMatrixSetLink>
     67949                                <TileMatrixSet>PM</TileMatrixSet>
     67950                                <TileMatrixSetLimits>
     67951                                        <TileMatrixLimits>
     67952                                                <TileMatrix>0</TileMatrix>
     67953                                                <MinTileRow>0</MinTileRow>
     67954                                                <MaxTileRow>0</MaxTileRow>
     67955                                                <MinTileCol>0</MinTileCol>
     67956                                                <MaxTileCol>0</MaxTileCol>
     67957                                        </TileMatrixLimits>
     67958                                        <TileMatrixLimits>
     67959                                                <TileMatrix>1</TileMatrix>
     67960                                                <MinTileRow>0</MinTileRow>
     67961                                                <MaxTileRow>0</MaxTileRow>
     67962                                                <MinTileCol>1</MinTileCol>
     67963                                                <MaxTileCol>1</MaxTileCol>
     67964                                        </TileMatrixLimits>
     67965                                        <TileMatrixLimits>
     67966                                                <TileMatrix>10</TileMatrix>
     67967                                                <MinTileRow>355</MinTileRow>
     67968                                                <MaxTileRow>356</MaxTileRow>
     67969                                                <MinTileCol>531</MinTileCol>
     67970                                                <MaxTileCol>532</MaxTileCol>
     67971                                        </TileMatrixLimits>
     67972                                        <TileMatrixLimits>
     67973                                                <TileMatrix>11</TileMatrix>
     67974                                                <MinTileRow>710</MinTileRow>
     67975                                                <MaxTileRow>712</MaxTileRow>
     67976                                                <MinTileCol>1063</MinTileCol>
     67977                                                <MaxTileCol>1064</MaxTileCol>
     67978                                        </TileMatrixLimits>
     67979                                        <TileMatrixLimits>
     67980                                                <TileMatrix>12</TileMatrix>
     67981                                                <MinTileRow>1420</MinTileRow>
     67982                                                <MaxTileRow>1424</MaxTileRow>
     67983                                                <MinTileCol>2126</MinTileCol>
     67984                                                <MaxTileCol>2129</MaxTileCol>
     67985                                        </TileMatrixLimits>
     67986                                        <TileMatrixLimits>
     67987                                                <TileMatrix>13</TileMatrix>
     67988                                                <MinTileRow>2841</MinTileRow>
     67989                                                <MaxTileRow>2848</MaxTileRow>
     67990                                                <MinTileCol>4252</MinTileCol>
     67991                                                <MaxTileCol>4258</MaxTileCol>
     67992                                        </TileMatrixLimits>
     67993                                        <TileMatrixLimits>
     67994                                                <TileMatrix>14</TileMatrix>
     67995                                                <MinTileRow>5682</MinTileRow>
     67996                                                <MaxTileRow>5697</MaxTileRow>
     67997                                                <MinTileCol>8505</MinTileCol>
     67998                                                <MaxTileCol>8516</MaxTileCol>
     67999                                        </TileMatrixLimits>
     68000                                        <TileMatrixLimits>
     68001                                                <TileMatrix>15</TileMatrix>
     68002                                                <MinTileRow>11364</MinTileRow>
     68003                                                <MaxTileRow>11395</MaxTileRow>
     68004                                                <MinTileCol>17010</MinTileCol>
     68005                                                <MaxTileCol>17032</MaxTileCol>
     68006                                        </TileMatrixLimits>
     68007                                        <TileMatrixLimits>
     68008                                                <TileMatrix>16</TileMatrix>
     68009                                                <MinTileRow>22729</MinTileRow>
     68010                                                <MaxTileRow>22791</MaxTileRow>
     68011                                                <MinTileCol>34021</MinTileCol>
     68012                                                <MaxTileCol>34064</MaxTileCol>
     68013                                        </TileMatrixLimits>
     68014                                        <TileMatrixLimits>
     68015                                                <TileMatrix>17</TileMatrix>
     68016                                                <MinTileRow>45458</MinTileRow>
     68017                                                <MaxTileRow>45582</MaxTileRow>
     68018                                                <MinTileCol>68043</MinTileCol>
     68019                                                <MaxTileCol>68128</MaxTileCol>
     68020                                        </TileMatrixLimits>
     68021                                        <TileMatrixLimits>
     68022                                                <TileMatrix>18</TileMatrix>
     68023                                                <MinTileRow>90916</MinTileRow>
     68024                                                <MaxTileRow>91164</MaxTileRow>
     68025                                                <MinTileCol>136086</MinTileCol>
     68026                                                <MaxTileCol>136256</MaxTileCol>
     68027                                        </TileMatrixLimits>
     68028                                        <TileMatrixLimits>
     68029                                                <TileMatrix>2</TileMatrix>
     68030                                                <MinTileRow>1</MinTileRow>
     68031                                                <MaxTileRow>1</MaxTileRow>
     68032                                                <MinTileCol>2</MinTileCol>
     68033                                                <MaxTileCol>2</MaxTileCol>
     68034                                        </TileMatrixLimits>
     68035                                        <TileMatrixLimits>
     68036                                                <TileMatrix>3</TileMatrix>
     68037                                                <MinTileRow>2</MinTileRow>
     68038                                                <MaxTileRow>2</MaxTileRow>
     68039                                                <MinTileCol>4</MinTileCol>
     68040                                                <MaxTileCol>4</MaxTileCol>
     68041                                        </TileMatrixLimits>
     68042                                        <TileMatrixLimits>
     68043                                                <TileMatrix>4</TileMatrix>
     68044                                                <MinTileRow>5</MinTileRow>
     68045                                                <MaxTileRow>5</MaxTileRow>
     68046                                                <MinTileCol>8</MinTileCol>
     68047                                                <MaxTileCol>8</MaxTileCol>
     68048                                        </TileMatrixLimits>
     68049                                        <TileMatrixLimits>
     68050                                                <TileMatrix>5</TileMatrix>
     68051                                                <MinTileRow>11</MinTileRow>
     68052                                                <MaxTileRow>11</MaxTileRow>
     68053                                                <MinTileCol>16</MinTileCol>
     68054                                                <MaxTileCol>16</MaxTileCol>
     68055                                        </TileMatrixLimits>
     68056                                        <TileMatrixLimits>
     68057                                                <TileMatrix>6</TileMatrix>
     68058                                                <MinTileRow>22</MinTileRow>
     68059                                                <MaxTileRow>22</MaxTileRow>
     68060                                                <MinTileCol>33</MinTileCol>
     68061                                                <MaxTileCol>33</MaxTileCol>
     68062                                        </TileMatrixLimits>
     68063                                        <TileMatrixLimits>
     68064                                                <TileMatrix>7</TileMatrix>
     68065                                                <MinTileRow>44</MinTileRow>
     68066                                                <MaxTileRow>44</MaxTileRow>
     68067                                                <MinTileCol>66</MinTileCol>
     68068                                                <MaxTileCol>66</MaxTileCol>
     68069                                        </TileMatrixLimits>
     68070                                        <TileMatrixLimits>
     68071                                                <TileMatrix>8</TileMatrix>
     68072                                                <MinTileRow>88</MinTileRow>
     68073                                                <MaxTileRow>89</MaxTileRow>
     68074                                                <MinTileCol>132</MinTileCol>
     68075                                                <MaxTileCol>133</MaxTileCol>
     68076                                        </TileMatrixLimits>
     68077                                        <TileMatrixLimits>
     68078                                                <TileMatrix>9</TileMatrix>
     68079                                                <MinTileRow>177</MinTileRow>
     68080                                                <MaxTileRow>178</MaxTileRow>
     68081                                                <MinTileCol>265</MinTileCol>
     68082                                                <MaxTileCol>266</MaxTileCol>
     68083                                        </TileMatrixLimits>
     68084                                </TileMatrixSetLimits>
     68085                        </TileMatrixSetLink>
     68086                </Layer>
     68087                <Layer>
     68088                        <ows:Title>Orthophotographies Geosud de BESANCON 2015</ows:Title>
     68089                        <ows:Abstract>Orthophotographies satellites de BESANCON issues du projet Geosud.</ows:Abstract>
     68090                        <ows:Keywords>
     68091                                <ows:Keyword>Photographies</ows:Keyword>
     68092                        </ows:Keywords>
     68093                        <ows:WGS84BoundingBox>
     68094                                <ows:LowerCorner>5.86429 47.1413</ows:LowerCorner>
     68095                                <ows:UpperCorner>6.16602 47.3468</ows:UpperCorner>
     68096                        </ows:WGS84BoundingBox>
     68097                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_BESANCON-2015-04-21-38418324</ows:Identifier>
     68098                        <Style isDefault="true">
     68099                                <ows:Title>Données Brutes</ows:Title>
     68100                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68101                                <ows:Keywords>
     68102                                        <ows:Keyword>Défaut</ows:Keyword>
     68103                                </ows:Keywords>
     68104                                <ows:Identifier>normal</ows:Identifier>
     68105                                <LegendURL format="image/jpeg" height="200"
     68106                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68107                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68108                        </Style>
     68109                        <Format>image/png</Format>
     68110                        <TileMatrixSetLink>
     68111                                <TileMatrixSet>PM</TileMatrixSet>
     68112                                <TileMatrixSetLimits>
     68113                                        <TileMatrixLimits>
     68114                                                <TileMatrix>0</TileMatrix>
     68115                                                <MinTileRow>0</MinTileRow>
     68116                                                <MaxTileRow>0</MaxTileRow>
     68117                                                <MinTileCol>0</MinTileCol>
     68118                                                <MaxTileCol>0</MaxTileCol>
     68119                                        </TileMatrixLimits>
     68120                                        <TileMatrixLimits>
     68121                                                <TileMatrix>1</TileMatrix>
     68122                                                <MinTileRow>0</MinTileRow>
     68123                                                <MaxTileRow>0</MaxTileRow>
     68124                                                <MinTileCol>1</MinTileCol>
     68125                                                <MaxTileCol>1</MaxTileCol>
     68126                                        </TileMatrixLimits>
     68127                                        <TileMatrixLimits>
     68128                                                <TileMatrix>10</TileMatrix>
     68129                                                <MinTileRow>358</MinTileRow>
     68130                                                <MaxTileRow>359</MaxTileRow>
     68131                                                <MinTileCol>528</MinTileCol>
     68132                                                <MaxTileCol>529</MaxTileCol>
     68133                                        </TileMatrixLimits>
     68134                                        <TileMatrixLimits>
     68135                                                <TileMatrix>11</TileMatrix>
     68136                                                <MinTileRow>717</MinTileRow>
     68137                                                <MaxTileRow>719</MaxTileRow>
     68138                                                <MinTileCol>1057</MinTileCol>
     68139                                                <MaxTileCol>1059</MaxTileCol>
     68140                                        </TileMatrixLimits>
     68141                                        <TileMatrixLimits>
     68142                                                <TileMatrix>12</TileMatrix>
     68143                                                <MinTileRow>1434</MinTileRow>
     68144                                                <MaxTileRow>1438</MaxTileRow>
     68145                                                <MinTileCol>2114</MinTileCol>
     68146                                                <MaxTileCol>2118</MaxTileCol>
     68147                                        </TileMatrixLimits>
     68148                                        <TileMatrixLimits>
     68149                                                <TileMatrix>13</TileMatrix>
     68150                                                <MinTileRow>2869</MinTileRow>
     68151                                                <MaxTileRow>2876</MaxTileRow>
     68152                                                <MinTileCol>4229</MinTileCol>
     68153                                                <MaxTileCol>4236</MaxTileCol>
     68154                                        </TileMatrixLimits>
     68155                                        <TileMatrixLimits>
     68156                                                <TileMatrix>14</TileMatrix>
     68157                                                <MinTileRow>5739</MinTileRow>
     68158                                                <MaxTileRow>5753</MaxTileRow>
     68159                                                <MinTileCol>8459</MinTileCol>
     68160                                                <MaxTileCol>8472</MaxTileCol>
     68161                                        </TileMatrixLimits>
     68162                                        <TileMatrixLimits>
     68163                                                <TileMatrix>15</TileMatrix>
     68164                                                <MinTileRow>11479</MinTileRow>
     68165                                                <MaxTileRow>11506</MaxTileRow>
     68166                                                <MinTileCol>16918</MinTileCol>
     68167                                                <MaxTileCol>16944</MaxTileCol>
     68168                                        </TileMatrixLimits>
     68169                                        <TileMatrixLimits>
     68170                                                <TileMatrix>16</TileMatrix>
     68171                                                <MinTileRow>22959</MinTileRow>
     68172                                                <MaxTileRow>23012</MaxTileRow>
     68173                                                <MinTileCol>33836</MinTileCol>
     68174                                                <MaxTileCol>33889</MaxTileCol>
     68175                                        </TileMatrixLimits>
     68176                                        <TileMatrixLimits>
     68177                                                <TileMatrix>17</TileMatrix>
     68178                                                <MinTileRow>45919</MinTileRow>
     68179                                                <MaxTileRow>46025</MaxTileRow>
     68180                                                <MinTileCol>67672</MinTileCol>
     68181                                                <MaxTileCol>67779</MaxTileCol>
     68182                                        </TileMatrixLimits>
     68183                                        <TileMatrixLimits>
     68184                                                <TileMatrix>18</TileMatrix>
     68185                                                <MinTileRow>91838</MinTileRow>
     68186                                                <MaxTileRow>92051</MaxTileRow>
     68187                                                <MinTileCol>135344</MinTileCol>
     68188                                                <MaxTileCol>135559</MaxTileCol>
     68189                                        </TileMatrixLimits>
     68190                                        <TileMatrixLimits>
     68191                                                <TileMatrix>2</TileMatrix>
     68192                                                <MinTileRow>1</MinTileRow>
     68193                                                <MaxTileRow>1</MaxTileRow>
     68194                                                <MinTileCol>2</MinTileCol>
     68195                                                <MaxTileCol>2</MaxTileCol>
     68196                                        </TileMatrixLimits>
     68197                                        <TileMatrixLimits>
     68198                                                <TileMatrix>3</TileMatrix>
     68199                                                <MinTileRow>2</MinTileRow>
     68200                                                <MaxTileRow>2</MaxTileRow>
     68201                                                <MinTileCol>4</MinTileCol>
     68202                                                <MaxTileCol>4</MaxTileCol>
     68203                                        </TileMatrixLimits>
     68204                                        <TileMatrixLimits>
     68205                                                <TileMatrix>4</TileMatrix>
     68206                                                <MinTileRow>5</MinTileRow>
     68207                                                <MaxTileRow>5</MaxTileRow>
     68208                                                <MinTileCol>8</MinTileCol>
     68209                                                <MaxTileCol>8</MaxTileCol>
     68210                                        </TileMatrixLimits>
     68211                                        <TileMatrixLimits>
     68212                                                <TileMatrix>5</TileMatrix>
     68213                                                <MinTileRow>11</MinTileRow>
     68214                                                <MaxTileRow>11</MaxTileRow>
     68215                                                <MinTileCol>16</MinTileCol>
     68216                                                <MaxTileCol>16</MaxTileCol>
     68217                                        </TileMatrixLimits>
     68218                                        <TileMatrixLimits>
     68219                                                <TileMatrix>6</TileMatrix>
     68220                                                <MinTileRow>22</MinTileRow>
     68221                                                <MaxTileRow>22</MaxTileRow>
     68222                                                <MinTileCol>33</MinTileCol>
     68223                                                <MaxTileCol>33</MaxTileCol>
     68224                                        </TileMatrixLimits>
     68225                                        <TileMatrixLimits>
     68226                                                <TileMatrix>7</TileMatrix>
     68227                                                <MinTileRow>44</MinTileRow>
     68228                                                <MaxTileRow>44</MaxTileRow>
     68229                                                <MinTileCol>66</MinTileCol>
     68230                                                <MaxTileCol>66</MaxTileCol>
     68231                                        </TileMatrixLimits>
     68232                                        <TileMatrixLimits>
     68233                                                <TileMatrix>8</TileMatrix>
     68234                                                <MinTileRow>89</MinTileRow>
     68235                                                <MaxTileRow>89</MaxTileRow>
     68236                                                <MinTileCol>132</MinTileCol>
     68237                                                <MaxTileCol>132</MaxTileCol>
     68238                                        </TileMatrixLimits>
     68239                                        <TileMatrixLimits>
     68240                                                <TileMatrix>9</TileMatrix>
     68241                                                <MinTileRow>179</MinTileRow>
     68242                                                <MaxTileRow>179</MaxTileRow>
     68243                                                <MinTileCol>264</MinTileCol>
     68244                                                <MaxTileCol>264</MaxTileCol>
     68245                                        </TileMatrixLimits>
     68246                                </TileMatrixSetLimits>
     68247                        </TileMatrixSetLink>
     68248                </Layer>
     68249                <Layer>
     68250                        <ows:Title>Orthophotographies Geosud de CHAMBERY 2015</ows:Title>
     68251                        <ows:Abstract>Orthophotographies satellites de CHAMBERY issues du projet Geosud.</ows:Abstract>
     68252                        <ows:Keywords>
     68253                                <ows:Keyword>Photographies</ows:Keyword>
     68254                        </ows:Keywords>
     68255                        <ows:WGS84BoundingBox>
     68256                                <ows:LowerCorner>5.76741 45.5131</ows:LowerCorner>
     68257                                <ows:UpperCorner>6.06042 45.7274</ows:UpperCorner>
     68258                        </ows:WGS84BoundingBox>
     68259                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_CHAMBERY-2015-04-08-38471694</ows:Identifier>
     68260                        <Style isDefault="true">
     68261                                <ows:Title>Données Brutes</ows:Title>
     68262                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68263                                <ows:Keywords>
     68264                                        <ows:Keyword>Défaut</ows:Keyword>
     68265                                </ows:Keywords>
     68266                                <ows:Identifier>normal</ows:Identifier>
     68267                                <LegendURL format="image/jpeg" height="200"
     68268                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68269                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68270                        </Style>
     68271                        <Format>image/png</Format>
     68272                        <TileMatrixSetLink>
     68273                                <TileMatrixSet>PM</TileMatrixSet>
     68274                                <TileMatrixSetLimits>
     68275                                        <TileMatrixLimits>
     68276                                                <TileMatrix>0</TileMatrix>
     68277                                                <MinTileRow>0</MinTileRow>
     68278                                                <MaxTileRow>0</MaxTileRow>
     68279                                                <MinTileCol>0</MinTileCol>
     68280                                                <MaxTileCol>0</MaxTileCol>
     68281                                        </TileMatrixLimits>
     68282                                        <TileMatrixLimits>
     68283                                                <TileMatrix>1</TileMatrix>
     68284                                                <MinTileRow>0</MinTileRow>
     68285                                                <MaxTileRow>0</MaxTileRow>
     68286                                                <MinTileCol>1</MinTileCol>
     68287                                                <MaxTileCol>1</MaxTileCol>
     68288                                        </TileMatrixLimits>
     68289                                        <TileMatrixLimits>
     68290                                                <TileMatrix>10</TileMatrix>
     68291                                                <MinTileRow>365</MinTileRow>
     68292                                                <MaxTileRow>366</MaxTileRow>
     68293                                                <MinTileCol>528</MinTileCol>
     68294                                                <MaxTileCol>529</MaxTileCol>
     68295                                        </TileMatrixLimits>
     68296                                        <TileMatrixLimits>
     68297                                                <TileMatrix>11</TileMatrix>
     68298                                                <MinTileRow>730</MinTileRow>
     68299                                                <MaxTileRow>732</MaxTileRow>
     68300                                                <MinTileCol>1056</MinTileCol>
     68301                                                <MaxTileCol>1058</MaxTileCol>
     68302                                        </TileMatrixLimits>
     68303                                        <TileMatrixLimits>
     68304                                                <TileMatrix>12</TileMatrix>
     68305                                                <MinTileRow>1461</MinTileRow>
     68306                                                <MaxTileRow>1465</MaxTileRow>
     68307                                                <MinTileCol>2113</MinTileCol>
     68308                                                <MaxTileCol>2116</MaxTileCol>
     68309                                        </TileMatrixLimits>
     68310                                        <TileMatrixLimits>
     68311                                                <TileMatrix>13</TileMatrix>
     68312                                                <MinTileRow>2923</MinTileRow>
     68313                                                <MaxTileRow>2930</MaxTileRow>
     68314                                                <MinTileCol>4227</MinTileCol>
     68315                                                <MaxTileCol>4233</MaxTileCol>
     68316                                        </TileMatrixLimits>
     68317                                        <TileMatrixLimits>
     68318                                                <TileMatrix>14</TileMatrix>
     68319                                                <MinTileRow>5846</MinTileRow>
     68320                                                <MaxTileRow>5860</MaxTileRow>
     68321                                                <MinTileCol>8454</MinTileCol>
     68322                                                <MaxTileCol>8467</MaxTileCol>
     68323                                        </TileMatrixLimits>
     68324                                        <TileMatrixLimits>
     68325                                                <TileMatrix>15</TileMatrix>
     68326                                                <MinTileRow>11693</MinTileRow>
     68327                                                <MaxTileRow>11720</MaxTileRow>
     68328                                                <MinTileCol>16909</MinTileCol>
     68329                                                <MaxTileCol>16935</MaxTileCol>
     68330                                        </TileMatrixLimits>
     68331                                        <TileMatrixLimits>
     68332                                                <TileMatrix>16</TileMatrix>
     68333                                                <MinTileRow>23386</MinTileRow>
     68334                                                <MaxTileRow>23441</MaxTileRow>
     68335                                                <MinTileCol>33818</MinTileCol>
     68336                                                <MaxTileCol>33870</MaxTileCol>
     68337                                        </TileMatrixLimits>
     68338                                        <TileMatrixLimits>
     68339                                                <TileMatrix>17</TileMatrix>
     68340                                                <MinTileRow>46772</MinTileRow>
     68341                                                <MaxTileRow>46882</MaxTileRow>
     68342                                                <MinTileCol>67636</MinTileCol>
     68343                                                <MaxTileCol>67740</MaxTileCol>
     68344                                        </TileMatrixLimits>
     68345                                        <TileMatrixLimits>
     68346                                                <TileMatrix>18</TileMatrix>
     68347                                                <MinTileRow>93545</MinTileRow>
     68348                                                <MaxTileRow>93765</MaxTileRow>
     68349                                                <MinTileCol>135272</MinTileCol>
     68350                                                <MaxTileCol>135480</MaxTileCol>
     68351                                        </TileMatrixLimits>
     68352                                        <TileMatrixLimits>
     68353                                                <TileMatrix>2</TileMatrix>
     68354                                                <MinTileRow>1</MinTileRow>
     68355                                                <MaxTileRow>1</MaxTileRow>
     68356                                                <MinTileCol>2</MinTileCol>
     68357                                                <MaxTileCol>2</MaxTileCol>
     68358                                        </TileMatrixLimits>
     68359                                        <TileMatrixLimits>
     68360                                                <TileMatrix>3</TileMatrix>
     68361                                                <MinTileRow>2</MinTileRow>
     68362                                                <MaxTileRow>2</MaxTileRow>
     68363                                                <MinTileCol>4</MinTileCol>
     68364                                                <MaxTileCol>4</MaxTileCol>
     68365                                        </TileMatrixLimits>
     68366                                        <TileMatrixLimits>
     68367                                                <TileMatrix>4</TileMatrix>
     68368                                                <MinTileRow>5</MinTileRow>
     68369                                                <MaxTileRow>5</MaxTileRow>
     68370                                                <MinTileCol>8</MinTileCol>
     68371                                                <MaxTileCol>8</MaxTileCol>
     68372                                        </TileMatrixLimits>
     68373                                        <TileMatrixLimits>
     68374                                                <TileMatrix>5</TileMatrix>
     68375                                                <MinTileRow>11</MinTileRow>
     68376                                                <MaxTileRow>11</MaxTileRow>
     68377                                                <MinTileCol>16</MinTileCol>
     68378                                                <MaxTileCol>16</MaxTileCol>
     68379                                        </TileMatrixLimits>
     68380                                        <TileMatrixLimits>
     68381                                                <TileMatrix>6</TileMatrix>
     68382                                                <MinTileRow>22</MinTileRow>
     68383                                                <MaxTileRow>22</MaxTileRow>
     68384                                                <MinTileCol>33</MinTileCol>
     68385                                                <MaxTileCol>33</MaxTileCol>
     68386                                        </TileMatrixLimits>
     68387                                        <TileMatrixLimits>
     68388                                                <TileMatrix>7</TileMatrix>
     68389                                                <MinTileRow>45</MinTileRow>
     68390                                                <MaxTileRow>45</MaxTileRow>
     68391                                                <MinTileCol>66</MinTileCol>
     68392                                                <MaxTileCol>66</MaxTileCol>
     68393                                        </TileMatrixLimits>
     68394                                        <TileMatrixLimits>
     68395                                                <TileMatrix>8</TileMatrix>
     68396                                                <MinTileRow>91</MinTileRow>
     68397                                                <MaxTileRow>91</MaxTileRow>
     68398                                                <MinTileCol>132</MinTileCol>
     68399                                                <MaxTileCol>132</MaxTileCol>
     68400                                        </TileMatrixLimits>
     68401                                        <TileMatrixLimits>
     68402                                                <TileMatrix>9</TileMatrix>
     68403                                                <MinTileRow>182</MinTileRow>
     68404                                                <MaxTileRow>183</MaxTileRow>
     68405                                                <MinTileCol>264</MinTileCol>
     68406                                                <MaxTileCol>264</MaxTileCol>
     68407                                        </TileMatrixLimits>
     68408                                </TileMatrixSetLimits>
     68409                        </TileMatrixSetLink>
     68410                </Layer>
     68411                <Layer>
     68412                        <ows:Title>Orthophotographies Geosud de DIJON 2015</ows:Title>
     68413                        <ows:Abstract>Orthophotographies satellites de DIJON issues du projet Geosud.</ows:Abstract>
     68414                        <ows:Keywords>
     68415                                <ows:Keyword>Photographies</ows:Keyword>
     68416                        </ows:Keywords>
     68417                        <ows:WGS84BoundingBox>
     68418                                <ows:LowerCorner>4.90247 47.1993</ows:LowerCorner>
     68419                                <ows:UpperCorner>5.21433 47.4027</ows:UpperCorner>
     68420                        </ows:WGS84BoundingBox>
     68421                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_DIJON-2015-08-21-39131694</ows:Identifier>
     68422                        <Style isDefault="true">
     68423                                <ows:Title>Données Brutes</ows:Title>
     68424                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68425                                <ows:Keywords>
     68426                                        <ows:Keyword>Défaut</ows:Keyword>
     68427                                </ows:Keywords>
     68428                                <ows:Identifier>normal</ows:Identifier>
     68429                                <LegendURL format="image/jpeg" height="200"
     68430                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68431                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68432                        </Style>
     68433                        <Format>image/png</Format>
     68434                        <TileMatrixSetLink>
     68435                                <TileMatrixSet>PM</TileMatrixSet>
     68436                                <TileMatrixSetLimits>
     68437                                        <TileMatrixLimits>
     68438                                                <TileMatrix>0</TileMatrix>
     68439                                                <MinTileRow>0</MinTileRow>
     68440                                                <MaxTileRow>0</MaxTileRow>
     68441                                                <MinTileCol>0</MinTileCol>
     68442                                                <MaxTileCol>0</MaxTileCol>
     68443                                        </TileMatrixLimits>
     68444                                        <TileMatrixLimits>
     68445                                                <TileMatrix>1</TileMatrix>
     68446                                                <MinTileRow>0</MinTileRow>
     68447                                                <MaxTileRow>0</MaxTileRow>
     68448                                                <MinTileCol>1</MinTileCol>
     68449                                                <MaxTileCol>1</MaxTileCol>
     68450                                        </TileMatrixLimits>
     68451                                        <TileMatrixLimits>
     68452                                                <TileMatrix>10</TileMatrix>
     68453                                                <MinTileRow>358</MinTileRow>
     68454                                                <MaxTileRow>359</MaxTileRow>
     68455                                                <MinTileCol>525</MinTileCol>
     68456                                                <MaxTileCol>526</MaxTileCol>
     68457                                        </TileMatrixLimits>
     68458                                        <TileMatrixLimits>
     68459                                                <TileMatrix>11</TileMatrix>
     68460                                                <MinTileRow>716</MinTileRow>
     68461                                                <MaxTileRow>718</MaxTileRow>
     68462                                                <MinTileCol>1051</MinTileCol>
     68463                                                <MaxTileCol>1053</MaxTileCol>
     68464                                        </TileMatrixLimits>
     68465                                        <TileMatrixLimits>
     68466                                                <TileMatrix>12</TileMatrix>
     68467                                                <MinTileRow>1433</MinTileRow>
     68468                                                <MaxTileRow>1437</MaxTileRow>
     68469                                                <MinTileCol>2103</MinTileCol>
     68470                                                <MaxTileCol>2107</MaxTileCol>
     68471                                        </TileMatrixLimits>
     68472                                        <TileMatrixLimits>
     68473                                                <TileMatrix>13</TileMatrix>
     68474                                                <MinTileRow>2867</MinTileRow>
     68475                                                <MaxTileRow>2874</MaxTileRow>
     68476                                                <MinTileCol>4207</MinTileCol>
     68477                                                <MaxTileCol>4214</MaxTileCol>
     68478                                        </TileMatrixLimits>
     68479                                        <TileMatrixLimits>
     68480                                                <TileMatrix>14</TileMatrix>
     68481                                                <MinTileRow>5735</MinTileRow>
     68482                                                <MaxTileRow>5749</MaxTileRow>
     68483                                                <MinTileCol>8415</MinTileCol>
     68484                                                <MaxTileCol>8429</MaxTileCol>
     68485                                        </TileMatrixLimits>
     68486                                        <TileMatrixLimits>
     68487                                                <TileMatrix>15</TileMatrix>
     68488                                                <MinTileRow>11471</MinTileRow>
     68489                                                <MaxTileRow>11498</MaxTileRow>
     68490                                                <MinTileCol>16830</MinTileCol>
     68491                                                <MaxTileCol>16858</MaxTileCol>
     68492                                        </TileMatrixLimits>
     68493                                        <TileMatrixLimits>
     68494                                                <TileMatrix>16</TileMatrix>
     68495                                                <MinTileRow>22942</MinTileRow>
     68496                                                <MaxTileRow>22997</MaxTileRow>
     68497                                                <MinTileCol>33661</MinTileCol>
     68498                                                <MaxTileCol>33716</MaxTileCol>
     68499                                        </TileMatrixLimits>
     68500                                        <TileMatrixLimits>
     68501                                                <TileMatrix>17</TileMatrix>
     68502                                                <MinTileRow>45885</MinTileRow>
     68503                                                <MaxTileRow>45994</MaxTileRow>
     68504                                                <MinTileCol>67322</MinTileCol>
     68505                                                <MaxTileCol>67432</MaxTileCol>
     68506                                        </TileMatrixLimits>
     68507                                        <TileMatrixLimits>
     68508                                                <TileMatrix>18</TileMatrix>
     68509                                                <MinTileRow>91771</MinTileRow>
     68510                                                <MaxTileRow>91989</MaxTileRow>
     68511                                                <MinTileCol>134645</MinTileCol>
     68512                                                <MaxTileCol>134864</MaxTileCol>
     68513                                        </TileMatrixLimits>
     68514                                        <TileMatrixLimits>
     68515                                                <TileMatrix>2</TileMatrix>
     68516                                                <MinTileRow>1</MinTileRow>
     68517                                                <MaxTileRow>1</MaxTileRow>
     68518                                                <MinTileCol>2</MinTileCol>
     68519                                                <MaxTileCol>2</MaxTileCol>
     68520                                        </TileMatrixLimits>
     68521                                        <TileMatrixLimits>
     68522                                                <TileMatrix>3</TileMatrix>
     68523                                                <MinTileRow>2</MinTileRow>
     68524                                                <MaxTileRow>2</MaxTileRow>
     68525                                                <MinTileCol>4</MinTileCol>
     68526                                                <MaxTileCol>4</MaxTileCol>
     68527                                        </TileMatrixLimits>
     68528                                        <TileMatrixLimits>
     68529                                                <TileMatrix>4</TileMatrix>
     68530                                                <MinTileRow>5</MinTileRow>
     68531                                                <MaxTileRow>5</MaxTileRow>
     68532                                                <MinTileCol>8</MinTileCol>
     68533                                                <MaxTileCol>8</MaxTileCol>
     68534                                        </TileMatrixLimits>
     68535                                        <TileMatrixLimits>
     68536                                                <TileMatrix>5</TileMatrix>
     68537                                                <MinTileRow>11</MinTileRow>
     68538                                                <MaxTileRow>11</MaxTileRow>
     68539                                                <MinTileCol>16</MinTileCol>
     68540                                                <MaxTileCol>16</MaxTileCol>
     68541                                        </TileMatrixLimits>
     68542                                        <TileMatrixLimits>
     68543                                                <TileMatrix>6</TileMatrix>
     68544                                                <MinTileRow>22</MinTileRow>
     68545                                                <MaxTileRow>22</MaxTileRow>
     68546                                                <MinTileCol>32</MinTileCol>
     68547                                                <MaxTileCol>32</MaxTileCol>
     68548                                        </TileMatrixLimits>
     68549                                        <TileMatrixLimits>
     68550                                                <TileMatrix>7</TileMatrix>
     68551                                                <MinTileRow>44</MinTileRow>
     68552                                                <MaxTileRow>44</MaxTileRow>
     68553                                                <MinTileCol>65</MinTileCol>
     68554                                                <MaxTileCol>65</MaxTileCol>
     68555                                        </TileMatrixLimits>
     68556                                        <TileMatrixLimits>
     68557                                                <TileMatrix>8</TileMatrix>
     68558                                                <MinTileRow>89</MinTileRow>
     68559                                                <MaxTileRow>89</MaxTileRow>
     68560                                                <MinTileCol>131</MinTileCol>
     68561                                                <MaxTileCol>131</MaxTileCol>
     68562                                        </TileMatrixLimits>
     68563                                        <TileMatrixLimits>
     68564                                                <TileMatrix>9</TileMatrix>
     68565                                                <MinTileRow>179</MinTileRow>
     68566                                                <MaxTileRow>179</MaxTileRow>
     68567                                                <MinTileCol>262</MinTileCol>
     68568                                                <MaxTileCol>263</MaxTileCol>
     68569                                        </TileMatrixLimits>
     68570                                </TileMatrixSetLimits>
     68571                        </TileMatrixSetLink>
     68572                </Layer>
     68573                <Layer>
     68574                        <ows:Title>Orthophotographies Geosud de LITTO-MED-11 2015</ows:Title>
     68575                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-11 issues du projet Geosud.</ows:Abstract>
     68576                        <ows:Keywords>
     68577                                <ows:Keyword>Photographies</ows:Keyword>
     68578                        </ows:Keywords>
     68579                        <ows:WGS84BoundingBox>
     68580                                <ows:LowerCorner>2.90155 42.9083</ows:LowerCorner>
     68581                                <ows:UpperCorner>3.13537 43.2501</ows:UpperCorner>
     68582                        </ows:WGS84BoundingBox>
     68583                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-11-2015-04-07-38942400</ows:Identifier>
     68584                        <Style isDefault="true">
     68585                                <ows:Title>Données Brutes</ows:Title>
     68586                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68587                                <ows:Keywords>
     68588                                        <ows:Keyword>Défaut</ows:Keyword>
     68589                                </ows:Keywords>
     68590                                <ows:Identifier>normal</ows:Identifier>
     68591                                <LegendURL format="image/jpeg" height="200"
     68592                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68593                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68594                        </Style>
     68595                        <Format>image/png</Format>
     68596                        <TileMatrixSetLink>
     68597                                <TileMatrixSet>PM</TileMatrixSet>
     68598                                <TileMatrixSetLimits>
     68599                                        <TileMatrixLimits>
     68600                                                <TileMatrix>0</TileMatrix>
     68601                                                <MinTileRow>0</MinTileRow>
     68602                                                <MaxTileRow>0</MaxTileRow>
     68603                                                <MinTileCol>0</MinTileCol>
     68604                                                <MaxTileCol>0</MaxTileCol>
     68605                                        </TileMatrixLimits>
     68606                                        <TileMatrixLimits>
     68607                                                <TileMatrix>1</TileMatrix>
     68608                                                <MinTileRow>0</MinTileRow>
     68609                                                <MaxTileRow>0</MaxTileRow>
     68610                                                <MinTileCol>1</MinTileCol>
     68611                                                <MaxTileCol>1</MaxTileCol>
     68612                                        </TileMatrixLimits>
     68613                                        <TileMatrixLimits>
     68614                                                <TileMatrix>10</TileMatrix>
     68615                                                <MinTileRow>375</MinTileRow>
     68616                                                <MaxTileRow>376</MaxTileRow>
     68617                                                <MinTileCol>520</MinTileCol>
     68618                                                <MaxTileCol>520</MaxTileCol>
     68619                                        </TileMatrixLimits>
     68620                                        <TileMatrixLimits>
     68621                                                <TileMatrix>11</TileMatrix>
     68622                                                <MinTileRow>750</MinTileRow>
     68623                                                <MaxTileRow>753</MaxTileRow>
     68624                                                <MinTileCol>1040</MinTileCol>
     68625                                                <MaxTileCol>1041</MaxTileCol>
     68626                                        </TileMatrixLimits>
     68627                                        <TileMatrixLimits>
     68628                                                <TileMatrix>12</TileMatrix>
     68629                                                <MinTileRow>1501</MinTileRow>
     68630                                                <MaxTileRow>1506</MaxTileRow>
     68631                                                <MinTileCol>2081</MinTileCol>
     68632                                                <MaxTileCol>2083</MaxTileCol>
     68633                                        </TileMatrixLimits>
     68634                                        <TileMatrixLimits>
     68635                                                <TileMatrix>13</TileMatrix>
     68636                                                <MinTileRow>3002</MinTileRow>
     68637                                                <MaxTileRow>3012</MaxTileRow>
     68638                                                <MinTileCol>4162</MinTileCol>
     68639                                                <MaxTileCol>4167</MaxTileCol>
     68640                                        </TileMatrixLimits>
     68641                                        <TileMatrixLimits>
     68642                                                <TileMatrix>14</TileMatrix>
     68643                                                <MinTileRow>6004</MinTileRow>
     68644                                                <MaxTileRow>6025</MaxTileRow>
     68645                                                <MinTileCol>8324</MinTileCol>
     68646                                                <MaxTileCol>8334</MaxTileCol>
     68647                                        </TileMatrixLimits>
     68648                                        <TileMatrixLimits>
     68649                                                <TileMatrix>15</TileMatrix>
     68650                                                <MinTileRow>12009</MinTileRow>
     68651                                                <MaxTileRow>12051</MaxTileRow>
     68652                                                <MinTileCol>16648</MinTileCol>
     68653                                                <MaxTileCol>16669</MaxTileCol>
     68654                                        </TileMatrixLimits>
     68655                                        <TileMatrixLimits>
     68656                                                <TileMatrix>16</TileMatrix>
     68657                                                <MinTileRow>24018</MinTileRow>
     68658                                                <MaxTileRow>24103</MaxTileRow>
     68659                                                <MinTileCol>33296</MinTileCol>
     68660                                                <MaxTileCol>33338</MaxTileCol>
     68661                                        </TileMatrixLimits>
     68662                                        <TileMatrixLimits>
     68663                                                <TileMatrix>17</TileMatrix>
     68664                                                <MinTileRow>48037</MinTileRow>
     68665                                                <MaxTileRow>48207</MaxTileRow>
     68666                                                <MinTileCol>66592</MinTileCol>
     68667                                                <MaxTileCol>66677</MaxTileCol>
     68668                                        </TileMatrixLimits>
     68669                                        <TileMatrixLimits>
     68670                                                <TileMatrix>18</TileMatrix>
     68671                                                <MinTileRow>96075</MinTileRow>
     68672                                                <MaxTileRow>96415</MaxTileRow>
     68673                                                <MinTileCol>133184</MinTileCol>
     68674                                                <MaxTileCol>133355</MaxTileCol>
     68675                                        </TileMatrixLimits>
     68676                                        <TileMatrixLimits>
     68677                                                <TileMatrix>2</TileMatrix>
     68678                                                <MinTileRow>1</MinTileRow>
     68679                                                <MaxTileRow>1</MaxTileRow>
     68680                                                <MinTileCol>2</MinTileCol>
     68681                                                <MaxTileCol>2</MaxTileCol>
     68682                                        </TileMatrixLimits>
     68683                                        <TileMatrixLimits>
     68684                                                <TileMatrix>3</TileMatrix>
     68685                                                <MinTileRow>2</MinTileRow>
     68686                                                <MaxTileRow>2</MaxTileRow>
     68687                                                <MinTileCol>4</MinTileCol>
     68688                                                <MaxTileCol>4</MaxTileCol>
     68689                                        </TileMatrixLimits>
     68690                                        <TileMatrixLimits>
     68691                                                <TileMatrix>4</TileMatrix>
     68692                                                <MinTileRow>5</MinTileRow>
     68693                                                <MaxTileRow>5</MaxTileRow>
     68694                                                <MinTileCol>8</MinTileCol>
     68695                                                <MaxTileCol>8</MaxTileCol>
     68696                                        </TileMatrixLimits>
     68697                                        <TileMatrixLimits>
     68698                                                <TileMatrix>5</TileMatrix>
     68699                                                <MinTileRow>11</MinTileRow>
     68700                                                <MaxTileRow>11</MaxTileRow>
     68701                                                <MinTileCol>16</MinTileCol>
     68702                                                <MaxTileCol>16</MaxTileCol>
     68703                                        </TileMatrixLimits>
     68704                                        <TileMatrixLimits>
     68705                                                <TileMatrix>6</TileMatrix>
     68706                                                <MinTileRow>23</MinTileRow>
     68707                                                <MaxTileRow>23</MaxTileRow>
     68708                                                <MinTileCol>32</MinTileCol>
     68709                                                <MaxTileCol>32</MaxTileCol>
     68710                                        </TileMatrixLimits>
     68711                                        <TileMatrixLimits>
     68712                                                <TileMatrix>7</TileMatrix>
     68713                                                <MinTileRow>46</MinTileRow>
     68714                                                <MaxTileRow>47</MaxTileRow>
     68715                                                <MinTileCol>65</MinTileCol>
     68716                                                <MaxTileCol>65</MaxTileCol>
     68717                                        </TileMatrixLimits>
     68718                                        <TileMatrixLimits>
     68719                                                <TileMatrix>8</TileMatrix>
     68720                                                <MinTileRow>93</MinTileRow>
     68721                                                <MaxTileRow>94</MaxTileRow>
     68722                                                <MinTileCol>130</MinTileCol>
     68723                                                <MaxTileCol>130</MaxTileCol>
     68724                                        </TileMatrixLimits>
     68725                                        <TileMatrixLimits>
     68726                                                <TileMatrix>9</TileMatrix>
     68727                                                <MinTileRow>187</MinTileRow>
     68728                                                <MaxTileRow>188</MaxTileRow>
     68729                                                <MinTileCol>260</MinTileCol>
     68730                                                <MaxTileCol>260</MaxTileCol>
     68731                                        </TileMatrixLimits>
     68732                                </TileMatrixSetLimits>
     68733                        </TileMatrixSetLink>
     68734                </Layer>
     68735                <Layer>
     68736                        <ows:Title>Orthophotographies Geosud de LITTO-MED-11 2015</ows:Title>
     68737                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-11 issues du projet Geosud.</ows:Abstract>
     68738                        <ows:Keywords>
     68739                                <ows:Keyword>Photographies</ows:Keyword>
     68740                        </ows:Keywords>
     68741                        <ows:WGS84BoundingBox>
     68742                                <ows:LowerCorner>3.09807 43.0247</ows:LowerCorner>
     68743                                <ows:UpperCorner>3.35748 43.3491</ows:UpperCorner>
     68744                        </ows:WGS84BoundingBox>
     68745                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-11-2015-04-13-39158760</ows:Identifier>
     68746                        <Style isDefault="true">
     68747                                <ows:Title>Données Brutes</ows:Title>
     68748                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68749                                <ows:Keywords>
     68750                                        <ows:Keyword>Défaut</ows:Keyword>
     68751                                </ows:Keywords>
     68752                                <ows:Identifier>normal</ows:Identifier>
     68753                                <LegendURL format="image/jpeg" height="200"
     68754                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68755                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68756                        </Style>
     68757                        <Format>image/png</Format>
     68758                        <TileMatrixSetLink>
     68759                                <TileMatrixSet>PM</TileMatrixSet>
     68760                                <TileMatrixSetLimits>
     68761                                        <TileMatrixLimits>
     68762                                                <TileMatrix>0</TileMatrix>
     68763                                                <MinTileRow>0</MinTileRow>
     68764                                                <MaxTileRow>0</MaxTileRow>
     68765                                                <MinTileCol>0</MinTileCol>
     68766                                                <MaxTileCol>0</MaxTileCol>
     68767                                        </TileMatrixLimits>
     68768                                        <TileMatrixLimits>
     68769                                                <TileMatrix>1</TileMatrix>
     68770                                                <MinTileRow>0</MinTileRow>
     68771                                                <MaxTileRow>0</MaxTileRow>
     68772                                                <MinTileCol>1</MinTileCol>
     68773                                                <MaxTileCol>1</MaxTileCol>
     68774                                        </TileMatrixLimits>
     68775                                        <TileMatrixLimits>
     68776                                                <TileMatrix>10</TileMatrix>
     68777                                                <MinTileRow>374</MinTileRow>
     68778                                                <MaxTileRow>376</MaxTileRow>
     68779                                                <MinTileCol>520</MinTileCol>
     68780                                                <MaxTileCol>521</MaxTileCol>
     68781                                        </TileMatrixLimits>
     68782                                        <TileMatrixLimits>
     68783                                                <TileMatrix>11</TileMatrix>
     68784                                                <MinTileRow>749</MinTileRow>
     68785                                                <MaxTileRow>752</MaxTileRow>
     68786                                                <MinTileCol>1041</MinTileCol>
     68787                                                <MaxTileCol>1043</MaxTileCol>
     68788                                        </TileMatrixLimits>
     68789                                        <TileMatrixLimits>
     68790                                                <TileMatrix>12</TileMatrix>
     68791                                                <MinTileRow>1499</MinTileRow>
     68792                                                <MaxTileRow>1504</MaxTileRow>
     68793                                                <MinTileCol>2083</MinTileCol>
     68794                                                <MaxTileCol>2086</MaxTileCol>
     68795                                        </TileMatrixLimits>
     68796                                        <TileMatrixLimits>
     68797                                                <TileMatrix>13</TileMatrix>
     68798                                                <MinTileRow>2999</MinTileRow>
     68799                                                <MaxTileRow>3009</MaxTileRow>
     68800                                                <MinTileCol>4166</MinTileCol>
     68801                                                <MaxTileCol>4172</MaxTileCol>
     68802                                        </TileMatrixLimits>
     68803                                        <TileMatrixLimits>
     68804                                                <TileMatrix>14</TileMatrix>
     68805                                                <MinTileRow>5998</MinTileRow>
     68806                                                <MaxTileRow>6018</MaxTileRow>
     68807                                                <MinTileCol>8332</MinTileCol>
     68808                                                <MaxTileCol>8344</MaxTileCol>
     68809                                        </TileMatrixLimits>
     68810                                        <TileMatrixLimits>
     68811                                                <TileMatrix>15</TileMatrix>
     68812                                                <MinTileRow>11997</MinTileRow>
     68813                                                <MaxTileRow>12037</MaxTileRow>
     68814                                                <MinTileCol>16665</MinTileCol>
     68815                                                <MaxTileCol>16689</MaxTileCol>
     68816                                        </TileMatrixLimits>
     68817                                        <TileMatrixLimits>
     68818                                                <TileMatrix>16</TileMatrix>
     68819                                                <MinTileRow>23994</MinTileRow>
     68820                                                <MaxTileRow>24074</MaxTileRow>
     68821                                                <MinTileCol>33331</MinTileCol>
     68822                                                <MaxTileCol>33379</MaxTileCol>
     68823                                        </TileMatrixLimits>
     68824                                        <TileMatrixLimits>
     68825                                                <TileMatrix>17</TileMatrix>
     68826                                                <MinTileRow>47988</MinTileRow>
     68827                                                <MaxTileRow>48149</MaxTileRow>
     68828                                                <MinTileCol>66663</MinTileCol>
     68829                                                <MaxTileCol>66758</MaxTileCol>
     68830                                        </TileMatrixLimits>
     68831                                        <TileMatrixLimits>
     68832                                                <TileMatrix>18</TileMatrix>
     68833                                                <MinTileRow>95976</MinTileRow>
     68834                                                <MaxTileRow>96299</MaxTileRow>
     68835                                                <MinTileCol>133327</MinTileCol>
     68836                                                <MaxTileCol>133517</MaxTileCol>
     68837                                        </TileMatrixLimits>
     68838                                        <TileMatrixLimits>
     68839                                                <TileMatrix>2</TileMatrix>
     68840                                                <MinTileRow>1</MinTileRow>
     68841                                                <MaxTileRow>1</MaxTileRow>
     68842                                                <MinTileCol>2</MinTileCol>
     68843                                                <MaxTileCol>2</MaxTileCol>
     68844                                        </TileMatrixLimits>
     68845                                        <TileMatrixLimits>
     68846                                                <TileMatrix>3</TileMatrix>
     68847                                                <MinTileRow>2</MinTileRow>
     68848                                                <MaxTileRow>2</MaxTileRow>
     68849                                                <MinTileCol>4</MinTileCol>
     68850                                                <MaxTileCol>4</MaxTileCol>
     68851                                        </TileMatrixLimits>
     68852                                        <TileMatrixLimits>
     68853                                                <TileMatrix>4</TileMatrix>
     68854                                                <MinTileRow>5</MinTileRow>
     68855                                                <MaxTileRow>5</MaxTileRow>
     68856                                                <MinTileCol>8</MinTileCol>
     68857                                                <MaxTileCol>8</MaxTileCol>
     68858                                        </TileMatrixLimits>
     68859                                        <TileMatrixLimits>
     68860                                                <TileMatrix>5</TileMatrix>
     68861                                                <MinTileRow>11</MinTileRow>
     68862                                                <MaxTileRow>11</MaxTileRow>
     68863                                                <MinTileCol>16</MinTileCol>
     68864                                                <MaxTileCol>16</MaxTileCol>
     68865                                        </TileMatrixLimits>
     68866                                        <TileMatrixLimits>
     68867                                                <TileMatrix>6</TileMatrix>
     68868                                                <MinTileRow>23</MinTileRow>
     68869                                                <MaxTileRow>23</MaxTileRow>
     68870                                                <MinTileCol>32</MinTileCol>
     68871                                                <MaxTileCol>32</MaxTileCol>
     68872                                        </TileMatrixLimits>
     68873                                        <TileMatrixLimits>
     68874                                                <TileMatrix>7</TileMatrix>
     68875                                                <MinTileRow>46</MinTileRow>
     68876                                                <MaxTileRow>47</MaxTileRow>
     68877                                                <MinTileCol>65</MinTileCol>
     68878                                                <MaxTileCol>65</MaxTileCol>
     68879                                        </TileMatrixLimits>
     68880                                        <TileMatrixLimits>
     68881                                                <TileMatrix>8</TileMatrix>
     68882                                                <MinTileRow>93</MinTileRow>
     68883                                                <MaxTileRow>94</MaxTileRow>
     68884                                                <MinTileCol>130</MinTileCol>
     68885                                                <MaxTileCol>130</MaxTileCol>
     68886                                        </TileMatrixLimits>
     68887                                        <TileMatrixLimits>
     68888                                                <TileMatrix>9</TileMatrix>
     68889                                                <MinTileRow>187</MinTileRow>
     68890                                                <MaxTileRow>188</MaxTileRow>
     68891                                                <MinTileCol>260</MinTileCol>
     68892                                                <MaxTileCol>260</MaxTileCol>
     68893                                        </TileMatrixLimits>
     68894                                </TileMatrixSetLimits>
     68895                        </TileMatrixSetLink>
     68896                </Layer>
     68897                <Layer>
     68898                        <ows:Title>Orthophotographies Geosud de LITTO-MED-30 2015</ows:Title>
     68899                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-30 issues du projet Geosud.</ows:Abstract>
     68900                        <ows:Keywords>
     68901                                <ows:Keyword>Photographies</ows:Keyword>
     68902                        </ows:Keywords>
     68903                        <ows:WGS84BoundingBox>
     68904                                <ows:LowerCorner>3.96342 43.4592</ows:LowerCorner>
     68905                                <ows:UpperCorner>4.2266 43.6417</ows:UpperCorner>
     68906                        </ows:WGS84BoundingBox>
     68907                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-30-2015-04-14-38723641</ows:Identifier>
     68908                        <Style isDefault="true">
     68909                                <ows:Title>Données Brutes</ows:Title>
     68910                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     68911                                <ows:Keywords>
     68912                                        <ows:Keyword>Défaut</ows:Keyword>
     68913                                </ows:Keywords>
     68914                                <ows:Identifier>normal</ows:Identifier>
     68915                                <LegendURL format="image/jpeg" height="200"
     68916                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     68917                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     68918                        </Style>
     68919                        <Format>image/png</Format>
     68920                        <TileMatrixSetLink>
     68921                                <TileMatrixSet>PM</TileMatrixSet>
     68922                                <TileMatrixSetLimits>
     68923                                        <TileMatrixLimits>
     68924                                                <TileMatrix>0</TileMatrix>
     68925                                                <MinTileRow>0</MinTileRow>
     68926                                                <MaxTileRow>0</MaxTileRow>
     68927                                                <MinTileCol>0</MinTileCol>
     68928                                                <MaxTileCol>0</MaxTileCol>
     68929                                        </TileMatrixLimits>
     68930                                        <TileMatrixLimits>
     68931                                                <TileMatrix>1</TileMatrix>
     68932                                                <MinTileRow>0</MinTileRow>
     68933                                                <MaxTileRow>0</MaxTileRow>
     68934                                                <MinTileCol>1</MinTileCol>
     68935                                                <MaxTileCol>1</MaxTileCol>
     68936                                        </TileMatrixLimits>
     68937                                        <TileMatrixLimits>
     68938                                                <TileMatrix>10</TileMatrix>
     68939                                                <MinTileRow>373</MinTileRow>
     68940                                                <MaxTileRow>374</MaxTileRow>
     68941                                                <MinTileCol>523</MinTileCol>
     68942                                                <MaxTileCol>524</MaxTileCol>
     68943                                        </TileMatrixLimits>
     68944                                        <TileMatrixLimits>
     68945                                                <TileMatrix>11</TileMatrix>
     68946                                                <MinTileRow>747</MinTileRow>
     68947                                                <MaxTileRow>748</MaxTileRow>
     68948                                                <MinTileCol>1046</MinTileCol>
     68949                                                <MaxTileCol>1048</MaxTileCol>
     68950                                        </TileMatrixLimits>
     68951                                        <TileMatrixLimits>
     68952                                                <TileMatrix>12</TileMatrix>
     68953                                                <MinTileRow>1495</MinTileRow>
     68954                                                <MaxTileRow>1497</MaxTileRow>
     68955                                                <MinTileCol>2093</MinTileCol>
     68956                                                <MaxTileCol>2096</MaxTileCol>
     68957                                        </TileMatrixLimits>
     68958                                        <TileMatrixLimits>
     68959                                                <TileMatrix>13</TileMatrix>
     68960                                                <MinTileRow>2990</MinTileRow>
     68961                                                <MaxTileRow>2995</MaxTileRow>
     68962                                                <MinTileCol>4186</MinTileCol>
     68963                                                <MaxTileCol>4192</MaxTileCol>
     68964                                        </TileMatrixLimits>
     68965                                        <TileMatrixLimits>
     68966                                                <TileMatrix>14</TileMatrix>
     68967                                                <MinTileRow>5980</MinTileRow>
     68968                                                <MaxTileRow>5991</MaxTileRow>
     68969                                                <MinTileCol>8372</MinTileCol>
     68970                                                <MaxTileCol>8384</MaxTileCol>
     68971                                        </TileMatrixLimits>
     68972                                        <TileMatrixLimits>
     68973                                                <TileMatrix>15</TileMatrix>
     68974                                                <MinTileRow>11960</MinTileRow>
     68975                                                <MaxTileRow>11983</MaxTileRow>
     68976                                                <MinTileCol>16744</MinTileCol>
     68977                                                <MaxTileCol>16768</MaxTileCol>
     68978                                        </TileMatrixLimits>
     68979                                        <TileMatrixLimits>
     68980                                                <TileMatrix>16</TileMatrix>
     68981                                                <MinTileRow>23920</MinTileRow>
     68982                                                <MaxTileRow>23966</MaxTileRow>
     68983                                                <MinTileCol>33489</MinTileCol>
     68984                                                <MaxTileCol>33537</MaxTileCol>
     68985                                        </TileMatrixLimits>
     68986                                        <TileMatrixLimits>
     68987                                                <TileMatrix>17</TileMatrix>
     68988                                                <MinTileRow>47841</MinTileRow>
     68989                                                <MaxTileRow>47932</MaxTileRow>
     68990                                                <MinTileCol>66979</MinTileCol>
     68991                                                <MaxTileCol>67074</MaxTileCol>
     68992                                        </TileMatrixLimits>
     68993                                        <TileMatrixLimits>
     68994                                                <TileMatrix>18</TileMatrix>
     68995                                                <MinTileRow>95683</MinTileRow>
     68996                                                <MaxTileRow>95865</MaxTileRow>
     68997                                                <MinTileCol>133958</MinTileCol>
     68998                                                <MaxTileCol>134149</MaxTileCol>
     68999                                        </TileMatrixLimits>
     69000                                        <TileMatrixLimits>
     69001                                                <TileMatrix>2</TileMatrix>
     69002                                                <MinTileRow>1</MinTileRow>
     69003                                                <MaxTileRow>1</MaxTileRow>
     69004                                                <MinTileCol>2</MinTileCol>
     69005                                                <MaxTileCol>2</MaxTileCol>
     69006                                        </TileMatrixLimits>
     69007                                        <TileMatrixLimits>
     69008                                                <TileMatrix>3</TileMatrix>
     69009                                                <MinTileRow>2</MinTileRow>
     69010                                                <MaxTileRow>2</MaxTileRow>
     69011                                                <MinTileCol>4</MinTileCol>
     69012                                                <MaxTileCol>4</MaxTileCol>
     69013                                        </TileMatrixLimits>
     69014                                        <TileMatrixLimits>
     69015                                                <TileMatrix>4</TileMatrix>
     69016                                                <MinTileRow>5</MinTileRow>
     69017                                                <MaxTileRow>5</MaxTileRow>
     69018                                                <MinTileCol>8</MinTileCol>
     69019                                                <MaxTileCol>8</MaxTileCol>
     69020                                        </TileMatrixLimits>
     69021                                        <TileMatrixLimits>
     69022                                                <TileMatrix>5</TileMatrix>
     69023                                                <MinTileRow>11</MinTileRow>
     69024                                                <MaxTileRow>11</MaxTileRow>
     69025                                                <MinTileCol>16</MinTileCol>
     69026                                                <MaxTileCol>16</MaxTileCol>
     69027                                        </TileMatrixLimits>
     69028                                        <TileMatrixLimits>
     69029                                                <TileMatrix>6</TileMatrix>
     69030                                                <MinTileRow>23</MinTileRow>
     69031                                                <MaxTileRow>23</MaxTileRow>
     69032                                                <MinTileCol>32</MinTileCol>
     69033                                                <MaxTileCol>32</MaxTileCol>
     69034                                        </TileMatrixLimits>
     69035                                        <TileMatrixLimits>
     69036                                                <TileMatrix>7</TileMatrix>
     69037                                                <MinTileRow>46</MinTileRow>
     69038                                                <MaxTileRow>46</MaxTileRow>
     69039                                                <MinTileCol>65</MinTileCol>
     69040                                                <MaxTileCol>65</MaxTileCol>
     69041                                        </TileMatrixLimits>
     69042                                        <TileMatrixLimits>
     69043                                                <TileMatrix>8</TileMatrix>
     69044                                                <MinTileRow>93</MinTileRow>
     69045                                                <MaxTileRow>93</MaxTileRow>
     69046                                                <MinTileCol>130</MinTileCol>
     69047                                                <MaxTileCol>131</MaxTileCol>
     69048                                        </TileMatrixLimits>
     69049                                        <TileMatrixLimits>
     69050                                                <TileMatrix>9</TileMatrix>
     69051                                                <MinTileRow>186</MinTileRow>
     69052                                                <MaxTileRow>187</MaxTileRow>
     69053                                                <MinTileCol>261</MinTileCol>
     69054                                                <MaxTileCol>262</MaxTileCol>
     69055                                        </TileMatrixLimits>
     69056                                </TileMatrixSetLimits>
     69057                        </TileMatrixSetLink>
     69058                </Layer>
     69059                <Layer>
     69060                        <ows:Title>Orthophotographies Geosud de LITTO-MED-30 2015</ows:Title>
     69061                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-30 issues du projet Geosud.</ows:Abstract>
     69062                        <ows:Keywords>
     69063                                <ows:Keyword>Photographies</ows:Keyword>
     69064                        </ows:Keywords>
     69065                        <ows:WGS84BoundingBox>
     69066                                <ows:LowerCorner>4.18498 43.4205</ows:LowerCorner>
     69067                                <ows:UpperCorner>4.44844 43.5946</ows:UpperCorner>
     69068                        </ows:WGS84BoundingBox>
     69069                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-30-2015-05-30-38528655</ows:Identifier>
     69070                        <Style isDefault="true">
     69071                                <ows:Title>Données Brutes</ows:Title>
     69072                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69073                                <ows:Keywords>
     69074                                        <ows:Keyword>Défaut</ows:Keyword>
     69075                                </ows:Keywords>
     69076                                <ows:Identifier>normal</ows:Identifier>
     69077                                <LegendURL format="image/jpeg" height="200"
     69078                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69079                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69080                        </Style>
     69081                        <Format>image/png</Format>
     69082                        <TileMatrixSetLink>
     69083                                <TileMatrixSet>PM</TileMatrixSet>
     69084                                <TileMatrixSetLimits>
     69085                                        <TileMatrixLimits>
     69086                                                <TileMatrix>0</TileMatrix>
     69087                                                <MinTileRow>0</MinTileRow>
     69088                                                <MaxTileRow>0</MaxTileRow>
     69089                                                <MinTileCol>0</MinTileCol>
     69090                                                <MaxTileCol>0</MaxTileCol>
     69091                                        </TileMatrixLimits>
     69092                                        <TileMatrixLimits>
     69093                                                <TileMatrix>1</TileMatrix>
     69094                                                <MinTileRow>0</MinTileRow>
     69095                                                <MaxTileRow>0</MaxTileRow>
     69096                                                <MinTileCol>1</MinTileCol>
     69097                                                <MaxTileCol>1</MaxTileCol>
     69098                                        </TileMatrixLimits>
     69099                                        <TileMatrixLimits>
     69100                                                <TileMatrix>10</TileMatrix>
     69101                                                <MinTileRow>373</MinTileRow>
     69102                                                <MaxTileRow>374</MaxTileRow>
     69103                                                <MinTileCol>523</MinTileCol>
     69104                                                <MaxTileCol>524</MaxTileCol>
     69105                                        </TileMatrixLimits>
     69106                                        <TileMatrixLimits>
     69107                                                <TileMatrix>11</TileMatrix>
     69108                                                <MinTileRow>747</MinTileRow>
     69109                                                <MaxTileRow>749</MaxTileRow>
     69110                                                <MinTileCol>1047</MinTileCol>
     69111                                                <MaxTileCol>1049</MaxTileCol>
     69112                                        </TileMatrixLimits>
     69113                                        <TileMatrixLimits>
     69114                                                <TileMatrix>12</TileMatrix>
     69115                                                <MinTileRow>1495</MinTileRow>
     69116                                                <MaxTileRow>1498</MaxTileRow>
     69117                                                <MinTileCol>2095</MinTileCol>
     69118                                                <MaxTileCol>2098</MaxTileCol>
     69119                                        </TileMatrixLimits>
     69120                                        <TileMatrixLimits>
     69121                                                <TileMatrix>13</TileMatrix>
     69122                                                <MinTileRow>2991</MinTileRow>
     69123                                                <MaxTileRow>2997</MaxTileRow>
     69124                                                <MinTileCol>4191</MinTileCol>
     69125                                                <MaxTileCol>4197</MaxTileCol>
     69126                                        </TileMatrixLimits>
     69127                                        <TileMatrixLimits>
     69128                                                <TileMatrix>14</TileMatrix>
     69129                                                <MinTileRow>5983</MinTileRow>
     69130                                                <MaxTileRow>5994</MaxTileRow>
     69131                                                <MinTileCol>8382</MinTileCol>
     69132                                                <MaxTileCol>8394</MaxTileCol>
     69133                                        </TileMatrixLimits>
     69134                                        <TileMatrixLimits>
     69135                                                <TileMatrix>15</TileMatrix>
     69136                                                <MinTileRow>11966</MinTileRow>
     69137                                                <MaxTileRow>11988</MaxTileRow>
     69138                                                <MinTileCol>16764</MinTileCol>
     69139                                                <MaxTileCol>16788</MaxTileCol>
     69140                                        </TileMatrixLimits>
     69141                                        <TileMatrixLimits>
     69142                                                <TileMatrix>16</TileMatrix>
     69143                                                <MinTileRow>23932</MinTileRow>
     69144                                                <MaxTileRow>23976</MaxTileRow>
     69145                                                <MinTileCol>33529</MinTileCol>
     69146                                                <MaxTileCol>33577</MaxTileCol>
     69147                                        </TileMatrixLimits>
     69148                                        <TileMatrixLimits>
     69149                                                <TileMatrix>17</TileMatrix>
     69150                                                <MinTileRow>47864</MinTileRow>
     69151                                                <MaxTileRow>47952</MaxTileRow>
     69152                                                <MinTileCol>67059</MinTileCol>
     69153                                                <MaxTileCol>67154</MaxTileCol>
     69154                                        </TileMatrixLimits>
     69155                                        <TileMatrixLimits>
     69156                                                <TileMatrix>18</TileMatrix>
     69157                                                <MinTileRow>95729</MinTileRow>
     69158                                                <MaxTileRow>95904</MaxTileRow>
     69159                                                <MinTileCol>134119</MinTileCol>
     69160                                                <MaxTileCol>134309</MaxTileCol>
     69161                                        </TileMatrixLimits>
     69162                                        <TileMatrixLimits>
     69163                                                <TileMatrix>2</TileMatrix>
     69164                                                <MinTileRow>1</MinTileRow>
     69165                                                <MaxTileRow>1</MaxTileRow>
     69166                                                <MinTileCol>2</MinTileCol>
     69167                                                <MaxTileCol>2</MaxTileCol>
     69168                                        </TileMatrixLimits>
     69169                                        <TileMatrixLimits>
     69170                                                <TileMatrix>3</TileMatrix>
     69171                                                <MinTileRow>2</MinTileRow>
     69172                                                <MaxTileRow>2</MaxTileRow>
     69173                                                <MinTileCol>4</MinTileCol>
     69174                                                <MaxTileCol>4</MaxTileCol>
     69175                                        </TileMatrixLimits>
     69176                                        <TileMatrixLimits>
     69177                                                <TileMatrix>4</TileMatrix>
     69178                                                <MinTileRow>5</MinTileRow>
     69179                                                <MaxTileRow>5</MaxTileRow>
     69180                                                <MinTileCol>8</MinTileCol>
     69181                                                <MaxTileCol>8</MaxTileCol>
     69182                                        </TileMatrixLimits>
     69183                                        <TileMatrixLimits>
     69184                                                <TileMatrix>5</TileMatrix>
     69185                                                <MinTileRow>11</MinTileRow>
     69186                                                <MaxTileRow>11</MaxTileRow>
     69187                                                <MinTileCol>16</MinTileCol>
     69188                                                <MaxTileCol>16</MaxTileCol>
     69189                                        </TileMatrixLimits>
     69190                                        <TileMatrixLimits>
     69191                                                <TileMatrix>6</TileMatrix>
     69192                                                <MinTileRow>23</MinTileRow>
     69193                                                <MaxTileRow>23</MaxTileRow>
     69194                                                <MinTileCol>32</MinTileCol>
     69195                                                <MaxTileCol>32</MaxTileCol>
     69196                                        </TileMatrixLimits>
     69197                                        <TileMatrixLimits>
     69198                                                <TileMatrix>7</TileMatrix>
     69199                                                <MinTileRow>46</MinTileRow>
     69200                                                <MaxTileRow>46</MaxTileRow>
     69201                                                <MinTileCol>65</MinTileCol>
     69202                                                <MaxTileCol>65</MaxTileCol>
     69203                                        </TileMatrixLimits>
     69204                                        <TileMatrixLimits>
     69205                                                <TileMatrix>8</TileMatrix>
     69206                                                <MinTileRow>93</MinTileRow>
     69207                                                <MaxTileRow>93</MaxTileRow>
     69208                                                <MinTileCol>130</MinTileCol>
     69209                                                <MaxTileCol>131</MaxTileCol>
     69210                                        </TileMatrixLimits>
     69211                                        <TileMatrixLimits>
     69212                                                <TileMatrix>9</TileMatrix>
     69213                                                <MinTileRow>186</MinTileRow>
     69214                                                <MaxTileRow>187</MaxTileRow>
     69215                                                <MinTileCol>261</MinTileCol>
     69216                                                <MaxTileCol>262</MaxTileCol>
     69217                                        </TileMatrixLimits>
     69218                                </TileMatrixSetLimits>
     69219                        </TileMatrixSetLink>
     69220                </Layer>
     69221                <Layer>
     69222                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     69223                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     69224                        <ows:Keywords>
     69225                                <ows:Keyword>Photographies</ows:Keyword>
     69226                        </ows:Keywords>
     69227                        <ows:WGS84BoundingBox>
     69228                                <ows:LowerCorner>3.32005 43.2667</ows:LowerCorner>
     69229                                <ows:UpperCorner>3.56801 43.4476</ows:UpperCorner>
     69230                        </ows:WGS84BoundingBox>
     69231                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-04-07-38970438</ows:Identifier>
     69232                        <Style isDefault="true">
     69233                                <ows:Title>Données Brutes</ows:Title>
     69234                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69235                                <ows:Keywords>
     69236                                        <ows:Keyword>Défaut</ows:Keyword>
     69237                                </ows:Keywords>
     69238                                <ows:Identifier>normal</ows:Identifier>
     69239                                <LegendURL format="image/jpeg" height="200"
     69240                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69241                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69242                        </Style>
     69243                        <Format>image/png</Format>
     69244                        <TileMatrixSetLink>
     69245                                <TileMatrixSet>PM</TileMatrixSet>
     69246                                <TileMatrixSetLimits>
     69247                                        <TileMatrixLimits>
     69248                                                <TileMatrix>0</TileMatrix>
     69249                                                <MinTileRow>0</MinTileRow>
     69250                                                <MaxTileRow>0</MaxTileRow>
     69251                                                <MinTileCol>0</MinTileCol>
     69252                                                <MaxTileCol>0</MaxTileCol>
     69253                                        </TileMatrixLimits>
     69254                                        <TileMatrixLimits>
     69255                                                <TileMatrix>1</TileMatrix>
     69256                                                <MinTileRow>0</MinTileRow>
     69257                                                <MaxTileRow>0</MaxTileRow>
     69258                                                <MinTileCol>1</MinTileCol>
     69259                                                <MaxTileCol>1</MaxTileCol>
     69260                                        </TileMatrixLimits>
     69261                                        <TileMatrixLimits>
     69262                                                <TileMatrix>10</TileMatrix>
     69263                                                <MinTileRow>374</MinTileRow>
     69264                                                <MaxTileRow>375</MaxTileRow>
     69265                                                <MinTileCol>521</MinTileCol>
     69266                                                <MaxTileCol>522</MaxTileCol>
     69267                                        </TileMatrixLimits>
     69268                                        <TileMatrixLimits>
     69269                                                <TileMatrix>11</TileMatrix>
     69270                                                <MinTileRow>749</MinTileRow>
     69271                                                <MaxTileRow>750</MaxTileRow>
     69272                                                <MinTileCol>1042</MinTileCol>
     69273                                                <MaxTileCol>1044</MaxTileCol>
     69274                                        </TileMatrixLimits>
     69275                                        <TileMatrixLimits>
     69276                                                <TileMatrix>12</TileMatrix>
     69277                                                <MinTileRow>1498</MinTileRow>
     69278                                                <MaxTileRow>1500</MaxTileRow>
     69279                                                <MinTileCol>2085</MinTileCol>
     69280                                                <MaxTileCol>2088</MaxTileCol>
     69281                                        </TileMatrixLimits>
     69282                                        <TileMatrixLimits>
     69283                                                <TileMatrix>13</TileMatrix>
     69284                                                <MinTileRow>2996</MinTileRow>
     69285                                                <MaxTileRow>3001</MaxTileRow>
     69286                                                <MinTileCol>4171</MinTileCol>
     69287                                                <MaxTileCol>4177</MaxTileCol>
     69288                                        </TileMatrixLimits>
     69289                                        <TileMatrixLimits>
     69290                                                <TileMatrix>14</TileMatrix>
     69291                                                <MinTileRow>5992</MinTileRow>
     69292                                                <MaxTileRow>6003</MaxTileRow>
     69293                                                <MinTileCol>8343</MinTileCol>
     69294                                                <MaxTileCol>8354</MaxTileCol>
     69295                                        </TileMatrixLimits>
     69296                                        <TileMatrixLimits>
     69297                                                <TileMatrix>15</TileMatrix>
     69298                                                <MinTileRow>11984</MinTileRow>
     69299                                                <MaxTileRow>12007</MaxTileRow>
     69300                                                <MinTileCol>16686</MinTileCol>
     69301                                                <MaxTileCol>16708</MaxTileCol>
     69302                                        </TileMatrixLimits>
     69303                                        <TileMatrixLimits>
     69304                                                <TileMatrix>16</TileMatrix>
     69305                                                <MinTileRow>23969</MinTileRow>
     69306                                                <MaxTileRow>24014</MaxTileRow>
     69307                                                <MinTileCol>33372</MinTileCol>
     69308                                                <MaxTileCol>33417</MaxTileCol>
     69309                                        </TileMatrixLimits>
     69310                                        <TileMatrixLimits>
     69311                                                <TileMatrix>17</TileMatrix>
     69312                                                <MinTileRow>47939</MinTileRow>
     69313                                                <MaxTileRow>48029</MaxTileRow>
     69314                                                <MinTileCol>66744</MinTileCol>
     69315                                                <MaxTileCol>66835</MaxTileCol>
     69316                                        </TileMatrixLimits>
     69317                                        <TileMatrixLimits>
     69318                                                <TileMatrix>18</TileMatrix>
     69319                                                <MinTileRow>95878</MinTileRow>
     69320                                                <MaxTileRow>96058</MaxTileRow>
     69321                                                <MinTileCol>133489</MinTileCol>
     69322                                                <MaxTileCol>133670</MaxTileCol>
     69323                                        </TileMatrixLimits>
     69324                                        <TileMatrixLimits>
     69325                                                <TileMatrix>2</TileMatrix>
     69326                                                <MinTileRow>1</MinTileRow>
     69327                                                <MaxTileRow>1</MaxTileRow>
     69328                                                <MinTileCol>2</MinTileCol>
     69329                                                <MaxTileCol>2</MaxTileCol>
     69330                                        </TileMatrixLimits>
     69331                                        <TileMatrixLimits>
     69332                                                <TileMatrix>3</TileMatrix>
     69333                                                <MinTileRow>2</MinTileRow>
     69334                                                <MaxTileRow>2</MaxTileRow>
     69335                                                <MinTileCol>4</MinTileCol>
     69336                                                <MaxTileCol>4</MaxTileCol>
     69337                                        </TileMatrixLimits>
     69338                                        <TileMatrixLimits>
     69339                                                <TileMatrix>4</TileMatrix>
     69340                                                <MinTileRow>5</MinTileRow>
     69341                                                <MaxTileRow>5</MaxTileRow>
     69342                                                <MinTileCol>8</MinTileCol>
     69343                                                <MaxTileCol>8</MaxTileCol>
     69344                                        </TileMatrixLimits>
     69345                                        <TileMatrixLimits>
     69346                                                <TileMatrix>5</TileMatrix>
     69347                                                <MinTileRow>11</MinTileRow>
     69348                                                <MaxTileRow>11</MaxTileRow>
     69349                                                <MinTileCol>16</MinTileCol>
     69350                                                <MaxTileCol>16</MaxTileCol>
     69351                                        </TileMatrixLimits>
     69352                                        <TileMatrixLimits>
     69353                                                <TileMatrix>6</TileMatrix>
     69354                                                <MinTileRow>23</MinTileRow>
     69355                                                <MaxTileRow>23</MaxTileRow>
     69356                                                <MinTileCol>32</MinTileCol>
     69357                                                <MaxTileCol>32</MaxTileCol>
     69358                                        </TileMatrixLimits>
     69359                                        <TileMatrixLimits>
     69360                                                <TileMatrix>7</TileMatrix>
     69361                                                <MinTileRow>46</MinTileRow>
     69362                                                <MaxTileRow>46</MaxTileRow>
     69363                                                <MinTileCol>65</MinTileCol>
     69364                                                <MaxTileCol>65</MaxTileCol>
     69365                                        </TileMatrixLimits>
     69366                                        <TileMatrixLimits>
     69367                                                <TileMatrix>8</TileMatrix>
     69368                                                <MinTileRow>93</MinTileRow>
     69369                                                <MaxTileRow>93</MaxTileRow>
     69370                                                <MinTileCol>130</MinTileCol>
     69371                                                <MaxTileCol>130</MaxTileCol>
     69372                                        </TileMatrixLimits>
     69373                                        <TileMatrixLimits>
     69374                                                <TileMatrix>9</TileMatrix>
     69375                                                <MinTileRow>187</MinTileRow>
     69376                                                <MaxTileRow>187</MaxTileRow>
     69377                                                <MinTileCol>260</MinTileCol>
     69378                                                <MaxTileCol>261</MaxTileCol>
     69379                                        </TileMatrixLimits>
     69380                                </TileMatrixSetLimits>
     69381                        </TileMatrixSetLink>
     69382                </Layer>
     69383                <Layer>
     69384                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     69385                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     69386                        <ows:Keywords>
     69387                                <ows:Keyword>Photographies</ows:Keyword>
     69388                        </ows:Keywords>
     69389                        <ows:WGS84BoundingBox>
     69390                                <ows:LowerCorner>3.7531 43.4345</ows:LowerCorner>
     69391                                <ows:UpperCorner>4.00329 43.6254</ows:UpperCorner>
     69392                        </ows:WGS84BoundingBox>
     69393                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-04-14-38698406</ows:Identifier>
     69394                        <Style isDefault="true">
     69395                                <ows:Title>Données Brutes</ows:Title>
     69396                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69397                                <ows:Keywords>
     69398                                        <ows:Keyword>Défaut</ows:Keyword>
     69399                                </ows:Keywords>
     69400                                <ows:Identifier>normal</ows:Identifier>
     69401                                <LegendURL format="image/jpeg" height="200"
     69402                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69403                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69404                        </Style>
     69405                        <Format>image/png</Format>
     69406                        <TileMatrixSetLink>
     69407                                <TileMatrixSet>PM</TileMatrixSet>
     69408                                <TileMatrixSetLimits>
     69409                                        <TileMatrixLimits>
     69410                                                <TileMatrix>0</TileMatrix>
     69411                                                <MinTileRow>0</MinTileRow>
     69412                                                <MaxTileRow>0</MaxTileRow>
     69413                                                <MinTileCol>0</MinTileCol>
     69414                                                <MaxTileCol>0</MaxTileCol>
     69415                                        </TileMatrixLimits>
     69416                                        <TileMatrixLimits>
     69417                                                <TileMatrix>1</TileMatrix>
     69418                                                <MinTileRow>0</MinTileRow>
     69419                                                <MaxTileRow>0</MaxTileRow>
     69420                                                <MinTileCol>1</MinTileCol>
     69421                                                <MaxTileCol>1</MaxTileCol>
     69422                                        </TileMatrixLimits>
     69423                                        <TileMatrixLimits>
     69424                                                <TileMatrix>10</TileMatrix>
     69425                                                <MinTileRow>373</MinTileRow>
     69426                                                <MaxTileRow>374</MaxTileRow>
     69427                                                <MinTileCol>522</MinTileCol>
     69428                                                <MaxTileCol>523</MaxTileCol>
     69429                                        </TileMatrixLimits>
     69430                                        <TileMatrixLimits>
     69431                                                <TileMatrix>11</TileMatrix>
     69432                                                <MinTileRow>747</MinTileRow>
     69433                                                <MaxTileRow>749</MaxTileRow>
     69434                                                <MinTileCol>1045</MinTileCol>
     69435                                                <MaxTileCol>1046</MaxTileCol>
     69436                                        </TileMatrixLimits>
     69437                                        <TileMatrixLimits>
     69438                                                <TileMatrix>12</TileMatrix>
     69439                                                <MinTileRow>1495</MinTileRow>
     69440                                                <MaxTileRow>1498</MaxTileRow>
     69441                                                <MinTileCol>2090</MinTileCol>
     69442                                                <MaxTileCol>2093</MaxTileCol>
     69443                                        </TileMatrixLimits>
     69444                                        <TileMatrixLimits>
     69445                                                <TileMatrix>13</TileMatrix>
     69446                                                <MinTileRow>2990</MinTileRow>
     69447                                                <MaxTileRow>2996</MaxTileRow>
     69448                                                <MinTileCol>4181</MinTileCol>
     69449                                                <MaxTileCol>4187</MaxTileCol>
     69450                                        </TileMatrixLimits>
     69451                                        <TileMatrixLimits>
     69452                                                <TileMatrix>14</TileMatrix>
     69453                                                <MinTileRow>5981</MinTileRow>
     69454                                                <MaxTileRow>5993</MaxTileRow>
     69455                                                <MinTileCol>8362</MinTileCol>
     69456                                                <MaxTileCol>8374</MaxTileCol>
     69457                                        </TileMatrixLimits>
     69458                                        <TileMatrixLimits>
     69459                                                <TileMatrix>15</TileMatrix>
     69460                                                <MinTileRow>11962</MinTileRow>
     69461                                                <MaxTileRow>11986</MaxTileRow>
     69462                                                <MinTileCol>16725</MinTileCol>
     69463                                                <MaxTileCol>16748</MaxTileCol>
     69464                                        </TileMatrixLimits>
     69465                                        <TileMatrixLimits>
     69466                                                <TileMatrix>16</TileMatrix>
     69467                                                <MinTileRow>23925</MinTileRow>
     69468                                                <MaxTileRow>23972</MaxTileRow>
     69469                                                <MinTileCol>33451</MinTileCol>
     69470                                                <MaxTileCol>33496</MaxTileCol>
     69471                                        </TileMatrixLimits>
     69472                                        <TileMatrixLimits>
     69473                                                <TileMatrix>17</TileMatrix>
     69474                                                <MinTileRow>47850</MinTileRow>
     69475                                                <MaxTileRow>47944</MaxTileRow>
     69476                                                <MinTileCol>66902</MinTileCol>
     69477                                                <MaxTileCol>66993</MaxTileCol>
     69478                                        </TileMatrixLimits>
     69479                                        <TileMatrixLimits>
     69480                                                <TileMatrix>18</TileMatrix>
     69481                                                <MinTileRow>95700</MinTileRow>
     69482                                                <MaxTileRow>95888</MaxTileRow>
     69483                                                <MinTileCol>133804</MinTileCol>
     69484                                                <MaxTileCol>133987</MaxTileCol>
     69485                                        </TileMatrixLimits>
     69486                                        <TileMatrixLimits>
     69487                                                <TileMatrix>2</TileMatrix>
     69488                                                <MinTileRow>1</MinTileRow>
     69489                                                <MaxTileRow>1</MaxTileRow>
     69490                                                <MinTileCol>2</MinTileCol>
     69491                                                <MaxTileCol>2</MaxTileCol>
     69492                                        </TileMatrixLimits>
     69493                                        <TileMatrixLimits>
     69494                                                <TileMatrix>3</TileMatrix>
     69495                                                <MinTileRow>2</MinTileRow>
     69496                                                <MaxTileRow>2</MaxTileRow>
     69497                                                <MinTileCol>4</MinTileCol>
     69498                                                <MaxTileCol>4</MaxTileCol>
     69499                                        </TileMatrixLimits>
     69500                                        <TileMatrixLimits>
     69501                                                <TileMatrix>4</TileMatrix>
     69502                                                <MinTileRow>5</MinTileRow>
     69503                                                <MaxTileRow>5</MaxTileRow>
     69504                                                <MinTileCol>8</MinTileCol>
     69505                                                <MaxTileCol>8</MaxTileCol>
     69506                                        </TileMatrixLimits>
     69507                                        <TileMatrixLimits>
     69508                                                <TileMatrix>5</TileMatrix>
     69509                                                <MinTileRow>11</MinTileRow>
     69510                                                <MaxTileRow>11</MaxTileRow>
     69511                                                <MinTileCol>16</MinTileCol>
     69512                                                <MaxTileCol>16</MaxTileCol>
     69513                                        </TileMatrixLimits>
     69514                                        <TileMatrixLimits>
     69515                                                <TileMatrix>6</TileMatrix>
     69516                                                <MinTileRow>23</MinTileRow>
     69517                                                <MaxTileRow>23</MaxTileRow>
     69518                                                <MinTileCol>32</MinTileCol>
     69519                                                <MaxTileCol>32</MaxTileCol>
     69520                                        </TileMatrixLimits>
     69521                                        <TileMatrixLimits>
     69522                                                <TileMatrix>7</TileMatrix>
     69523                                                <MinTileRow>46</MinTileRow>
     69524                                                <MaxTileRow>46</MaxTileRow>
     69525                                                <MinTileCol>65</MinTileCol>
     69526                                                <MaxTileCol>65</MaxTileCol>
     69527                                        </TileMatrixLimits>
     69528                                        <TileMatrixLimits>
     69529                                                <TileMatrix>8</TileMatrix>
     69530                                                <MinTileRow>93</MinTileRow>
     69531                                                <MaxTileRow>93</MaxTileRow>
     69532                                                <MinTileCol>130</MinTileCol>
     69533                                                <MaxTileCol>130</MaxTileCol>
     69534                                        </TileMatrixLimits>
     69535                                        <TileMatrixLimits>
     69536                                                <TileMatrix>9</TileMatrix>
     69537                                                <MinTileRow>186</MinTileRow>
     69538                                                <MaxTileRow>187</MaxTileRow>
     69539                                                <MinTileCol>261</MinTileCol>
     69540                                                <MaxTileCol>261</MaxTileCol>
     69541                                        </TileMatrixLimits>
     69542                                </TileMatrixSetLimits>
     69543                        </TileMatrixSetLink>
     69544                </Layer>
     69545                <Layer>
     69546                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     69547                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     69548                        <ows:Keywords>
     69549                                <ows:Keyword>Photographies</ows:Keyword>
     69550                        </ows:Keywords>
     69551                        <ows:WGS84BoundingBox>
     69552                                <ows:LowerCorner>3.31985 43.2307</ows:LowerCorner>
     69553                                <ows:UpperCorner>3.56651 43.2947</ows:UpperCorner>
     69554                        </ows:WGS84BoundingBox>
     69555                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-09-39191323</ows:Identifier>
     69556                        <Style isDefault="true">
     69557                                <ows:Title>Données Brutes</ows:Title>
     69558                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69559                                <ows:Keywords>
     69560                                        <ows:Keyword>Défaut</ows:Keyword>
     69561                                </ows:Keywords>
     69562                                <ows:Identifier>normal</ows:Identifier>
     69563                                <LegendURL format="image/jpeg" height="200"
     69564                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69565                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69566                        </Style>
     69567                        <Format>image/png</Format>
     69568                        <TileMatrixSetLink>
     69569                                <TileMatrixSet>PM</TileMatrixSet>
     69570                                <TileMatrixSetLimits>
     69571                                        <TileMatrixLimits>
     69572                                                <TileMatrix>0</TileMatrix>
     69573                                                <MinTileRow>0</MinTileRow>
     69574                                                <MaxTileRow>0</MaxTileRow>
     69575                                                <MinTileCol>0</MinTileCol>
     69576                                                <MaxTileCol>0</MaxTileCol>
     69577                                        </TileMatrixLimits>
     69578                                        <TileMatrixLimits>
     69579                                                <TileMatrix>1</TileMatrix>
     69580                                                <MinTileRow>0</MinTileRow>
     69581                                                <MaxTileRow>0</MaxTileRow>
     69582                                                <MinTileCol>1</MinTileCol>
     69583                                                <MaxTileCol>1</MaxTileCol>
     69584                                        </TileMatrixLimits>
     69585                                        <TileMatrixLimits>
     69586                                                <TileMatrix>10</TileMatrix>
     69587                                                <MinTileRow>375</MinTileRow>
     69588                                                <MaxTileRow>375</MaxTileRow>
     69589                                                <MinTileCol>521</MinTileCol>
     69590                                                <MaxTileCol>522</MaxTileCol>
     69591                                        </TileMatrixLimits>
     69592                                        <TileMatrixLimits>
     69593                                                <TileMatrix>11</TileMatrix>
     69594                                                <MinTileRow>750</MinTileRow>
     69595                                                <MaxTileRow>750</MaxTileRow>
     69596                                                <MinTileCol>1042</MinTileCol>
     69597                                                <MaxTileCol>1044</MaxTileCol>
     69598                                        </TileMatrixLimits>
     69599                                        <TileMatrixLimits>
     69600                                                <TileMatrix>12</TileMatrix>
     69601                                                <MinTileRow>1500</MinTileRow>
     69602                                                <MaxTileRow>1501</MaxTileRow>
     69603                                                <MinTileCol>2085</MinTileCol>
     69604                                                <MaxTileCol>2088</MaxTileCol>
     69605                                        </TileMatrixLimits>
     69606                                        <TileMatrixLimits>
     69607                                                <TileMatrix>13</TileMatrix>
     69608                                                <MinTileRow>3000</MinTileRow>
     69609                                                <MaxTileRow>3002</MaxTileRow>
     69610                                                <MinTileCol>4171</MinTileCol>
     69611                                                <MaxTileCol>4177</MaxTileCol>
     69612                                        </TileMatrixLimits>
     69613                                        <TileMatrixLimits>
     69614                                                <TileMatrix>14</TileMatrix>
     69615                                                <MinTileRow>6001</MinTileRow>
     69616                                                <MaxTileRow>6005</MaxTileRow>
     69617                                                <MinTileCol>8343</MinTileCol>
     69618                                                <MaxTileCol>8354</MaxTileCol>
     69619                                        </TileMatrixLimits>
     69620                                        <TileMatrixLimits>
     69621                                                <TileMatrix>15</TileMatrix>
     69622                                                <MinTileRow>12003</MinTileRow>
     69623                                                <MaxTileRow>12011</MaxTileRow>
     69624                                                <MinTileCol>16686</MinTileCol>
     69625                                                <MaxTileCol>16708</MaxTileCol>
     69626                                        </TileMatrixLimits>
     69627                                        <TileMatrixLimits>
     69628                                                <TileMatrix>16</TileMatrix>
     69629                                                <MinTileRow>24007</MinTileRow>
     69630                                                <MaxTileRow>24023</MaxTileRow>
     69631                                                <MinTileCol>33372</MinTileCol>
     69632                                                <MaxTileCol>33417</MaxTileCol>
     69633                                        </TileMatrixLimits>
     69634                                        <TileMatrixLimits>
     69635                                                <TileMatrix>17</TileMatrix>
     69636                                                <MinTileRow>48015</MinTileRow>
     69637                                                <MaxTileRow>48046</MaxTileRow>
     69638                                                <MinTileCol>66744</MinTileCol>
     69639                                                <MaxTileCol>66834</MaxTileCol>
     69640                                        </TileMatrixLimits>
     69641                                        <TileMatrixLimits>
     69642                                                <TileMatrix>18</TileMatrix>
     69643                                                <MinTileRow>96030</MinTileRow>
     69644                                                <MaxTileRow>96093</MaxTileRow>
     69645                                                <MinTileCol>133489</MinTileCol>
     69646                                                <MaxTileCol>133669</MaxTileCol>
     69647                                        </TileMatrixLimits>
     69648                                        <TileMatrixLimits>
     69649                                                <TileMatrix>2</TileMatrix>
     69650                                                <MinTileRow>1</MinTileRow>
     69651                                                <MaxTileRow>1</MaxTileRow>
     69652                                                <MinTileCol>2</MinTileCol>
     69653                                                <MaxTileCol>2</MaxTileCol>
     69654                                        </TileMatrixLimits>
     69655                                        <TileMatrixLimits>
     69656                                                <TileMatrix>3</TileMatrix>
     69657                                                <MinTileRow>2</MinTileRow>
     69658                                                <MaxTileRow>2</MaxTileRow>
     69659                                                <MinTileCol>4</MinTileCol>
     69660                                                <MaxTileCol>4</MaxTileCol>
     69661                                        </TileMatrixLimits>
     69662                                        <TileMatrixLimits>
     69663                                                <TileMatrix>4</TileMatrix>
     69664                                                <MinTileRow>5</MinTileRow>
     69665                                                <MaxTileRow>5</MaxTileRow>
     69666                                                <MinTileCol>8</MinTileCol>
     69667                                                <MaxTileCol>8</MaxTileCol>
     69668                                        </TileMatrixLimits>
     69669                                        <TileMatrixLimits>
     69670                                                <TileMatrix>5</TileMatrix>
     69671                                                <MinTileRow>11</MinTileRow>
     69672                                                <MaxTileRow>11</MaxTileRow>
     69673                                                <MinTileCol>16</MinTileCol>
     69674                                                <MaxTileCol>16</MaxTileCol>
     69675                                        </TileMatrixLimits>
     69676                                        <TileMatrixLimits>
     69677                                                <TileMatrix>6</TileMatrix>
     69678                                                <MinTileRow>23</MinTileRow>
     69679                                                <MaxTileRow>23</MaxTileRow>
     69680                                                <MinTileCol>32</MinTileCol>
     69681                                                <MaxTileCol>32</MaxTileCol>
     69682                                        </TileMatrixLimits>
     69683                                        <TileMatrixLimits>
     69684                                                <TileMatrix>7</TileMatrix>
     69685                                                <MinTileRow>46</MinTileRow>
     69686                                                <MaxTileRow>46</MaxTileRow>
     69687                                                <MinTileCol>65</MinTileCol>
     69688                                                <MaxTileCol>65</MaxTileCol>
     69689                                        </TileMatrixLimits>
     69690                                        <TileMatrixLimits>
     69691                                                <TileMatrix>8</TileMatrix>
     69692                                                <MinTileRow>93</MinTileRow>
     69693                                                <MaxTileRow>93</MaxTileRow>
     69694                                                <MinTileCol>130</MinTileCol>
     69695                                                <MaxTileCol>130</MaxTileCol>
     69696                                        </TileMatrixLimits>
     69697                                        <TileMatrixLimits>
     69698                                                <TileMatrix>9</TileMatrix>
     69699                                                <MinTileRow>187</MinTileRow>
     69700                                                <MaxTileRow>187</MaxTileRow>
     69701                                                <MinTileCol>260</MinTileCol>
     69702                                                <MaxTileCol>261</MaxTileCol>
     69703                                        </TileMatrixLimits>
     69704                                </TileMatrixSetLimits>
     69705                        </TileMatrixSetLink>
     69706                </Layer>
     69707                <Layer>
     69708                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     69709                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     69710                        <ows:Keywords>
     69711                                <ows:Keyword>Photographies</ows:Keyword>
     69712                        </ows:Keywords>
     69713                        <ows:WGS84BoundingBox>
     69714                                <ows:LowerCorner>3.53022 43.3643</ows:LowerCorner>
     69715                                <ows:UpperCorner>3.79175 43.5548</ows:UpperCorner>
     69716                        </ows:WGS84BoundingBox>
     69717                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-09-39210437</ows:Identifier>
     69718                        <Style isDefault="true">
     69719                                <ows:Title>Données Brutes</ows:Title>
     69720                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69721                                <ows:Keywords>
     69722                                        <ows:Keyword>Défaut</ows:Keyword>
     69723                                </ows:Keywords>
     69724                                <ows:Identifier>normal</ows:Identifier>
     69725                                <LegendURL format="image/jpeg" height="200"
     69726                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69727                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69728                        </Style>
     69729                        <Format>image/png</Format>
     69730                        <TileMatrixSetLink>
     69731                                <TileMatrixSet>PM</TileMatrixSet>
     69732                                <TileMatrixSetLimits>
     69733                                        <TileMatrixLimits>
     69734                                                <TileMatrix>0</TileMatrix>
     69735                                                <MinTileRow>0</MinTileRow>
     69736                                                <MaxTileRow>0</MaxTileRow>
     69737                                                <MinTileCol>0</MinTileCol>
     69738                                                <MaxTileCol>0</MaxTileCol>
     69739                                        </TileMatrixLimits>
     69740                                        <TileMatrixLimits>
     69741                                                <TileMatrix>1</TileMatrix>
     69742                                                <MinTileRow>0</MinTileRow>
     69743                                                <MaxTileRow>0</MaxTileRow>
     69744                                                <MinTileCol>1</MinTileCol>
     69745                                                <MaxTileCol>1</MaxTileCol>
     69746                                        </TileMatrixLimits>
     69747                                        <TileMatrixLimits>
     69748                                                <TileMatrix>10</TileMatrix>
     69749                                                <MinTileRow>374</MinTileRow>
     69750                                                <MaxTileRow>374</MaxTileRow>
     69751                                                <MinTileCol>522</MinTileCol>
     69752                                                <MaxTileCol>522</MaxTileCol>
     69753                                        </TileMatrixLimits>
     69754                                        <TileMatrixLimits>
     69755                                                <TileMatrix>11</TileMatrix>
     69756                                                <MinTileRow>748</MinTileRow>
     69757                                                <MaxTileRow>749</MaxTileRow>
     69758                                                <MinTileCol>1044</MinTileCol>
     69759                                                <MaxTileCol>1045</MaxTileCol>
     69760                                        </TileMatrixLimits>
     69761                                        <TileMatrixLimits>
     69762                                                <TileMatrix>12</TileMatrix>
     69763                                                <MinTileRow>1496</MinTileRow>
     69764                                                <MaxTileRow>1499</MaxTileRow>
     69765                                                <MinTileCol>2088</MinTileCol>
     69766                                                <MaxTileCol>2091</MaxTileCol>
     69767                                        </TileMatrixLimits>
     69768                                        <TileMatrixLimits>
     69769                                                <TileMatrix>13</TileMatrix>
     69770                                                <MinTileRow>2992</MinTileRow>
     69771                                                <MaxTileRow>2998</MaxTileRow>
     69772                                                <MinTileCol>4176</MinTileCol>
     69773                                                <MaxTileCol>4182</MaxTileCol>
     69774                                        </TileMatrixLimits>
     69775                                        <TileMatrixLimits>
     69776                                                <TileMatrix>14</TileMatrix>
     69777                                                <MinTileRow>5985</MinTileRow>
     69778                                                <MaxTileRow>5997</MaxTileRow>
     69779                                                <MinTileCol>8352</MinTileCol>
     69780                                                <MaxTileCol>8364</MaxTileCol>
     69781                                        </TileMatrixLimits>
     69782                                        <TileMatrixLimits>
     69783                                                <TileMatrix>15</TileMatrix>
     69784                                                <MinTileRow>11971</MinTileRow>
     69785                                                <MaxTileRow>11995</MaxTileRow>
     69786                                                <MinTileCol>16705</MinTileCol>
     69787                                                <MaxTileCol>16729</MaxTileCol>
     69788                                        </TileMatrixLimits>
     69789                                        <TileMatrixLimits>
     69790                                                <TileMatrix>16</TileMatrix>
     69791                                                <MinTileRow>23942</MinTileRow>
     69792                                                <MaxTileRow>23990</MaxTileRow>
     69793                                                <MinTileCol>33410</MinTileCol>
     69794                                                <MaxTileCol>33458</MaxTileCol>
     69795                                        </TileMatrixLimits>
     69796                                        <TileMatrixLimits>
     69797                                                <TileMatrix>17</TileMatrix>
     69798                                                <MinTileRow>47885</MinTileRow>
     69799                                                <MaxTileRow>47980</MaxTileRow>
     69800                                                <MinTileCol>66821</MinTileCol>
     69801                                                <MaxTileCol>66916</MaxTileCol>
     69802                                        </TileMatrixLimits>
     69803                                        <TileMatrixLimits>
     69804                                                <TileMatrix>18</TileMatrix>
     69805                                                <MinTileRow>95771</MinTileRow>
     69806                                                <MaxTileRow>95960</MaxTileRow>
     69807                                                <MinTileCol>133642</MinTileCol>
     69808                                                <MaxTileCol>133833</MaxTileCol>
     69809                                        </TileMatrixLimits>
     69810                                        <TileMatrixLimits>
     69811                                                <TileMatrix>2</TileMatrix>
     69812                                                <MinTileRow>1</MinTileRow>
     69813                                                <MaxTileRow>1</MaxTileRow>
     69814                                                <MinTileCol>2</MinTileCol>
     69815                                                <MaxTileCol>2</MaxTileCol>
     69816                                        </TileMatrixLimits>
     69817                                        <TileMatrixLimits>
     69818                                                <TileMatrix>3</TileMatrix>
     69819                                                <MinTileRow>2</MinTileRow>
     69820                                                <MaxTileRow>2</MaxTileRow>
     69821                                                <MinTileCol>4</MinTileCol>
     69822                                                <MaxTileCol>4</MaxTileCol>
     69823                                        </TileMatrixLimits>
     69824                                        <TileMatrixLimits>
     69825                                                <TileMatrix>4</TileMatrix>
     69826                                                <MinTileRow>5</MinTileRow>
     69827                                                <MaxTileRow>5</MaxTileRow>
     69828                                                <MinTileCol>8</MinTileCol>
     69829                                                <MaxTileCol>8</MaxTileCol>
     69830                                        </TileMatrixLimits>
     69831                                        <TileMatrixLimits>
     69832                                                <TileMatrix>5</TileMatrix>
     69833                                                <MinTileRow>11</MinTileRow>
     69834                                                <MaxTileRow>11</MaxTileRow>
     69835                                                <MinTileCol>16</MinTileCol>
     69836                                                <MaxTileCol>16</MaxTileCol>
     69837                                        </TileMatrixLimits>
     69838                                        <TileMatrixLimits>
     69839                                                <TileMatrix>6</TileMatrix>
     69840                                                <MinTileRow>23</MinTileRow>
     69841                                                <MaxTileRow>23</MaxTileRow>
     69842                                                <MinTileCol>32</MinTileCol>
     69843                                                <MaxTileCol>32</MaxTileCol>
     69844                                        </TileMatrixLimits>
     69845                                        <TileMatrixLimits>
     69846                                                <TileMatrix>7</TileMatrix>
     69847                                                <MinTileRow>46</MinTileRow>
     69848                                                <MaxTileRow>46</MaxTileRow>
     69849                                                <MinTileCol>65</MinTileCol>
     69850                                                <MaxTileCol>65</MaxTileCol>
     69851                                        </TileMatrixLimits>
     69852                                        <TileMatrixLimits>
     69853                                                <TileMatrix>8</TileMatrix>
     69854                                                <MinTileRow>93</MinTileRow>
     69855                                                <MaxTileRow>93</MaxTileRow>
     69856                                                <MinTileCol>130</MinTileCol>
     69857                                                <MaxTileCol>130</MaxTileCol>
     69858                                        </TileMatrixLimits>
     69859                                        <TileMatrixLimits>
     69860                                                <TileMatrix>9</TileMatrix>
     69861                                                <MinTileRow>187</MinTileRow>
     69862                                                <MaxTileRow>187</MaxTileRow>
     69863                                                <MinTileCol>261</MinTileCol>
     69864                                                <MaxTileCol>261</MaxTileCol>
     69865                                        </TileMatrixLimits>
     69866                                </TileMatrixSetLimits>
     69867                        </TileMatrixSetLink>
     69868                </Layer>
     69869                <Layer>
     69870                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     69871                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     69872                        <ows:Keywords>
     69873                                <ows:Keyword>Photographies</ows:Keyword>
     69874                        </ows:Keywords>
     69875                        <ows:WGS84BoundingBox>
     69876                                <ows:LowerCorner>3.75263 43.3997</ows:LowerCorner>
     69877                                <ows:UpperCorner>3.86462 43.4635</ows:UpperCorner>
     69878                        </ows:WGS84BoundingBox>
     69879                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-05-30-38506451</ows:Identifier>
     69880                        <Style isDefault="true">
     69881                                <ows:Title>Données Brutes</ows:Title>
     69882                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     69883                                <ows:Keywords>
     69884                                        <ows:Keyword>Défaut</ows:Keyword>
     69885                                </ows:Keywords>
     69886                                <ows:Identifier>normal</ows:Identifier>
     69887                                <LegendURL format="image/jpeg" height="200"
     69888                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     69889                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     69890                        </Style>
     69891                        <Format>image/png</Format>
     69892                        <TileMatrixSetLink>
     69893                                <TileMatrixSet>PM</TileMatrixSet>
     69894                                <TileMatrixSetLimits>
     69895                                        <TileMatrixLimits>
     69896                                                <TileMatrix>0</TileMatrix>
     69897                                                <MinTileRow>0</MinTileRow>
     69898                                                <MaxTileRow>0</MaxTileRow>
     69899                                                <MinTileCol>0</MinTileCol>
     69900                                                <MaxTileCol>0</MaxTileCol>
     69901                                        </TileMatrixLimits>
     69902                                        <TileMatrixLimits>
     69903                                                <TileMatrix>1</TileMatrix>
     69904                                                <MinTileRow>0</MinTileRow>
     69905                                                <MaxTileRow>0</MaxTileRow>
     69906                                                <MinTileCol>1</MinTileCol>
     69907                                                <MaxTileCol>1</MaxTileCol>
     69908                                        </TileMatrixLimits>
     69909                                        <TileMatrixLimits>
     69910                                                <TileMatrix>10</TileMatrix>
     69911                                                <MinTileRow>374</MinTileRow>
     69912                                                <MaxTileRow>374</MaxTileRow>
     69913                                                <MinTileCol>522</MinTileCol>
     69914                                                <MaxTileCol>522</MaxTileCol>
     69915                                        </TileMatrixLimits>
     69916                                        <TileMatrixLimits>
     69917                                                <TileMatrix>11</TileMatrix>
     69918                                                <MinTileRow>748</MinTileRow>
     69919                                                <MaxTileRow>749</MaxTileRow>
     69920                                                <MinTileCol>1045</MinTileCol>
     69921                                                <MaxTileCol>1045</MaxTileCol>
     69922                                        </TileMatrixLimits>
     69923                                        <TileMatrixLimits>
     69924                                                <TileMatrix>12</TileMatrix>
     69925                                                <MinTileRow>1497</MinTileRow>
     69926                                                <MaxTileRow>1498</MaxTileRow>
     69927                                                <MinTileCol>2090</MinTileCol>
     69928                                                <MaxTileCol>2091</MaxTileCol>
     69929                                        </TileMatrixLimits>
     69930                                        <TileMatrixLimits>
     69931                                                <TileMatrix>13</TileMatrix>
     69932                                                <MinTileRow>2995</MinTileRow>
     69933                                                <MaxTileRow>2997</MaxTileRow>
     69934                                                <MinTileCol>4181</MinTileCol>
     69935                                                <MaxTileCol>4183</MaxTileCol>
     69936                                        </TileMatrixLimits>
     69937                                        <TileMatrixLimits>
     69938                                                <TileMatrix>14</TileMatrix>
     69939                                                <MinTileRow>5991</MinTileRow>
     69940                                                <MaxTileRow>5995</MaxTileRow>
     69941                                                <MinTileCol>8362</MinTileCol>
     69942                                                <MaxTileCol>8367</MaxTileCol>
     69943                                        </TileMatrixLimits>
     69944                                        <TileMatrixLimits>
     69945                                                <TileMatrix>15</TileMatrix>
     69946                                                <MinTileRow>11982</MinTileRow>
     69947                                                <MaxTileRow>11990</MaxTileRow>
     69948                                                <MinTileCol>16725</MinTileCol>
     69949                                                <MaxTileCol>16735</MaxTileCol>
     69950                                        </TileMatrixLimits>
     69951                                        <TileMatrixLimits>
     69952                                                <TileMatrix>16</TileMatrix>
     69953                                                <MinTileRow>23965</MinTileRow>
     69954                                                <MaxTileRow>23981</MaxTileRow>
     69955                                                <MinTileCol>33451</MinTileCol>
     69956                                                <MaxTileCol>33471</MaxTileCol>
     69957                                        </TileMatrixLimits>
     69958                                        <TileMatrixLimits>
     69959                                                <TileMatrix>17</TileMatrix>
     69960                                                <MinTileRow>47930</MinTileRow>
     69961                                                <MaxTileRow>47962</MaxTileRow>
     69962                                                <MinTileCol>66902</MinTileCol>
     69963                                                <MaxTileCol>66943</MaxTileCol>
     69964                                        </TileMatrixLimits>
     69965                                        <TileMatrixLimits>
     69966                                                <TileMatrix>18</TileMatrix>
     69967                                                <MinTileRow>95861</MinTileRow>
     69968                                                <MaxTileRow>95924</MaxTileRow>
     69969                                                <MinTileCol>133804</MinTileCol>
     69970                                                <MaxTileCol>133886</MaxTileCol>
     69971                                        </TileMatrixLimits>
     69972                                        <TileMatrixLimits>
     69973                                                <TileMatrix>2</TileMatrix>
     69974                                                <MinTileRow>1</MinTileRow>
     69975                                                <MaxTileRow>1</MaxTileRow>
     69976                                                <MinTileCol>2</MinTileCol>
     69977                                                <MaxTileCol>2</MaxTileCol>
     69978                                        </TileMatrixLimits>
     69979                                        <TileMatrixLimits>
     69980                                                <TileMatrix>3</TileMatrix>
     69981                                                <MinTileRow>2</MinTileRow>
     69982                                                <MaxTileRow>2</MaxTileRow>
     69983                                                <MinTileCol>4</MinTileCol>
     69984                                                <MaxTileCol>4</MaxTileCol>
     69985                                        </TileMatrixLimits>
     69986                                        <TileMatrixLimits>
     69987                                                <TileMatrix>4</TileMatrix>
     69988                                                <MinTileRow>5</MinTileRow>
     69989                                                <MaxTileRow>5</MaxTileRow>
     69990                                                <MinTileCol>8</MinTileCol>
     69991                                                <MaxTileCol>8</MaxTileCol>
     69992                                        </TileMatrixLimits>
     69993                                        <TileMatrixLimits>
     69994                                                <TileMatrix>5</TileMatrix>
     69995                                                <MinTileRow>11</MinTileRow>
     69996                                                <MaxTileRow>11</MaxTileRow>
     69997                                                <MinTileCol>16</MinTileCol>
     69998                                                <MaxTileCol>16</MaxTileCol>
     69999                                        </TileMatrixLimits>
     70000                                        <TileMatrixLimits>
     70001                                                <TileMatrix>6</TileMatrix>
     70002                                                <MinTileRow>23</MinTileRow>
     70003                                                <MaxTileRow>23</MaxTileRow>
     70004                                                <MinTileCol>32</MinTileCol>
     70005                                                <MaxTileCol>32</MaxTileCol>
     70006                                        </TileMatrixLimits>
     70007                                        <TileMatrixLimits>
     70008                                                <TileMatrix>7</TileMatrix>
     70009                                                <MinTileRow>46</MinTileRow>
     70010                                                <MaxTileRow>46</MaxTileRow>
     70011                                                <MinTileCol>65</MinTileCol>
     70012                                                <MaxTileCol>65</MaxTileCol>
     70013                                        </TileMatrixLimits>
     70014                                        <TileMatrixLimits>
     70015                                                <TileMatrix>8</TileMatrix>
     70016                                                <MinTileRow>93</MinTileRow>
     70017                                                <MaxTileRow>93</MaxTileRow>
     70018                                                <MinTileCol>130</MinTileCol>
     70019                                                <MaxTileCol>130</MaxTileCol>
     70020                                        </TileMatrixLimits>
     70021                                        <TileMatrixLimits>
     70022                                                <TileMatrix>9</TileMatrix>
     70023                                                <MinTileRow>187</MinTileRow>
     70024                                                <MaxTileRow>187</MaxTileRow>
     70025                                                <MinTileCol>261</MinTileCol>
     70026                                                <MaxTileCol>261</MaxTileCol>
     70027                                        </TileMatrixLimits>
     70028                                </TileMatrixSetLimits>
     70029                        </TileMatrixSetLink>
     70030                </Layer>
     70031                <Layer>
     70032                        <ows:Title>Orthophotographies Geosud de LITTO-MED-34 2015</ows:Title>
     70033                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-34 issues du projet Geosud.</ows:Abstract>
     70034                        <ows:Keywords>
     70035                                <ows:Keyword>Photographies</ows:Keyword>
     70036                        </ows:Keywords>
     70037                        <ows:WGS84BoundingBox>
     70038                                <ows:LowerCorner>3.52931 43.2657</ows:LowerCorner>
     70039                                <ows:UpperCorner>3.74018 43.3928</ows:UpperCorner>
     70040                        </ows:WGS84BoundingBox>
     70041                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-34-2015-06-18-38713200</ows:Identifier>
     70042                        <Style isDefault="true">
     70043                                <ows:Title>Données Brutes</ows:Title>
     70044                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70045                                <ows:Keywords>
     70046                                        <ows:Keyword>Défaut</ows:Keyword>
     70047                                </ows:Keywords>
     70048                                <ows:Identifier>normal</ows:Identifier>
     70049                                <LegendURL format="image/jpeg" height="200"
     70050                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70051                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70052                        </Style>
     70053                        <Format>image/png</Format>
     70054                        <TileMatrixSetLink>
     70055                                <TileMatrixSet>PM</TileMatrixSet>
     70056                                <TileMatrixSetLimits>
     70057                                        <TileMatrixLimits>
     70058                                                <TileMatrix>0</TileMatrix>
     70059                                                <MinTileRow>0</MinTileRow>
     70060                                                <MaxTileRow>0</MaxTileRow>
     70061                                                <MinTileCol>0</MinTileCol>
     70062                                                <MaxTileCol>0</MaxTileCol>
     70063                                        </TileMatrixLimits>
     70064                                        <TileMatrixLimits>
     70065                                                <TileMatrix>1</TileMatrix>
     70066                                                <MinTileRow>0</MinTileRow>
     70067                                                <MaxTileRow>0</MaxTileRow>
     70068                                                <MinTileCol>1</MinTileCol>
     70069                                                <MaxTileCol>1</MaxTileCol>
     70070                                        </TileMatrixLimits>
     70071                                        <TileMatrixLimits>
     70072                                                <TileMatrix>10</TileMatrix>
     70073                                                <MinTileRow>374</MinTileRow>
     70074                                                <MaxTileRow>375</MaxTileRow>
     70075                                                <MinTileCol>522</MinTileCol>
     70076                                                <MaxTileCol>522</MaxTileCol>
     70077                                        </TileMatrixLimits>
     70078                                        <TileMatrixLimits>
     70079                                                <TileMatrix>11</TileMatrix>
     70080                                                <MinTileRow>749</MinTileRow>
     70081                                                <MaxTileRow>750</MaxTileRow>
     70082                                                <MinTileCol>1044</MinTileCol>
     70083                                                <MaxTileCol>1045</MaxTileCol>
     70084                                        </TileMatrixLimits>
     70085                                        <TileMatrixLimits>
     70086                                                <TileMatrix>12</TileMatrix>
     70087                                                <MinTileRow>1498</MinTileRow>
     70088                                                <MaxTileRow>1500</MaxTileRow>
     70089                                                <MinTileCol>2088</MinTileCol>
     70090                                                <MaxTileCol>2090</MaxTileCol>
     70091                                        </TileMatrixLimits>
     70092                                        <TileMatrixLimits>
     70093                                                <TileMatrix>13</TileMatrix>
     70094                                                <MinTileRow>2997</MinTileRow>
     70095                                                <MaxTileRow>3001</MaxTileRow>
     70096                                                <MinTileCol>4176</MinTileCol>
     70097                                                <MaxTileCol>4181</MaxTileCol>
     70098                                        </TileMatrixLimits>
     70099                                        <TileMatrixLimits>
     70100                                                <TileMatrix>14</TileMatrix>
     70101                                                <MinTileRow>5995</MinTileRow>
     70102                                                <MaxTileRow>6003</MaxTileRow>
     70103                                                <MinTileCol>8352</MinTileCol>
     70104                                                <MaxTileCol>8362</MaxTileCol>
     70105                                        </TileMatrixLimits>
     70106                                        <TileMatrixLimits>
     70107                                                <TileMatrix>15</TileMatrix>
     70108                                                <MinTileRow>11991</MinTileRow>
     70109                                                <MaxTileRow>12007</MaxTileRow>
     70110                                                <MinTileCol>16705</MinTileCol>
     70111                                                <MaxTileCol>16724</MaxTileCol>
     70112                                        </TileMatrixLimits>
     70113                                        <TileMatrixLimits>
     70114                                                <TileMatrix>16</TileMatrix>
     70115                                                <MinTileRow>23983</MinTileRow>
     70116                                                <MaxTileRow>24014</MaxTileRow>
     70117                                                <MinTileCol>33410</MinTileCol>
     70118                                                <MaxTileCol>33448</MaxTileCol>
     70119                                        </TileMatrixLimits>
     70120                                        <TileMatrixLimits>
     70121                                                <TileMatrix>17</TileMatrix>
     70122                                                <MinTileRow>47966</MinTileRow>
     70123                                                <MaxTileRow>48029</MaxTileRow>
     70124                                                <MinTileCol>66820</MinTileCol>
     70125                                                <MaxTileCol>66897</MaxTileCol>
     70126                                        </TileMatrixLimits>
     70127                                        <TileMatrixLimits>
     70128                                                <TileMatrix>18</TileMatrix>
     70129                                                <MinTileRow>95932</MinTileRow>
     70130                                                <MaxTileRow>96058</MaxTileRow>
     70131                                                <MinTileCol>133641</MinTileCol>
     70132                                                <MaxTileCol>133795</MaxTileCol>
     70133                                        </TileMatrixLimits>
     70134                                        <TileMatrixLimits>
     70135                                                <TileMatrix>2</TileMatrix>
     70136                                                <MinTileRow>1</MinTileRow>
     70137                                                <MaxTileRow>1</MaxTileRow>
     70138                                                <MinTileCol>2</MinTileCol>
     70139                                                <MaxTileCol>2</MaxTileCol>
     70140                                        </TileMatrixLimits>
     70141                                        <TileMatrixLimits>
     70142                                                <TileMatrix>3</TileMatrix>
     70143                                                <MinTileRow>2</MinTileRow>
     70144                                                <MaxTileRow>2</MaxTileRow>
     70145                                                <MinTileCol>4</MinTileCol>
     70146                                                <MaxTileCol>4</MaxTileCol>
     70147                                        </TileMatrixLimits>
     70148                                        <TileMatrixLimits>
     70149                                                <TileMatrix>4</TileMatrix>
     70150                                                <MinTileRow>5</MinTileRow>
     70151                                                <MaxTileRow>5</MaxTileRow>
     70152                                                <MinTileCol>8</MinTileCol>
     70153                                                <MaxTileCol>8</MaxTileCol>
     70154                                        </TileMatrixLimits>
     70155                                        <TileMatrixLimits>
     70156                                                <TileMatrix>5</TileMatrix>
     70157                                                <MinTileRow>11</MinTileRow>
     70158                                                <MaxTileRow>11</MaxTileRow>
     70159                                                <MinTileCol>16</MinTileCol>
     70160                                                <MaxTileCol>16</MaxTileCol>
     70161                                        </TileMatrixLimits>
     70162                                        <TileMatrixLimits>
     70163                                                <TileMatrix>6</TileMatrix>
     70164                                                <MinTileRow>23</MinTileRow>
     70165                                                <MaxTileRow>23</MaxTileRow>
     70166                                                <MinTileCol>32</MinTileCol>
     70167                                                <MaxTileCol>32</MaxTileCol>
     70168                                        </TileMatrixLimits>
     70169                                        <TileMatrixLimits>
     70170                                                <TileMatrix>7</TileMatrix>
     70171                                                <MinTileRow>46</MinTileRow>
     70172                                                <MaxTileRow>46</MaxTileRow>
     70173                                                <MinTileCol>65</MinTileCol>
     70174                                                <MaxTileCol>65</MaxTileCol>
     70175                                        </TileMatrixLimits>
     70176                                        <TileMatrixLimits>
     70177                                                <TileMatrix>8</TileMatrix>
     70178                                                <MinTileRow>93</MinTileRow>
     70179                                                <MaxTileRow>93</MaxTileRow>
     70180                                                <MinTileCol>130</MinTileCol>
     70181                                                <MaxTileCol>130</MaxTileCol>
     70182                                        </TileMatrixLimits>
     70183                                        <TileMatrixLimits>
     70184                                                <TileMatrix>9</TileMatrix>
     70185                                                <MinTileRow>187</MinTileRow>
     70186                                                <MaxTileRow>187</MaxTileRow>
     70187                                                <MinTileCol>261</MinTileCol>
     70188                                                <MaxTileCol>261</MaxTileCol>
     70189                                        </TileMatrixLimits>
     70190                                </TileMatrixSetLimits>
     70191                        </TileMatrixSetLink>
     70192                </Layer>
     70193                <Layer>
     70194                        <ows:Title>Orthophotographies Geosud de LITTO-MED-66 2015</ows:Title>
     70195                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-66 issues du projet Geosud.</ows:Abstract>
     70196                        <ows:Keywords>
     70197                                <ows:Keyword>Photographies</ows:Keyword>
     70198                        </ows:Keywords>
     70199                        <ows:WGS84BoundingBox>
     70200                                <ows:LowerCorner>2.90209 42.5847</ows:LowerCorner>
     70201                                <ows:UpperCorner>3.08567 42.9354</ows:UpperCorner>
     70202                        </ows:WGS84BoundingBox>
     70203                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-66-2015-03-31-39184457</ows:Identifier>
     70204                        <Style isDefault="true">
     70205                                <ows:Title>Données Brutes</ows:Title>
     70206                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70207                                <ows:Keywords>
     70208                                        <ows:Keyword>Défaut</ows:Keyword>
     70209                                </ows:Keywords>
     70210                                <ows:Identifier>normal</ows:Identifier>
     70211                                <LegendURL format="image/jpeg" height="200"
     70212                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70213                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70214                        </Style>
     70215                        <Format>image/png</Format>
     70216                        <TileMatrixSetLink>
     70217                                <TileMatrixSet>PM</TileMatrixSet>
     70218                                <TileMatrixSetLimits>
     70219                                        <TileMatrixLimits>
     70220                                                <TileMatrix>0</TileMatrix>
     70221                                                <MinTileRow>0</MinTileRow>
     70222                                                <MaxTileRow>0</MaxTileRow>
     70223                                                <MinTileCol>0</MinTileCol>
     70224                                                <MaxTileCol>0</MaxTileCol>
     70225                                        </TileMatrixLimits>
     70226                                        <TileMatrixLimits>
     70227                                                <TileMatrix>1</TileMatrix>
     70228                                                <MinTileRow>0</MinTileRow>
     70229                                                <MaxTileRow>0</MaxTileRow>
     70230                                                <MinTileCol>1</MinTileCol>
     70231                                                <MaxTileCol>1</MaxTileCol>
     70232                                        </TileMatrixLimits>
     70233                                        <TileMatrixLimits>
     70234                                                <TileMatrix>10</TileMatrix>
     70235                                                <MinTileRow>376</MinTileRow>
     70236                                                <MaxTileRow>377</MaxTileRow>
     70237                                                <MinTileCol>520</MinTileCol>
     70238                                                <MaxTileCol>520</MaxTileCol>
     70239                                        </TileMatrixLimits>
     70240                                        <TileMatrixLimits>
     70241                                                <TileMatrix>11</TileMatrix>
     70242                                                <MinTileRow>753</MinTileRow>
     70243                                                <MaxTileRow>755</MaxTileRow>
     70244                                                <MinTileCol>1040</MinTileCol>
     70245                                                <MaxTileCol>1041</MaxTileCol>
     70246                                        </TileMatrixLimits>
     70247                                        <TileMatrixLimits>
     70248                                                <TileMatrix>12</TileMatrix>
     70249                                                <MinTileRow>1506</MinTileRow>
     70250                                                <MaxTileRow>1511</MaxTileRow>
     70251                                                <MinTileCol>2081</MinTileCol>
     70252                                                <MaxTileCol>2083</MaxTileCol>
     70253                                        </TileMatrixLimits>
     70254                                        <TileMatrixLimits>
     70255                                                <TileMatrix>13</TileMatrix>
     70256                                                <MinTileRow>3012</MinTileRow>
     70257                                                <MaxTileRow>3023</MaxTileRow>
     70258                                                <MinTileCol>4162</MinTileCol>
     70259                                                <MaxTileCol>4166</MaxTileCol>
     70260                                        </TileMatrixLimits>
     70261                                        <TileMatrixLimits>
     70262                                                <TileMatrix>14</TileMatrix>
     70263                                                <MinTileRow>6024</MinTileRow>
     70264                                                <MaxTileRow>6046</MaxTileRow>
     70265                                                <MinTileCol>8324</MinTileCol>
     70266                                                <MaxTileCol>8332</MaxTileCol>
     70267                                        </TileMatrixLimits>
     70268                                        <TileMatrixLimits>
     70269                                                <TileMatrix>15</TileMatrix>
     70270                                                <MinTileRow>12048</MinTileRow>
     70271                                                <MaxTileRow>12092</MaxTileRow>
     70272                                                <MinTileCol>16648</MinTileCol>
     70273                                                <MaxTileCol>16664</MaxTileCol>
     70274                                        </TileMatrixLimits>
     70275                                        <TileMatrixLimits>
     70276                                                <TileMatrix>16</TileMatrix>
     70277                                                <MinTileRow>24097</MinTileRow>
     70278                                                <MaxTileRow>24184</MaxTileRow>
     70279                                                <MinTileCol>33296</MinTileCol>
     70280                                                <MaxTileCol>33329</MaxTileCol>
     70281                                        </TileMatrixLimits>
     70282                                        <TileMatrixLimits>
     70283                                                <TileMatrix>17</TileMatrix>
     70284                                                <MinTileRow>48194</MinTileRow>
     70285                                                <MaxTileRow>48368</MaxTileRow>
     70286                                                <MinTileCol>66592</MinTileCol>
     70287                                                <MaxTileCol>66659</MaxTileCol>
     70288                                        </TileMatrixLimits>
     70289                                        <TileMatrixLimits>
     70290                                                <TileMatrix>18</TileMatrix>
     70291                                                <MinTileRow>96388</MinTileRow>
     70292                                                <MaxTileRow>96736</MaxTileRow>
     70293                                                <MinTileCol>133185</MinTileCol>
     70294                                                <MaxTileCol>133319</MaxTileCol>
     70295                                        </TileMatrixLimits>
     70296                                        <TileMatrixLimits>
     70297                                                <TileMatrix>2</TileMatrix>
     70298                                                <MinTileRow>1</MinTileRow>
     70299                                                <MaxTileRow>1</MaxTileRow>
     70300                                                <MinTileCol>2</MinTileCol>
     70301                                                <MaxTileCol>2</MaxTileCol>
     70302                                        </TileMatrixLimits>
     70303                                        <TileMatrixLimits>
     70304                                                <TileMatrix>3</TileMatrix>
     70305                                                <MinTileRow>2</MinTileRow>
     70306                                                <MaxTileRow>2</MaxTileRow>
     70307                                                <MinTileCol>4</MinTileCol>
     70308                                                <MaxTileCol>4</MaxTileCol>
     70309                                        </TileMatrixLimits>
     70310                                        <TileMatrixLimits>
     70311                                                <TileMatrix>4</TileMatrix>
     70312                                                <MinTileRow>5</MinTileRow>
     70313                                                <MaxTileRow>5</MaxTileRow>
     70314                                                <MinTileCol>8</MinTileCol>
     70315                                                <MaxTileCol>8</MaxTileCol>
     70316                                        </TileMatrixLimits>
     70317                                        <TileMatrixLimits>
     70318                                                <TileMatrix>5</TileMatrix>
     70319                                                <MinTileRow>11</MinTileRow>
     70320                                                <MaxTileRow>11</MaxTileRow>
     70321                                                <MinTileCol>16</MinTileCol>
     70322                                                <MaxTileCol>16</MaxTileCol>
     70323                                        </TileMatrixLimits>
     70324                                        <TileMatrixLimits>
     70325                                                <TileMatrix>6</TileMatrix>
     70326                                                <MinTileRow>23</MinTileRow>
     70327                                                <MaxTileRow>23</MaxTileRow>
     70328                                                <MinTileCol>32</MinTileCol>
     70329                                                <MaxTileCol>32</MaxTileCol>
     70330                                        </TileMatrixLimits>
     70331                                        <TileMatrixLimits>
     70332                                                <TileMatrix>7</TileMatrix>
     70333                                                <MinTileRow>47</MinTileRow>
     70334                                                <MaxTileRow>47</MaxTileRow>
     70335                                                <MinTileCol>65</MinTileCol>
     70336                                                <MaxTileCol>65</MaxTileCol>
     70337                                        </TileMatrixLimits>
     70338                                        <TileMatrixLimits>
     70339                                                <TileMatrix>8</TileMatrix>
     70340                                                <MinTileRow>94</MinTileRow>
     70341                                                <MaxTileRow>94</MaxTileRow>
     70342                                                <MinTileCol>130</MinTileCol>
     70343                                                <MaxTileCol>130</MaxTileCol>
     70344                                        </TileMatrixLimits>
     70345                                        <TileMatrixLimits>
     70346                                                <TileMatrix>9</TileMatrix>
     70347                                                <MinTileRow>188</MinTileRow>
     70348                                                <MaxTileRow>188</MaxTileRow>
     70349                                                <MinTileCol>260</MinTileCol>
     70350                                                <MaxTileCol>260</MaxTileCol>
     70351                                        </TileMatrixLimits>
     70352                                </TileMatrixSetLimits>
     70353                        </TileMatrixSetLink>
     70354                </Layer>
     70355                <Layer>
     70356                        <ows:Title>Orthophotographies Geosud de LITTO-MED-66 2015</ows:Title>
     70357                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-66 issues du projet Geosud.</ows:Abstract>
     70358                        <ows:Keywords>
     70359                                <ows:Keyword>Photographies</ows:Keyword>
     70360                        </ows:Keywords>
     70361                        <ows:WGS84BoundingBox>
     70362                                <ows:LowerCorner>2.93914 42.5217</ows:LowerCorner>
     70363                                <ows:UpperCorner>3.10954 42.6117</ows:UpperCorner>
     70364                        </ows:WGS84BoundingBox>
     70365                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-66-2015-03-31-39189628</ows:Identifier>
     70366                        <Style isDefault="true">
     70367                                <ows:Title>Données Brutes</ows:Title>
     70368                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70369                                <ows:Keywords>
     70370                                        <ows:Keyword>Défaut</ows:Keyword>
     70371                                </ows:Keywords>
     70372                                <ows:Identifier>normal</ows:Identifier>
     70373                                <LegendURL format="image/jpeg" height="200"
     70374                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70375                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70376                        </Style>
     70377                        <Format>image/png</Format>
     70378                        <TileMatrixSetLink>
     70379                                <TileMatrixSet>PM</TileMatrixSet>
     70380                                <TileMatrixSetLimits>
     70381                                        <TileMatrixLimits>
     70382                                                <TileMatrix>0</TileMatrix>
     70383                                                <MinTileRow>0</MinTileRow>
     70384                                                <MaxTileRow>0</MaxTileRow>
     70385                                                <MinTileCol>0</MinTileCol>
     70386                                                <MaxTileCol>0</MaxTileCol>
     70387                                        </TileMatrixLimits>
     70388                                        <TileMatrixLimits>
     70389                                                <TileMatrix>1</TileMatrix>
     70390                                                <MinTileRow>0</MinTileRow>
     70391                                                <MaxTileRow>0</MaxTileRow>
     70392                                                <MinTileCol>1</MinTileCol>
     70393                                                <MaxTileCol>1</MaxTileCol>
     70394                                        </TileMatrixLimits>
     70395                                        <TileMatrixLimits>
     70396                                                <TileMatrix>10</TileMatrix>
     70397                                                <MinTileRow>377</MinTileRow>
     70398                                                <MaxTileRow>378</MaxTileRow>
     70399                                                <MinTileCol>520</MinTileCol>
     70400                                                <MaxTileCol>520</MaxTileCol>
     70401                                        </TileMatrixLimits>
     70402                                        <TileMatrixLimits>
     70403                                                <TileMatrix>11</TileMatrix>
     70404                                                <MinTileRow>755</MinTileRow>
     70405                                                <MaxTileRow>756</MaxTileRow>
     70406                                                <MinTileCol>1040</MinTileCol>
     70407                                                <MaxTileCol>1041</MaxTileCol>
     70408                                        </TileMatrixLimits>
     70409                                        <TileMatrixLimits>
     70410                                                <TileMatrix>12</TileMatrix>
     70411                                                <MinTileRow>1511</MinTileRow>
     70412                                                <MaxTileRow>1512</MaxTileRow>
     70413                                                <MinTileCol>2081</MinTileCol>
     70414                                                <MaxTileCol>2083</MaxTileCol>
     70415                                        </TileMatrixLimits>
     70416                                        <TileMatrixLimits>
     70417                                                <TileMatrix>13</TileMatrix>
     70418                                                <MinTileRow>3022</MinTileRow>
     70419                                                <MaxTileRow>3024</MaxTileRow>
     70420                                                <MinTileCol>4162</MinTileCol>
     70421                                                <MaxTileCol>4166</MaxTileCol>
     70422                                        </TileMatrixLimits>
     70423                                        <TileMatrixLimits>
     70424                                                <TileMatrix>14</TileMatrix>
     70425                                                <MinTileRow>6044</MinTileRow>
     70426                                                <MaxTileRow>6049</MaxTileRow>
     70427                                                <MinTileCol>8325</MinTileCol>
     70428                                                <MaxTileCol>8333</MaxTileCol>
     70429                                        </TileMatrixLimits>
     70430                                        <TileMatrixLimits>
     70431                                                <TileMatrix>15</TileMatrix>
     70432                                                <MinTileRow>12088</MinTileRow>
     70433                                                <MaxTileRow>12099</MaxTileRow>
     70434                                                <MinTileCol>16651</MinTileCol>
     70435                                                <MaxTileCol>16667</MaxTileCol>
     70436                                        </TileMatrixLimits>
     70437                                        <TileMatrixLimits>
     70438                                                <TileMatrix>16</TileMatrix>
     70439                                                <MinTileRow>24177</MinTileRow>
     70440                                                <MaxTileRow>24199</MaxTileRow>
     70441                                                <MinTileCol>33303</MinTileCol>
     70442                                                <MaxTileCol>33334</MaxTileCol>
     70443                                        </TileMatrixLimits>
     70444                                        <TileMatrixLimits>
     70445                                                <TileMatrix>17</TileMatrix>
     70446                                                <MinTileRow>48355</MinTileRow>
     70447                                                <MaxTileRow>48399</MaxTileRow>
     70448                                                <MinTileCol>66606</MinTileCol>
     70449                                                <MaxTileCol>66668</MaxTileCol>
     70450                                        </TileMatrixLimits>
     70451                                        <TileMatrixLimits>
     70452                                                <TileMatrix>18</TileMatrix>
     70453                                                <MinTileRow>96710</MinTileRow>
     70454                                                <MaxTileRow>96798</MaxTileRow>
     70455                                                <MinTileCol>133212</MinTileCol>
     70456                                                <MaxTileCol>133336</MaxTileCol>
     70457                                        </TileMatrixLimits>
     70458                                        <TileMatrixLimits>
     70459                                                <TileMatrix>2</TileMatrix>
     70460                                                <MinTileRow>1</MinTileRow>
     70461                                                <MaxTileRow>1</MaxTileRow>
     70462                                                <MinTileCol>2</MinTileCol>
     70463                                                <MaxTileCol>2</MaxTileCol>
     70464                                        </TileMatrixLimits>
     70465                                        <TileMatrixLimits>
     70466                                                <TileMatrix>3</TileMatrix>
     70467                                                <MinTileRow>2</MinTileRow>
     70468                                                <MaxTileRow>2</MaxTileRow>
     70469                                                <MinTileCol>4</MinTileCol>
     70470                                                <MaxTileCol>4</MaxTileCol>
     70471                                        </TileMatrixLimits>
     70472                                        <TileMatrixLimits>
     70473                                                <TileMatrix>4</TileMatrix>
     70474                                                <MinTileRow>5</MinTileRow>
     70475                                                <MaxTileRow>5</MaxTileRow>
     70476                                                <MinTileCol>8</MinTileCol>
     70477                                                <MaxTileCol>8</MaxTileCol>
     70478                                        </TileMatrixLimits>
     70479                                        <TileMatrixLimits>
     70480                                                <TileMatrix>5</TileMatrix>
     70481                                                <MinTileRow>11</MinTileRow>
     70482                                                <MaxTileRow>11</MaxTileRow>
     70483                                                <MinTileCol>16</MinTileCol>
     70484                                                <MaxTileCol>16</MaxTileCol>
     70485                                        </TileMatrixLimits>
     70486                                        <TileMatrixLimits>
     70487                                                <TileMatrix>6</TileMatrix>
     70488                                                <MinTileRow>23</MinTileRow>
     70489                                                <MaxTileRow>23</MaxTileRow>
     70490                                                <MinTileCol>32</MinTileCol>
     70491                                                <MaxTileCol>32</MaxTileCol>
     70492                                        </TileMatrixLimits>
     70493                                        <TileMatrixLimits>
     70494                                                <TileMatrix>7</TileMatrix>
     70495                                                <MinTileRow>47</MinTileRow>
     70496                                                <MaxTileRow>47</MaxTileRow>
     70497                                                <MinTileCol>65</MinTileCol>
     70498                                                <MaxTileCol>65</MaxTileCol>
     70499                                        </TileMatrixLimits>
     70500                                        <TileMatrixLimits>
     70501                                                <TileMatrix>8</TileMatrix>
     70502                                                <MinTileRow>94</MinTileRow>
     70503                                                <MaxTileRow>94</MaxTileRow>
     70504                                                <MinTileCol>130</MinTileCol>
     70505                                                <MaxTileCol>130</MaxTileCol>
     70506                                        </TileMatrixLimits>
     70507                                        <TileMatrixLimits>
     70508                                                <TileMatrix>9</TileMatrix>
     70509                                                <MinTileRow>188</MinTileRow>
     70510                                                <MaxTileRow>189</MaxTileRow>
     70511                                                <MinTileCol>260</MinTileCol>
     70512                                                <MaxTileCol>260</MaxTileCol>
     70513                                        </TileMatrixLimits>
     70514                                </TileMatrixSetLimits>
     70515                        </TileMatrixSetLink>
     70516                </Layer>
     70517                <Layer>
     70518                        <ows:Title>Orthophotographies Geosud de LITTO-MED-MARSEILLE 2015</ows:Title>
     70519                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-MARSEILLE issues du projet Geosud.</ows:Abstract>
     70520                        <ows:Keywords>
     70521                                <ows:Keyword>Photographies</ows:Keyword>
     70522                        </ows:Keywords>
     70523                        <ows:WGS84BoundingBox>
     70524                                <ows:LowerCorner>5.26015 43.1306</ows:LowerCorner>
     70525                                <ows:UpperCorner>5.54009 43.3613</ows:UpperCorner>
     70526                        </ows:WGS84BoundingBox>
     70527                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-MARSEILLE-2015-07-28-38286819</ows:Identifier>
     70528                        <Style isDefault="true">
     70529                                <ows:Title>Données Brutes</ows:Title>
     70530                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70531                                <ows:Keywords>
     70532                                        <ows:Keyword>Défaut</ows:Keyword>
     70533                                </ows:Keywords>
     70534                                <ows:Identifier>normal</ows:Identifier>
     70535                                <LegendURL format="image/jpeg" height="200"
     70536                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70537                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70538                        </Style>
     70539                        <Format>image/png</Format>
     70540                        <TileMatrixSetLink>
     70541                                <TileMatrixSet>PM</TileMatrixSet>
     70542                                <TileMatrixSetLimits>
     70543                                        <TileMatrixLimits>
     70544                                                <TileMatrix>0</TileMatrix>
     70545                                                <MinTileRow>0</MinTileRow>
     70546                                                <MaxTileRow>0</MaxTileRow>
     70547                                                <MinTileCol>0</MinTileCol>
     70548                                                <MaxTileCol>0</MaxTileCol>
     70549                                        </TileMatrixLimits>
     70550                                        <TileMatrixLimits>
     70551                                                <TileMatrix>1</TileMatrix>
     70552                                                <MinTileRow>0</MinTileRow>
     70553                                                <MaxTileRow>0</MaxTileRow>
     70554                                                <MinTileCol>1</MinTileCol>
     70555                                                <MaxTileCol>1</MaxTileCol>
     70556                                        </TileMatrixLimits>
     70557                                        <TileMatrixLimits>
     70558                                                <TileMatrix>10</TileMatrix>
     70559                                                <MinTileRow>374</MinTileRow>
     70560                                                <MaxTileRow>375</MaxTileRow>
     70561                                                <MinTileCol>526</MinTileCol>
     70562                                                <MaxTileCol>527</MaxTileCol>
     70563                                        </TileMatrixLimits>
     70564                                        <TileMatrixLimits>
     70565                                                <TileMatrix>11</TileMatrix>
     70566                                                <MinTileRow>749</MinTileRow>
     70567                                                <MaxTileRow>751</MaxTileRow>
     70568                                                <MinTileCol>1053</MinTileCol>
     70569                                                <MaxTileCol>1055</MaxTileCol>
     70570                                        </TileMatrixLimits>
     70571                                        <TileMatrixLimits>
     70572                                                <TileMatrix>12</TileMatrix>
     70573                                                <MinTileRow>1499</MinTileRow>
     70574                                                <MaxTileRow>1503</MaxTileRow>
     70575                                                <MinTileCol>2107</MinTileCol>
     70576                                                <MaxTileCol>2110</MaxTileCol>
     70577                                        </TileMatrixLimits>
     70578                                        <TileMatrixLimits>
     70579                                                <TileMatrix>13</TileMatrix>
     70580                                                <MinTileRow>2998</MinTileRow>
     70581                                                <MaxTileRow>3006</MaxTileRow>
     70582                                                <MinTileCol>4215</MinTileCol>
     70583                                                <MaxTileCol>4221</MaxTileCol>
     70584                                        </TileMatrixLimits>
     70585                                        <TileMatrixLimits>
     70586                                                <TileMatrix>14</TileMatrix>
     70587                                                <MinTileRow>5997</MinTileRow>
     70588                                                <MaxTileRow>6012</MaxTileRow>
     70589                                                <MinTileCol>8431</MinTileCol>
     70590                                                <MaxTileCol>8443</MaxTileCol>
     70591                                        </TileMatrixLimits>
     70592                                        <TileMatrixLimits>
     70593                                                <TileMatrix>15</TileMatrix>
     70594                                                <MinTileRow>11995</MinTileRow>
     70595                                                <MaxTileRow>12024</MaxTileRow>
     70596                                                <MinTileCol>16863</MinTileCol>
     70597                                                <MaxTileCol>16887</MaxTileCol>
     70598                                        </TileMatrixLimits>
     70599                                        <TileMatrixLimits>
     70600                                                <TileMatrix>16</TileMatrix>
     70601                                                <MinTileRow>23991</MinTileRow>
     70602                                                <MaxTileRow>24048</MaxTileRow>
     70603                                                <MinTileCol>33726</MinTileCol>
     70604                                                <MaxTileCol>33775</MaxTileCol>
     70605                                        </TileMatrixLimits>
     70606                                        <TileMatrixLimits>
     70607                                                <TileMatrix>17</TileMatrix>
     70608                                                <MinTileRow>47982</MinTileRow>
     70609                                                <MaxTileRow>48097</MaxTileRow>
     70610                                                <MinTileCol>67452</MinTileCol>
     70611                                                <MaxTileCol>67550</MaxTileCol>
     70612                                        </TileMatrixLimits>
     70613                                        <TileMatrixLimits>
     70614                                                <TileMatrix>18</TileMatrix>
     70615                                                <MinTileRow>95965</MinTileRow>
     70616                                                <MaxTileRow>96194</MaxTileRow>
     70617                                                <MinTileCol>134904</MinTileCol>
     70618                                                <MaxTileCol>135101</MaxTileCol>
     70619                                        </TileMatrixLimits>
     70620                                        <TileMatrixLimits>
     70621                                                <TileMatrix>2</TileMatrix>
     70622                                                <MinTileRow>1</MinTileRow>
     70623                                                <MaxTileRow>1</MaxTileRow>
     70624                                                <MinTileCol>2</MinTileCol>
     70625                                                <MaxTileCol>2</MaxTileCol>
     70626                                        </TileMatrixLimits>
     70627                                        <TileMatrixLimits>
     70628                                                <TileMatrix>3</TileMatrix>
     70629                                                <MinTileRow>2</MinTileRow>
     70630                                                <MaxTileRow>2</MaxTileRow>
     70631                                                <MinTileCol>4</MinTileCol>
     70632                                                <MaxTileCol>4</MaxTileCol>
     70633                                        </TileMatrixLimits>
     70634                                        <TileMatrixLimits>
     70635                                                <TileMatrix>4</TileMatrix>
     70636                                                <MinTileRow>5</MinTileRow>
     70637                                                <MaxTileRow>5</MaxTileRow>
     70638                                                <MinTileCol>8</MinTileCol>
     70639                                                <MaxTileCol>8</MaxTileCol>
     70640                                        </TileMatrixLimits>
     70641                                        <TileMatrixLimits>
     70642                                                <TileMatrix>5</TileMatrix>
     70643                                                <MinTileRow>11</MinTileRow>
     70644                                                <MaxTileRow>11</MaxTileRow>
     70645                                                <MinTileCol>16</MinTileCol>
     70646                                                <MaxTileCol>16</MaxTileCol>
     70647                                        </TileMatrixLimits>
     70648                                        <TileMatrixLimits>
     70649                                                <TileMatrix>6</TileMatrix>
     70650                                                <MinTileRow>23</MinTileRow>
     70651                                                <MaxTileRow>23</MaxTileRow>
     70652                                                <MinTileCol>32</MinTileCol>
     70653                                                <MaxTileCol>32</MaxTileCol>
     70654                                        </TileMatrixLimits>
     70655                                        <TileMatrixLimits>
     70656                                                <TileMatrix>7</TileMatrix>
     70657                                                <MinTileRow>46</MinTileRow>
     70658                                                <MaxTileRow>46</MaxTileRow>
     70659                                                <MinTileCol>65</MinTileCol>
     70660                                                <MaxTileCol>65</MaxTileCol>
     70661                                        </TileMatrixLimits>
     70662                                        <TileMatrixLimits>
     70663                                                <TileMatrix>8</TileMatrix>
     70664                                                <MinTileRow>93</MinTileRow>
     70665                                                <MaxTileRow>93</MaxTileRow>
     70666                                                <MinTileCol>131</MinTileCol>
     70667                                                <MaxTileCol>131</MaxTileCol>
     70668                                        </TileMatrixLimits>
     70669                                        <TileMatrixLimits>
     70670                                                <TileMatrix>9</TileMatrix>
     70671                                                <MinTileRow>187</MinTileRow>
     70672                                                <MaxTileRow>187</MaxTileRow>
     70673                                                <MinTileCol>263</MinTileCol>
     70674                                                <MaxTileCol>263</MaxTileCol>
     70675                                        </TileMatrixLimits>
     70676                                </TileMatrixSetLimits>
     70677                        </TileMatrixSetLink>
     70678                </Layer>
     70679                <Layer>
     70680                        <ows:Title>Orthophotographies Geosud de LITTO-MED-NICE 2015</ows:Title>
     70681                        <ows:Abstract>Orthophotographies satellites de LITTO-MED-NICE issues du projet Geosud.</ows:Abstract>
     70682                        <ows:Keywords>
     70683                                <ows:Keyword>Photographies</ows:Keyword>
     70684                        </ows:Keywords>
     70685                        <ows:WGS84BoundingBox>
     70686                                <ows:LowerCorner>7.20249 43.6355</ows:LowerCorner>
     70687                                <ows:UpperCorner>7.47773 43.8435</ows:UpperCorner>
     70688                        </ows:WGS84BoundingBox>
     70689                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_LITTO-MED-NICE-2015-09-05-38284619</ows:Identifier>
     70690                        <Style isDefault="true">
     70691                                <ows:Title>Données Brutes</ows:Title>
     70692                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70693                                <ows:Keywords>
     70694                                        <ows:Keyword>Défaut</ows:Keyword>
     70695                                </ows:Keywords>
     70696                                <ows:Identifier>normal</ows:Identifier>
     70697                                <LegendURL format="image/jpeg" height="200"
     70698                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70699                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70700                        </Style>
     70701                        <Format>image/png</Format>
     70702                        <TileMatrixSetLink>
     70703                                <TileMatrixSet>PM</TileMatrixSet>
     70704                                <TileMatrixSetLimits>
     70705                                        <TileMatrixLimits>
     70706                                                <TileMatrix>0</TileMatrix>
     70707                                                <MinTileRow>0</MinTileRow>
     70708                                                <MaxTileRow>0</MaxTileRow>
     70709                                                <MinTileCol>0</MinTileCol>
     70710                                                <MaxTileCol>0</MaxTileCol>
     70711                                        </TileMatrixLimits>
     70712                                        <TileMatrixLimits>
     70713                                                <TileMatrix>1</TileMatrix>
     70714                                                <MinTileRow>0</MinTileRow>
     70715                                                <MaxTileRow>0</MaxTileRow>
     70716                                                <MinTileCol>1</MinTileCol>
     70717                                                <MaxTileCol>1</MaxTileCol>
     70718                                        </TileMatrixLimits>
     70719                                        <TileMatrixLimits>
     70720                                                <TileMatrix>10</TileMatrix>
     70721                                                <MinTileRow>372</MinTileRow>
     70722                                                <MaxTileRow>373</MaxTileRow>
     70723                                                <MinTileCol>532</MinTileCol>
     70724                                                <MaxTileCol>533</MaxTileCol>
     70725                                        </TileMatrixLimits>
     70726                                        <TileMatrixLimits>
     70727                                                <TileMatrix>11</TileMatrix>
     70728                                                <MinTileRow>745</MinTileRow>
     70729                                                <MaxTileRow>747</MaxTileRow>
     70730                                                <MinTileCol>1064</MinTileCol>
     70731                                                <MaxTileCol>1066</MaxTileCol>
     70732                                        </TileMatrixLimits>
     70733                                        <TileMatrixLimits>
     70734                                                <TileMatrix>12</TileMatrix>
     70735                                                <MinTileRow>1491</MinTileRow>
     70736                                                <MaxTileRow>1495</MaxTileRow>
     70737                                                <MinTileCol>2129</MinTileCol>
     70738                                                <MaxTileCol>2133</MaxTileCol>
     70739                                        </TileMatrixLimits>
     70740                                        <TileMatrixLimits>
     70741                                                <TileMatrix>13</TileMatrix>
     70742                                                <MinTileRow>2983</MinTileRow>
     70743                                                <MaxTileRow>2990</MaxTileRow>
     70744                                                <MinTileCol>4259</MinTileCol>
     70745                                                <MaxTileCol>4266</MaxTileCol>
     70746                                        </TileMatrixLimits>
     70747                                        <TileMatrixLimits>
     70748                                                <TileMatrix>14</TileMatrix>
     70749                                                <MinTileRow>5967</MinTileRow>
     70750                                                <MaxTileRow>5980</MaxTileRow>
     70751                                                <MinTileCol>8519</MinTileCol>
     70752                                                <MaxTileCol>8532</MaxTileCol>
     70753                                        </TileMatrixLimits>
     70754                                        <TileMatrixLimits>
     70755                                                <TileMatrix>15</TileMatrix>
     70756                                                <MinTileRow>11935</MinTileRow>
     70757                                                <MaxTileRow>11960</MaxTileRow>
     70758                                                <MinTileCol>17039</MinTileCol>
     70759                                                <MaxTileCol>17064</MaxTileCol>
     70760                                        </TileMatrixLimits>
     70761                                        <TileMatrixLimits>
     70762                                                <TileMatrix>16</TileMatrix>
     70763                                                <MinTileRow>23871</MinTileRow>
     70764                                                <MaxTileRow>23920</MaxTileRow>
     70765                                                <MinTileCol>34079</MinTileCol>
     70766                                                <MaxTileCol>34129</MaxTileCol>
     70767                                        </TileMatrixLimits>
     70768                                        <TileMatrixLimits>
     70769                                                <TileMatrix>17</TileMatrix>
     70770                                                <MinTileRow>47743</MinTileRow>
     70771                                                <MaxTileRow>47841</MaxTileRow>
     70772                                                <MinTileCol>68158</MinTileCol>
     70773                                                <MaxTileCol>68258</MaxTileCol>
     70774                                        </TileMatrixLimits>
     70775                                        <TileMatrixLimits>
     70776                                                <TileMatrix>18</TileMatrix>
     70777                                                <MinTileRow>95487</MinTileRow>
     70778                                                <MaxTileRow>95682</MaxTileRow>
     70779                                                <MinTileCol>136317</MinTileCol>
     70780                                                <MaxTileCol>136517</MaxTileCol>
     70781                                        </TileMatrixLimits>
     70782                                        <TileMatrixLimits>
     70783                                                <TileMatrix>2</TileMatrix>
     70784                                                <MinTileRow>1</MinTileRow>
     70785                                                <MaxTileRow>1</MaxTileRow>
     70786                                                <MinTileCol>2</MinTileCol>
     70787                                                <MaxTileCol>2</MaxTileCol>
     70788                                        </TileMatrixLimits>
     70789                                        <TileMatrixLimits>
     70790                                                <TileMatrix>3</TileMatrix>
     70791                                                <MinTileRow>2</MinTileRow>
     70792                                                <MaxTileRow>2</MaxTileRow>
     70793                                                <MinTileCol>4</MinTileCol>
     70794                                                <MaxTileCol>4</MaxTileCol>
     70795                                        </TileMatrixLimits>
     70796                                        <TileMatrixLimits>
     70797                                                <TileMatrix>4</TileMatrix>
     70798                                                <MinTileRow>5</MinTileRow>
     70799                                                <MaxTileRow>5</MaxTileRow>
     70800                                                <MinTileCol>8</MinTileCol>
     70801                                                <MaxTileCol>8</MaxTileCol>
     70802                                        </TileMatrixLimits>
     70803                                        <TileMatrixLimits>
     70804                                                <TileMatrix>5</TileMatrix>
     70805                                                <MinTileRow>11</MinTileRow>
     70806                                                <MaxTileRow>11</MaxTileRow>
     70807                                                <MinTileCol>16</MinTileCol>
     70808                                                <MaxTileCol>16</MaxTileCol>
     70809                                        </TileMatrixLimits>
     70810                                        <TileMatrixLimits>
     70811                                                <TileMatrix>6</TileMatrix>
     70812                                                <MinTileRow>23</MinTileRow>
     70813                                                <MaxTileRow>23</MaxTileRow>
     70814                                                <MinTileCol>33</MinTileCol>
     70815                                                <MaxTileCol>33</MaxTileCol>
     70816                                        </TileMatrixLimits>
     70817                                        <TileMatrixLimits>
     70818                                                <TileMatrix>7</TileMatrix>
     70819                                                <MinTileRow>46</MinTileRow>
     70820                                                <MaxTileRow>46</MaxTileRow>
     70821                                                <MinTileCol>66</MinTileCol>
     70822                                                <MaxTileCol>66</MaxTileCol>
     70823                                        </TileMatrixLimits>
     70824                                        <TileMatrixLimits>
     70825                                                <TileMatrix>8</TileMatrix>
     70826                                                <MinTileRow>93</MinTileRow>
     70827                                                <MaxTileRow>93</MaxTileRow>
     70828                                                <MinTileCol>133</MinTileCol>
     70829                                                <MaxTileCol>133</MaxTileCol>
     70830                                        </TileMatrixLimits>
     70831                                        <TileMatrixLimits>
     70832                                                <TileMatrix>9</TileMatrix>
     70833                                                <MinTileRow>186</MinTileRow>
     70834                                                <MaxTileRow>186</MaxTileRow>
     70835                                                <MinTileCol>266</MinTileCol>
     70836                                                <MaxTileCol>266</MaxTileCol>
     70837                                        </TileMatrixLimits>
     70838                                </TileMatrixSetLimits>
     70839                        </TileMatrixSetLink>
     70840                </Layer>
     70841                <Layer>
     70842                        <ows:Title>Orthophotographies Geosud de NANCY 2015</ows:Title>
     70843                        <ows:Abstract>Orthophotographies satellites de NANCY issues du projet Geosud.</ows:Abstract>
     70844                        <ows:Keywords>
     70845                                <ows:Keyword>Photographies</ows:Keyword>
     70846                        </ows:Keywords>
     70847                        <ows:WGS84BoundingBox>
     70848                                <ows:LowerCorner>6.06543 48.5853</ows:LowerCorner>
     70849                                <ows:UpperCorner>6.38925 48.7825</ows:UpperCorner>
     70850                        </ows:WGS84BoundingBox>
     70851                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_NANCY-2015-08-03-38434699</ows:Identifier>
     70852                        <Style isDefault="true">
     70853                                <ows:Title>Données Brutes</ows:Title>
     70854                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     70855                                <ows:Keywords>
     70856                                        <ows:Keyword>Défaut</ows:Keyword>
     70857                                </ows:Keywords>
     70858                                <ows:Identifier>normal</ows:Identifier>
     70859                                <LegendURL format="image/jpeg" height="200"
     70860                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     70861                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     70862                        </Style>
     70863                        <Format>image/png</Format>
     70864                        <TileMatrixSetLink>
     70865                                <TileMatrixSet>PM</TileMatrixSet>
     70866                                <TileMatrixSetLimits>
     70867                                        <TileMatrixLimits>
     70868                                                <TileMatrix>0</TileMatrix>
     70869                                                <MinTileRow>0</MinTileRow>
     70870                                                <MaxTileRow>0</MaxTileRow>
     70871                                                <MinTileCol>0</MinTileCol>
     70872                                                <MaxTileCol>0</MaxTileCol>
     70873                                        </TileMatrixLimits>
     70874                                        <TileMatrixLimits>
     70875                                                <TileMatrix>1</TileMatrix>
     70876                                                <MinTileRow>0</MinTileRow>
     70877                                                <MaxTileRow>0</MaxTileRow>
     70878                                                <MinTileCol>1</MinTileCol>
     70879                                                <MaxTileCol>1</MaxTileCol>
     70880                                        </TileMatrixLimits>
     70881                                        <TileMatrixLimits>
     70882                                                <TileMatrix>10</TileMatrix>
     70883                                                <MinTileRow>352</MinTileRow>
     70884                                                <MaxTileRow>353</MaxTileRow>
     70885                                                <MinTileCol>529</MinTileCol>
     70886                                                <MaxTileCol>530</MaxTileCol>
     70887                                        </TileMatrixLimits>
     70888                                        <TileMatrixLimits>
     70889                                                <TileMatrix>11</TileMatrix>
     70890                                                <MinTileRow>705</MinTileRow>
     70891                                                <MaxTileRow>706</MaxTileRow>
     70892                                                <MinTileCol>1058</MinTileCol>
     70893                                                <MaxTileCol>1060</MaxTileCol>
     70894                                        </TileMatrixLimits>
     70895                                        <TileMatrixLimits>
     70896                                                <TileMatrix>12</TileMatrix>
     70897                                                <MinTileRow>1410</MinTileRow>
     70898                                                <MaxTileRow>1413</MaxTileRow>
     70899                                                <MinTileCol>2117</MinTileCol>
     70900                                                <MaxTileCol>2120</MaxTileCol>
     70901                                        </TileMatrixLimits>
     70902                                        <TileMatrixLimits>
     70903                                                <TileMatrix>13</TileMatrix>
     70904                                                <MinTileRow>2820</MinTileRow>
     70905                                                <MaxTileRow>2827</MaxTileRow>
     70906                                                <MinTileCol>4234</MinTileCol>
     70907                                                <MaxTileCol>4241</MaxTileCol>
     70908                                        </TileMatrixLimits>
     70909                                        <TileMatrixLimits>
     70910                                                <TileMatrix>14</TileMatrix>
     70911                                                <MinTileRow>5641</MinTileRow>
     70912                                                <MaxTileRow>5655</MaxTileRow>
     70913                                                <MinTileCol>8468</MinTileCol>
     70914                                                <MaxTileCol>8482</MaxTileCol>
     70915                                        </TileMatrixLimits>
     70916                                        <TileMatrixLimits>
     70917                                                <TileMatrix>15</TileMatrix>
     70918                                                <MinTileRow>11283</MinTileRow>
     70919                                                <MaxTileRow>11310</MaxTileRow>
     70920                                                <MinTileCol>16936</MinTileCol>
     70921                                                <MaxTileCol>16964</MaxTileCol>
     70922                                        </TileMatrixLimits>
     70923                                        <TileMatrixLimits>
     70924                                                <TileMatrix>16</TileMatrix>
     70925                                                <MinTileRow>22567</MinTileRow>
     70926                                                <MaxTileRow>22621</MaxTileRow>
     70927                                                <MinTileCol>33873</MinTileCol>
     70928                                                <MaxTileCol>33929</MaxTileCol>
     70929                                        </TileMatrixLimits>
     70930                                        <TileMatrixLimits>
     70931                                                <TileMatrix>17</TileMatrix>
     70932                                                <MinTileRow>45134</MinTileRow>
     70933                                                <MaxTileRow>45242</MaxTileRow>
     70934                                                <MinTileCol>67747</MinTileCol>
     70935                                                <MaxTileCol>67858</MaxTileCol>
     70936                                        </TileMatrixLimits>
     70937                                        <TileMatrixLimits>
     70938                                                <TileMatrix>18</TileMatrix>
     70939                                                <MinTileRow>90268</MinTileRow>
     70940                                                <MaxTileRow>90484</MaxTileRow>
     70941                                                <MinTileCol>135494</MinTileCol>
     70942                                                <MaxTileCol>135716</MaxTileCol>
     70943                                        </TileMatrixLimits>
     70944                                        <TileMatrixLimits>
     70945                                                <TileMatrix>2</TileMatrix>
     70946                                                <MinTileRow>1</MinTileRow>
     70947                                                <MaxTileRow>1</MaxTileRow>
     70948                                                <MinTileCol>2</MinTileCol>
     70949                                                <MaxTileCol>2</MaxTileCol>
     70950                                        </TileMatrixLimits>
     70951                                        <TileMatrixLimits>
     70952                                                <TileMatrix>3</TileMatrix>
     70953                                                <MinTileRow>2</MinTileRow>
     70954                                                <MaxTileRow>2</MaxTileRow>
     70955                                                <MinTileCol>4</MinTileCol>
     70956                                                <MaxTileCol>4</MaxTileCol>
     70957                                        </TileMatrixLimits>
     70958                                        <TileMatrixLimits>
     70959                                                <TileMatrix>4</TileMatrix>
     70960                                                <MinTileRow>5</MinTileRow>
     70961                                                <MaxTileRow>5</MaxTileRow>
     70962                                                <MinTileCol>8</MinTileCol>
     70963                                                <MaxTileCol>8</MaxTileCol>
     70964                                        </TileMatrixLimits>
     70965                                        <TileMatrixLimits>
     70966                                                <TileMatrix>5</TileMatrix>
     70967                                                <MinTileRow>11</MinTileRow>
     70968                                                <MaxTileRow>11</MaxTileRow>
     70969                                                <MinTileCol>16</MinTileCol>
     70970                                                <MaxTileCol>16</MaxTileCol>
     70971                                        </TileMatrixLimits>
     70972                                        <TileMatrixLimits>
     70973                                                <TileMatrix>6</TileMatrix>
     70974                                                <MinTileRow>22</MinTileRow>
     70975                                                <MaxTileRow>22</MaxTileRow>
     70976                                                <MinTileCol>33</MinTileCol>
     70977                                                <MaxTileCol>33</MaxTileCol>
     70978                                        </TileMatrixLimits>
     70979                                        <TileMatrixLimits>
     70980                                                <TileMatrix>7</TileMatrix>
     70981                                                <MinTileRow>44</MinTileRow>
     70982                                                <MaxTileRow>44</MaxTileRow>
     70983                                                <MinTileCol>66</MinTileCol>
     70984                                                <MaxTileCol>66</MaxTileCol>
     70985                                        </TileMatrixLimits>
     70986                                        <TileMatrixLimits>
     70987                                                <TileMatrix>8</TileMatrix>
     70988                                                <MinTileRow>88</MinTileRow>
     70989                                                <MaxTileRow>88</MaxTileRow>
     70990                                                <MinTileCol>132</MinTileCol>
     70991                                                <MaxTileCol>132</MaxTileCol>
     70992                                        </TileMatrixLimits>
     70993                                        <TileMatrixLimits>
     70994                                                <TileMatrix>9</TileMatrix>
     70995                                                <MinTileRow>176</MinTileRow>
     70996                                                <MaxTileRow>176</MaxTileRow>
     70997                                                <MinTileCol>264</MinTileCol>
     70998                                                <MaxTileCol>265</MaxTileCol>
     70999                                        </TileMatrixLimits>
     71000                                </TileMatrixSetLimits>
     71001                        </TileMatrixSetLink>
     71002                </Layer>
     71003                <Layer>
     71004                        <ows:Title>Orthophotographies Geosud de REIMS 2015</ows:Title>
     71005                        <ows:Abstract>Orthophotographies satellites de REIMS issues du projet Geosud.</ows:Abstract>
     71006                        <ows:Keywords>
     71007                                <ows:Keyword>Photographies</ows:Keyword>
     71008                        </ows:Keywords>
     71009                        <ows:WGS84BoundingBox>
     71010                                <ows:LowerCorner>3.86368 49.1583</ows:LowerCorner>
     71011                                <ows:UpperCorner>4.15554 49.3404</ows:UpperCorner>
     71012                        </ows:WGS84BoundingBox>
     71013                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_REIMS-2015-04-19-39272324</ows:Identifier>
     71014                        <Style isDefault="true">
     71015                                <ows:Title>Données Brutes</ows:Title>
     71016                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71017                                <ows:Keywords>
     71018                                        <ows:Keyword>Défaut</ows:Keyword>
     71019                                </ows:Keywords>
     71020                                <ows:Identifier>normal</ows:Identifier>
     71021                                <LegendURL format="image/jpeg" height="200"
     71022                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71023                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71024                        </Style>
     71025                        <Format>image/png</Format>
     71026                        <TileMatrixSetLink>
     71027                                <TileMatrixSet>PM</TileMatrixSet>
     71028                                <TileMatrixSetLimits>
     71029                                        <TileMatrixLimits>
     71030                                                <TileMatrix>0</TileMatrix>
     71031                                                <MinTileRow>0</MinTileRow>
     71032                                                <MaxTileRow>0</MaxTileRow>
     71033                                                <MinTileCol>0</MinTileCol>
     71034                                                <MaxTileCol>0</MaxTileCol>
     71035                                        </TileMatrixLimits>
     71036                                        <TileMatrixLimits>
     71037                                                <TileMatrix>1</TileMatrix>
     71038                                                <MinTileRow>0</MinTileRow>
     71039                                                <MaxTileRow>0</MaxTileRow>
     71040                                                <MinTileCol>1</MinTileCol>
     71041                                                <MaxTileCol>1</MaxTileCol>
     71042                                        </TileMatrixLimits>
     71043                                        <TileMatrixLimits>
     71044                                                <TileMatrix>10</TileMatrix>
     71045                                                <MinTileRow>350</MinTileRow>
     71046                                                <MaxTileRow>350</MaxTileRow>
     71047                                                <MinTileCol>522</MinTileCol>
     71048                                                <MaxTileCol>523</MaxTileCol>
     71049                                        </TileMatrixLimits>
     71050                                        <TileMatrixLimits>
     71051                                                <TileMatrix>11</TileMatrix>
     71052                                                <MinTileRow>700</MinTileRow>
     71053                                                <MaxTileRow>701</MaxTileRow>
     71054                                                <MinTileCol>1045</MinTileCol>
     71055                                                <MaxTileCol>1047</MaxTileCol>
     71056                                        </TileMatrixLimits>
     71057                                        <TileMatrixLimits>
     71058                                                <TileMatrix>12</TileMatrix>
     71059                                                <MinTileRow>1400</MinTileRow>
     71060                                                <MaxTileRow>1403</MaxTileRow>
     71061                                                <MinTileCol>2091</MinTileCol>
     71062                                                <MaxTileCol>2095</MaxTileCol>
     71063                                        </TileMatrixLimits>
     71064                                        <TileMatrixLimits>
     71065                                                <TileMatrix>13</TileMatrix>
     71066                                                <MinTileRow>2801</MinTileRow>
     71067                                                <MaxTileRow>2807</MaxTileRow>
     71068                                                <MinTileCol>4183</MinTileCol>
     71069                                                <MaxTileCol>4190</MaxTileCol>
     71070                                        </TileMatrixLimits>
     71071                                        <TileMatrixLimits>
     71072                                                <TileMatrix>14</TileMatrix>
     71073                                                <MinTileRow>5602</MinTileRow>
     71074                                                <MaxTileRow>5615</MaxTileRow>
     71075                                                <MinTileCol>8367</MinTileCol>
     71076                                                <MaxTileCol>8381</MaxTileCol>
     71077                                        </TileMatrixLimits>
     71078                                        <TileMatrixLimits>
     71079                                                <TileMatrix>15</TileMatrix>
     71080                                                <MinTileRow>11205</MinTileRow>
     71081                                                <MaxTileRow>11231</MaxTileRow>
     71082                                                <MinTileCol>16735</MinTileCol>
     71083                                                <MaxTileCol>16762</MaxTileCol>
     71084                                        </TileMatrixLimits>
     71085                                        <TileMatrixLimits>
     71086                                                <TileMatrix>16</TileMatrix>
     71087                                                <MinTileRow>22411</MinTileRow>
     71088                                                <MaxTileRow>22462</MaxTileRow>
     71089                                                <MinTileCol>33471</MinTileCol>
     71090                                                <MaxTileCol>33524</MaxTileCol>
     71091                                        </TileMatrixLimits>
     71092                                        <TileMatrixLimits>
     71093                                                <TileMatrix>17</TileMatrix>
     71094                                                <MinTileRow>44823</MinTileRow>
     71095                                                <MaxTileRow>44925</MaxTileRow>
     71096                                                <MinTileCol>66942</MinTileCol>
     71097                                                <MaxTileCol>67049</MaxTileCol>
     71098                                        </TileMatrixLimits>
     71099                                        <TileMatrixLimits>
     71100                                                <TileMatrix>18</TileMatrix>
     71101                                                <MinTileRow>89646</MinTileRow>
     71102                                                <MaxTileRow>89850</MaxTileRow>
     71103                                                <MinTileCol>133885</MinTileCol>
     71104                                                <MaxTileCol>134098</MaxTileCol>
     71105                                        </TileMatrixLimits>
     71106                                        <TileMatrixLimits>
     71107                                                <TileMatrix>2</TileMatrix>
     71108                                                <MinTileRow>1</MinTileRow>
     71109                                                <MaxTileRow>1</MaxTileRow>
     71110                                                <MinTileCol>2</MinTileCol>
     71111                                                <MaxTileCol>2</MaxTileCol>
     71112                                        </TileMatrixLimits>
     71113                                        <TileMatrixLimits>
     71114                                                <TileMatrix>3</TileMatrix>
     71115                                                <MinTileRow>2</MinTileRow>
     71116                                                <MaxTileRow>2</MaxTileRow>
     71117                                                <MinTileCol>4</MinTileCol>
     71118                                                <MaxTileCol>4</MaxTileCol>
     71119                                        </TileMatrixLimits>
     71120                                        <TileMatrixLimits>
     71121                                                <TileMatrix>4</TileMatrix>
     71122                                                <MinTileRow>5</MinTileRow>
     71123                                                <MaxTileRow>5</MaxTileRow>
     71124                                                <MinTileCol>8</MinTileCol>
     71125                                                <MaxTileCol>8</MaxTileCol>
     71126                                        </TileMatrixLimits>
     71127                                        <TileMatrixLimits>
     71128                                                <TileMatrix>5</TileMatrix>
     71129                                                <MinTileRow>10</MinTileRow>
     71130                                                <MaxTileRow>10</MaxTileRow>
     71131                                                <MinTileCol>16</MinTileCol>
     71132                                                <MaxTileCol>16</MaxTileCol>
     71133                                        </TileMatrixLimits>
     71134                                        <TileMatrixLimits>
     71135                                                <TileMatrix>6</TileMatrix>
     71136                                                <MinTileRow>21</MinTileRow>
     71137                                                <MaxTileRow>21</MaxTileRow>
     71138                                                <MinTileCol>32</MinTileCol>
     71139                                                <MaxTileCol>32</MaxTileCol>
     71140                                        </TileMatrixLimits>
     71141                                        <TileMatrixLimits>
     71142                                                <TileMatrix>7</TileMatrix>
     71143                                                <MinTileRow>43</MinTileRow>
     71144                                                <MaxTileRow>43</MaxTileRow>
     71145                                                <MinTileCol>65</MinTileCol>
     71146                                                <MaxTileCol>65</MaxTileCol>
     71147                                        </TileMatrixLimits>
     71148                                        <TileMatrixLimits>
     71149                                                <TileMatrix>8</TileMatrix>
     71150                                                <MinTileRow>87</MinTileRow>
     71151                                                <MaxTileRow>87</MaxTileRow>
     71152                                                <MinTileCol>130</MinTileCol>
     71153                                                <MaxTileCol>130</MaxTileCol>
     71154                                        </TileMatrixLimits>
     71155                                        <TileMatrixLimits>
     71156                                                <TileMatrix>9</TileMatrix>
     71157                                                <MinTileRow>175</MinTileRow>
     71158                                                <MaxTileRow>175</MaxTileRow>
     71159                                                <MinTileCol>261</MinTileCol>
     71160                                                <MaxTileCol>261</MaxTileCol>
     71161                                        </TileMatrixLimits>
     71162                                </TileMatrixSetLimits>
     71163                        </TileMatrixSetLink>
     71164                </Layer>
     71165                <Layer>
     71166                        <ows:Title>Orthophotographies Geosud de SAINT-NAZAIRE-LE-CROISIC 2015</ows:Title>
     71167                        <ows:Abstract>Orthophotographies satellites de SAINT-NAZAIRE-LE-CROISIC issues du projet Geosud.</ows:Abstract>
     71168                        <ows:Keywords>
     71169                                <ows:Keyword>Photographies</ows:Keyword>
     71170                        </ows:Keywords>
     71171                        <ows:WGS84BoundingBox>
     71172                                <ows:LowerCorner>-2.58003 47.2127</ows:LowerCorner>
     71173                                <ows:UpperCorner>-2.30332 47.3508</ows:UpperCorner>
     71174                        </ows:WGS84BoundingBox>
     71175                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_SAINT-NAZAIRE-LE-CROISIC-2015-04-22-40893058</ows:Identifier>
     71176                        <Style isDefault="true">
     71177                                <ows:Title>Données Brutes</ows:Title>
     71178                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71179                                <ows:Keywords>
     71180                                        <ows:Keyword>Défaut</ows:Keyword>
     71181                                </ows:Keywords>
     71182                                <ows:Identifier>normal</ows:Identifier>
     71183                                <LegendURL format="image/jpeg" height="200"
     71184                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71185                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71186                        </Style>
     71187                        <Format>image/png</Format>
     71188                        <TileMatrixSetLink>
     71189                                <TileMatrixSet>PM</TileMatrixSet>
     71190                                <TileMatrixSetLimits>
     71191                                        <TileMatrixLimits>
     71192                                                <TileMatrix>0</TileMatrix>
     71193                                                <MinTileRow>0</MinTileRow>
     71194                                                <MaxTileRow>0</MaxTileRow>
     71195                                                <MinTileCol>0</MinTileCol>
     71196                                                <MaxTileCol>0</MaxTileCol>
     71197                                        </TileMatrixLimits>
     71198                                        <TileMatrixLimits>
     71199                                                <TileMatrix>1</TileMatrix>
     71200                                                <MinTileRow>0</MinTileRow>
     71201                                                <MaxTileRow>0</MaxTileRow>
     71202                                                <MinTileCol>0</MinTileCol>
     71203                                                <MaxTileCol>0</MaxTileCol>
     71204                                        </TileMatrixLimits>
     71205                                        <TileMatrixLimits>
     71206                                                <TileMatrix>10</TileMatrix>
     71207                                                <MinTileRow>358</MinTileRow>
     71208                                                <MaxTileRow>359</MaxTileRow>
     71209                                                <MinTileCol>504</MinTileCol>
     71210                                                <MaxTileCol>505</MaxTileCol>
     71211                                        </TileMatrixLimits>
     71212                                        <TileMatrixLimits>
     71213                                                <TileMatrix>11</TileMatrix>
     71214                                                <MinTileRow>717</MinTileRow>
     71215                                                <MaxTileRow>718</MaxTileRow>
     71216                                                <MinTileCol>1009</MinTileCol>
     71217                                                <MaxTileCol>1010</MaxTileCol>
     71218                                        </TileMatrixLimits>
     71219                                        <TileMatrixLimits>
     71220                                                <TileMatrix>12</TileMatrix>
     71221                                                <MinTileRow>1434</MinTileRow>
     71222                                                <MaxTileRow>1436</MaxTileRow>
     71223                                                <MinTileCol>2018</MinTileCol>
     71224                                                <MaxTileCol>2021</MaxTileCol>
     71225                                        </TileMatrixLimits>
     71226                                        <TileMatrixLimits>
     71227                                                <TileMatrix>13</TileMatrix>
     71228                                                <MinTileRow>2869</MinTileRow>
     71229                                                <MaxTileRow>2873</MaxTileRow>
     71230                                                <MinTileCol>4037</MinTileCol>
     71231                                                <MaxTileCol>4043</MaxTileCol>
     71232                                        </TileMatrixLimits>
     71233                                        <TileMatrixLimits>
     71234                                                <TileMatrix>14</TileMatrix>
     71235                                                <MinTileRow>5739</MinTileRow>
     71236                                                <MaxTileRow>5747</MaxTileRow>
     71237                                                <MinTileCol>8075</MinTileCol>
     71238                                                <MaxTileCol>8087</MaxTileCol>
     71239                                        </TileMatrixLimits>
     71240                                        <TileMatrixLimits>
     71241                                                <TileMatrix>15</TileMatrix>
     71242                                                <MinTileRow>11479</MinTileRow>
     71243                                                <MaxTileRow>11495</MaxTileRow>
     71244                                                <MinTileCol>16150</MinTileCol>
     71245                                                <MaxTileCol>16174</MaxTileCol>
     71246                                        </TileMatrixLimits>
     71247                                        <TileMatrixLimits>
     71248                                                <TileMatrix>16</TileMatrix>
     71249                                                <MinTileRow>22959</MinTileRow>
     71250                                                <MaxTileRow>22991</MaxTileRow>
     71251                                                <MinTileCol>32300</MinTileCol>
     71252                                                <MaxTileCol>32348</MaxTileCol>
     71253                                        </TileMatrixLimits>
     71254                                        <TileMatrixLimits>
     71255                                                <TileMatrix>17</TileMatrix>
     71256                                                <MinTileRow>45918</MinTileRow>
     71257                                                <MaxTileRow>45983</MaxTileRow>
     71258                                                <MinTileCol>64600</MinTileCol>
     71259                                                <MaxTileCol>64697</MaxTileCol>
     71260                                        </TileMatrixLimits>
     71261                                        <TileMatrixLimits>
     71262                                                <TileMatrix>18</TileMatrix>
     71263                                                <MinTileRow>91836</MinTileRow>
     71264                                                <MaxTileRow>91966</MaxTileRow>
     71265                                                <MinTileCol>129200</MinTileCol>
     71266                                                <MaxTileCol>129394</MaxTileCol>
     71267                                        </TileMatrixLimits>
     71268                                        <TileMatrixLimits>
     71269                                                <TileMatrix>2</TileMatrix>
     71270                                                <MinTileRow>1</MinTileRow>
     71271                                                <MaxTileRow>1</MaxTileRow>
     71272                                                <MinTileCol>1</MinTileCol>
     71273                                                <MaxTileCol>1</MaxTileCol>
     71274                                        </TileMatrixLimits>
     71275                                        <TileMatrixLimits>
     71276                                                <TileMatrix>3</TileMatrix>
     71277                                                <MinTileRow>2</MinTileRow>
     71278                                                <MaxTileRow>2</MaxTileRow>
     71279                                                <MinTileCol>3</MinTileCol>
     71280                                                <MaxTileCol>3</MaxTileCol>
     71281                                        </TileMatrixLimits>
     71282                                        <TileMatrixLimits>
     71283                                                <TileMatrix>4</TileMatrix>
     71284                                                <MinTileRow>5</MinTileRow>
     71285                                                <MaxTileRow>5</MaxTileRow>
     71286                                                <MinTileCol>7</MinTileCol>
     71287                                                <MaxTileCol>7</MaxTileCol>
     71288                                        </TileMatrixLimits>
     71289                                        <TileMatrixLimits>
     71290                                                <TileMatrix>5</TileMatrix>
     71291                                                <MinTileRow>11</MinTileRow>
     71292                                                <MaxTileRow>11</MaxTileRow>
     71293                                                <MinTileCol>15</MinTileCol>
     71294                                                <MaxTileCol>15</MaxTileCol>
     71295                                        </TileMatrixLimits>
     71296                                        <TileMatrixLimits>
     71297                                                <TileMatrix>6</TileMatrix>
     71298                                                <MinTileRow>22</MinTileRow>
     71299                                                <MaxTileRow>22</MaxTileRow>
     71300                                                <MinTileCol>31</MinTileCol>
     71301                                                <MaxTileCol>31</MaxTileCol>
     71302                                        </TileMatrixLimits>
     71303                                        <TileMatrixLimits>
     71304                                                <TileMatrix>7</TileMatrix>
     71305                                                <MinTileRow>44</MinTileRow>
     71306                                                <MaxTileRow>44</MaxTileRow>
     71307                                                <MinTileCol>63</MinTileCol>
     71308                                                <MaxTileCol>63</MaxTileCol>
     71309                                        </TileMatrixLimits>
     71310                                        <TileMatrixLimits>
     71311                                                <TileMatrix>8</TileMatrix>
     71312                                                <MinTileRow>89</MinTileRow>
     71313                                                <MaxTileRow>89</MaxTileRow>
     71314                                                <MinTileCol>126</MinTileCol>
     71315                                                <MaxTileCol>126</MaxTileCol>
     71316                                        </TileMatrixLimits>
     71317                                        <TileMatrixLimits>
     71318                                                <TileMatrix>9</TileMatrix>
     71319                                                <MinTileRow>179</MinTileRow>
     71320                                                <MaxTileRow>179</MaxTileRow>
     71321                                                <MinTileCol>252</MinTileCol>
     71322                                                <MaxTileCol>252</MaxTileCol>
     71323                                        </TileMatrixLimits>
     71324                                </TileMatrixSetLimits>
     71325                        </TileMatrixSetLink>
     71326                </Layer>
     71327                <Layer>
     71328                        <ows:Title>Orthophotographies Geosud de SAINT-NAZAIRE-LE-CROISIC 2015</ows:Title>
     71329                        <ows:Abstract>Orthophotographies satellites de SAINT-NAZAIRE-LE-CROISIC issues du projet Geosud.</ows:Abstract>
     71330                        <ows:Keywords>
     71331                                <ows:Keyword>Photographies</ows:Keyword>
     71332                        </ows:Keywords>
     71333                        <ows:WGS84BoundingBox>
     71334                                <ows:LowerCorner>-2.39415 47.1945</ows:LowerCorner>
     71335                                <ows:UpperCorner>-2.08976 47.3513</ows:UpperCorner>
     71336                        </ows:WGS84BoundingBox>
     71337                        <ows:Identifier>ORTHO-SAT_PYR-PNG_WLD_WM_SAINT-NAZAIRE-LE-CROISIC-2015-04-23-40506444</ows:Identifier>
     71338                        <Style isDefault="true">
     71339                                <ows:Title>Données Brutes</ows:Title>
     71340                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71341                                <ows:Keywords>
     71342                                        <ows:Keyword>Défaut</ows:Keyword>
     71343                                </ows:Keywords>
     71344                                <ows:Identifier>normal</ows:Identifier>
     71345                                <LegendURL format="image/jpeg" height="200"
     71346                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71347                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71348                        </Style>
     71349                        <Format>image/png</Format>
     71350                        <TileMatrixSetLink>
     71351                                <TileMatrixSet>PM</TileMatrixSet>
     71352                                <TileMatrixSetLimits>
     71353                                        <TileMatrixLimits>
     71354                                                <TileMatrix>0</TileMatrix>
     71355                                                <MinTileRow>0</MinTileRow>
     71356                                                <MaxTileRow>0</MaxTileRow>
     71357                                                <MinTileCol>0</MinTileCol>
     71358                                                <MaxTileCol>0</MaxTileCol>
     71359                                        </TileMatrixLimits>
     71360                                        <TileMatrixLimits>
     71361                                                <TileMatrix>1</TileMatrix>
     71362                                                <MinTileRow>0</MinTileRow>
     71363                                                <MaxTileRow>0</MaxTileRow>
     71364                                                <MinTileCol>0</MinTileCol>
     71365                                                <MaxTileCol>0</MaxTileCol>
     71366                                        </TileMatrixLimits>
     71367                                        <TileMatrixLimits>
     71368                                                <TileMatrix>10</TileMatrix>
     71369                                                <MinTileRow>358</MinTileRow>
     71370                                                <MaxTileRow>359</MaxTileRow>
     71371                                                <MinTileCol>505</MinTileCol>
     71372                                                <MaxTileCol>506</MaxTileCol>
     71373                                        </TileMatrixLimits>
     71374                                        <TileMatrixLimits>
     71375                                                <TileMatrix>11</TileMatrix>
     71376                                                <MinTileRow>717</MinTileRow>
     71377                                                <MaxTileRow>718</MaxTileRow>
     71378                                                <MinTileCol>1010</MinTileCol>
     71379                                                <MaxTileCol>1012</MaxTileCol>
     71380                                        </TileMatrixLimits>
     71381                                        <TileMatrixLimits>
     71382                                                <TileMatrix>12</TileMatrix>
     71383                                                <MinTileRow>1434</MinTileRow>
     71384                                                <MaxTileRow>1437</MaxTileRow>
     71385                                                <MinTileCol>2020</MinTileCol>
     71386                                                <MaxTileCol>2024</MaxTileCol>
     71387                                        </TileMatrixLimits>
     71388                                        <TileMatrixLimits>
     71389                                                <TileMatrix>13</TileMatrix>
     71390                                                <MinTileRow>2869</MinTileRow>
     71391                                                <MaxTileRow>2874</MaxTileRow>
     71392                                                <MinTileCol>4041</MinTileCol>
     71393                                                <MaxTileCol>4048</MaxTileCol>
     71394                                        </TileMatrixLimits>
     71395                                        <TileMatrixLimits>
     71396                                                <TileMatrix>14</TileMatrix>
     71397                                                <MinTileRow>5739</MinTileRow>
     71398                                                <MaxTileRow>5748</MaxTileRow>
     71399                                                <MinTileCol>8083</MinTileCol>
     71400                                                <MaxTileCol>8096</MaxTileCol>
     71401                                        </TileMatrixLimits>
     71402                                        <TileMatrixLimits>
     71403                                                <TileMatrix>15</TileMatrix>
     71404                                                <MinTileRow>11479</MinTileRow>
     71405                                                <MaxTileRow>11497</MaxTileRow>
     71406                                                <MinTileCol>16166</MinTileCol>
     71407                                                <MaxTileCol>16193</MaxTileCol>
     71408                                        </TileMatrixLimits>
     71409                                        <TileMatrixLimits>
     71410                                                <TileMatrix>16</TileMatrix>
     71411                                                <MinTileRow>22958</MinTileRow>
     71412                                                <MaxTileRow>22995</MaxTileRow>
     71413                                                <MinTileCol>32332</MinTileCol>
     71414                                                <MaxTileCol>32386</MaxTileCol>
     71415                                        </TileMatrixLimits>
     71416                                        <TileMatrixLimits>
     71417                                                <TileMatrix>17</TileMatrix>
     71418                                                <MinTileRow>45917</MinTileRow>
     71419                                                <MaxTileRow>45991</MaxTileRow>
     71420                                                <MinTileCol>64665</MinTileCol>
     71421                                                <MaxTileCol>64773</MaxTileCol>
     71422                                        </TileMatrixLimits>
     71423                                        <TileMatrixLimits>
     71424                                                <TileMatrix>18</TileMatrix>
     71425                                                <MinTileRow>91834</MinTileRow>
     71426                                                <MaxTileRow>91983</MaxTileRow>
     71427                                                <MinTileCol>129331</MinTileCol>
     71428                                                <MaxTileCol>129546</MaxTileCol>
     71429                                        </TileMatrixLimits>
     71430                                        <TileMatrixLimits>
     71431                                                <TileMatrix>2</TileMatrix>
     71432                                                <MinTileRow>1</MinTileRow>
     71433                                                <MaxTileRow>1</MaxTileRow>
     71434                                                <MinTileCol>1</MinTileCol>
     71435                                                <MaxTileCol>1</MaxTileCol>
     71436                                        </TileMatrixLimits>
     71437                                        <TileMatrixLimits>
     71438                                                <TileMatrix>3</TileMatrix>
     71439                                                <MinTileRow>2</MinTileRow>
     71440                                                <MaxTileRow>2</MaxTileRow>
     71441                                                <MinTileCol>3</MinTileCol>
     71442                                                <MaxTileCol>3</MaxTileCol>
     71443                                        </TileMatrixLimits>
     71444                                        <TileMatrixLimits>
     71445                                                <TileMatrix>4</TileMatrix>
     71446                                                <MinTileRow>5</MinTileRow>
     71447                                                <MaxTileRow>5</MaxTileRow>
     71448                                                <MinTileCol>7</MinTileCol>
     71449                                                <MaxTileCol>7</MaxTileCol>
     71450                                        </TileMatrixLimits>
     71451                                        <TileMatrixLimits>
     71452                                                <TileMatrix>5</TileMatrix>
     71453                                                <MinTileRow>11</MinTileRow>
     71454                                                <MaxTileRow>11</MaxTileRow>
     71455                                                <MinTileCol>15</MinTileCol>
     71456                                                <MaxTileCol>15</MaxTileCol>
     71457                                        </TileMatrixLimits>
     71458                                        <TileMatrixLimits>
     71459                                                <TileMatrix>6</TileMatrix>
     71460                                                <MinTileRow>22</MinTileRow>
     71461                                                <MaxTileRow>22</MaxTileRow>
     71462                                                <MinTileCol>31</MinTileCol>
     71463                                                <MaxTileCol>31</MaxTileCol>
     71464                                        </TileMatrixLimits>
     71465                                        <TileMatrixLimits>
     71466                                                <TileMatrix>7</TileMatrix>
     71467                                                <MinTileRow>44</MinTileRow>
     71468                                                <MaxTileRow>44</MaxTileRow>
     71469                                                <MinTileCol>63</MinTileCol>
     71470                                                <MaxTileCol>63</MaxTileCol>
     71471                                        </TileMatrixLimits>
     71472                                        <TileMatrixLimits>
     71473                                                <TileMatrix>8</TileMatrix>
     71474                                                <MinTileRow>89</MinTileRow>
     71475                                                <MaxTileRow>89</MaxTileRow>
     71476                                                <MinTileCol>126</MinTileCol>
     71477                                                <MaxTileCol>126</MaxTileCol>
     71478                                        </TileMatrixLimits>
     71479                                        <TileMatrixLimits>
     71480                                                <TileMatrix>9</TileMatrix>
     71481                                                <MinTileRow>179</MinTileRow>
     71482                                                <MaxTileRow>179</MaxTileRow>
     71483                                                <MinTileCol>252</MinTileCol>
     71484                                                <MaxTileCol>253</MaxTileCol>
     71485                                        </TileMatrixLimits>
     71486                                </TileMatrixSetLimits>
     71487                        </TileMatrixSetLink>
     71488                </Layer>
     71489                <Layer>
     71490                        <ows:Title>PLEIADES - 2013</ows:Title>
     71491                        <ows:Abstract>Agrégation des images Pleiades de l'année 2013</ows:Abstract>
     71492                        <ows:Keywords>
     71493                                <ows:Keyword>Images satellitaires</ows:Keyword>
     71494                        </ows:Keywords>
     71495                        <ows:WGS84BoundingBox>
     71496                                <ows:LowerCorner>-63.1702 -21.4097</ows:LowerCorner>
     71497                                <ows:UpperCorner>55.8741 51.9098</ows:UpperCorner>
     71498                        </ows:WGS84BoundingBox>
     71499                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2013</ows:Identifier>
     71500                        <Style isDefault="true">
     71501                                <ows:Title>Données Brutes</ows:Title>
     71502                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71503                                <ows:Keywords>
     71504                                        <ows:Keyword>Défaut</ows:Keyword>
     71505                                </ows:Keywords>
     71506                                <ows:Identifier>normal</ows:Identifier>
     71507                                <LegendURL format="image/jpeg" height="200"
     71508                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71509                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71510                        </Style>
     71511                        <Format>image/png</Format>
     71512                        <TileMatrixSetLink>
     71513                                <TileMatrixSet>PM</TileMatrixSet>
     71514                                <TileMatrixSetLimits>
     71515                                        <TileMatrixLimits>
     71516                                                <TileMatrix>0</TileMatrix>
     71517                                                <MinTileRow>0</MinTileRow>
     71518                                                <MaxTileRow>0</MaxTileRow>
     71519                                                <MinTileCol>0</MinTileCol>
     71520                                                <MaxTileCol>0</MaxTileCol>
     71521                                        </TileMatrixLimits>
     71522                                        <TileMatrixLimits>
     71523                                                <TileMatrix>1</TileMatrix>
     71524                                                <MinTileRow>0</MinTileRow>
     71525                                                <MaxTileRow>1</MaxTileRow>
     71526                                                <MinTileCol>0</MinTileCol>
     71527                                                <MaxTileCol>1</MaxTileCol>
     71528                                        </TileMatrixLimits>
     71529                                        <TileMatrixLimits>
     71530                                                <TileMatrix>10</TileMatrix>
     71531                                                <MinTileRow>342</MinTileRow>
     71532                                                <MaxTileRow>574</MaxTileRow>
     71533                                                <MinTileCol>332</MinTileCol>
     71534                                                <MaxTileCol>670</MaxTileCol>
     71535                                        </TileMatrixLimits>
     71536                                        <TileMatrixLimits>
     71537                                                <TileMatrix>11</TileMatrix>
     71538                                                <MinTileRow>685</MinTileRow>
     71539                                                <MaxTileRow>1148</MaxTileRow>
     71540                                                <MinTileCol>664</MinTileCol>
     71541                                                <MaxTileCol>1341</MaxTileCol>
     71542                                        </TileMatrixLimits>
     71543                                        <TileMatrixLimits>
     71544                                                <TileMatrix>12</TileMatrix>
     71545                                                <MinTileRow>1370</MinTileRow>
     71546                                                <MaxTileRow>2297</MaxTileRow>
     71547                                                <MinTileCol>1329</MinTileCol>
     71548                                                <MaxTileCol>2683</MaxTileCol>
     71549                                        </TileMatrixLimits>
     71550                                        <TileMatrixLimits>
     71551                                                <TileMatrix>13</TileMatrix>
     71552                                                <MinTileRow>2741</MinTileRow>
     71553                                                <MaxTileRow>4594</MaxTileRow>
     71554                                                <MinTileCol>2658</MinTileCol>
     71555                                                <MaxTileCol>5367</MaxTileCol>
     71556                                        </TileMatrixLimits>
     71557                                        <TileMatrixLimits>
     71558                                                <TileMatrix>14</TileMatrix>
     71559                                                <MinTileRow>5482</MinTileRow>
     71560                                                <MaxTileRow>9189</MaxTileRow>
     71561                                                <MinTileCol>5317</MinTileCol>
     71562                                                <MaxTileCol>10734</MaxTileCol>
     71563                                        </TileMatrixLimits>
     71564                                        <TileMatrixLimits>
     71565                                                <TileMatrix>15</TileMatrix>
     71566                                                <MinTileRow>10965</MinTileRow>
     71567                                                <MaxTileRow>18379</MaxTileRow>
     71568                                                <MinTileCol>10634</MinTileCol>
     71569                                                <MaxTileCol>21469</MaxTileCol>
     71570                                        </TileMatrixLimits>
     71571                                        <TileMatrixLimits>
     71572                                                <TileMatrix>16</TileMatrix>
     71573                                                <MinTileRow>21931</MinTileRow>
     71574                                                <MaxTileRow>36759</MaxTileRow>
     71575                                                <MinTileCol>21268</MinTileCol>
     71576                                                <MaxTileCol>42939</MaxTileCol>
     71577                                        </TileMatrixLimits>
     71578                                        <TileMatrixLimits>
     71579                                                <TileMatrix>17</TileMatrix>
     71580                                                <MinTileRow>43862</MinTileRow>
     71581                                                <MaxTileRow>73518</MaxTileRow>
     71582                                                <MinTileCol>42536</MinTileCol>
     71583                                                <MaxTileCol>85878</MaxTileCol>
     71584                                        </TileMatrixLimits>
     71585                                        <TileMatrixLimits>
     71586                                                <TileMatrix>18</TileMatrix>
     71587                                                <MinTileRow>87725</MinTileRow>
     71588                                                <MaxTileRow>147037</MaxTileRow>
     71589                                                <MinTileCol>85072</MinTileCol>
     71590                                                <MaxTileCol>171757</MaxTileCol>
     71591                                        </TileMatrixLimits>
     71592                                        <TileMatrixLimits>
     71593                                                <TileMatrix>2</TileMatrix>
     71594                                                <MinTileRow>1</MinTileRow>
     71595                                                <MaxTileRow>2</MaxTileRow>
     71596                                                <MinTileCol>1</MinTileCol>
     71597                                                <MaxTileCol>2</MaxTileCol>
     71598                                        </TileMatrixLimits>
     71599                                        <TileMatrixLimits>
     71600                                                <TileMatrix>3</TileMatrix>
     71601                                                <MinTileRow>2</MinTileRow>
     71602                                                <MaxTileRow>4</MaxTileRow>
     71603                                                <MinTileCol>2</MinTileCol>
     71604                                                <MaxTileCol>5</MaxTileCol>
     71605                                        </TileMatrixLimits>
     71606                                        <TileMatrixLimits>
     71607                                                <TileMatrix>4</TileMatrix>
     71608                                                <MinTileRow>5</MinTileRow>
     71609                                                <MaxTileRow>8</MaxTileRow>
     71610                                                <MinTileCol>5</MinTileCol>
     71611                                                <MaxTileCol>10</MaxTileCol>
     71612                                        </TileMatrixLimits>
     71613                                        <TileMatrixLimits>
     71614                                                <TileMatrix>5</TileMatrix>
     71615                                                <MinTileRow>10</MinTileRow>
     71616                                                <MaxTileRow>17</MaxTileRow>
     71617                                                <MinTileCol>10</MinTileCol>
     71618                                                <MaxTileCol>20</MaxTileCol>
     71619                                        </TileMatrixLimits>
     71620                                        <TileMatrixLimits>
     71621                                                <TileMatrix>6</TileMatrix>
     71622                                                <MinTileRow>21</MinTileRow>
     71623                                                <MaxTileRow>35</MaxTileRow>
     71624                                                <MinTileCol>20</MinTileCol>
     71625                                                <MaxTileCol>41</MaxTileCol>
     71626                                        </TileMatrixLimits>
     71627                                        <TileMatrixLimits>
     71628                                                <TileMatrix>7</TileMatrix>
     71629                                                <MinTileRow>42</MinTileRow>
     71630                                                <MaxTileRow>71</MaxTileRow>
     71631                                                <MinTileCol>41</MinTileCol>
     71632                                                <MaxTileCol>83</MaxTileCol>
     71633                                        </TileMatrixLimits>
     71634                                        <TileMatrixLimits>
     71635                                                <TileMatrix>8</TileMatrix>
     71636                                                <MinTileRow>85</MinTileRow>
     71637                                                <MaxTileRow>143</MaxTileRow>
     71638                                                <MinTileCol>83</MinTileCol>
     71639                                                <MaxTileCol>167</MaxTileCol>
     71640                                        </TileMatrixLimits>
     71641                                        <TileMatrixLimits>
     71642                                                <TileMatrix>9</TileMatrix>
     71643                                                <MinTileRow>171</MinTileRow>
     71644                                                <MaxTileRow>287</MaxTileRow>
     71645                                                <MinTileCol>166</MinTileCol>
     71646                                                <MaxTileCol>335</MaxTileCol>
     71647                                        </TileMatrixLimits>
     71648                                </TileMatrixSetLimits>
     71649                        </TileMatrixSetLink>
     71650                </Layer>
     71651                <Layer>
     71652                        <ows:Title>PLEIADES - 2014</ows:Title>
     71653                        <ows:Abstract>Agrégation des images Pleiades de l'année 2014</ows:Abstract>
     71654                        <ows:Keywords>
     71655                                <ows:Keyword>Images satellitaires</ows:Keyword>
     71656                        </ows:Keywords>
     71657                        <ows:WGS84BoundingBox>
     71658                                <ows:LowerCorner>-149.94 -21.3924</ows:LowerCorner>
     71659                                <ows:UpperCorner>55.8632 51.1477</ows:UpperCorner>
     71660                        </ows:WGS84BoundingBox>
     71661                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2014</ows:Identifier>
     71662                        <Style isDefault="true">
     71663                                <ows:Title>Données Brutes</ows:Title>
     71664                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71665                                <ows:Keywords>
     71666                                        <ows:Keyword>Défaut</ows:Keyword>
     71667                                </ows:Keywords>
     71668                                <ows:Identifier>normal</ows:Identifier>
     71669                                <LegendURL format="image/jpeg" height="200"
     71670                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71671                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71672                        </Style>
     71673                        <Format>image/png</Format>
     71674                        <TileMatrixSetLink>
     71675                                <TileMatrixSet>PM</TileMatrixSet>
     71676                                <TileMatrixSetLimits>
     71677                                        <TileMatrixLimits>
     71678                                                <TileMatrix>0</TileMatrix>
     71679                                                <MinTileRow>0</MinTileRow>
     71680                                                <MaxTileRow>0</MaxTileRow>
     71681                                                <MinTileCol>0</MinTileCol>
     71682                                                <MaxTileCol>0</MaxTileCol>
     71683                                        </TileMatrixLimits>
     71684                                        <TileMatrixLimits>
     71685                                                <TileMatrix>1</TileMatrix>
     71686                                                <MinTileRow>0</MinTileRow>
     71687                                                <MaxTileRow>1</MaxTileRow>
     71688                                                <MinTileCol>0</MinTileCol>
     71689                                                <MaxTileCol>1</MaxTileCol>
     71690                                        </TileMatrixLimits>
     71691                                        <TileMatrixLimits>
     71692                                                <TileMatrix>10</TileMatrix>
     71693                                                <MinTileRow>342</MinTileRow>
     71694                                                <MaxTileRow>574</MaxTileRow>
     71695                                                <MinTileCol>85</MinTileCol>
     71696                                                <MaxTileCol>670</MaxTileCol>
     71697                                        </TileMatrixLimits>
     71698                                        <TileMatrixLimits>
     71699                                                <TileMatrix>11</TileMatrix>
     71700                                                <MinTileRow>684</MinTileRow>
     71701                                                <MaxTileRow>1148</MaxTileRow>
     71702                                                <MinTileCol>171</MinTileCol>
     71703                                                <MaxTileCol>1341</MaxTileCol>
     71704                                        </TileMatrixLimits>
     71705                                        <TileMatrixLimits>
     71706                                                <TileMatrix>12</TileMatrix>
     71707                                                <MinTileRow>1368</MinTileRow>
     71708                                                <MaxTileRow>2297</MaxTileRow>
     71709                                                <MinTileCol>342</MinTileCol>
     71710                                                <MaxTileCol>2683</MaxTileCol>
     71711                                        </TileMatrixLimits>
     71712                                        <TileMatrixLimits>
     71713                                                <TileMatrix>13</TileMatrix>
     71714                                                <MinTileRow>2737</MinTileRow>
     71715                                                <MaxTileRow>4594</MaxTileRow>
     71716                                                <MinTileCol>684</MinTileCol>
     71717                                                <MaxTileCol>5367</MaxTileCol>
     71718                                        </TileMatrixLimits>
     71719                                        <TileMatrixLimits>
     71720                                                <TileMatrix>14</TileMatrix>
     71721                                                <MinTileRow>5474</MinTileRow>
     71722                                                <MaxTileRow>9188</MaxTileRow>
     71723                                                <MinTileCol>1368</MinTileCol>
     71724                                                <MaxTileCol>10734</MaxTileCol>
     71725                                        </TileMatrixLimits>
     71726                                        <TileMatrixLimits>
     71727                                                <TileMatrix>15</TileMatrix>
     71728                                                <MinTileRow>10948</MinTileRow>
     71729                                                <MaxTileRow>18377</MaxTileRow>
     71730                                                <MinTileCol>2736</MinTileCol>
     71731                                                <MaxTileCol>21468</MaxTileCol>
     71732                                        </TileMatrixLimits>
     71733                                        <TileMatrixLimits>
     71734                                                <TileMatrix>16</TileMatrix>
     71735                                                <MinTileRow>21897</MinTileRow>
     71736                                                <MaxTileRow>36755</MaxTileRow>
     71737                                                <MinTileCol>5472</MinTileCol>
     71738                                                <MaxTileCol>42937</MaxTileCol>
     71739                                        </TileMatrixLimits>
     71740                                        <TileMatrixLimits>
     71741                                                <TileMatrix>17</TileMatrix>
     71742                                                <MinTileRow>43794</MinTileRow>
     71743                                                <MaxTileRow>73511</MaxTileRow>
     71744                                                <MinTileCol>10945</MinTileCol>
     71745                                                <MaxTileCol>85875</MaxTileCol>
     71746                                        </TileMatrixLimits>
     71747                                        <TileMatrixLimits>
     71748                                                <TileMatrix>18</TileMatrix>
     71749                                                <MinTileRow>87588</MinTileRow>
     71750                                                <MaxTileRow>147023</MaxTileRow>
     71751                                                <MinTileCol>21890</MinTileCol>
     71752                                                <MaxTileCol>171750</MaxTileCol>
     71753                                        </TileMatrixLimits>
     71754                                        <TileMatrixLimits>
     71755                                                <TileMatrix>2</TileMatrix>
     71756                                                <MinTileRow>1</MinTileRow>
     71757                                                <MaxTileRow>2</MaxTileRow>
     71758                                                <MinTileCol>0</MinTileCol>
     71759                                                <MaxTileCol>2</MaxTileCol>
     71760                                        </TileMatrixLimits>
     71761                                        <TileMatrixLimits>
     71762                                                <TileMatrix>3</TileMatrix>
     71763                                                <MinTileRow>2</MinTileRow>
     71764                                                <MaxTileRow>4</MaxTileRow>
     71765                                                <MinTileCol>0</MinTileCol>
     71766                                                <MaxTileCol>5</MaxTileCol>
     71767                                        </TileMatrixLimits>
     71768                                        <TileMatrixLimits>
     71769                                                <TileMatrix>4</TileMatrix>
     71770                                                <MinTileRow>5</MinTileRow>
     71771                                                <MaxTileRow>8</MaxTileRow>
     71772                                                <MinTileCol>1</MinTileCol>
     71773                                                <MaxTileCol>10</MaxTileCol>
     71774                                        </TileMatrixLimits>
     71775                                        <TileMatrixLimits>
     71776                                                <TileMatrix>5</TileMatrix>
     71777                                                <MinTileRow>10</MinTileRow>
     71778                                                <MaxTileRow>17</MaxTileRow>
     71779                                                <MinTileCol>2</MinTileCol>
     71780                                                <MaxTileCol>20</MaxTileCol>
     71781                                        </TileMatrixLimits>
     71782                                        <TileMatrixLimits>
     71783                                                <TileMatrix>6</TileMatrix>
     71784                                                <MinTileRow>21</MinTileRow>
     71785                                                <MaxTileRow>35</MaxTileRow>
     71786                                                <MinTileCol>5</MinTileCol>
     71787                                                <MaxTileCol>41</MaxTileCol>
     71788                                        </TileMatrixLimits>
     71789                                        <TileMatrixLimits>
     71790                                                <TileMatrix>7</TileMatrix>
     71791                                                <MinTileRow>42</MinTileRow>
     71792                                                <MaxTileRow>71</MaxTileRow>
     71793                                                <MinTileCol>10</MinTileCol>
     71794                                                <MaxTileCol>83</MaxTileCol>
     71795                                        </TileMatrixLimits>
     71796                                        <TileMatrixLimits>
     71797                                                <TileMatrix>8</TileMatrix>
     71798                                                <MinTileRow>85</MinTileRow>
     71799                                                <MaxTileRow>143</MaxTileRow>
     71800                                                <MinTileCol>21</MinTileCol>
     71801                                                <MaxTileCol>167</MaxTileCol>
     71802                                        </TileMatrixLimits>
     71803                                        <TileMatrixLimits>
     71804                                                <TileMatrix>9</TileMatrix>
     71805                                                <MinTileRow>171</MinTileRow>
     71806                                                <MaxTileRow>287</MaxTileRow>
     71807                                                <MinTileCol>42</MinTileCol>
     71808                                                <MaxTileCol>335</MaxTileCol>
     71809                                        </TileMatrixLimits>
     71810                                </TileMatrixSetLimits>
     71811                        </TileMatrixSetLink>
     71812                </Layer>
     71813                <Layer>
     71814                        <ows:Title>PLEIADES - 2015</ows:Title>
     71815                        <ows:Abstract>Agrégation des images Pleiades de l'année 2015</ows:Abstract>
     71816                        <ows:Keywords>
     71817                                <ows:Keyword>Images satellitaires</ows:Keyword>
     71818                        </ows:Keywords>
     71819                        <ows:WGS84BoundingBox>
     71820                                <ows:LowerCorner>-2.58003 43.1306</ows:LowerCorner>
     71821                                <ows:UpperCorner>6.38925 49.3404</ows:UpperCorner>
     71822                        </ows:WGS84BoundingBox>
     71823                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.PLEIADES.2015</ows:Identifier>
     71824                        <Style isDefault="true">
     71825                                <ows:Title>Données Brutes</ows:Title>
     71826                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71827                                <ows:Keywords>
     71828                                        <ows:Keyword>Défaut</ows:Keyword>
     71829                                </ows:Keywords>
     71830                                <ows:Identifier>normal</ows:Identifier>
     71831                                <LegendURL format="image/jpeg" height="200"
     71832                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71833                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71834                        </Style>
     71835                        <Format>image/png</Format>
     71836                        <TileMatrixSetLink>
     71837                                <TileMatrixSet>PM</TileMatrixSet>
     71838                                <TileMatrixSetLimits>
     71839                                        <TileMatrixLimits>
     71840                                                <TileMatrix>0</TileMatrix>
     71841                                                <MinTileRow>0</MinTileRow>
     71842                                                <MaxTileRow>0</MaxTileRow>
     71843                                                <MinTileCol>0</MinTileCol>
     71844                                                <MaxTileCol>0</MaxTileCol>
     71845                                        </TileMatrixLimits>
     71846                                        <TileMatrixLimits>
     71847                                                <TileMatrix>1</TileMatrix>
     71848                                                <MinTileRow>0</MinTileRow>
     71849                                                <MaxTileRow>0</MaxTileRow>
     71850                                                <MinTileCol>0</MinTileCol>
     71851                                                <MaxTileCol>1</MaxTileCol>
     71852                                        </TileMatrixLimits>
     71853                                        <TileMatrixLimits>
     71854                                                <TileMatrix>10</TileMatrix>
     71855                                                <MinTileRow>350</MinTileRow>
     71856                                                <MaxTileRow>375</MaxTileRow>
     71857                                                <MinTileCol>504</MinTileCol>
     71858                                                <MaxTileCol>530</MaxTileCol>
     71859                                        </TileMatrixLimits>
     71860                                        <TileMatrixLimits>
     71861                                                <TileMatrix>11</TileMatrix>
     71862                                                <MinTileRow>700</MinTileRow>
     71863                                                <MaxTileRow>751</MaxTileRow>
     71864                                                <MinTileCol>1009</MinTileCol>
     71865                                                <MaxTileCol>1060</MaxTileCol>
     71866                                        </TileMatrixLimits>
     71867                                        <TileMatrixLimits>
     71868                                                <TileMatrix>12</TileMatrix>
     71869                                                <MinTileRow>1400</MinTileRow>
     71870                                                <MaxTileRow>1503</MaxTileRow>
     71871                                                <MinTileCol>2018</MinTileCol>
     71872                                                <MaxTileCol>2120</MaxTileCol>
     71873                                        </TileMatrixLimits>
     71874                                        <TileMatrixLimits>
     71875                                                <TileMatrix>13</TileMatrix>
     71876                                                <MinTileRow>2801</MinTileRow>
     71877                                                <MaxTileRow>3006</MaxTileRow>
     71878                                                <MinTileCol>4037</MinTileCol>
     71879                                                <MaxTileCol>4241</MaxTileCol>
     71880                                        </TileMatrixLimits>
     71881                                        <TileMatrixLimits>
     71882                                                <TileMatrix>14</TileMatrix>
     71883                                                <MinTileRow>5602</MinTileRow>
     71884                                                <MaxTileRow>6012</MaxTileRow>
     71885                                                <MinTileCol>8075</MinTileCol>
     71886                                                <MaxTileCol>8482</MaxTileCol>
     71887                                        </TileMatrixLimits>
     71888                                        <TileMatrixLimits>
     71889                                                <TileMatrix>15</TileMatrix>
     71890                                                <MinTileRow>11205</MinTileRow>
     71891                                                <MaxTileRow>12024</MaxTileRow>
     71892                                                <MinTileCol>16150</MinTileCol>
     71893                                                <MaxTileCol>16964</MaxTileCol>
     71894                                        </TileMatrixLimits>
     71895                                        <TileMatrixLimits>
     71896                                                <TileMatrix>16</TileMatrix>
     71897                                                <MinTileRow>22411</MinTileRow>
     71898                                                <MaxTileRow>24048</MaxTileRow>
     71899                                                <MinTileCol>32300</MinTileCol>
     71900                                                <MaxTileCol>33929</MaxTileCol>
     71901                                        </TileMatrixLimits>
     71902                                        <TileMatrixLimits>
     71903                                                <TileMatrix>17</TileMatrix>
     71904                                                <MinTileRow>44823</MinTileRow>
     71905                                                <MaxTileRow>48097</MaxTileRow>
     71906                                                <MinTileCol>64600</MinTileCol>
     71907                                                <MaxTileCol>67858</MaxTileCol>
     71908                                        </TileMatrixLimits>
     71909                                        <TileMatrixLimits>
     71910                                                <TileMatrix>18</TileMatrix>
     71911                                                <MinTileRow>89646</MinTileRow>
     71912                                                <MaxTileRow>96194</MaxTileRow>
     71913                                                <MinTileCol>129200</MinTileCol>
     71914                                                <MaxTileCol>135716</MaxTileCol>
     71915                                        </TileMatrixLimits>
     71916                                        <TileMatrixLimits>
     71917                                                <TileMatrix>2</TileMatrix>
     71918                                                <MinTileRow>1</MinTileRow>
     71919                                                <MaxTileRow>1</MaxTileRow>
     71920                                                <MinTileCol>1</MinTileCol>
     71921                                                <MaxTileCol>2</MaxTileCol>
     71922                                        </TileMatrixLimits>
     71923                                        <TileMatrixLimits>
     71924                                                <TileMatrix>3</TileMatrix>
     71925                                                <MinTileRow>2</MinTileRow>
     71926                                                <MaxTileRow>2</MaxTileRow>
     71927                                                <MinTileCol>3</MinTileCol>
     71928                                                <MaxTileCol>4</MaxTileCol>
     71929                                        </TileMatrixLimits>
     71930                                        <TileMatrixLimits>
     71931                                                <TileMatrix>4</TileMatrix>
     71932                                                <MinTileRow>5</MinTileRow>
     71933                                                <MaxTileRow>5</MaxTileRow>
     71934                                                <MinTileCol>7</MinTileCol>
     71935                                                <MaxTileCol>8</MaxTileCol>
     71936                                        </TileMatrixLimits>
     71937                                        <TileMatrixLimits>
     71938                                                <TileMatrix>5</TileMatrix>
     71939                                                <MinTileRow>10</MinTileRow>
     71940                                                <MaxTileRow>11</MaxTileRow>
     71941                                                <MinTileCol>15</MinTileCol>
     71942                                                <MaxTileCol>16</MaxTileCol>
     71943                                        </TileMatrixLimits>
     71944                                        <TileMatrixLimits>
     71945                                                <TileMatrix>6</TileMatrix>
     71946                                                <MinTileRow>21</MinTileRow>
     71947                                                <MaxTileRow>23</MaxTileRow>
     71948                                                <MinTileCol>31</MinTileCol>
     71949                                                <MaxTileCol>33</MaxTileCol>
     71950                                        </TileMatrixLimits>
     71951                                        <TileMatrixLimits>
     71952                                                <TileMatrix>7</TileMatrix>
     71953                                                <MinTileRow>43</MinTileRow>
     71954                                                <MaxTileRow>46</MaxTileRow>
     71955                                                <MinTileCol>63</MinTileCol>
     71956                                                <MaxTileCol>66</MaxTileCol>
     71957                                        </TileMatrixLimits>
     71958                                        <TileMatrixLimits>
     71959                                                <TileMatrix>8</TileMatrix>
     71960                                                <MinTileRow>87</MinTileRow>
     71961                                                <MaxTileRow>93</MaxTileRow>
     71962                                                <MinTileCol>126</MinTileCol>
     71963                                                <MaxTileCol>132</MaxTileCol>
     71964                                        </TileMatrixLimits>
     71965                                        <TileMatrixLimits>
     71966                                                <TileMatrix>9</TileMatrix>
     71967                                                <MinTileRow>175</MinTileRow>
     71968                                                <MaxTileRow>187</MaxTileRow>
     71969                                                <MinTileCol>252</MinTileCol>
     71970                                                <MaxTileCol>265</MaxTileCol>
     71971                                        </TileMatrixLimits>
     71972                                </TileMatrixSetLimits>
     71973                        </TileMatrixSetLink>
     71974                </Layer>
     71975                <Layer>
     71976                        <ows:Title>Couche RapidEye 2010</ows:Title>
     71977                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     71978                        <ows:Keywords>
     71979                                <ows:Keyword>Photographies</ows:Keyword>
     71980                        </ows:Keywords>
     71981                        <ows:WGS84BoundingBox>
     71982                                <ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner>
     71983                                <ows:UpperCorner>10.961 50.9218</ows:UpperCorner>
     71984                        </ows:WGS84BoundingBox>
     71985                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2010</ows:Identifier>
     71986                        <Style isDefault="true">
     71987                                <ows:Title>Données Brutes</ows:Title>
     71988                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     71989                                <ows:Keywords>
     71990                                        <ows:Keyword>Défaut</ows:Keyword>
     71991                                </ows:Keywords>
     71992                                <ows:Identifier>normal</ows:Identifier>
     71993                                <LegendURL format="image/jpeg" height="200"
     71994                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     71995                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     71996                        </Style>
     71997                        <Format>image/jpeg</Format>
     71998                        <TileMatrixSetLink>
     71999                                <TileMatrixSet>PM</TileMatrixSet>
     72000                                <TileMatrixSetLimits>
     72001                                        <TileMatrixLimits>
     72002                                                <TileMatrix>0</TileMatrix>
     72003                                                <MinTileRow>0</MinTileRow>
     72004                                                <MaxTileRow>0</MaxTileRow>
     72005                                                <MinTileCol>0</MinTileCol>
     72006                                                <MaxTileCol>0</MaxTileCol>
     72007                                        </TileMatrixLimits>
     72008                                        <TileMatrixLimits>
     72009                                                <TileMatrix>1</TileMatrix>
     72010                                                <MinTileRow>0</MinTileRow>
     72011                                                <MaxTileRow>0</MaxTileRow>
     72012                                                <MinTileCol>0</MinTileCol>
     72013                                                <MaxTileCol>1</MaxTileCol>
     72014                                        </TileMatrixLimits>
     72015                                        <TileMatrixLimits>
     72016                                                <TileMatrix>10</TileMatrix>
     72017                                                <MinTileRow>342</MinTileRow>
     72018                                                <MaxTileRow>382</MaxTileRow>
     72019                                                <MinTileCol>496</MinTileCol>
     72020                                                <MaxTileCol>539</MaxTileCol>
     72021                                        </TileMatrixLimits>
     72022                                        <TileMatrixLimits>
     72023                                                <TileMatrix>11</TileMatrix>
     72024                                                <MinTileRow>684</MinTileRow>
     72025                                                <MaxTileRow>765</MaxTileRow>
     72026                                                <MinTileCol>993</MinTileCol>
     72027                                                <MaxTileCol>1079</MaxTileCol>
     72028                                        </TileMatrixLimits>
     72029                                        <TileMatrixLimits>
     72030                                                <TileMatrix>12</TileMatrix>
     72031                                                <MinTileRow>1368</MinTileRow>
     72032                                                <MaxTileRow>1531</MaxTileRow>
     72033                                                <MinTileCol>1986</MinTileCol>
     72034                                                <MaxTileCol>2159</MaxTileCol>
     72035                                        </TileMatrixLimits>
     72036                                        <TileMatrixLimits>
     72037                                                <TileMatrix>13</TileMatrix>
     72038                                                <MinTileRow>2736</MinTileRow>
     72039                                                <MaxTileRow>3063</MaxTileRow>
     72040                                                <MinTileCol>3972</MinTileCol>
     72041                                                <MaxTileCol>4319</MaxTileCol>
     72042                                        </TileMatrixLimits>
     72043                                        <TileMatrixLimits>
     72044                                                <TileMatrix>14</TileMatrix>
     72045                                                <MinTileRow>5472</MinTileRow>
     72046                                                <MaxTileRow>6126</MaxTileRow>
     72047                                                <MinTileCol>7945</MinTileCol>
     72048                                                <MaxTileCol>8638</MaxTileCol>
     72049                                        </TileMatrixLimits>
     72050                                        <TileMatrixLimits>
     72051                                                <TileMatrix>15</TileMatrix>
     72052                                                <MinTileRow>10944</MinTileRow>
     72053                                                <MaxTileRow>12253</MaxTileRow>
     72054                                                <MinTileCol>15890</MinTileCol>
     72055                                                <MaxTileCol>17277</MaxTileCol>
     72056                                        </TileMatrixLimits>
     72057                                        <TileMatrixLimits>
     72058                                                <TileMatrix>2</TileMatrix>
     72059                                                <MinTileRow>1</MinTileRow>
     72060                                                <MaxTileRow>1</MaxTileRow>
     72061                                                <MinTileCol>1</MinTileCol>
     72062                                                <MaxTileCol>2</MaxTileCol>
     72063                                        </TileMatrixLimits>
     72064                                        <TileMatrixLimits>
     72065                                                <TileMatrix>3</TileMatrix>
     72066                                                <MinTileRow>2</MinTileRow>
     72067                                                <MaxTileRow>2</MaxTileRow>
     72068                                                <MinTileCol>3</MinTileCol>
     72069                                                <MaxTileCol>4</MaxTileCol>
     72070                                        </TileMatrixLimits>
     72071                                        <TileMatrixLimits>
     72072                                                <TileMatrix>4</TileMatrix>
     72073                                                <MinTileRow>5</MinTileRow>
     72074                                                <MaxTileRow>5</MaxTileRow>
     72075                                                <MinTileCol>7</MinTileCol>
     72076                                                <MaxTileCol>8</MaxTileCol>
     72077                                        </TileMatrixLimits>
     72078                                        <TileMatrixLimits>
     72079                                                <TileMatrix>5</TileMatrix>
     72080                                                <MinTileRow>10</MinTileRow>
     72081                                                <MaxTileRow>11</MaxTileRow>
     72082                                                <MinTileCol>15</MinTileCol>
     72083                                                <MaxTileCol>16</MaxTileCol>
     72084                                        </TileMatrixLimits>
     72085                                        <TileMatrixLimits>
     72086                                                <TileMatrix>6</TileMatrix>
     72087                                                <MinTileRow>21</MinTileRow>
     72088                                                <MaxTileRow>23</MaxTileRow>
     72089                                                <MinTileCol>31</MinTileCol>
     72090                                                <MaxTileCol>33</MaxTileCol>
     72091                                        </TileMatrixLimits>
     72092                                        <TileMatrixLimits>
     72093                                                <TileMatrix>7</TileMatrix>
     72094                                                <MinTileRow>42</MinTileRow>
     72095                                                <MaxTileRow>47</MaxTileRow>
     72096                                                <MinTileCol>62</MinTileCol>
     72097                                                <MaxTileCol>67</MaxTileCol>
     72098                                        </TileMatrixLimits>
     72099                                        <TileMatrixLimits>
     72100                                                <TileMatrix>8</TileMatrix>
     72101                                                <MinTileRow>85</MinTileRow>
     72102                                                <MaxTileRow>95</MaxTileRow>
     72103                                                <MinTileCol>124</MinTileCol>
     72104                                                <MaxTileCol>134</MaxTileCol>
     72105                                        </TileMatrixLimits>
     72106                                        <TileMatrixLimits>
     72107                                                <TileMatrix>9</TileMatrix>
     72108                                                <MinTileRow>171</MinTileRow>
     72109                                                <MaxTileRow>191</MaxTileRow>
     72110                                                <MinTileCol>248</MinTileCol>
     72111                                                <MaxTileCol>269</MaxTileCol>
     72112                                        </TileMatrixLimits>
     72113                                </TileMatrixSetLimits>
     72114                        </TileMatrixSetLink>
     72115                </Layer>
     72116                <Layer>
     72117                        <ows:Title>RAPIDEYE - 2011</ows:Title>
     72118                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     72119                        <ows:Keywords>
     72120                                <ows:Keyword>Photographies</ows:Keyword>
     72121                        </ows:Keywords>
     72122                        <ows:WGS84BoundingBox>
     72123                                <ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner>
     72124                                <ows:UpperCorner>10.961 51.1752</ows:UpperCorner>
     72125                        </ows:WGS84BoundingBox>
     72126                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.RAPIDEYE.2011</ows:Identifier>
     72127                        <Style isDefault="true">
     72128                                <ows:Title>Données Brutes</ows:Title>
     72129                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72130                                <ows:Keywords>
     72131                                        <ows:Keyword>Défaut</ows:Keyword>
     72132                                </ows:Keywords>
     72133                                <ows:Identifier>normal</ows:Identifier>
     72134                                <LegendURL format="image/jpeg" height="200"
     72135                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72136                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72137                        </Style>
     72138                        <Format>image/jpeg</Format>
     72139                        <TileMatrixSetLink>
     72140                                <TileMatrixSet>PM</TileMatrixSet>
     72141                                <TileMatrixSetLimits>
     72142                                        <TileMatrixLimits>
     72143                                                <TileMatrix>0</TileMatrix>
     72144                                                <MinTileRow>0</MinTileRow>
     72145                                                <MaxTileRow>0</MaxTileRow>
     72146                                                <MinTileCol>0</MinTileCol>
     72147                                                <MaxTileCol>0</MaxTileCol>
     72148                                        </TileMatrixLimits>
     72149                                        <TileMatrixLimits>
     72150                                                <TileMatrix>1</TileMatrix>
     72151                                                <MinTileRow>0</MinTileRow>
     72152                                                <MaxTileRow>0</MaxTileRow>
     72153                                                <MinTileCol>0</MinTileCol>
     72154                                                <MaxTileCol>1</MaxTileCol>
     72155                                        </TileMatrixLimits>
     72156                                        <TileMatrixLimits>
     72157                                                <TileMatrix>10</TileMatrix>
     72158                                                <MinTileRow>342</MinTileRow>
     72159                                                <MaxTileRow>383</MaxTileRow>
     72160                                                <MinTileCol>496</MinTileCol>
     72161                                                <MaxTileCol>540</MaxTileCol>
     72162                                        </TileMatrixLimits>
     72163                                        <TileMatrixLimits>
     72164                                                <TileMatrix>11</TileMatrix>
     72165                                                <MinTileRow>684</MinTileRow>
     72166                                                <MaxTileRow>767</MaxTileRow>
     72167                                                <MinTileCol>993</MinTileCol>
     72168                                                <MaxTileCol>1080</MaxTileCol>
     72169                                        </TileMatrixLimits>
     72170                                        <TileMatrixLimits>
     72171                                                <TileMatrix>12</TileMatrix>
     72172                                                <MinTileRow>1368</MinTileRow>
     72173                                                <MaxTileRow>1534</MaxTileRow>
     72174                                                <MinTileCol>1986</MinTileCol>
     72175                                                <MaxTileCol>2160</MaxTileCol>
     72176                                        </TileMatrixLimits>
     72177                                        <TileMatrixLimits>
     72178                                                <TileMatrix>13</TileMatrix>
     72179                                                <MinTileRow>2736</MinTileRow>
     72180                                                <MaxTileRow>3068</MaxTileRow>
     72181                                                <MinTileCol>3972</MinTileCol>
     72182                                                <MaxTileCol>4321</MaxTileCol>
     72183                                        </TileMatrixLimits>
     72184                                        <TileMatrixLimits>
     72185                                                <TileMatrix>14</TileMatrix>
     72186                                                <MinTileRow>5472</MinTileRow>
     72187                                                <MaxTileRow>6137</MaxTileRow>
     72188                                                <MinTileCol>7945</MinTileCol>
     72189                                                <MaxTileCol>8642</MaxTileCol>
     72190                                        </TileMatrixLimits>
     72191                                        <TileMatrixLimits>
     72192                                                <TileMatrix>15</TileMatrix>
     72193                                                <MinTileRow>10944</MinTileRow>
     72194                                                <MaxTileRow>12275</MaxTileRow>
     72195                                                <MinTileCol>15890</MinTileCol>
     72196                                                <MaxTileCol>17285</MaxTileCol>
     72197                                        </TileMatrixLimits>
     72198                                        <TileMatrixLimits>
     72199                                                <TileMatrix>2</TileMatrix>
     72200                                                <MinTileRow>1</MinTileRow>
     72201                                                <MaxTileRow>1</MaxTileRow>
     72202                                                <MinTileCol>1</MinTileCol>
     72203                                                <MaxTileCol>2</MaxTileCol>
     72204                                        </TileMatrixLimits>
     72205                                        <TileMatrixLimits>
     72206                                                <TileMatrix>3</TileMatrix>
     72207                                                <MinTileRow>2</MinTileRow>
     72208                                                <MaxTileRow>2</MaxTileRow>
     72209                                                <MinTileCol>3</MinTileCol>
     72210                                                <MaxTileCol>4</MaxTileCol>
     72211                                        </TileMatrixLimits>
     72212                                        <TileMatrixLimits>
     72213                                                <TileMatrix>4</TileMatrix>
     72214                                                <MinTileRow>5</MinTileRow>
     72215                                                <MaxTileRow>5</MaxTileRow>
     72216                                                <MinTileCol>7</MinTileCol>
     72217                                                <MaxTileCol>8</MaxTileCol>
     72218                                        </TileMatrixLimits>
     72219                                        <TileMatrixLimits>
     72220                                                <TileMatrix>5</TileMatrix>
     72221                                                <MinTileRow>10</MinTileRow>
     72222                                                <MaxTileRow>11</MaxTileRow>
     72223                                                <MinTileCol>15</MinTileCol>
     72224                                                <MaxTileCol>16</MaxTileCol>
     72225                                        </TileMatrixLimits>
     72226                                        <TileMatrixLimits>
     72227                                                <TileMatrix>6</TileMatrix>
     72228                                                <MinTileRow>21</MinTileRow>
     72229                                                <MaxTileRow>23</MaxTileRow>
     72230                                                <MinTileCol>31</MinTileCol>
     72231                                                <MaxTileCol>33</MaxTileCol>
     72232                                        </TileMatrixLimits>
     72233                                        <TileMatrixLimits>
     72234                                                <TileMatrix>7</TileMatrix>
     72235                                                <MinTileRow>42</MinTileRow>
     72236                                                <MaxTileRow>47</MaxTileRow>
     72237                                                <MinTileCol>62</MinTileCol>
     72238                                                <MaxTileCol>67</MaxTileCol>
     72239                                        </TileMatrixLimits>
     72240                                        <TileMatrixLimits>
     72241                                                <TileMatrix>8</TileMatrix>
     72242                                                <MinTileRow>85</MinTileRow>
     72243                                                <MaxTileRow>95</MaxTileRow>
     72244                                                <MinTileCol>124</MinTileCol>
     72245                                                <MaxTileCol>135</MaxTileCol>
     72246                                        </TileMatrixLimits>
     72247                                        <TileMatrixLimits>
     72248                                                <TileMatrix>9</TileMatrix>
     72249                                                <MinTileRow>171</MinTileRow>
     72250                                                <MaxTileRow>191</MaxTileRow>
     72251                                                <MinTileCol>248</MinTileCol>
     72252                                                <MaxTileCol>270</MaxTileCol>
     72253                                        </TileMatrixLimits>
     72254                                </TileMatrixSetLimits>
     72255                        </TileMatrixSetLink>
     72256                </Layer>
     72257                <Layer>
     72258                        <ows:Title>Millésime Spot 2013</ows:Title>
     72259                        <ows:Abstract>Agrégation des images Spot de l'année 2013</ows:Abstract>
     72260                        <ows:Keywords>
     72261                                <ows:Keyword>Photographies</ows:Keyword>
     72262                        </ows:Keywords>
     72263                        <ows:WGS84BoundingBox>
     72264                                <ows:LowerCorner>0.563585 44.8809</ows:LowerCorner>
     72265                                <ows:UpperCorner>4.29191 50.3879</ows:UpperCorner>
     72266                        </ows:WGS84BoundingBox>
     72267                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2013</ows:Identifier>
     72268                        <Style isDefault="true">
     72269                                <ows:Title>Données Brutes</ows:Title>
     72270                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72271                                <ows:Keywords>
     72272                                        <ows:Keyword>Défaut</ows:Keyword>
     72273                                </ows:Keywords>
     72274                                <ows:Identifier>normal</ows:Identifier>
     72275                                <LegendURL format="image/jpeg" height="200"
     72276                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72277                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72278                        </Style>
     72279                        <Format>image/jpeg</Format>
     72280                        <TileMatrixSetLink>
     72281                                <TileMatrixSet>PM</TileMatrixSet>
     72282                                <TileMatrixSetLimits>
     72283                                        <TileMatrixLimits>
     72284                                                <TileMatrix>0</TileMatrix>
     72285                                                <MinTileRow>0</MinTileRow>
     72286                                                <MaxTileRow>0</MaxTileRow>
     72287                                                <MinTileCol>0</MinTileCol>
     72288                                                <MaxTileCol>0</MaxTileCol>
     72289                                        </TileMatrixLimits>
     72290                                        <TileMatrixLimits>
     72291                                                <TileMatrix>1</TileMatrix>
     72292                                                <MinTileRow>0</MinTileRow>
     72293                                                <MaxTileRow>0</MaxTileRow>
     72294                                                <MinTileCol>1</MinTileCol>
     72295                                                <MaxTileCol>1</MaxTileCol>
     72296                                        </TileMatrixLimits>
     72297                                        <TileMatrixLimits>
     72298                                                <TileMatrix>10</TileMatrix>
     72299                                                <MinTileRow>345</MinTileRow>
     72300                                                <MaxTileRow>368</MaxTileRow>
     72301                                                <MinTileCol>513</MinTileCol>
     72302                                                <MaxTileCol>524</MaxTileCol>
     72303                                        </TileMatrixLimits>
     72304                                        <TileMatrixLimits>
     72305                                                <TileMatrix>11</TileMatrix>
     72306                                                <MinTileRow>691</MinTileRow>
     72307                                                <MaxTileRow>737</MaxTileRow>
     72308                                                <MinTileCol>1027</MinTileCol>
     72309                                                <MaxTileCol>1048</MaxTileCol>
     72310                                        </TileMatrixLimits>
     72311                                        <TileMatrixLimits>
     72312                                                <TileMatrix>12</TileMatrix>
     72313                                                <MinTileRow>1382</MinTileRow>
     72314                                                <MaxTileRow>1475</MaxTileRow>
     72315                                                <MinTileCol>2054</MinTileCol>
     72316                                                <MaxTileCol>2096</MaxTileCol>
     72317                                        </TileMatrixLimits>
     72318                                        <TileMatrixLimits>
     72319                                                <TileMatrix>13</TileMatrix>
     72320                                                <MinTileRow>2764</MinTileRow>
     72321                                                <MaxTileRow>2950</MaxTileRow>
     72322                                                <MinTileCol>4109</MinTileCol>
     72323                                                <MaxTileCol>4193</MaxTileCol>
     72324                                        </TileMatrixLimits>
     72325                                        <TileMatrixLimits>
     72326                                                <TileMatrix>14</TileMatrix>
     72327                                                <MinTileRow>5528</MinTileRow>
     72328                                                <MaxTileRow>5900</MaxTileRow>
     72329                                                <MinTileCol>8219</MinTileCol>
     72330                                                <MaxTileCol>8386</MaxTileCol>
     72331                                        </TileMatrixLimits>
     72332                                        <TileMatrixLimits>
     72333                                                <TileMatrix>15</TileMatrix>
     72334                                                <MinTileRow>11057</MinTileRow>
     72335                                                <MaxTileRow>11800</MaxTileRow>
     72336                                                <MinTileCol>16438</MinTileCol>
     72337                                                <MaxTileCol>16773</MaxTileCol>
     72338                                        </TileMatrixLimits>
     72339                                        <TileMatrixLimits>
     72340                                                <TileMatrix>16</TileMatrix>
     72341                                                <MinTileRow>22115</MinTileRow>
     72342                                                <MaxTileRow>23600</MaxTileRow>
     72343                                                <MinTileCol>32876</MinTileCol>
     72344                                                <MaxTileCol>33547</MaxTileCol>
     72345                                        </TileMatrixLimits>
     72346                                        <TileMatrixLimits>
     72347                                                <TileMatrix>17</TileMatrix>
     72348                                                <MinTileRow>44231</MinTileRow>
     72349                                                <MaxTileRow>47201</MaxTileRow>
     72350                                                <MinTileCol>65752</MinTileCol>
     72351                                                <MaxTileCol>67094</MaxTileCol>
     72352                                        </TileMatrixLimits>
     72353                                        <TileMatrixLimits>
     72354                                                <TileMatrix>2</TileMatrix>
     72355                                                <MinTileRow>1</MinTileRow>
     72356                                                <MaxTileRow>1</MaxTileRow>
     72357                                                <MinTileCol>2</MinTileCol>
     72358                                                <MaxTileCol>2</MaxTileCol>
     72359                                        </TileMatrixLimits>
     72360                                        <TileMatrixLimits>
     72361                                                <TileMatrix>3</TileMatrix>
     72362                                                <MinTileRow>2</MinTileRow>
     72363                                                <MaxTileRow>2</MaxTileRow>
     72364                                                <MinTileCol>4</MinTileCol>
     72365                                                <MaxTileCol>4</MaxTileCol>
     72366                                        </TileMatrixLimits>
     72367                                        <TileMatrixLimits>
     72368                                                <TileMatrix>4</TileMatrix>
     72369                                                <MinTileRow>5</MinTileRow>
     72370                                                <MaxTileRow>5</MaxTileRow>
     72371                                                <MinTileCol>8</MinTileCol>
     72372                                                <MaxTileCol>8</MaxTileCol>
     72373                                        </TileMatrixLimits>
     72374                                        <TileMatrixLimits>
     72375                                                <TileMatrix>5</TileMatrix>
     72376                                                <MinTileRow>10</MinTileRow>
     72377                                                <MaxTileRow>11</MaxTileRow>
     72378                                                <MinTileCol>16</MinTileCol>
     72379                                                <MaxTileCol>16</MaxTileCol>
     72380                                        </TileMatrixLimits>
     72381                                        <TileMatrixLimits>
     72382                                                <TileMatrix>6</TileMatrix>
     72383                                                <MinTileRow>21</MinTileRow>
     72384                                                <MaxTileRow>23</MaxTileRow>
     72385                                                <MinTileCol>32</MinTileCol>
     72386                                                <MaxTileCol>32</MaxTileCol>
     72387                                        </TileMatrixLimits>
     72388                                        <TileMatrixLimits>
     72389                                                <TileMatrix>7</TileMatrix>
     72390                                                <MinTileRow>43</MinTileRow>
     72391                                                <MaxTileRow>46</MaxTileRow>
     72392                                                <MinTileCol>64</MinTileCol>
     72393                                                <MaxTileCol>65</MaxTileCol>
     72394                                        </TileMatrixLimits>
     72395                                        <TileMatrixLimits>
     72396                                                <TileMatrix>8</TileMatrix>
     72397                                                <MinTileRow>86</MinTileRow>
     72398                                                <MaxTileRow>92</MaxTileRow>
     72399                                                <MinTileCol>128</MinTileCol>
     72400                                                <MaxTileCol>131</MaxTileCol>
     72401                                        </TileMatrixLimits>
     72402                                        <TileMatrixLimits>
     72403                                                <TileMatrix>9</TileMatrix>
     72404                                                <MinTileRow>172</MinTileRow>
     72405                                                <MaxTileRow>184</MaxTileRow>
     72406                                                <MinTileCol>256</MinTileCol>
     72407                                                <MaxTileCol>262</MaxTileCol>
     72408                                        </TileMatrixLimits>
     72409                                </TileMatrixSetLimits>
     72410                        </TileMatrixSetLink>
     72411                </Layer>
     72412                <Layer>
     72413                        <ows:Title>SPOT 6 - 2014</ows:Title>
     72414                        <ows:Abstract>Agrégation des images Spot de l'année 2014</ows:Abstract>
     72415                        <ows:Keywords>
     72416                                <ows:Keyword>Photographies</ows:Keyword>
     72417                        </ows:Keywords>
     72418                        <ows:WGS84BoundingBox>
     72419                                <ows:LowerCorner>-5.23913 41.3101</ows:LowerCorner>
     72420                                <ows:UpperCorner>9.69656 51.106</ows:UpperCorner>
     72421                        </ows:WGS84BoundingBox>
     72422                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2014</ows:Identifier>
     72423                        <Style isDefault="true">
     72424                                <ows:Title>Données Brutes</ows:Title>
     72425                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72426                                <ows:Keywords>
     72427                                        <ows:Keyword>Défaut</ows:Keyword>
     72428                                </ows:Keywords>
     72429                                <ows:Identifier>normal</ows:Identifier>
     72430                                <LegendURL format="image/jpeg" height="200"
     72431                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72432                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72433                        </Style>
     72434                        <Format>image/jpeg</Format>
     72435                        <TileMatrixSetLink>
     72436                                <TileMatrixSet>PM</TileMatrixSet>
     72437                                <TileMatrixSetLimits>
     72438                                        <TileMatrixLimits>
     72439                                                <TileMatrix>0</TileMatrix>
     72440                                                <MinTileRow>0</MinTileRow>
     72441                                                <MaxTileRow>0</MaxTileRow>
     72442                                                <MinTileCol>0</MinTileCol>
     72443                                                <MaxTileCol>0</MaxTileCol>
     72444                                        </TileMatrixLimits>
     72445                                        <TileMatrixLimits>
     72446                                                <TileMatrix>1</TileMatrix>
     72447                                                <MinTileRow>0</MinTileRow>
     72448                                                <MaxTileRow>0</MaxTileRow>
     72449                                                <MinTileCol>0</MinTileCol>
     72450                                                <MaxTileCol>1</MaxTileCol>
     72451                                        </TileMatrixLimits>
     72452                                        <TileMatrixLimits>
     72453                                                <TileMatrix>10</TileMatrix>
     72454                                                <MinTileRow>342</MinTileRow>
     72455                                                <MaxTileRow>382</MaxTileRow>
     72456                                                <MinTileCol>497</MinTileCol>
     72457                                                <MaxTileCol>539</MaxTileCol>
     72458                                        </TileMatrixLimits>
     72459                                        <TileMatrixLimits>
     72460                                                <TileMatrix>11</TileMatrix>
     72461                                                <MinTileRow>684</MinTileRow>
     72462                                                <MaxTileRow>765</MaxTileRow>
     72463                                                <MinTileCol>994</MinTileCol>
     72464                                                <MaxTileCol>1078</MaxTileCol>
     72465                                        </TileMatrixLimits>
     72466                                        <TileMatrixLimits>
     72467                                                <TileMatrix>12</TileMatrix>
     72468                                                <MinTileRow>1369</MinTileRow>
     72469                                                <MaxTileRow>1530</MaxTileRow>
     72470                                                <MinTileCol>1988</MinTileCol>
     72471                                                <MaxTileCol>2157</MaxTileCol>
     72472                                        </TileMatrixLimits>
     72473                                        <TileMatrixLimits>
     72474                                                <TileMatrix>13</TileMatrix>
     72475                                                <MinTileRow>2738</MinTileRow>
     72476                                                <MaxTileRow>3061</MaxTileRow>
     72477                                                <MinTileCol>3977</MinTileCol>
     72478                                                <MaxTileCol>4314</MaxTileCol>
     72479                                        </TileMatrixLimits>
     72480                                        <TileMatrixLimits>
     72481                                                <TileMatrix>14</TileMatrix>
     72482                                                <MinTileRow>5476</MinTileRow>
     72483                                                <MaxTileRow>6123</MaxTileRow>
     72484                                                <MinTileCol>7955</MinTileCol>
     72485                                                <MaxTileCol>8629</MaxTileCol>
     72486                                        </TileMatrixLimits>
     72487                                        <TileMatrixLimits>
     72488                                                <TileMatrix>15</TileMatrix>
     72489                                                <MinTileRow>10953</MinTileRow>
     72490                                                <MaxTileRow>12246</MaxTileRow>
     72491                                                <MinTileCol>15911</MinTileCol>
     72492                                                <MaxTileCol>17258</MaxTileCol>
     72493                                        </TileMatrixLimits>
     72494                                        <TileMatrixLimits>
     72495                                                <TileMatrix>16</TileMatrix>
     72496                                                <MinTileRow>21907</MinTileRow>
     72497                                                <MaxTileRow>24493</MaxTileRow>
     72498                                                <MinTileCol>31823</MinTileCol>
     72499                                                <MaxTileCol>34516</MaxTileCol>
     72500                                        </TileMatrixLimits>
     72501                                        <TileMatrixLimits>
     72502                                                <TileMatrix>17</TileMatrix>
     72503                                                <MinTileRow>43815</MinTileRow>
     72504                                                <MaxTileRow>48986</MaxTileRow>
     72505                                                <MinTileCol>63646</MinTileCol>
     72506                                                <MaxTileCol>69033</MaxTileCol>
     72507                                        </TileMatrixLimits>
     72508                                        <TileMatrixLimits>
     72509                                                <TileMatrix>2</TileMatrix>
     72510                                                <MinTileRow>1</MinTileRow>
     72511                                                <MaxTileRow>1</MaxTileRow>
     72512                                                <MinTileCol>1</MinTileCol>
     72513                                                <MaxTileCol>2</MaxTileCol>
     72514                                        </TileMatrixLimits>
     72515                                        <TileMatrixLimits>
     72516                                                <TileMatrix>3</TileMatrix>
     72517                                                <MinTileRow>2</MinTileRow>
     72518                                                <MaxTileRow>2</MaxTileRow>
     72519                                                <MinTileCol>3</MinTileCol>
     72520                                                <MaxTileCol>4</MaxTileCol>
     72521                                        </TileMatrixLimits>
     72522                                        <TileMatrixLimits>
     72523                                                <TileMatrix>4</TileMatrix>
     72524                                                <MinTileRow>5</MinTileRow>
     72525                                                <MaxTileRow>5</MaxTileRow>
     72526                                                <MinTileCol>7</MinTileCol>
     72527                                                <MaxTileCol>8</MaxTileCol>
     72528                                        </TileMatrixLimits>
     72529                                        <TileMatrixLimits>
     72530                                                <TileMatrix>5</TileMatrix>
     72531                                                <MinTileRow>10</MinTileRow>
     72532                                                <MaxTileRow>11</MaxTileRow>
     72533                                                <MinTileCol>15</MinTileCol>
     72534                                                <MaxTileCol>16</MaxTileCol>
     72535                                        </TileMatrixLimits>
     72536                                        <TileMatrixLimits>
     72537                                                <TileMatrix>6</TileMatrix>
     72538                                                <MinTileRow>21</MinTileRow>
     72539                                                <MaxTileRow>23</MaxTileRow>
     72540                                                <MinTileCol>31</MinTileCol>
     72541                                                <MaxTileCol>33</MaxTileCol>
     72542                                        </TileMatrixLimits>
     72543                                        <TileMatrixLimits>
     72544                                                <TileMatrix>7</TileMatrix>
     72545                                                <MinTileRow>42</MinTileRow>
     72546                                                <MaxTileRow>47</MaxTileRow>
     72547                                                <MinTileCol>62</MinTileCol>
     72548                                                <MaxTileCol>67</MaxTileCol>
     72549                                        </TileMatrixLimits>
     72550                                        <TileMatrixLimits>
     72551                                                <TileMatrix>8</TileMatrix>
     72552                                                <MinTileRow>85</MinTileRow>
     72553                                                <MaxTileRow>95</MaxTileRow>
     72554                                                <MinTileCol>124</MinTileCol>
     72555                                                <MaxTileCol>134</MaxTileCol>
     72556                                        </TileMatrixLimits>
     72557                                        <TileMatrixLimits>
     72558                                                <TileMatrix>9</TileMatrix>
     72559                                                <MinTileRow>171</MinTileRow>
     72560                                                <MaxTileRow>191</MaxTileRow>
     72561                                                <MinTileCol>248</MinTileCol>
     72562                                                <MaxTileCol>269</MaxTileCol>
     72563                                        </TileMatrixLimits>
     72564                                </TileMatrixSetLimits>
     72565                        </TileMatrixSetLink>
     72566                </Layer>
     72567                <Layer>
     72568                        <ows:Title>Orthophotographies Geosud de FRANCE-2015-LOT05 2015</ows:Title>
     72569                        <ows:Abstract>Orthophotographies satellites de FRANCE-2015-LOT05 issues du projet Geosud.</ows:Abstract>
     72570                        <ows:Keywords>
     72571                                <ows:Keyword>Images satellitaires</ows:Keyword>
     72572                        </ows:Keywords>
     72573                        <ows:WGS84BoundingBox>
     72574                                <ows:LowerCorner>-5.36 41.303</ows:LowerCorner>
     72575                                <ows:UpperCorner>9.72838 51.106</ows:UpperCorner>
     72576                        </ows:WGS84BoundingBox>
     72577                        <ows:Identifier>ORTHOIMAGERY.ORTHO-SAT.SPOT.2015</ows:Identifier>
     72578                        <Style isDefault="true">
     72579                                <ows:Title>Données Brutes</ows:Title>
     72580                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72581                                <ows:Keywords>
     72582                                        <ows:Keyword>Défaut</ows:Keyword>
     72583                                </ows:Keywords>
     72584                                <ows:Identifier>normal</ows:Identifier>
     72585                                <LegendURL format="image/jpeg" height="200"
     72586                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72587                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72588                        </Style>
     72589                        <Format>image/jpeg</Format>
     72590                        <TileMatrixSetLink>
     72591                                <TileMatrixSet>PM</TileMatrixSet>
     72592                                <TileMatrixSetLimits>
     72593                                        <TileMatrixLimits>
     72594                                                <TileMatrix>0</TileMatrix>
     72595                                                <MinTileRow>0</MinTileRow>
     72596                                                <MaxTileRow>0</MaxTileRow>
     72597                                                <MinTileCol>0</MinTileCol>
     72598                                                <MaxTileCol>0</MaxTileCol>
     72599                                        </TileMatrixLimits>
     72600                                        <TileMatrixLimits>
     72601                                                <TileMatrix>1</TileMatrix>
     72602                                                <MinTileRow>0</MinTileRow>
     72603                                                <MaxTileRow>0</MaxTileRow>
     72604                                                <MinTileCol>0</MinTileCol>
     72605                                                <MaxTileCol>1</MaxTileCol>
     72606                                        </TileMatrixLimits>
     72607                                        <TileMatrixLimits>
     72608                                                <TileMatrix>10</TileMatrix>
     72609                                                <MinTileRow>342</MinTileRow>
     72610                                                <MaxTileRow>382</MaxTileRow>
     72611                                                <MinTileCol>497</MinTileCol>
     72612                                                <MaxTileCol>539</MaxTileCol>
     72613                                        </TileMatrixLimits>
     72614                                        <TileMatrixLimits>
     72615                                                <TileMatrix>11</TileMatrix>
     72616                                                <MinTileRow>684</MinTileRow>
     72617                                                <MaxTileRow>765</MaxTileRow>
     72618                                                <MinTileCol>994</MinTileCol>
     72619                                                <MaxTileCol>1078</MaxTileCol>
     72620                                        </TileMatrixLimits>
     72621                                        <TileMatrixLimits>
     72622                                                <TileMatrix>12</TileMatrix>
     72623                                                <MinTileRow>1369</MinTileRow>
     72624                                                <MaxTileRow>1530</MaxTileRow>
     72625                                                <MinTileCol>1988</MinTileCol>
     72626                                                <MaxTileCol>2157</MaxTileCol>
     72627                                        </TileMatrixLimits>
     72628                                        <TileMatrixLimits>
     72629                                                <TileMatrix>13</TileMatrix>
     72630                                                <MinTileRow>2738</MinTileRow>
     72631                                                <MaxTileRow>3061</MaxTileRow>
     72632                                                <MinTileCol>3977</MinTileCol>
     72633                                                <MaxTileCol>4315</MaxTileCol>
     72634                                        </TileMatrixLimits>
     72635                                        <TileMatrixLimits>
     72636                                                <TileMatrix>14</TileMatrix>
     72637                                                <MinTileRow>5476</MinTileRow>
     72638                                                <MaxTileRow>6123</MaxTileRow>
     72639                                                <MinTileCol>7955</MinTileCol>
     72640                                                <MaxTileCol>8630</MaxTileCol>
     72641                                        </TileMatrixLimits>
     72642                                        <TileMatrixLimits>
     72643                                                <TileMatrix>15</TileMatrix>
     72644                                                <MinTileRow>10953</MinTileRow>
     72645                                                <MaxTileRow>12247</MaxTileRow>
     72646                                                <MinTileCol>15911</MinTileCol>
     72647                                                <MaxTileCol>17261</MaxTileCol>
     72648                                        </TileMatrixLimits>
     72649                                        <TileMatrixLimits>
     72650                                                <TileMatrix>16</TileMatrix>
     72651                                                <MinTileRow>21907</MinTileRow>
     72652                                                <MaxTileRow>24494</MaxTileRow>
     72653                                                <MinTileCol>31822</MinTileCol>
     72654                                                <MaxTileCol>34523</MaxTileCol>
     72655                                        </TileMatrixLimits>
     72656                                        <TileMatrixLimits>
     72657                                                <TileMatrix>17</TileMatrix>
     72658                                                <MinTileRow>43815</MinTileRow>
     72659                                                <MaxTileRow>48989</MaxTileRow>
     72660                                                <MinTileCol>63645</MinTileCol>
     72661                                                <MaxTileCol>69047</MaxTileCol>
     72662                                        </TileMatrixLimits>
     72663                                        <TileMatrixLimits>
     72664                                                <TileMatrix>2</TileMatrix>
     72665                                                <MinTileRow>1</MinTileRow>
     72666                                                <MaxTileRow>1</MaxTileRow>
     72667                                                <MinTileCol>1</MinTileCol>
     72668                                                <MaxTileCol>2</MaxTileCol>
     72669                                        </TileMatrixLimits>
     72670                                        <TileMatrixLimits>
     72671                                                <TileMatrix>3</TileMatrix>
     72672                                                <MinTileRow>2</MinTileRow>
     72673                                                <MaxTileRow>2</MaxTileRow>
     72674                                                <MinTileCol>3</MinTileCol>
     72675                                                <MaxTileCol>4</MaxTileCol>
     72676                                        </TileMatrixLimits>
     72677                                        <TileMatrixLimits>
     72678                                                <TileMatrix>4</TileMatrix>
     72679                                                <MinTileRow>5</MinTileRow>
     72680                                                <MaxTileRow>5</MaxTileRow>
     72681                                                <MinTileCol>7</MinTileCol>
     72682                                                <MaxTileCol>8</MaxTileCol>
     72683                                        </TileMatrixLimits>
     72684                                        <TileMatrixLimits>
     72685                                                <TileMatrix>5</TileMatrix>
     72686                                                <MinTileRow>10</MinTileRow>
     72687                                                <MaxTileRow>11</MaxTileRow>
     72688                                                <MinTileCol>15</MinTileCol>
     72689                                                <MaxTileCol>16</MaxTileCol>
     72690                                        </TileMatrixLimits>
     72691                                        <TileMatrixLimits>
     72692                                                <TileMatrix>6</TileMatrix>
     72693                                                <MinTileRow>21</MinTileRow>
     72694                                                <MaxTileRow>23</MaxTileRow>
     72695                                                <MinTileCol>31</MinTileCol>
     72696                                                <MaxTileCol>33</MaxTileCol>
     72697                                        </TileMatrixLimits>
     72698                                        <TileMatrixLimits>
     72699                                                <TileMatrix>7</TileMatrix>
     72700                                                <MinTileRow>42</MinTileRow>
     72701                                                <MaxTileRow>47</MaxTileRow>
     72702                                                <MinTileCol>62</MinTileCol>
     72703                                                <MaxTileCol>67</MaxTileCol>
     72704                                        </TileMatrixLimits>
     72705                                        <TileMatrixLimits>
     72706                                                <TileMatrix>8</TileMatrix>
     72707                                                <MinTileRow>85</MinTileRow>
     72708                                                <MaxTileRow>95</MaxTileRow>
     72709                                                <MinTileCol>124</MinTileCol>
     72710                                                <MaxTileCol>134</MaxTileCol>
     72711                                        </TileMatrixLimits>
     72712                                        <TileMatrixLimits>
     72713                                                <TileMatrix>9</TileMatrix>
     72714                                                <MinTileRow>171</MinTileRow>
     72715                                                <MaxTileRow>191</MaxTileRow>
     72716                                                <MinTileCol>248</MinTileCol>
     72717                                                <MaxTileCol>269</MaxTileCol>
     72718                                        </TileMatrixLimits>
     72719                                </TileMatrixSetLimits>
     72720                        </TileMatrixSetLink>
     72721                </Layer>
     72722                <Layer>
     72723                        <ows:Title>Photographies aériennes</ows:Title>
     72724                        <ows:Abstract>Photographies aériennes</ows:Abstract>
     72725                        <ows:Keywords>
     72726                                <ows:Keyword>Photographies</ows:Keyword>
     72727                        </ows:Keywords>
     72728                        <ows:WGS84BoundingBox>
     72729                                <ows:LowerCorner>-180 -86</ows:LowerCorner>
     72730                                <ows:UpperCorner>180 84</ows:UpperCorner>
     72731                        </ows:WGS84BoundingBox>
     72732                        <ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS</ows:Identifier>
     72733                        <Style isDefault="true">
     72734                                <ows:Title>Données Brutes</ows:Title>
     72735                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72736                                <ows:Keywords>
     72737                                        <ows:Keyword>Défaut</ows:Keyword>
     72738                                </ows:Keywords>
     72739                                <ows:Identifier>normal</ows:Identifier>
     72740                                <LegendURL format="image/jpeg" height="200"
     72741                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72742                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72743                        </Style>
     72744                        <Format>image/jpeg</Format>
     72745                        <TileMatrixSetLink>
     72746                                <TileMatrixSet>PM</TileMatrixSet>
     72747                                <TileMatrixSetLimits>
     72748                                        <TileMatrixLimits>
     72749                                                <TileMatrix>0</TileMatrix>
     72750                                                <MinTileRow>0</MinTileRow>
     72751                                                <MaxTileRow>1</MaxTileRow>
     72752                                                <MinTileCol>0</MinTileCol>
     72753                                                <MaxTileCol>1</MaxTileCol>
     72754                                        </TileMatrixLimits>
     72755                                        <TileMatrixLimits>
     72756                                                <TileMatrix>1</TileMatrix>
     72757                                                <MinTileRow>0</MinTileRow>
     72758                                                <MaxTileRow>2</MaxTileRow>
     72759                                                <MinTileCol>0</MinTileCol>
     72760                                                <MaxTileCol>2</MaxTileCol>
     72761                                        </TileMatrixLimits>
     72762                                        <TileMatrixLimits>
     72763                                                <TileMatrix>10</TileMatrix>
     72764                                                <MinTileRow>31</MinTileRow>
     72765                                                <MaxTileRow>1024</MaxTileRow>
     72766                                                <MinTileCol>0</MinTileCol>
     72767                                                <MaxTileCol>1024</MaxTileCol>
     72768                                        </TileMatrixLimits>
     72769                                        <TileMatrixLimits>
     72770                                                <TileMatrix>11</TileMatrix>
     72771                                                <MinTileRow>62</MinTileRow>
     72772                                                <MaxTileRow>2048</MaxTileRow>
     72773                                                <MinTileCol>0</MinTileCol>
     72774                                                <MaxTileCol>2048</MaxTileCol>
     72775                                        </TileMatrixLimits>
     72776                                        <TileMatrixLimits>
     72777                                                <TileMatrix>12</TileMatrix>
     72778                                                <MinTileRow>125</MinTileRow>
     72779                                                <MaxTileRow>4096</MaxTileRow>
     72780                                                <MinTileCol>0</MinTileCol>
     72781                                                <MaxTileCol>4096</MaxTileCol>
     72782                                        </TileMatrixLimits>
     72783                                        <TileMatrixLimits>
     72784                                                <TileMatrix>13</TileMatrix>
     72785                                                <MinTileRow>2739</MinTileRow>
     72786                                                <MaxTileRow>4628</MaxTileRow>
     72787                                                <MinTileCol>41</MinTileCol>
     72788                                                <MaxTileCol>7917</MaxTileCol>
     72789                                        </TileMatrixLimits>
     72790                                        <TileMatrixLimits>
     72791                                                <TileMatrix>14</TileMatrix>
     72792                                                <MinTileRow>5478</MinTileRow>
     72793                                                <MaxTileRow>9256</MaxTileRow>
     72794                                                <MinTileCol>82</MinTileCol>
     72795                                                <MaxTileCol>15835</MaxTileCol>
     72796                                        </TileMatrixLimits>
     72797                                        <TileMatrixLimits>
     72798                                                <TileMatrix>15</TileMatrix>
     72799                                                <MinTileRow>10956</MinTileRow>
     72800                                                <MaxTileRow>18513</MaxTileRow>
     72801                                                <MinTileCol>165</MinTileCol>
     72802                                                <MaxTileCol>31670</MaxTileCol>
     72803                                        </TileMatrixLimits>
     72804                                        <TileMatrixLimits>
     72805                                                <TileMatrix>16</TileMatrix>
     72806                                                <MinTileRow>21912</MinTileRow>
     72807                                                <MaxTileRow>37026</MaxTileRow>
     72808                                                <MinTileCol>330</MinTileCol>
     72809                                                <MaxTileCol>63341</MaxTileCol>
     72810                                        </TileMatrixLimits>
     72811                                        <TileMatrixLimits>
     72812                                                <TileMatrix>17</TileMatrix>
     72813                                                <MinTileRow>43825</MinTileRow>
     72814                                                <MaxTileRow>74052</MaxTileRow>
     72815                                                <MinTileCol>660</MinTileCol>
     72816                                                <MaxTileCol>126683</MaxTileCol>
     72817                                        </TileMatrixLimits>
     72818                                        <TileMatrixLimits>
     72819                                                <TileMatrix>18</TileMatrix>
     72820                                                <MinTileRow>87651</MinTileRow>
     72821                                                <MaxTileRow>148105</MaxTileRow>
     72822                                                <MinTileCol>1320</MinTileCol>
     72823                                                <MaxTileCol>253366</MaxTileCol>
     72824                                        </TileMatrixLimits>
     72825                                        <TileMatrixLimits>
     72826                                                <TileMatrix>19</TileMatrix>
     72827                                                <MinTileRow>175302</MinTileRow>
     72828                                                <MaxTileRow>294060</MaxTileRow>
     72829                                                <MinTileCol>170159</MinTileCol>
     72830                                                <MaxTileCol>343473</MaxTileCol>
     72831                                        </TileMatrixLimits>
     72832                                        <TileMatrixLimits>
     72833                                                <TileMatrix>2</TileMatrix>
     72834                                                <MinTileRow>0</MinTileRow>
     72835                                                <MaxTileRow>4</MaxTileRow>
     72836                                                <MinTileCol>0</MinTileCol>
     72837                                                <MaxTileCol>4</MaxTileCol>
     72838                                        </TileMatrixLimits>
     72839                                        <TileMatrixLimits>
     72840                                                <TileMatrix>3</TileMatrix>
     72841                                                <MinTileRow>0</MinTileRow>
     72842                                                <MaxTileRow>8</MaxTileRow>
     72843                                                <MinTileCol>0</MinTileCol>
     72844                                                <MaxTileCol>8</MaxTileCol>
     72845                                        </TileMatrixLimits>
     72846                                        <TileMatrixLimits>
     72847                                                <TileMatrix>4</TileMatrix>
     72848                                                <MinTileRow>0</MinTileRow>
     72849                                                <MaxTileRow>16</MaxTileRow>
     72850                                                <MinTileCol>0</MinTileCol>
     72851                                                <MaxTileCol>16</MaxTileCol>
     72852                                        </TileMatrixLimits>
     72853                                        <TileMatrixLimits>
     72854                                                <TileMatrix>5</TileMatrix>
     72855                                                <MinTileRow>0</MinTileRow>
     72856                                                <MaxTileRow>32</MaxTileRow>
     72857                                                <MinTileCol>0</MinTileCol>
     72858                                                <MaxTileCol>32</MaxTileCol>
     72859                                        </TileMatrixLimits>
     72860                                        <TileMatrixLimits>
     72861                                                <TileMatrix>6</TileMatrix>
     72862                                                <MinTileRow>1</MinTileRow>
     72863                                                <MaxTileRow>64</MaxTileRow>
     72864                                                <MinTileCol>0</MinTileCol>
     72865                                                <MaxTileCol>64</MaxTileCol>
     72866                                        </TileMatrixLimits>
     72867                                        <TileMatrixLimits>
     72868                                                <TileMatrix>7</TileMatrix>
     72869                                                <MinTileRow>3</MinTileRow>
     72870                                                <MaxTileRow>128</MaxTileRow>
     72871                                                <MinTileCol>0</MinTileCol>
     72872                                                <MaxTileCol>128</MaxTileCol>
     72873                                        </TileMatrixLimits>
     72874                                        <TileMatrixLimits>
     72875                                                <TileMatrix>8</TileMatrix>
     72876                                                <MinTileRow>7</MinTileRow>
     72877                                                <MaxTileRow>256</MaxTileRow>
     72878                                                <MinTileCol>0</MinTileCol>
     72879                                                <MaxTileCol>256</MaxTileCol>
     72880                                        </TileMatrixLimits>
     72881                                        <TileMatrixLimits>
     72882                                                <TileMatrix>9</TileMatrix>
     72883                                                <MinTileRow>15</MinTileRow>
     72884                                                <MaxTileRow>512</MaxTileRow>
     72885                                                <MinTileCol>0</MinTileCol>
     72886                                                <MaxTileCol>512</MaxTileCol>
     72887                                        </TileMatrixLimits>
     72888                                </TileMatrixSetLimits>
     72889                        </TileMatrixSetLink>
     72890                </Layer>
     72891                <Layer>
     72892                        <ows:Title>Orthophotographies Geosud de RESTE-MIDPY 2013</ows:Title>
     72893                        <ows:Abstract>Orthophotographies satellites de RESTE-MIDPY issues du projet Geosud.</ows:Abstract>
     72894                        <ows:Keywords>
     72895                                <ows:Keyword>Photographies</ows:Keyword>
     72896                        </ows:Keywords>
     72897                        <ows:WGS84BoundingBox>
     72898                                <ows:LowerCorner>0.153356 42.8709</ows:LowerCorner>
     72899                                <ows:UpperCorner>0.431872 43.0755</ows:UpperCorner>
     72900                        </ows:WGS84BoundingBox>
     72901                        <ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS.GEOSUD</ows:Identifier>
     72902                        <Style isDefault="true">
     72903                                <ows:Title>Données Brutes</ows:Title>
     72904                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     72905                                <ows:Keywords>
     72906                                        <ows:Keyword>Défaut</ows:Keyword>
     72907                                </ows:Keywords>
     72908                                <ows:Identifier>normal</ows:Identifier>
     72909                                <LegendURL format="image/jpeg" height="200"
     72910                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     72911                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     72912                        </Style>
     72913                        <Format>image/jpeg</Format>
     72914                        <TileMatrixSetLink>
     72915                                <TileMatrixSet>PM</TileMatrixSet>
     72916                                <TileMatrixSetLimits>
     72917                                        <TileMatrixLimits>
     72918                                                <TileMatrix>0</TileMatrix>
     72919                                                <MinTileRow>0</MinTileRow>
     72920                                                <MaxTileRow>0</MaxTileRow>
     72921                                                <MinTileCol>0</MinTileCol>
     72922                                                <MaxTileCol>0</MaxTileCol>
     72923                                        </TileMatrixLimits>
     72924                                        <TileMatrixLimits>
     72925                                                <TileMatrix>1</TileMatrix>
     72926                                                <MinTileRow>0</MinTileRow>
     72927                                                <MaxTileRow>0</MaxTileRow>
     72928                                                <MinTileCol>1</MinTileCol>
     72929                                                <MaxTileCol>1</MaxTileCol>
     72930                                        </TileMatrixLimits>
     72931                                        <TileMatrixLimits>
     72932                                                <TileMatrix>10</TileMatrix>
     72933                                                <MinTileRow>375</MinTileRow>
     72934                                                <MaxTileRow>376</MaxTileRow>
     72935                                                <MinTileCol>512</MinTileCol>
     72936                                                <MaxTileCol>513</MaxTileCol>
     72937                                        </TileMatrixLimits>
     72938                                        <TileMatrixLimits>
     72939                                                <TileMatrix>11</TileMatrix>
     72940                                                <MinTileRow>751</MinTileRow>
     72941                                                <MaxTileRow>753</MaxTileRow>
     72942                                                <MinTileCol>1024</MinTileCol>
     72943                                                <MaxTileCol>1026</MaxTileCol>
     72944                                        </TileMatrixLimits>
     72945                                        <TileMatrixLimits>
     72946                                                <TileMatrix>12</TileMatrix>
     72947                                                <MinTileRow>1503</MinTileRow>
     72948                                                <MaxTileRow>1506</MaxTileRow>
     72949                                                <MinTileCol>2049</MinTileCol>
     72950                                                <MaxTileCol>2052</MaxTileCol>
     72951                                        </TileMatrixLimits>
     72952                                        <TileMatrixLimits>
     72953                                                <TileMatrix>13</TileMatrix>
     72954                                                <MinTileRow>3007</MinTileRow>
     72955                                                <MaxTileRow>3013</MaxTileRow>
     72956                                                <MinTileCol>4099</MinTileCol>
     72957                                                <MaxTileCol>4105</MaxTileCol>
     72958                                        </TileMatrixLimits>
     72959                                        <TileMatrixLimits>
     72960                                                <TileMatrix>14</TileMatrix>
     72961                                                <MinTileRow>6015</MinTileRow>
     72962                                                <MaxTileRow>6027</MaxTileRow>
     72963                                                <MinTileCol>8198</MinTileCol>
     72964                                                <MaxTileCol>8211</MaxTileCol>
     72965                                        </TileMatrixLimits>
     72966                                        <TileMatrixLimits>
     72967                                                <TileMatrix>15</TileMatrix>
     72968                                                <MinTileRow>12031</MinTileRow>
     72969                                                <MaxTileRow>12055</MaxTileRow>
     72970                                                <MinTileCol>16397</MinTileCol>
     72971                                                <MaxTileCol>16422</MaxTileCol>
     72972                                        </TileMatrixLimits>
     72973                                        <TileMatrixLimits>
     72974                                                <TileMatrix>16</TileMatrix>
     72975                                                <MinTileRow>24062</MinTileRow>
     72976                                                <MaxTileRow>24111</MaxTileRow>
     72977                                                <MinTileCol>32795</MinTileCol>
     72978                                                <MaxTileCol>32845</MaxTileCol>
     72979                                        </TileMatrixLimits>
     72980                                        <TileMatrixLimits>
     72981                                                <TileMatrix>17</TileMatrix>
     72982                                                <MinTileRow>48124</MinTileRow>
     72983                                                <MaxTileRow>48223</MaxTileRow>
     72984                                                <MinTileCol>65591</MinTileCol>
     72985                                                <MaxTileCol>65690</MaxTileCol>
     72986                                        </TileMatrixLimits>
     72987                                        <TileMatrixLimits>
     72988                                                <TileMatrix>18</TileMatrix>
     72989                                                <MinTileRow>96249</MinTileRow>
     72990                                                <MaxTileRow>96447</MaxTileRow>
     72991                                                <MinTileCol>131183</MinTileCol>
     72992                                                <MaxTileCol>131381</MaxTileCol>
     72993                                        </TileMatrixLimits>
     72994                                        <TileMatrixLimits>
     72995                                                <TileMatrix>2</TileMatrix>
     72996                                                <MinTileRow>1</MinTileRow>
     72997                                                <MaxTileRow>1</MaxTileRow>
     72998                                                <MinTileCol>2</MinTileCol>
     72999                                                <MaxTileCol>2</MaxTileCol>
     73000                                        </TileMatrixLimits>
     73001                                        <TileMatrixLimits>
     73002                                                <TileMatrix>3</TileMatrix>
     73003                                                <MinTileRow>2</MinTileRow>
     73004                                                <MaxTileRow>2</MaxTileRow>
     73005                                                <MinTileCol>4</MinTileCol>
     73006                                                <MaxTileCol>4</MaxTileCol>
     73007                                        </TileMatrixLimits>
     73008                                        <TileMatrixLimits>
     73009                                                <TileMatrix>4</TileMatrix>
     73010                                                <MinTileRow>5</MinTileRow>
     73011                                                <MaxTileRow>5</MaxTileRow>
     73012                                                <MinTileCol>8</MinTileCol>
     73013                                                <MaxTileCol>8</MaxTileCol>
     73014                                        </TileMatrixLimits>
     73015                                        <TileMatrixLimits>
     73016                                                <TileMatrix>5</TileMatrix>
     73017                                                <MinTileRow>11</MinTileRow>
     73018                                                <MaxTileRow>11</MaxTileRow>
     73019                                                <MinTileCol>16</MinTileCol>
     73020                                                <MaxTileCol>16</MaxTileCol>
     73021                                        </TileMatrixLimits>
     73022                                        <TileMatrixLimits>
     73023                                                <TileMatrix>6</TileMatrix>
     73024                                                <MinTileRow>23</MinTileRow>
     73025                                                <MaxTileRow>23</MaxTileRow>
     73026                                                <MinTileCol>32</MinTileCol>
     73027                                                <MaxTileCol>32</MaxTileCol>
     73028                                        </TileMatrixLimits>
     73029                                        <TileMatrixLimits>
     73030                                                <TileMatrix>7</TileMatrix>
     73031                                                <MinTileRow>46</MinTileRow>
     73032                                                <MaxTileRow>47</MaxTileRow>
     73033                                                <MinTileCol>64</MinTileCol>
     73034                                                <MaxTileCol>64</MaxTileCol>
     73035                                        </TileMatrixLimits>
     73036                                        <TileMatrixLimits>
     73037                                                <TileMatrix>8</TileMatrix>
     73038                                                <MinTileRow>93</MinTileRow>
     73039                                                <MaxTileRow>94</MaxTileRow>
     73040                                                <MinTileCol>128</MinTileCol>
     73041                                                <MaxTileCol>128</MaxTileCol>
     73042                                        </TileMatrixLimits>
     73043                                        <TileMatrixLimits>
     73044                                                <TileMatrix>9</TileMatrix>
     73045                                                <MinTileRow>187</MinTileRow>
     73046                                                <MaxTileRow>188</MaxTileRow>
     73047                                                <MinTileCol>256</MinTileCol>
     73048                                                <MaxTileCol>256</MaxTileCol>
     73049                                        </TileMatrixLimits>
     73050                                </TileMatrixSetLimits>
     73051                        </TileMatrixSetLink>
     73052                </Layer>
     73053                <Layer>
     73054                        <ows:Title>GEOSUD / RapidEye (2011)</ows:Title>
     73055                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     73056                        <ows:Keywords>
     73057                                <ows:Keyword>Images satellitaires</ows:Keyword>
     73058                        </ows:Keywords>
     73059                        <ows:WGS84BoundingBox>
     73060                                <ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner>
     73061                                <ows:UpperCorner>10.961 50.9218</ows:UpperCorner>
     73062                        </ows:WGS84BoundingBox>
     73063                        <ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS.RAPIDEYE</ows:Identifier>
     73064                        <Style isDefault="true">
     73065                                <ows:Title>Données Brutes</ows:Title>
     73066                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     73067                                <ows:Keywords>
     73068                                        <ows:Keyword>Défaut</ows:Keyword>
     73069                                </ows:Keywords>
     73070                                <ows:Identifier>normal</ows:Identifier>
     73071                                <LegendURL format="image/jpeg" height="200"
     73072                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     73073                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     73074                        </Style>
     73075                        <Format>image/jpeg</Format>
     73076                        <TileMatrixSetLink>
     73077                                <TileMatrixSet>PM</TileMatrixSet>
     73078                                <TileMatrixSetLimits>
     73079                                        <TileMatrixLimits>
     73080                                                <TileMatrix>0</TileMatrix>
     73081                                                <MinTileRow>0</MinTileRow>
     73082                                                <MaxTileRow>0</MaxTileRow>
     73083                                                <MinTileCol>0</MinTileCol>
     73084                                                <MaxTileCol>0</MaxTileCol>
     73085                                        </TileMatrixLimits>
     73086                                        <TileMatrixLimits>
     73087                                                <TileMatrix>1</TileMatrix>
     73088                                                <MinTileRow>0</MinTileRow>
     73089                                                <MaxTileRow>0</MaxTileRow>
     73090                                                <MinTileCol>0</MinTileCol>
     73091                                                <MaxTileCol>1</MaxTileCol>
     73092                                        </TileMatrixLimits>
     73093                                        <TileMatrixLimits>
     73094                                                <TileMatrix>10</TileMatrix>
     73095                                                <MinTileRow>342</MinTileRow>
     73096                                                <MaxTileRow>383</MaxTileRow>
     73097                                                <MinTileCol>496</MinTileCol>
     73098                                                <MaxTileCol>540</MaxTileCol>
     73099                                        </TileMatrixLimits>
     73100                                        <TileMatrixLimits>
     73101                                                <TileMatrix>11</TileMatrix>
     73102                                                <MinTileRow>684</MinTileRow>
     73103                                                <MaxTileRow>767</MaxTileRow>
     73104                                                <MinTileCol>993</MinTileCol>
     73105                                                <MaxTileCol>1080</MaxTileCol>
     73106                                        </TileMatrixLimits>
     73107                                        <TileMatrixLimits>
     73108                                                <TileMatrix>12</TileMatrix>
     73109                                                <MinTileRow>1368</MinTileRow>
     73110                                                <MaxTileRow>1534</MaxTileRow>
     73111                                                <MinTileCol>1986</MinTileCol>
     73112                                                <MaxTileCol>2160</MaxTileCol>
     73113                                        </TileMatrixLimits>
     73114                                        <TileMatrixLimits>
     73115                                                <TileMatrix>13</TileMatrix>
     73116                                                <MinTileRow>2736</MinTileRow>
     73117                                                <MaxTileRow>3068</MaxTileRow>
     73118                                                <MinTileCol>3972</MinTileCol>
     73119                                                <MaxTileCol>4321</MaxTileCol>
     73120                                        </TileMatrixLimits>
     73121                                        <TileMatrixLimits>
     73122                                                <TileMatrix>14</TileMatrix>
     73123                                                <MinTileRow>5472</MinTileRow>
     73124                                                <MaxTileRow>6137</MaxTileRow>
     73125                                                <MinTileCol>7945</MinTileCol>
     73126                                                <MaxTileCol>8642</MaxTileCol>
     73127                                        </TileMatrixLimits>
     73128                                        <TileMatrixLimits>
     73129                                                <TileMatrix>15</TileMatrix>
     73130                                                <MinTileRow>10944</MinTileRow>
     73131                                                <MaxTileRow>12275</MaxTileRow>
     73132                                                <MinTileCol>15890</MinTileCol>
     73133                                                <MaxTileCol>17285</MaxTileCol>
     73134                                        </TileMatrixLimits>
     73135                                        <TileMatrixLimits>
     73136                                                <TileMatrix>2</TileMatrix>
     73137                                                <MinTileRow>1</MinTileRow>
     73138                                                <MaxTileRow>1</MaxTileRow>
     73139                                                <MinTileCol>1</MinTileCol>
     73140                                                <MaxTileCol>2</MaxTileCol>
     73141                                        </TileMatrixLimits>
     73142                                        <TileMatrixLimits>
     73143                                                <TileMatrix>3</TileMatrix>
     73144                                                <MinTileRow>2</MinTileRow>
     73145                                                <MaxTileRow>2</MaxTileRow>
     73146                                                <MinTileCol>3</MinTileCol>
     73147                                                <MaxTileCol>4</MaxTileCol>
     73148                                        </TileMatrixLimits>
     73149                                        <TileMatrixLimits>
     73150                                                <TileMatrix>4</TileMatrix>
     73151                                                <MinTileRow>5</MinTileRow>
     73152                                                <MaxTileRow>5</MaxTileRow>
     73153                                                <MinTileCol>7</MinTileCol>
     73154                                                <MaxTileCol>8</MaxTileCol>
     73155                                        </TileMatrixLimits>
     73156                                        <TileMatrixLimits>
     73157                                                <TileMatrix>5</TileMatrix>
     73158                                                <MinTileRow>10</MinTileRow>
     73159                                                <MaxTileRow>11</MaxTileRow>
     73160                                                <MinTileCol>15</MinTileCol>
     73161                                                <MaxTileCol>16</MaxTileCol>
     73162                                        </TileMatrixLimits>
     73163                                        <TileMatrixLimits>
     73164                                                <TileMatrix>6</TileMatrix>
     73165                                                <MinTileRow>21</MinTileRow>
     73166                                                <MaxTileRow>23</MaxTileRow>
     73167                                                <MinTileCol>31</MinTileCol>
     73168                                                <MaxTileCol>33</MaxTileCol>
     73169                                        </TileMatrixLimits>
     73170                                        <TileMatrixLimits>
     73171                                                <TileMatrix>7</TileMatrix>
     73172                                                <MinTileRow>42</MinTileRow>
     73173                                                <MaxTileRow>47</MaxTileRow>
     73174                                                <MinTileCol>62</MinTileCol>
     73175                                                <MaxTileCol>67</MaxTileCol>
     73176                                        </TileMatrixLimits>
     73177                                        <TileMatrixLimits>
     73178                                                <TileMatrix>8</TileMatrix>
     73179                                                <MinTileRow>85</MinTileRow>
     73180                                                <MaxTileRow>95</MaxTileRow>
     73181                                                <MinTileCol>124</MinTileCol>
     73182                                                <MaxTileCol>135</MaxTileCol>
     73183                                        </TileMatrixLimits>
     73184                                        <TileMatrixLimits>
     73185                                                <TileMatrix>9</TileMatrix>
     73186                                                <MinTileRow>171</MinTileRow>
     73187                                                <MaxTileRow>191</MaxTileRow>
     73188                                                <MinTileCol>248</MinTileCol>
     73189                                                <MaxTileCol>270</MaxTileCol>
     73190                                        </TileMatrixLimits>
     73191                                </TileMatrixSetLimits>
     73192                        </TileMatrixSetLink>
     73193                </Layer>
     73194                <Layer>
     73195                        <ows:Title>Photographies aériennes historiques 1950-1965</ows:Title>
     73196                        <ows:Abstract>Couverture en photographes aériennes de la France des années 50, telle qu'elle se présentait avant les grands aménagements des années 60. Cette couverture a été réalisée à partir des photographies aériennes historiques numérisées par l'IGN. Elle est disponible sur la France métropolitaine, les départements et régions d'Outre-Mer (la Guyane n’est que partiellement couverte) et les collectivités d’Outre-Mer sauf la Polynésie française. Les photographies sont orthorectifiées, c'est-à-dire corrigées des déformations dues à la prise de vue et au relief du terrain, et assemblées pour fournir une visualisation continue superposable avec le Référentiel à Grande Echelle (RGE®).</ows:Abstract>
     73197                        <ows:Keywords>
     73198                                <ows:Keyword>Photographies</ows:Keyword>
     73199                        </ows:Keywords>
     73200                        <ows:WGS84BoundingBox>
     73201                                <ows:LowerCorner>-54.259 -21.3906</ows:LowerCorner>
     73202                                <ows:UpperCorner>55.5833 50.5054</ows:UpperCorner>
     73203                        </ows:WGS84BoundingBox>
     73204                        <ows:Identifier>ORTHOIMAGERY.ORTHOPHOTOS1950-1965</ows:Identifier>
     73205                        <Style isDefault="true">
     73206                                <ows:Title>Données Brutes</ows:Title>
     73207                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     73208                                <ows:Keywords>
     73209                                        <ows:Keyword>Défaut</ows:Keyword>
     73210                                </ows:Keywords>
     73211                                <ows:Identifier>normal</ows:Identifier>
     73212                                <LegendURL format="image/jpeg" height="200"
     73213                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     73214                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     73215                        </Style>
     73216                        <Format>image/png</Format>
     73217                        <TileMatrixSetLink>
     73218                                <TileMatrixSet>PM</TileMatrixSet>
     73219                                <TileMatrixSetLimits>
     73220                                        <TileMatrixLimits>
     73221                                                <TileMatrix>10</TileMatrix>
     73222                                                <MinTileRow>345</MinTileRow>
     73223                                                <MaxTileRow>574</MaxTileRow>
     73224                                                <MinTileCol>357</MinTileCol>
     73225                                                <MaxTileCol>670</MaxTileCol>
     73226                                        </TileMatrixLimits>
     73227                                        <TileMatrixLimits>
     73228                                                <TileMatrix>11</TileMatrix>
     73229                                                <MinTileRow>690</MinTileRow>
     73230                                                <MaxTileRow>1148</MaxTileRow>
     73231                                                <MinTileCol>715</MinTileCol>
     73232                                                <MaxTileCol>1340</MaxTileCol>
     73233                                        </TileMatrixLimits>
     73234                                        <TileMatrixLimits>
     73235                                                <TileMatrix>12</TileMatrix>
     73236                                                <MinTileRow>1380</MinTileRow>
     73237                                                <MaxTileRow>2297</MaxTileRow>
     73238                                                <MinTileCol>1430</MinTileCol>
     73239                                                <MaxTileCol>2680</MaxTileCol>
     73240                                        </TileMatrixLimits>
     73241                                        <TileMatrixLimits>
     73242                                                <TileMatrix>13</TileMatrix>
     73243                                                <MinTileRow>2760</MinTileRow>
     73244                                                <MaxTileRow>4594</MaxTileRow>
     73245                                                <MinTileCol>2861</MinTileCol>
     73246                                                <MaxTileCol>5360</MaxTileCol>
     73247                                        </TileMatrixLimits>
     73248                                        <TileMatrixLimits>
     73249                                                <TileMatrix>14</TileMatrix>
     73250                                                <MinTileRow>5520</MinTileRow>
     73251                                                <MaxTileRow>9188</MaxTileRow>
     73252                                                <MinTileCol>5722</MinTileCol>
     73253                                                <MaxTileCol>10721</MaxTileCol>
     73254                                        </TileMatrixLimits>
     73255                                        <TileMatrixLimits>
     73256                                                <TileMatrix>15</TileMatrix>
     73257                                                <MinTileRow>11041</MinTileRow>
     73258                                                <MaxTileRow>18377</MaxTileRow>
     73259                                                <MinTileCol>11445</MinTileCol>
     73260                                                <MaxTileCol>21443</MaxTileCol>
     73261                                        </TileMatrixLimits>
     73262                                        <TileMatrixLimits>
     73263                                                <TileMatrix>16</TileMatrix>
     73264                                                <MinTileRow>22082</MinTileRow>
     73265                                                <MaxTileRow>36755</MaxTileRow>
     73266                                                <MinTileCol>22890</MinTileCol>
     73267                                                <MaxTileCol>42886</MaxTileCol>
     73268                                        </TileMatrixLimits>
     73269                                        <TileMatrixLimits>
     73270                                                <TileMatrix>17</TileMatrix>
     73271                                                <MinTileRow>44164</MinTileRow>
     73272                                                <MaxTileRow>73511</MaxTileRow>
     73273                                                <MinTileCol>45781</MinTileCol>
     73274                                                <MaxTileCol>85773</MaxTileCol>
     73275                                        </TileMatrixLimits>
     73276                                        <TileMatrixLimits>
     73277                                                <TileMatrix>18</TileMatrix>
     73278                                                <MinTileRow>88329</MinTileRow>
     73279                                                <MaxTileRow>147023</MaxTileRow>
     73280                                                <MinTileCol>91563</MinTileCol>
     73281                                                <MaxTileCol>171546</MaxTileCol>
     73282                                        </TileMatrixLimits>
     73283                                        <TileMatrixLimits>
     73284                                                <TileMatrix>6</TileMatrix>
     73285                                                <MinTileRow>21</MinTileRow>
     73286                                                <MaxTileRow>35</MaxTileRow>
     73287                                                <MinTileCol>22</MinTileCol>
     73288                                                <MaxTileCol>41</MaxTileCol>
     73289                                        </TileMatrixLimits>
     73290                                        <TileMatrixLimits>
     73291                                                <TileMatrix>7</TileMatrix>
     73292                                                <MinTileRow>43</MinTileRow>
     73293                                                <MaxTileRow>71</MaxTileRow>
     73294                                                <MinTileCol>44</MinTileCol>
     73295                                                <MaxTileCol>83</MaxTileCol>
     73296                                        </TileMatrixLimits>
     73297                                        <TileMatrixLimits>
     73298                                                <TileMatrix>8</TileMatrix>
     73299                                                <MinTileRow>86</MinTileRow>
     73300                                                <MaxTileRow>143</MaxTileRow>
     73301                                                <MinTileCol>89</MinTileCol>
     73302                                                <MaxTileCol>167</MaxTileCol>
     73303                                        </TileMatrixLimits>
     73304                                        <TileMatrixLimits>
     73305                                                <TileMatrix>9</TileMatrix>
     73306                                                <MinTileRow>172</MinTileRow>
     73307                                                <MaxTileRow>287</MaxTileRow>
     73308                                                <MinTileCol>178</MinTileCol>
     73309                                                <MaxTileCol>335</MaxTileCol>
     73310                                        </TileMatrixLimits>
     73311                                </TileMatrixSetLimits>
     73312                        </TileMatrixSetLink>
     73313                </Layer>
     73314                <Layer>
     73315                        <ows:Title>Photographies aériennes historiques 1950-1965</ows:Title>
     73316                        <ows:Abstract>Couverture en photographes aériennes de la France des années 50, telle qu'elle se présentait avant les grands aménagements des années 60. Cette couverture a été réalisée à partir des photographies aériennes historiques numérisées par l'IGN. Elle est disponible sur la France métropolitaine, les départements et régions d'Outre-Mer (la Guyane n’est que partiellement couverte) et les collectivités d’Outre-Mer sauf la Polynésie française. Les photographies sont orthorectifiées, c'est-à-dire corrigées des déformations dues à la prise de vue et au relief du terrain, et assemblées pour fournir une visualisation continue superposable avec le Référentiel à Grande Echelle (RGE®).</ows:Abstract>
     73317                        <ows:Keywords>
     73318                                <ows:Keyword>Photographies</ows:Keyword>
     73319                        </ows:Keywords>
     73320                        <ows:WGS84BoundingBox>
     73321                                <ows:LowerCorner>-54.259 -21.3906</ows:LowerCorner>
     73322                                <ows:UpperCorner>55.5833 50.5054</ows:UpperCorner>
     73323                        </ows:WGS84BoundingBox>
     73324                        <ows:Identifier>PHOTOHISTO-1950-1965_PYR-PNG_WLD_WM_WMTS4</ows:Identifier>
     73325                        <Style isDefault="true">
     73326                                <ows:Title>Données Brutes</ows:Title>
     73327                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     73328                                <ows:Keywords>
     73329                                        <ows:Keyword>Défaut</ows:Keyword>
     73330                                </ows:Keywords>
     73331                                <ows:Identifier>normal</ows:Identifier>
     73332                                <LegendURL format="image/jpeg" height="200"
     73333                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     73334                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     73335                        </Style>
     73336                        <Format>image/png</Format>
     73337                        <TileMatrixSetLink>
     73338                                <TileMatrixSet>PM</TileMatrixSet>
     73339                                <TileMatrixSetLimits>
     73340                                        <TileMatrixLimits>
     73341                                                <TileMatrix>10</TileMatrix>
     73342                                                <MinTileRow>345</MinTileRow>
     73343                                                <MaxTileRow>574</MaxTileRow>
     73344                                                <MinTileCol>357</MinTileCol>
     73345                                                <MaxTileCol>670</MaxTileCol>
     73346                                        </TileMatrixLimits>
     73347                                        <TileMatrixLimits>
     73348                                                <TileMatrix>11</TileMatrix>
     73349                                                <MinTileRow>690</MinTileRow>
     73350                                                <MaxTileRow>1148</MaxTileRow>
     73351                                                <MinTileCol>715</MinTileCol>
     73352                                                <MaxTileCol>1340</MaxTileCol>
     73353                                        </TileMatrixLimits>
     73354                                        <TileMatrixLimits>
     73355                                                <TileMatrix>12</TileMatrix>
     73356                                                <MinTileRow>1380</MinTileRow>
     73357                                                <MaxTileRow>2297</MaxTileRow>
     73358                                                <MinTileCol>1430</MinTileCol>
     73359                                                <MaxTileCol>2680</MaxTileCol>
     73360                                        </TileMatrixLimits>
     73361                                        <TileMatrixLimits>
     73362                                                <TileMatrix>13</TileMatrix>
     73363                                                <MinTileRow>2760</MinTileRow>
     73364                                                <MaxTileRow>4594</MaxTileRow>
     73365                                                <MinTileCol>2861</MinTileCol>
     73366                                                <MaxTileCol>5360</MaxTileCol>
     73367                                        </TileMatrixLimits>
     73368                                        <TileMatrixLimits>
     73369                                                <TileMatrix>14</TileMatrix>
     73370                                                <MinTileRow>5520</MinTileRow>
     73371                                                <MaxTileRow>9188</MaxTileRow>
     73372                                                <MinTileCol>5722</MinTileCol>
     73373                                                <MaxTileCol>10721</MaxTileCol>
     73374                                        </TileMatrixLimits>
     73375                                        <TileMatrixLimits>
     73376                                                <TileMatrix>15</TileMatrix>
     73377                                                <MinTileRow>11041</MinTileRow>
     73378                                                <MaxTileRow>18377</MaxTileRow>
     73379                                                <MinTileCol>11445</MinTileCol>
     73380                                                <MaxTileCol>21443</MaxTileCol>
     73381                                        </TileMatrixLimits>
     73382                                        <TileMatrixLimits>
     73383                                                <TileMatrix>16</TileMatrix>
     73384                                                <MinTileRow>22082</MinTileRow>
     73385                                                <MaxTileRow>36755</MaxTileRow>
     73386                                                <MinTileCol>22890</MinTileCol>
     73387                                                <MaxTileCol>42886</MaxTileCol>
     73388                                        </TileMatrixLimits>
     73389                                        <TileMatrixLimits>
     73390                                                <TileMatrix>17</TileMatrix>
     73391                                                <MinTileRow>44164</MinTileRow>
     73392                                                <MaxTileRow>73511</MaxTileRow>
     73393                                                <MinTileCol>45781</MinTileCol>
     73394                                                <MaxTileCol>85773</MaxTileCol>
     73395                                        </TileMatrixLimits>
     73396                                        <TileMatrixLimits>
     73397                                                <TileMatrix>18</TileMatrix>
     73398                                                <MinTileRow>88329</MinTileRow>
     73399                                                <MaxTileRow>147023</MaxTileRow>
     73400                                                <MinTileCol>91563</MinTileCol>
     73401                                                <MaxTileCol>171546</MaxTileCol>
     73402                                        </TileMatrixLimits>
     73403                                        <TileMatrixLimits>
     73404                                                <TileMatrix>6</TileMatrix>
     73405                                                <MinTileRow>21</MinTileRow>
     73406                                                <MaxTileRow>35</MaxTileRow>
     73407                                                <MinTileCol>22</MinTileCol>
     73408                                                <MaxTileCol>41</MaxTileCol>
     73409                                        </TileMatrixLimits>
     73410                                        <TileMatrixLimits>
     73411                                                <TileMatrix>7</TileMatrix>
     73412                                                <MinTileRow>43</MinTileRow>
     73413                                                <MaxTileRow>71</MaxTileRow>
     73414                                                <MinTileCol>44</MinTileCol>
     73415                                                <MaxTileCol>83</MaxTileCol>
     73416                                        </TileMatrixLimits>
     73417                                        <TileMatrixLimits>
     73418                                                <TileMatrix>8</TileMatrix>
     73419                                                <MinTileRow>86</MinTileRow>
     73420                                                <MaxTileRow>143</MaxTileRow>
     73421                                                <MinTileCol>89</MinTileCol>
     73422                                                <MaxTileCol>167</MaxTileCol>
     73423                                        </TileMatrixLimits>
     73424                                        <TileMatrixLimits>
     73425                                                <TileMatrix>9</TileMatrix>
     73426                                                <MinTileRow>172</MinTileRow>
     73427                                                <MaxTileRow>287</MaxTileRow>
     73428                                                <MinTileCol>178</MinTileCol>
     73429                                                <MaxTileCol>335</MaxTileCol>
     73430                                        </TileMatrixLimits>
     73431                                </TileMatrixSetLimits>
     73432                        </TileMatrixSetLink>
     73433                </Layer>
     73434                <Layer>
     73435                        <ows:Title>GEOSUD / RapidEye (2010)</ows:Title>
     73436                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2010 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     73437                        <ows:Keywords>
     73438                                <ows:Keyword>Images satellitaires</ows:Keyword>
     73439                        </ows:Keywords>
     73440                        <ows:WGS84BoundingBox>
     73441                                <ows:LowerCorner>-5.80725 41.2014</ows:LowerCorner>
     73442                                <ows:UpperCorner>10.961 50.9218</ows:UpperCorner>
     73443                        </ows:WGS84BoundingBox>
     73444                        <ows:Identifier>RAPIDEYE_PYR-JPEG_WLD_WM_2010</ows:Identifier>
     73445                        <Style isDefault="true">
     73446                                <ows:Title>Données Brutes</ows:Title>
     73447                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     73448                                <ows:Keywords>
     73449                                        <ows:Keyword>Défaut</ows:Keyword>
     73450                                </ows:Keywords>
     73451                                <ows:Identifier>normal</ows:Identifier>
     73452                                <LegendURL format="image/jpeg" height="200"
     73453                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     73454                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     73455                        </Style>
     73456                        <Format>image/jpeg</Format>
     73457                        <TileMatrixSetLink>
     73458                                <TileMatrixSet>PM</TileMatrixSet>
     73459                                <TileMatrixSetLimits>
     73460                                        <TileMatrixLimits>
     73461                                                <TileMatrix>0</TileMatrix>
     73462                                                <MinTileRow>0</MinTileRow>
     73463                                                <MaxTileRow>0</MaxTileRow>
     73464                                                <MinTileCol>0</MinTileCol>
     73465                                                <MaxTileCol>0</MaxTileCol>
     73466                                        </TileMatrixLimits>
     73467                                        <TileMatrixLimits>
     73468                                                <TileMatrix>1</TileMatrix>
     73469                                                <MinTileRow>0</MinTileRow>
     73470                                                <MaxTileRow>0</MaxTileRow>
     73471                                                <MinTileCol>0</MinTileCol>
     73472                                                <MaxTileCol>1</MaxTileCol>
     73473                                        </TileMatrixLimits>
     73474                                        <TileMatrixLimits>
     73475                                                <TileMatrix>10</TileMatrix>
     73476                                                <MinTileRow>342</MinTileRow>
     73477                                                <MaxTileRow>382</MaxTileRow>
     73478                                                <MinTileCol>496</MinTileCol>
     73479                                                <MaxTileCol>539</MaxTileCol>
     73480                                        </TileMatrixLimits>
     73481                                        <TileMatrixLimits>
     73482                                                <TileMatrix>11</TileMatrix>
     73483                                                <MinTileRow>684</MinTileRow>
     73484                                                <MaxTileRow>765</MaxTileRow>
     73485                                                <MinTileCol>993</MinTileCol>
     73486                                                <MaxTileCol>1079</MaxTileCol>
     73487                                        </TileMatrixLimits>
     73488                                        <TileMatrixLimits>
     73489                                                <TileMatrix>12</TileMatrix>
     73490                                                <MinTileRow>1368</MinTileRow>
     73491                                                <MaxTileRow>1531</MaxTileRow>
     73492                                                <MinTileCol>1986</MinTileCol>
     73493                                                <MaxTileCol>2159</MaxTileCol>
     73494                                        </TileMatrixLimits>
     73495                                        <TileMatrixLimits>
     73496                                                <TileMatrix>13</TileMatrix>
     73497                                                <MinTileRow>2736</MinTileRow>
     73498                                                <MaxTileRow>3063</MaxTileRow>
     73499                                                <MinTileCol>3972</MinTileCol>
     73500                                                <MaxTileCol>4319</MaxTileCol>
     73501                                        </TileMatrixLimits>
     73502                                        <TileMatrixLimits>
     73503                                                <TileMatrix>14</TileMatrix>
     73504                                                <MinTileRow>5472</MinTileRow>
     73505                                                <MaxTileRow>6126</MaxTileRow>
     73506                                                <MinTileCol>7945</MinTileCol>
     73507                                                <MaxTileCol>8638</MaxTileCol>
     73508                                        </TileMatrixLimits>
     73509                                        <TileMatrixLimits>
     73510                                                <TileMatrix>15</TileMatrix>
     73511                                                <MinTileRow>10944</MinTileRow>
     73512                                                <MaxTileRow>12253</MaxTileRow>
     73513                                                <MinTileCol>15890</MinTileCol>
     73514                                                <MaxTileCol>17277</MaxTileCol>
     73515                                        </TileMatrixLimits>
     73516                                        <TileMatrixLimits>
     73517                                                <TileMatrix>2</TileMatrix>
     73518                                                <MinTileRow>1</MinTileRow>
     73519                                                <MaxTileRow>1</MaxTileRow>
     73520                                                <MinTileCol>1</MinTileCol>
     73521                                                <MaxTileCol>2</MaxTileCol>
     73522                                        </TileMatrixLimits>
     73523                                        <TileMatrixLimits>
     73524                                                <TileMatrix>3</TileMatrix>
     73525                                                <MinTileRow>2</MinTileRow>
     73526                                                <MaxTileRow>2</MaxTileRow>
     73527                                                <MinTileCol>3</MinTileCol>
     73528                                                <MaxTileCol>4</MaxTileCol>
     73529                                        </TileMatrixLimits>
     73530                                        <TileMatrixLimits>
     73531                                                <TileMatrix>4</TileMatrix>
     73532                                                <MinTileRow>5</MinTileRow>
     73533                                                <MaxTileRow>5</MaxTileRow>
     73534                                                <MinTileCol>7</MinTileCol>
     73535                                                <MaxTileCol>8</MaxTileCol>
     73536                                        </TileMatrixLimits>
     73537                                        <TileMatrixLimits>
     73538                                                <TileMatrix>5</TileMatrix>
     73539                                                <MinTileRow>10</MinTileRow>
     73540                                                <MaxTileRow>11</MaxTileRow>
     73541                                                <MinTileCol>15</MinTileCol>
     73542                                                <MaxTileCol>16</MaxTileCol>
     73543                                        </TileMatrixLimits>
     73544                                        <TileMatrixLimits>
     73545                                                <TileMatrix>6</TileMatrix>
     73546                                                <MinTileRow>21</MinTileRow>
     73547                                                <MaxTileRow>23</MaxTileRow>
     73548                                                <MinTileCol>31</MinTileCol>
     73549                                                <MaxTileCol>33</MaxTileCol>
     73550                                        </TileMatrixLimits>
     73551                                        <TileMatrixLimits>
     73552                                                <TileMatrix>7</TileMatrix>
     73553                                                <MinTileRow>42</MinTileRow>
     73554                                                <MaxTileRow>47</MaxTileRow>
     73555                                                <MinTileCol>62</MinTileCol>
     73556                                                <MaxTileCol>67</MaxTileCol>
     73557                                        </TileMatrixLimits>
     73558                                        <TileMatrixLimits>
     73559                                                <TileMatrix>8</TileMatrix>
     73560                                                <MinTileRow>85</MinTileRow>
     73561                                                <MaxTileRow>95</MaxTileRow>
     73562                                                <MinTileCol>124</MinTileCol>
     73563                                                <MaxTileCol>134</MaxTileCol>
     73564                                        </TileMatrixLimits>
     73565                                        <TileMatrixLimits>
     73566                                                <TileMatrix>9</TileMatrix>
     73567                                                <MinTileRow>171</MinTileRow>
     73568                                                <MaxTileRow>191</MaxTileRow>
     73569                                                <MinTileCol>248</MinTileCol>
     73570                                                <MaxTileCol>269</MaxTileCol>
     73571                                        </TileMatrixLimits>
     73572                                </TileMatrixSetLimits>
     73573                        </TileMatrixSetLink>
     73574                </Layer>
     73575                <Layer>
     73576                        <ows:Title>GEOSUD / RapidEye (2011)</ows:Title>
     73577                        <ows:Abstract>Image satellitaire de la France métropolitaine effectuée en 2011 par les satellites de télédétection RapidEye dans le cadre du projet EQUIPEX GEOSUD.</ows:Abstract>
     73578                        <ows:Keywords>
     73579                                <ows:Keyword>Images satellitaires</ows:Keyword>
     73580                        </ows:Keywords>
     73581                        <ows:WGS84BoundingBox>
     73582                                <ows:LowerCorner>-5.80725 41.0227</ows:LowerCorner>
     73583                                <ows:UpperCorner>10.961 50.9218</ows:UpperCorner>
     73584                        </ows:WGS84BoundingBox>
     73585                        <ows:Identifier>RAPIDEYE_PYR-JPEG_WLD_WM_2011</ows:Identifier>
     73586                        <Style isDefault="true">
     73587                                <ows:Title>Données Brutes</ows:Title>
     73588                                <ows:Abstract>Données brutes sans changement de palette</ows:Abstract>
     73589                                <ows:Keywords>
     73590                                        <ows:Keyword>Défaut</ows:Keyword>
     73591                                </ows:Keywords>
     73592                                <ows:Identifier>normal</ows:Identifier>
     73593                                <LegendURL format="image/jpeg" height="200"
     73594                                        maxScaleDenominator="100000000" minScaleDenominator="200" width="200"
     73595                                        xlink:href="http://www.geoportail.gouv.fr/depot/LEGEND.jpg" />
     73596                        </Style>
     73597                        <Format>image/jpeg</Format>
     73598                        <TileMatrixSetLink>
     73599                                <TileMatrixSet>PM</TileMatrixSet>
     73600                                <TileMatrixSetLimits>
     73601                                        <TileMatrixLimits>
     73602                                                <TileMatrix>0</TileMatrix>
     73603                                                <MinTileRow>0</MinTileRow>
     73604                                                <MaxTileRow>0</MaxTileRow>
     73605                                                <MinTileCol>0</MinTileCol>
     73606                                                <MaxTileCol>0</MaxTileCol>
     73607                                        </TileMatrixLimits>
     73608                                        <TileMatrixLimits>
     73609                                                <TileMatrix>1</TileMatrix>
     73610                                                <MinTileRow>0</MinTileRow>
     73611                                                <MaxTileRow>0</MaxTileRow>
     73612                                                <MinTileCol>0</MinTileCol>
     73613                                                <MaxTileCol>1</MaxTileCol>
     73614                                        </TileMatrixLimits>
     73615                                        <TileMatrixLimits>
     73616                                                <TileMatrix>10</TileMatrix>
     73617                                                <MinTileRow>342</MinTileRow>
     73618                                                <MaxTileRow>383</MaxTileRow>
     73619                                                <MinTileCol>496</MinTileCol>
     73620                                                <MaxTileCol>540</MaxTileCol>
     73621                                        </TileMatrixLimits>
     73622                                        <TileMatrixLimits>
     73623                                                <TileMatrix>11</TileMatrix>
     73624                                                <MinTileRow>684</MinTileRow>
     73625                                                <MaxTileRow>767</MaxTileRow>
     73626                                                <MinTileCol>993</MinTileCol>
     73627                                                <MaxTileCol>1080</MaxTileCol>
     73628                                        </TileMatrixLimits>
     73629                                        <TileMatrixLimits>
     73630                                                <TileMatrix>12</TileMatrix>
     73631                                                <MinTileRow>1368</MinTileRow>
     73632                                                <MaxTileRow>1534</MaxTileRow>
     73633                                                <MinTileCol>1986</MinTileCol>
     73634                                                <MaxTileCol>2160</MaxTileCol>
     73635                                        </TileMatrixLimits>
     73636                                        <TileMatrixLimits>
     73637                                                <TileMatrix>13</TileMatrix>
     73638                                                <MinTileRow>2736</MinTileRow>
     73639                                                <MaxTileRow>3068</MaxTileRow>
     73640                                                <MinTileCol>3972</MinTileCol>
     73641                                                <MaxTileCol>4321</MaxTileCol>
     73642                                        </TileMatrixLimits>
     73643                                        <TileMatrixLimits>
     73644                                                <TileMatrix>14</TileMatrix>
     73645                                                <MinTileRow>5472</MinTileRow>
     73646                                                <MaxTileRow>6137</MaxTileRow>
     73647                                                <MinTileCol>7945</MinTileCol>
     73648                                                <MaxTileCol>8642</MaxTileCol>
     73649                                        </TileMatrixLimits>
     73650                                        <TileMatrixLimits>
     73651                                                <TileMatrix>15</TileMatrix>
     73652                                                <MinTileRow>10944</MinTileRow>
     73653                                                <MaxTileRow>12275</MaxTileRow>
     73654                                                <MinTileCol>15890</MinTileCol>
     73655                                                <MaxTileCol>17285</MaxTileCol>
     73656                                        </TileMatrixLimits>
     73657                                        <TileMatrixLimits>
     73658                                                <TileMatrix>2</TileMatrix>
     73659                                                <MinTileRow>1</MinTileRow>
     73660                                                <MaxTileRow>1</MaxTileRow>
     73661                                                <MinTileCol>1</MinTileCol>
     73662                                                <MaxTileCol>2</MaxTileCol>
     73663                                        </TileMatrixLimits>
     73664                                        <TileMatrixLimits>
     73665                                                <TileMatrix>3</TileMatrix>
     73666                                                <MinTileRow>2</MinTileRow>
     73667                                                <MaxTileRow>2</MaxTileRow>
     73668                                                <MinTileCol>3</MinTileCol>
     73669                                                <MaxTileCol>4</MaxTileCol>
     73670                                        </TileMatrixLimits>
     73671                                        <TileMatrixLimits>
     73672                                                <TileMatrix>4</TileMatrix>
     73673                                                <MinTileRow>5</MinTileRow>
     73674                                                <MaxTileRow>5</MaxTileRow>
     73675                                                <MinTileCol>7</MinTileCol>
     73676                                                <MaxTileCol>8</MaxTileCol>
     73677                                        </TileMatrixLimits>
     73678                                        <TileMatrixLimits>
     73679                                                <TileMatrix>5</TileMatrix>
     73680                                                <MinTileRow>10</MinTileRow>
     73681                                                <MaxTileRow>11</MaxTileRow>
     73682                                                <MinTileCol>15</MinTileCol>
     73683                                                <MaxTileCol>16</MaxTileCol>
     73684                                        </TileMatrixLimits>
     73685                                        <TileMatrixLimits>
     73686                                                <TileMatrix>6</TileMatrix>
     73687                                                <MinTileRow>21</MinTileRow>
     73688                                                <MaxTileRow>23</MaxTileRow>
     73689                                                <MinTileCol>31</MinTileCol>
     73690                                                <MaxTileCol>33</MaxTileCol>
     73691                                        </TileMatrixLimits>
     73692                                        <TileMatrixLimits>
     73693                                                <TileMatrix>7</TileMatrix>
     73694                                                <MinTileRow>42</MinTileRow>
     73695                                                <MaxTileRow>47</MaxTileRow>
     73696                                                <MinTileCol>62</MinTileCol>
     73697                                                <MaxTileCol>67</MaxTileCol>
     73698                                        </TileMatrixLimits>
     73699                                        <TileMatrixLimits>
     73700                                                <TileMatrix>8</TileMatrix>
     73701                                                <MinTileRow>85</MinTileRow>
     73702                                                <MaxTileRow>95</MaxTileRow>
     73703                                                <MinTileCol>124</MinTileCol>
     73704                                                <MaxTileCol>135</MaxTileCol>
     73705                                        </TileMatrixLimits>
     73706                                        <TileMatrixLimits>
     73707                                                <TileMatrix>9</TileMatrix>
     73708                                                <MinTileRow>171</MinTileRow>
     73709                                                <MaxTileRow>191</MaxTileRow>
     73710                                                <MinTileCol>248</MinTileCol>
     73711                                                <MaxTileCol>270</MaxTileCol>
     73712                                        </TileMatrixLimits>
     73713                                </TileMatrixSetLimits>
     73714                        </TileMatrixSetLink>
     73715                </Layer>
     73716                <TileMatrixSet>
     73717                        <ows:Identifier>PM</ows:Identifier>
     73718                        <ows:SupportedCRS>EPSG:3857</ows:SupportedCRS>
     73719                        <TileMatrix>
     73720                                <ows:Identifier>0</ows:Identifier>
     73721                                <ScaleDenominator>559082264.0287178958533332</ScaleDenominator>
     73722                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73723                                <TileWidth>256</TileWidth>
     73724                                <TileHeight>256</TileHeight>
     73725                                <MatrixWidth>1</MatrixWidth>
     73726                                <MatrixHeight>1</MatrixHeight>
     73727                        </TileMatrix>
     73728                        <TileMatrix>
     73729                                <ows:Identifier>1</ows:Identifier>
     73730                                <ScaleDenominator>279541132.0143588959472254</ScaleDenominator>
     73731                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73732                                <TileWidth>256</TileWidth>
     73733                                <TileHeight>256</TileHeight>
     73734                                <MatrixWidth>2</MatrixWidth>
     73735                                <MatrixHeight>2</MatrixHeight>
     73736                        </TileMatrix>
     73737                        <TileMatrix>
     73738                                <ows:Identifier>10</ows:Identifier>
     73739                                <ScaleDenominator>545978.7734655447186469</ScaleDenominator>
     73740                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73741                                <TileWidth>256</TileWidth>
     73742                                <TileHeight>256</TileHeight>
     73743                                <MatrixWidth>1024</MatrixWidth>
     73744                                <MatrixHeight>1024</MatrixHeight>
     73745                        </TileMatrix>
     73746                        <TileMatrix>
     73747                                <ows:Identifier>11</ows:Identifier>
     73748                                <ScaleDenominator>272989.3867327723085907</ScaleDenominator>
     73749                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73750                                <TileWidth>256</TileWidth>
     73751                                <TileHeight>256</TileHeight>
     73752                                <MatrixWidth>2048</MatrixWidth>
     73753                                <MatrixHeight>2048</MatrixHeight>
     73754                        </TileMatrix>
     73755                        <TileMatrix>
     73756                                <ows:Identifier>12</ows:Identifier>
     73757                                <ScaleDenominator>136494.6933663861796617</ScaleDenominator>
     73758                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73759                                <TileWidth>256</TileWidth>
     73760                                <TileHeight>256</TileHeight>
     73761                                <MatrixWidth>4096</MatrixWidth>
     73762                                <MatrixHeight>4096</MatrixHeight>
     73763                        </TileMatrix>
     73764                        <TileMatrix>
     73765                                <ows:Identifier>13</ows:Identifier>
     73766                                <ScaleDenominator>68247.3466831930771477</ScaleDenominator>
     73767                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73768                                <TileWidth>256</TileWidth>
     73769                                <TileHeight>256</TileHeight>
     73770                                <MatrixWidth>8192</MatrixWidth>
     73771                                <MatrixHeight>8192</MatrixHeight>
     73772                        </TileMatrix>
     73773                        <TileMatrix>
     73774                                <ows:Identifier>14</ows:Identifier>
     73775                                <ScaleDenominator>34123.6733415965449154</ScaleDenominator>
     73776                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73777                                <TileWidth>256</TileWidth>
     73778                                <TileHeight>256</TileHeight>
     73779                                <MatrixWidth>16384</MatrixWidth>
     73780                                <MatrixHeight>16384</MatrixHeight>
     73781                        </TileMatrix>
     73782                        <TileMatrix>
     73783                                <ows:Identifier>15</ows:Identifier>
     73784                                <ScaleDenominator>17061.8366707982724577</ScaleDenominator>
     73785                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73786                                <TileWidth>256</TileWidth>
     73787                                <TileHeight>256</TileHeight>
     73788                                <MatrixWidth>32768</MatrixWidth>
     73789                                <MatrixHeight>32768</MatrixHeight>
     73790                        </TileMatrix>
     73791                        <TileMatrix>
     73792                                <ows:Identifier>16</ows:Identifier>
     73793                                <ScaleDenominator>8530.9183353991362289</ScaleDenominator>
     73794                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73795                                <TileWidth>256</TileWidth>
     73796                                <TileHeight>256</TileHeight>
     73797                                <MatrixWidth>65536</MatrixWidth>
     73798                                <MatrixHeight>65536</MatrixHeight>
     73799                        </TileMatrix>
     73800                        <TileMatrix>
     73801                                <ows:Identifier>17</ows:Identifier>
     73802                                <ScaleDenominator>4265.4591676995681144</ScaleDenominator>
     73803                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73804                                <TileWidth>256</TileWidth>
     73805                                <TileHeight>256</TileHeight>
     73806                                <MatrixWidth>131072</MatrixWidth>
     73807                                <MatrixHeight>131072</MatrixHeight>
     73808                        </TileMatrix>
     73809                        <TileMatrix>
     73810                                <ows:Identifier>18</ows:Identifier>
     73811                                <ScaleDenominator>2132.7295838497840572</ScaleDenominator>
     73812                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73813                                <TileWidth>256</TileWidth>
     73814                                <TileHeight>256</TileHeight>
     73815                                <MatrixWidth>262144</MatrixWidth>
     73816                                <MatrixHeight>262144</MatrixHeight>
     73817                        </TileMatrix>
     73818                        <TileMatrix>
     73819                                <ows:Identifier>19</ows:Identifier>
     73820                                <ScaleDenominator>1066.3647919248918304</ScaleDenominator>
     73821                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73822                                <TileWidth>256</TileWidth>
     73823                                <TileHeight>256</TileHeight>
     73824                                <MatrixWidth>524288</MatrixWidth>
     73825                                <MatrixHeight>524288</MatrixHeight>
     73826                        </TileMatrix>
     73827                        <TileMatrix>
     73828                                <ows:Identifier>2</ows:Identifier>
     73829                                <ScaleDenominator>139770566.0071793960087234</ScaleDenominator>
     73830                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73831                                <TileWidth>256</TileWidth>
     73832                                <TileHeight>256</TileHeight>
     73833                                <MatrixWidth>4</MatrixWidth>
     73834                                <MatrixHeight>4</MatrixHeight>
     73835                        </TileMatrix>
     73836                        <TileMatrix>
     73837                                <ows:Identifier>20</ows:Identifier>
     73838                                <ScaleDenominator>533.1823959624461134</ScaleDenominator>
     73839                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73840                                <TileWidth>256</TileWidth>
     73841                                <TileHeight>256</TileHeight>
     73842                                <MatrixWidth>1048576</MatrixWidth>
     73843                                <MatrixHeight>1048576</MatrixHeight>
     73844                        </TileMatrix>
     73845                        <TileMatrix>
     73846                                <ows:Identifier>21</ows:Identifier>
     73847                                <ScaleDenominator>266.5911979812228585</ScaleDenominator>
     73848                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73849                                <TileWidth>256</TileWidth>
     73850                                <TileHeight>256</TileHeight>
     73851                                <MatrixWidth>2097152</MatrixWidth>
     73852                                <MatrixHeight>2097152</MatrixHeight>
     73853                        </TileMatrix>
     73854                        <TileMatrix>
     73855                                <ows:Identifier>3</ows:Identifier>
     73856                                <ScaleDenominator>69885283.0035897239868063</ScaleDenominator>
     73857                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73858                                <TileWidth>256</TileWidth>
     73859                                <TileHeight>256</TileHeight>
     73860                                <MatrixWidth>8</MatrixWidth>
     73861                                <MatrixHeight>8</MatrixHeight>
     73862                        </TileMatrix>
     73863                        <TileMatrix>
     73864                                <ows:Identifier>4</ows:Identifier>
     73865                                <ScaleDenominator>34942641.5017948619934032</ScaleDenominator>
     73866                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73867                                <TileWidth>256</TileWidth>
     73868                                <TileHeight>256</TileHeight>
     73869                                <MatrixWidth>16</MatrixWidth>
     73870                                <MatrixHeight>16</MatrixHeight>
     73871                        </TileMatrix>
     73872                        <TileMatrix>
     73873                                <ows:Identifier>5</ows:Identifier>
     73874                                <ScaleDenominator>17471320.7508974309967016</ScaleDenominator>
     73875                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73876                                <TileWidth>256</TileWidth>
     73877                                <TileHeight>256</TileHeight>
     73878                                <MatrixWidth>32</MatrixWidth>
     73879                                <MatrixHeight>32</MatrixHeight>
     73880                        </TileMatrix>
     73881                        <TileMatrix>
     73882                                <ows:Identifier>6</ows:Identifier>
     73883                                <ScaleDenominator>8735660.3754487154983508</ScaleDenominator>
     73884                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73885                                <TileWidth>256</TileWidth>
     73886                                <TileHeight>256</TileHeight>
     73887                                <MatrixWidth>64</MatrixWidth>
     73888                                <MatrixHeight>64</MatrixHeight>
     73889                        </TileMatrix>
     73890                        <TileMatrix>
     73891                                <ows:Identifier>7</ows:Identifier>
     73892                                <ScaleDenominator>4367830.1877243577491754</ScaleDenominator>
     73893                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73894                                <TileWidth>256</TileWidth>
     73895                                <TileHeight>256</TileHeight>
     73896                                <MatrixWidth>128</MatrixWidth>
     73897                                <MatrixHeight>128</MatrixHeight>
     73898                        </TileMatrix>
     73899                        <TileMatrix>
     73900                                <ows:Identifier>8</ows:Identifier>
     73901                                <ScaleDenominator>2183915.0938621788745877</ScaleDenominator>
     73902                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73903                                <TileWidth>256</TileWidth>
     73904                                <TileHeight>256</TileHeight>
     73905                                <MatrixWidth>256</MatrixWidth>
     73906                                <MatrixHeight>256</MatrixHeight>
     73907                        </TileMatrix>
     73908                        <TileMatrix>
     73909                                <ows:Identifier>9</ows:Identifier>
     73910                                <ScaleDenominator>1091957.5469310886252288</ScaleDenominator>
     73911                                <TopLeftCorner>-20037508 20037508</TopLeftCorner>
     73912                                <TileWidth>256</TileWidth>
     73913                                <TileHeight>256</TileHeight>
     73914                                <MatrixWidth>512</MatrixWidth>
     73915                                <MatrixHeight>512</MatrixHeight>
     73916                        </TileMatrix>
     73917                </TileMatrixSet>
     73918                <TileMatrixSet>
     73919                        <ows:Identifier>WGS84G</ows:Identifier>
     73920                        <ows:SupportedCRS>IGNF:WGS84G</ows:SupportedCRS>
     73921                        <TileMatrix>
     73922                                <ows:Identifier>0</ows:Identifier>
     73923                                <ScaleDenominator>279541132.0143588675418869</ScaleDenominator>
     73924                                <TopLeftCorner>-180 90</TopLeftCorner>
     73925                                <TileWidth>256</TileWidth>
     73926                                <TileHeight>256</TileHeight>
     73927                                <MatrixWidth>2</MatrixWidth>
     73928                                <MatrixHeight>1</MatrixHeight>
     73929                        </TileMatrix>
     73930                        <TileMatrix>
     73931                                <ows:Identifier>1</ows:Identifier>
     73932                                <ScaleDenominator>139770566.0071794337709434</ScaleDenominator>
     73933                                <TopLeftCorner>-180 90</TopLeftCorner>
     73934                                <TileWidth>256</TileWidth>
     73935                                <TileHeight>256</TileHeight>
     73936                                <MatrixWidth>4</MatrixWidth>
     73937                                <MatrixHeight>2</MatrixHeight>
     73938                        </TileMatrix>
     73939                        <TileMatrix>
     73940                                <ows:Identifier>10</ows:Identifier>
     73941                                <ScaleDenominator>272989.3867327723315839</ScaleDenominator>
     73942                                <TopLeftCorner>-180 90</TopLeftCorner>
     73943                                <TileWidth>256</TileWidth>
     73944                                <TileHeight>256</TileHeight>
     73945                                <MatrixWidth>2048</MatrixWidth>
     73946                                <MatrixHeight>1024</MatrixHeight>
     73947                        </TileMatrix>
     73948                        <TileMatrix>
     73949                                <ows:Identifier>11</ows:Identifier>
     73950                                <ScaleDenominator>136494.6933663861657919</ScaleDenominator>
     73951                                <TopLeftCorner>-180 90</TopLeftCorner>
     73952                                <TileWidth>256</TileWidth>
     73953                                <TileHeight>256</TileHeight>
     73954                                <MatrixWidth>4096</MatrixWidth>
     73955                                <MatrixHeight>2048</MatrixHeight>
     73956                        </TileMatrix>
     73957                        <TileMatrix>
     73958                                <ows:Identifier>12</ows:Identifier>
     73959                                <ScaleDenominator>68247.3466831930828960</ScaleDenominator>
     73960                                <TopLeftCorner>-180 90</TopLeftCorner>
     73961                                <TileWidth>256</TileWidth>
     73962                                <TileHeight>256</TileHeight>
     73963                                <MatrixWidth>8192</MatrixWidth>
     73964                                <MatrixHeight>4096</MatrixHeight>
     73965                        </TileMatrix>
     73966                        <TileMatrix>
     73967                                <ows:Identifier>13</ows:Identifier>
     73968                                <ScaleDenominator>34123.6733415965414480</ScaleDenominator>
     73969                                <TopLeftCorner>-180 90</TopLeftCorner>
     73970                                <TileWidth>256</TileWidth>
     73971                                <TileHeight>256</TileHeight>
     73972                                <MatrixWidth>16384</MatrixWidth>
     73973                                <MatrixHeight>8192</MatrixHeight>
     73974                        </TileMatrix>
     73975                        <TileMatrix>
     73976                                <ows:Identifier>14</ows:Identifier>
     73977                                <ScaleDenominator>17061.8366707982707240</ScaleDenominator>
     73978                                <TopLeftCorner>-180 90</TopLeftCorner>
     73979                                <TileWidth>256</TileWidth>
     73980                                <TileHeight>256</TileHeight>
     73981                                <MatrixWidth>32768</MatrixWidth>
     73982                                <MatrixHeight>16384</MatrixHeight>
     73983                        </TileMatrix>
     73984                        <TileMatrix>
     73985                                <ows:Identifier>15</ows:Identifier>
     73986                                <ScaleDenominator>8530.9183353991353620</ScaleDenominator>
     73987                                <TopLeftCorner>-180 90</TopLeftCorner>
     73988                                <TileWidth>256</TileWidth>
     73989                                <TileHeight>256</TileHeight>
     73990                                <MatrixWidth>65536</MatrixWidth>
     73991                                <MatrixHeight>32768</MatrixHeight>
     73992                        </TileMatrix>
     73993                        <TileMatrix>
     73994                                <ows:Identifier>16</ows:Identifier>
     73995                                <ScaleDenominator>4265.4591676995676810</ScaleDenominator>
     73996                                <TopLeftCorner>-180 90</TopLeftCorner>
     73997                                <TileWidth>256</TileWidth>
     73998                                <TileHeight>256</TileHeight>
     73999                                <MatrixWidth>131072</MatrixWidth>
     74000                                <MatrixHeight>65536</MatrixHeight>
     74001                        </TileMatrix>
     74002                        <TileMatrix>
     74003                                <ows:Identifier>17</ows:Identifier>
     74004                                <ScaleDenominator>2132.7295838497838405</ScaleDenominator>
     74005                                <TopLeftCorner>-180 90</TopLeftCorner>
     74006                                <TileWidth>256</TileWidth>
     74007                                <TileHeight>256</TileHeight>
     74008                                <MatrixWidth>262144</MatrixWidth>
     74009                                <MatrixHeight>131072</MatrixHeight>
     74010                        </TileMatrix>
     74011                        <TileMatrix>
     74012                                <ows:Identifier>18</ows:Identifier>
     74013                                <ScaleDenominator>1066.3647919248919202</ScaleDenominator>
     74014                                <TopLeftCorner>-180 90</TopLeftCorner>
     74015                                <TileWidth>256</TileWidth>
     74016                                <TileHeight>256</TileHeight>
     74017                                <MatrixWidth>524288</MatrixWidth>
     74018                                <MatrixHeight>262144</MatrixHeight>
     74019                        </TileMatrix>
     74020                        <TileMatrix>
     74021                                <ows:Identifier>19</ows:Identifier>
     74022                                <ScaleDenominator>533.1823959624459601</ScaleDenominator>
     74023                                <TopLeftCorner>-180 90</TopLeftCorner>
     74024                                <TileWidth>256</TileWidth>
     74025                                <TileHeight>256</TileHeight>
     74026                                <MatrixWidth>1048576</MatrixWidth>
     74027                                <MatrixHeight>524288</MatrixHeight>
     74028                        </TileMatrix>
     74029                        <TileMatrix>
     74030                                <ows:Identifier>2</ows:Identifier>
     74031                                <ScaleDenominator>69885283.0035897168854717</ScaleDenominator>
     74032                                <TopLeftCorner>-180 90</TopLeftCorner>
     74033                                <TileWidth>256</TileWidth>
     74034                                <TileHeight>256</TileHeight>
     74035                                <MatrixWidth>8</MatrixWidth>
     74036                                <MatrixHeight>4</MatrixHeight>
     74037                        </TileMatrix>
     74038                        <TileMatrix>
     74039                                <ows:Identifier>3</ows:Identifier>
     74040                                <ScaleDenominator>34942641.5017948584427359</ScaleDenominator>
     74041                                <TopLeftCorner>-180 90</TopLeftCorner>
     74042                                <TileWidth>256</TileWidth>
     74043                                <TileHeight>256</TileHeight>
     74044                                <MatrixWidth>16</MatrixWidth>
     74045                                <MatrixHeight>8</MatrixHeight>
     74046                        </TileMatrix>
     74047                        <TileMatrix>
     74048                                <ows:Identifier>4</ows:Identifier>
     74049                                <ScaleDenominator>17471320.7508974292213679</ScaleDenominator>
     74050                                <TopLeftCorner>-180 90</TopLeftCorner>
     74051                                <TileWidth>256</TileWidth>
     74052                                <TileHeight>256</TileHeight>
     74053                                <MatrixWidth>32</MatrixWidth>
     74054                                <MatrixHeight>16</MatrixHeight>
     74055                        </TileMatrix>
     74056                        <TileMatrix>
     74057                                <ows:Identifier>5</ows:Identifier>
     74058                                <ScaleDenominator>8735660.3754487146106840</ScaleDenominator>
     74059                                <TopLeftCorner>-180 90</TopLeftCorner>
     74060                                <TileWidth>256</TileWidth>
     74061                                <TileHeight>256</TileHeight>
     74062                                <MatrixWidth>64</MatrixWidth>
     74063                                <MatrixHeight>32</MatrixHeight>
     74064                        </TileMatrix>
     74065                        <TileMatrix>
     74066                                <ows:Identifier>6</ows:Identifier>
     74067                                <ScaleDenominator>4367830.1877243573053420</ScaleDenominator>
     74068                                <TopLeftCorner>-180 90</TopLeftCorner>
     74069                                <TileWidth>256</TileWidth>
     74070                                <TileHeight>256</TileHeight>
     74071                                <MatrixWidth>128</MatrixWidth>
     74072                                <MatrixHeight>64</MatrixHeight>
     74073                        </TileMatrix>
     74074                        <TileMatrix>
     74075                                <ows:Identifier>7</ows:Identifier>
     74076                                <ScaleDenominator>2183915.0938621786526710</ScaleDenominator>
     74077                                <TopLeftCorner>-180 90</TopLeftCorner>
     74078                                <TileWidth>256</TileWidth>
     74079                                <TileHeight>256</TileHeight>
     74080                                <MatrixWidth>256</MatrixWidth>
     74081                                <MatrixHeight>128</MatrixHeight>
     74082                        </TileMatrix>
     74083                        <TileMatrix>
     74084                                <ows:Identifier>8</ows:Identifier>
     74085                                <ScaleDenominator>1091957.5469310893263355</ScaleDenominator>
     74086                                <TopLeftCorner>-180 90</TopLeftCorner>
     74087                                <TileWidth>256</TileWidth>
     74088                                <TileHeight>256</TileHeight>
     74089                                <MatrixWidth>512</MatrixWidth>
     74090                                <MatrixHeight>256</MatrixHeight>
     74091                        </TileMatrix>
     74092                        <TileMatrix>
     74093                                <ows:Identifier>9</ows:Identifier>
     74094                                <ScaleDenominator>545978.7734655446631677</ScaleDenominator>
     74095                                <TopLeftCorner>-180 90</TopLeftCorner>
     74096                                <TileWidth>256</TileWidth>
     74097                                <TileHeight>256</TileHeight>
     74098                                <MatrixWidth>1024</MatrixWidth>
     74099                                <MatrixHeight>512</MatrixHeight>
     74100                        </TileMatrix>
     74101                </TileMatrixSet>
     74102                <TileMatrixSet>
     74103                        <ows:Identifier>WGS84G_PO</ows:Identifier>
     74104                        <ows:SupportedCRS>IGNF:WGS84G</ows:SupportedCRS>
     74105                        <TileMatrix>
     74106                                <ows:Identifier>0</ows:Identifier>
     74107                                <ScaleDenominator>279541132.0143588675418869</ScaleDenominator>
     74108                                <TopLeftCorner>-180 90</TopLeftCorner>
     74109                                <TileWidth>256</TileWidth>
     74110                                <TileHeight>256</TileHeight>
     74111                                <MatrixWidth>2</MatrixWidth>
     74112                                <MatrixHeight>1</MatrixHeight>
     74113                        </TileMatrix>
     74114                        <TileMatrix>
     74115                                <ows:Identifier>1</ows:Identifier>
     74116                                <ScaleDenominator>139770566.0071794337709434</ScaleDenominator>
     74117                                <TopLeftCorner>-180 90</TopLeftCorner>
     74118                                <TileWidth>256</TileWidth>
     74119                                <TileHeight>256</TileHeight>
     74120                                <MatrixWidth>4</MatrixWidth>
     74121                                <MatrixHeight>2</MatrixHeight>
     74122                        </TileMatrix>
     74123                        <TileMatrix>
     74124                                <ows:Identifier>10</ows:Identifier>
     74125                                <ScaleDenominator>272989.3867327723315839</ScaleDenominator>
     74126                                <TopLeftCorner>-180 90</TopLeftCorner>
     74127                                <TileWidth>256</TileWidth>
     74128                                <TileHeight>256</TileHeight>
     74129                                <MatrixWidth>2048</MatrixWidth>
     74130                                <MatrixHeight>1024</MatrixHeight>
     74131                        </TileMatrix>
     74132                        <TileMatrix>
     74133                                <ows:Identifier>11</ows:Identifier>
     74134                                <ScaleDenominator>136494.6933663861657919</ScaleDenominator>
     74135                                <TopLeftCorner>-180 90</TopLeftCorner>
     74136                                <TileWidth>256</TileWidth>
     74137                                <TileHeight>256</TileHeight>
     74138                                <MatrixWidth>4096</MatrixWidth>
     74139                                <MatrixHeight>2048</MatrixHeight>
     74140                        </TileMatrix>
     74141                        <TileMatrix>
     74142                                <ows:Identifier>12</ows:Identifier>
     74143                                <ScaleDenominator>68247.3466831930828960</ScaleDenominator>
     74144                                <TopLeftCorner>-180 90</TopLeftCorner>
     74145                                <TileWidth>256</TileWidth>
     74146                                <TileHeight>256</TileHeight>
     74147                                <MatrixWidth>8192</MatrixWidth>
     74148                                <MatrixHeight>4096</MatrixHeight>
     74149                        </TileMatrix>
     74150                        <TileMatrix>
     74151                                <ows:Identifier>2</ows:Identifier>
     74152                                <ScaleDenominator>69885283.0035897168854717</ScaleDenominator>
     74153                                <TopLeftCorner>-180 90</TopLeftCorner>
     74154                                <TileWidth>256</TileWidth>
     74155                                <TileHeight>256</TileHeight>
     74156                                <MatrixWidth>8</MatrixWidth>
     74157                                <MatrixHeight>4</MatrixHeight>
     74158                        </TileMatrix>
     74159                        <TileMatrix>
     74160                                <ows:Identifier>3</ows:Identifier>
     74161                                <ScaleDenominator>34942641.5017948584427359</ScaleDenominator>
     74162                                <TopLeftCorner>-180 90</TopLeftCorner>
     74163                                <TileWidth>256</TileWidth>
     74164                                <TileHeight>256</TileHeight>
     74165                                <MatrixWidth>16</MatrixWidth>
     74166                                <MatrixHeight>8</MatrixHeight>
     74167                        </TileMatrix>
     74168                        <TileMatrix>
     74169                                <ows:Identifier>4</ows:Identifier>
     74170                                <ScaleDenominator>17471320.7508974292213679</ScaleDenominator>
     74171                                <TopLeftCorner>-180 90</TopLeftCorner>
     74172                                <TileWidth>256</TileWidth>
     74173                                <TileHeight>256</TileHeight>
     74174                                <MatrixWidth>32</MatrixWidth>
     74175                                <MatrixHeight>16</MatrixHeight>
     74176                        </TileMatrix>
     74177                        <TileMatrix>
     74178                                <ows:Identifier>5</ows:Identifier>
     74179                                <ScaleDenominator>8735660.3754487146106840</ScaleDenominator>
     74180                                <TopLeftCorner>-180 90</TopLeftCorner>
     74181                                <TileWidth>256</TileWidth>
     74182                                <TileHeight>256</TileHeight>
     74183                                <MatrixWidth>64</MatrixWidth>
     74184                                <MatrixHeight>32</MatrixHeight>
     74185                        </TileMatrix>
     74186                        <TileMatrix>
     74187                                <ows:Identifier>6</ows:Identifier>
     74188                                <ScaleDenominator>4367830.1877243573053420</ScaleDenominator>
     74189                                <TopLeftCorner>-180 90</TopLeftCorner>
     74190                                <TileWidth>256</TileWidth>
     74191                                <TileHeight>256</TileHeight>
     74192                                <MatrixWidth>128</MatrixWidth>
     74193                                <MatrixHeight>64</MatrixHeight>
     74194                        </TileMatrix>
     74195                        <TileMatrix>
     74196                                <ows:Identifier>7</ows:Identifier>
     74197                                <ScaleDenominator>2183915.0938621786526710</ScaleDenominator>
     74198                                <TopLeftCorner>-180 90</TopLeftCorner>
     74199                                <TileWidth>256</TileWidth>
     74200                                <TileHeight>256</TileHeight>
     74201                                <MatrixWidth>256</MatrixWidth>
     74202                                <MatrixHeight>128</MatrixHeight>
     74203                        </TileMatrix>
     74204                        <TileMatrix>
     74205                                <ows:Identifier>8</ows:Identifier>
     74206                                <ScaleDenominator>1091957.5469310893263355</ScaleDenominator>
     74207                                <TopLeftCorner>-180 90</TopLeftCorner>
     74208                                <TileWidth>256</TileWidth>
     74209                                <TileHeight>256</TileHeight>
     74210                                <MatrixWidth>512</MatrixWidth>
     74211                                <MatrixHeight>256</MatrixHeight>
     74212                        </TileMatrix>
     74213                        <TileMatrix>
     74214                                <ows:Identifier>9</ows:Identifier>
     74215                                <ScaleDenominator>545978.7734655446631677</ScaleDenominator>
     74216                                <TopLeftCorner>-180 90</TopLeftCorner>
     74217                                <TileWidth>256</TileWidth>
     74218                                <TileHeight>256</TileHeight>
     74219                                <MatrixWidth>1024</MatrixWidth>
     74220                                <MatrixHeight>512</MatrixHeight>
     74221                        </TileMatrix>
     74222                </TileMatrixSet>
     74223        </Contents>
     74224</Capabilities>
Note: See TracChangeset for help on using the changeset viewer.